:root {
    --lux-orange: #E94E1B;
    --lux-blue: #005996;
    --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: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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: 60px;
    height: 3px;
    background: var(--lux-orange);
    margin: 16px auto 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    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: #c93f14;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 78, 27, 0.4);
}

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

.btn-outline:hover {
    background: var(--lux-blue);
    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: 80%;
        max-width: 400px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1000;
        padding: 40px;
    }

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

    .nav-link {
        font-size: 1.5rem;
        margin: 10px 0;
    }

    .nav-cta {
        margin-top: 20px;
        width: 100%;
    }
}

/* 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;
}

@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); }
}
