@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #1A472A;
    --accent-gold: #D4AF37;
    --light-green: #2E7D32;
    --bg-cream: #FDFCF0;
    --text-dark: #2D2D2D;
    --text-white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-cream);
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}


h1, h2, h3, h4, .navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--accent-gold);
    padding: 1rem 0;
}

/* Responsive Branding */
.navbar-brand img {
    height: 60px;
    transition: height 0.3s ease;
}

@media (max-width: 991px) {
    .navbar {
        position: sticky !important;
        top: 0;
        z-index: 1070;
    }
    .brand-responsive {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin-right: 0;
        z-index: 1050;
    }
    .brand-responsive img {
        height: 60px;
        max-width: 150px;
    }
    .language-selector-wrapper {
        position: absolute !important;
        right: 15px;
        top: 25px;
        z-index: 1080;
    }
    .mobile-menu-border {
        border-top: 1px solid rgba(0,0,0,0.1);
    }
    
    /* Enhanced smooth menu transition */
    .collapsing {
        transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease-in-out, 
                    transform 0.4s ease-out !important;
        opacity: 0;
        transform: translateY(-10px);
    }
    
    .collapse.show {
        transition: opacity 0.4s ease-in-out, 
                    transform 0.4s ease-out !important;
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 992px) {
    .navbar-brand {
        position: static !important;
        transform: none !important;
    }
    .mobile-menu-border {
        border-top: none !important;
    }
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A472A 0%, #0D2B1A 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.product-image {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.product-image:hover {
    transform: translateY(-10px);
}

.btn-primary {
    background-color: var(--accent-gold);
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #C5A059;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.features-section {
    padding: 80px 0;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 71, 42, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border-color: var(--accent-gold);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.construction-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 5px solid var(--accent-gold);
}

.construction-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.footer {
    background: #0b1f13;
    color: white;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6) !important;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold) !important;
    padding-left: 8px;
}

.social-icons .social-link {
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons .social-link:hover {
    background: var(--accent-gold);
    color: var(--primary-green) !important;
    transform: translateY(-3px);
}

.grayscale {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.grayscale:hover {
    filter: grayscale(0%);
}

.x-small {
    font-size: 0.75rem;
}

/* New Header Styles */
.header-top {
    font-size: 0.8rem;
    font-weight: 500;
}

.header-top .hover-gold:hover {
    color: var(--accent-gold) !important;
}

.header-main .x-small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav .nav-link {
    color: white !important;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.header-nav .nav-link:hover, .header-nav .nav-link.active {
    color: var(--accent-gold) !important;
    background: rgba(255,255,255,0.05);
}

.header-nav .navbar-toggler-icon {
    filter: invert(1);
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-gold);
}

@media (max-width: 991px) {
    .header-main {
        padding: 1.5rem 0;
    }
    .header-nav .navbar-collapse {
        background: var(--primary-green);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
}

/* Existing Styles ... */
.offcanvas {
    background-color: var(--text-white);
    max-width: 280px;
}

.offcanvas-header {
    background-color: var(--bg-cream);
    padding: 1.5rem;
}

.offcanvas-title {
    font-weight: 700;
    letter-spacing: 1px;
}

.offcanvas-body {
    padding: 2rem 1.5rem;
}

.offcanvas-body .navbar-nav .nav-item {
    margin-bottom: 1rem;
}

.offcanvas-body .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 1rem !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
    background-color: var(--bg-cream);
    padding-left: 1.5rem !important;
}

.offcanvas-body .nav-link.active {
    background-color: var(--primary-green);
    color: white !important;
}

.nav-link {
    font-weight: 500;
    color: var(--primary-green) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold) !important;
}

.page-header {
    margin-top: -1px;
}

.text-primary-green {
    color: var(--primary-green);
}

.text-accent-gold {
    color: var(--accent-gold);
}

.bg-primary-green {
    background-color: var(--primary-green);
}

.bg-cream {
    background-color: var(--bg-cream);
}

.scale-hover {
    transition: transform 0.3s ease;
}

.scale-hover:hover {
    transform: scale(1.02);
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-gold) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }

    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .product-image {
        margin-top: 30px;
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .display-4 {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 1rem;
    }
}

/* Professional Desktop Refinements */
@media (min-width: 992px) {
    .header-top {
        font-family: 'Outfit', sans-serif;
        background-color: #f8f9fa !important;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
    }

    .header-nav {
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 8px 0 !important;
    }

    .header-nav .nav-link {
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        position: relative;
        padding: 12px 25px !important;
        color: rgba(255,255,255,0.85) !important;
    }

    .header-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--accent-gold);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .header-nav .nav-link:hover::after,
    .header-nav .nav-link.active::after {
        width: 20px;
    }

    /* Sticky Desktop Header State */
    .sticky-header {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1060;
        background-color: rgba(26, 43, 29, 0.96) !important;
        backdrop-filter: blur(12px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        padding: 2px 0 !important;
    }

    .hero-title {
        font-size: 4.8rem !important;
        font-weight: 800;
        letter-spacing: -2px;
        animation: fadeInUp 1s ease;
    }

    .hero-subtitle {
        font-size: 1.4rem;
        max-width: 650px;
        opacity: 0.9;
        margin-bottom: 3rem;
        animation: fadeInUp 1s ease 0.2s forwards;
        opacity: 0;
    }

    .feature-card {
        padding: 45px;
        border: none;
        background: #ffffff;
        box-shadow: var(--shadow-soft);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .feature-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(13, 43, 26, 0.12);
    }

    /* Professional Section Spacing */
    section {
        padding: 120px 0 !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shadow-premium {
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.text-gold {
    color: var(--accent-gold);
}

