:root {
    --lux-orange: #E94E1B;
    --lux-gold: #C5A02D;
    --lux-gold-dark: #8E6F1E;
    --lux-gold-metal: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --lux-gold-soft: linear-gradient(135deg, #dfc47d 0%, #b38728 100%);
    --lux-black: #000000;
    --lux-white: #ffffff;
    --text: #1a1a1a;
    --muted: #666;
    --bg: #f7f7f7;
    --radius: 16px;
    --font-heading: "Bell MT", "Playfair Display", serif;
    --font-secondary: "Bison Bold", "Montserrat", sans-serif;
    --font-body: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--lux-black);
    margin: 0 0 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--lux-orange);
    margin: 16px auto 0;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(233, 78, 27, 0.3);
}

.text-gold-metal {
    background: var(--lux-gold-metal);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    background-size: 200% auto;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    margin-top: 10px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all .3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    gap: 10px;
}

.btn-primary {
    background: var(--lux-orange);
    color: var(--lux-white);
    box-shadow: 0 4px 15px rgba(233, 78, 27, 0.3);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--lux-orange);
    color: var(--lux-orange);
}

.btn-outline {
    color: var(--lux-white);
    border-image: var(--lux-gold-metal) 1;
    background: transparent;
}

.btn-outline:hover {
    background: var(--lux-gold-metal);
    color: var(--lux-black);
    border-image: none;
    box-shadow: 0 10px 20px rgba(191, 149, 63, 0.3);
}

.btn-gold-metal {
    background: var(--lux-gold-metal);
    color: var(--lux-black);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(181, 149, 63, 0.3);
}

.btn-gold-metal::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-gold-metal:hover::after {
    left: 120%;
}

.btn-gold-metal:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(181, 149, 63, 0.5);
    color: var(--lux-black);
}

.btn-outline-gold {
    color: var(--lux-gold);
    border-color: var(--lux-gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--lux-gold);
    color: var(--lux-white);
}

.btn-whatsapp-large {
    background: #25D366;
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
}
.btn-whatsapp-large:hover {
    background: #128C7E;
    color: white;
}

/* Header & Responsive Navbar */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    height: 80px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001; /* Above mobile menu */
}

.brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lux-orange);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--lux-orange);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--lux-black);
    cursor: pointer;
    z-index: 1001;
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .mobile-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--lux-black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1000;
        padding: 40px;
        text-align: center;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-link {
        font-family: var(--font-heading);
        font-size: 2.2rem;
        color: white;
        margin: 12px 0;
        text-transform: uppercase;
        letter-spacing: 3px;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .main-nav.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for links */
    .main-nav.active .nav-link:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active .nav-link:nth-child(2) { transition-delay: 0.2s; }
    .main-nav.active .nav-link:nth-child(3) { transition-delay: 0.3s; }
    .main-nav.active .nav-link:nth-child(4) { transition-delay: 0.4s; }

    .nav-link::after {
        display: none; /* Hide the underline on mobile for a cleaner look */
    }

    .nav-link:hover, .nav-link.active {
        color: var(--lux-orange);
    }

    .mobile-toggle {
        display: block;
        padding: 5px;
        color: var(--lux-black);
        background: transparent;
        transition: all 0.3s ease;
        position: relative;
        z-index: 1100; /* Ensure it stays above EVERYTHING */
    }

    /* Target the icon color change when menu is active */
    /* Since we can't easily do it with CSS alone due to hierarchy, we'll let JS handle classes if needed or use a body class */
    body.menu-open {
        overflow: hidden;
    }

    body.menu-open .mobile-toggle {
        color: white;
    }

    .nav-cta {
        margin-top: 40px;
        width: 100%;
        max-width: 300px;
        font-size: 1rem;
        padding: 18px 30px;
    }
}

/* Footer Redesign */
.site-footer {
    background: var(--lux-black);
    color: var(--lux-white);
    padding: 80px 0 20px;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand-col p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--lux-orange);
    transform: translateY(-3px);
}

.footer-links-col h3, .footer-contact-col h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    color: white;
}

.footer-links-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links-col a:hover {
    color: var(--lux-orange);
    padding-left: 5px;
}

.footer-contact-col p {
    display: flex;
    gap: 12px;
    color: #ccc;
    margin-bottom: 16px;
    align-items: center;
}

.footer-contact-col i {
    color: var(--lux-orange);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

/* --- Global Form Styles --- */
.contact-form {
    margin-top: 40px;
    text-align: left !important;
    background: #f9f9f9;
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 24px;
    text-align: left !important;
}

.form-group label {
    display: block !important;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left !important;
}

.form-control {
    width: 100% !important;
    padding: 14px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box; /* Crucial */
}

.form-control:focus {
    outline: none;
    border-color: var(--lux-gold);
    box-shadow: 0 0 0 4px rgba(197, 160, 45, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 24px;
    }

    .contact-card {
        padding: 40px 20px !important;
    }

    .contact-details-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }

    .contact-item {
        flex-direction: row !important;
        text-align: left !important;
        padding: 16px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
