:root {
    --color-navy: #0A1931;
    --color-champagne: #C8A97E;
    --color-champagne-hover: #D8B98E;
    --color-bg-alt: #F5F7FA;
    --color-body-text: #111827;
    --color-muted-text: #6B7280;
    --color-marquee-dark: #071127;
    --color-white: #FFFFFF;
    --color-whatsapp: #25D366;
    --color-emerald: #10B981;
    --color-rose: #EF4444;
    
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Top Marquees */
.top-marquees { width: 100%; z-index: 1001; position: relative; }
.marquee-1 { background-color: var(--color-navy); color: var(--color-white); padding: 8px 0; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; overflow: hidden; white-space: nowrap; }
.marquee-2 { background-color: var(--color-marquee-dark); color: var(--color-white); padding: 10px 0; font-size: 12px; overflow: hidden; white-space: nowrap; border-bottom: 1px solid rgba(255,255,255,0.05); }
.marquee-track { display: inline-block; white-space: nowrap; animation: ticker 40s linear infinite; }
.marquee-track span { margin-right: 50px; }
.mq2-label { color: var(--color-champagne); margin-right: 8px; }
.mq2-up { color: var(--color-emerald); margin-left: 5px; }
.mq2-down { color: var(--color-rose); margin-left: 5px; }
.mq2-delay { color: rgba(255,255,255,0.6); font-size: 10px; margin-left: 5px; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    height: 90px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.logo-container { display: flex; align-items: center; text-decoration: none; }
.logo-container img { height: 65px; width: auto; object-fit: contain; margin-right: 0; }
.logo-text { display: none; } /* Removed since logo has text */

.nav-links { display: flex; gap: 35px; }
.nav-links a {
    text-decoration: none;
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: 0; left: 0; background-color: var(--color-champagne); transition: width 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--color-champagne); }

/* Dropdown Navbar */
.dropdown { position: relative; display: inline-flex; align-items: center; height: 100%; }
.dropdown > a {
    display: flex; align-items: center; gap: 4px; cursor: pointer;
}
.dropdown-content {
    display: none; position: absolute; background-color: var(--color-white);
    min-width: 260px; box-shadow: 0 10px 25px rgba(10, 25, 49, 0.08); z-index: 1001;
    border-radius: 6px; padding: 10px 0; border: 1px solid rgba(0,0,0,0.05);
    top: 40px; left: -20px; flex-direction: column;
}
.dropdown-content::before {
    content: ''; position: absolute; top: -30px; left: 0; width: 100%; height: 30px; background: transparent;
}
.dropdown:hover .dropdown-content { display: flex; animation: fadeUp 0.3s ease; }
.dropdown-content a {
    color: var(--color-body-text); padding: 12px 24px; text-decoration: none;
    display: block; font-size: 14px; font-weight: 500; border-bottom: 1px solid #f5f7fa;
    transition: all 0.2s ease;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: #f8fafc; color: var(--color-navy); padding-left: 28px; }
.dropdown-content a::after { display: none !important; }

@media (max-width: 768px) {
    .dropdown { display: flex; flex-direction: column; width: 100%; align-items: center; height: auto; }
    .dropdown > a { justify-content: center; width: 100%; padding: 10px 0; }
    .dropdown-content { 
        position: static; display: none; min-width: 100%; box-shadow: none; border: none; 
        background-color: rgba(0,0,0,0.02); margin-top: 10px; border-radius: 8px; padding: 5px 0; 
    }
    .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: flex; }
    .dropdown-content a { padding: 10px 20px; font-size: 13px; text-align: center; border-bottom: none; }
}
/* Buttons */
.btn-primary { background: var(--color-navy); color: var(--color-white); border: 1px solid var(--color-navy); padding: 14px 28px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: all 0.3s ease; text-decoration: none; display: inline-block; text-align: center; }
.btn-primary:hover { background: var(--color-champagne); color: var(--color-navy); border-color: var(--color-champagne); }

.btn-champagne { background: var(--color-champagne); color: var(--color-navy); border: 1px solid var(--color-champagne); padding: 14px 28px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: all 0.3s ease; text-decoration: none; display: inline-block; text-align: center; }
.btn-champagne:hover { background: var(--color-white); color: var(--color-navy); }

.btn-transparent-border { background: transparent; color: var(--color-white); border: 1px solid rgba(255,255,255,0.4); padding: 14px 28px; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border-radius: 4px; transition: all 0.3s ease; text-decoration: none; display: inline-block; text-align: center; }
.btn-transparent-border:hover { background: rgba(255,255,255,0.1); border-color: var(--color-white); }

.link-cta { color: var(--color-white); font-weight: 600; text-decoration: none; font-size: 14px; letter-spacing: 1px; transition: color 0.3s; display: inline-flex; align-items: center; gap: 8px; }
.link-cta:hover { color: var(--color-champagne); }
.link-cta-dark { color: var(--color-navy); text-decoration: underline; text-decoration-color: var(--color-champagne); text-underline-offset: 4px; font-weight: 600; transition: color 0.3s; }
.link-cta-dark:hover { color: var(--color-champagne); }

/* Hero Sections */
.hero { min-height: 85vh; background-color: var(--color-navy); background-image: url('assets/hero_texture.png'); background-size: cover; background-position: center; display: flex; align-items: center; padding: 80px 10%; position: relative; }
.hero::before { content: ''; position: absolute; top:0; left:0; right:0; bottom:0; background: rgba(10, 25, 49, 0.85); z-index: 1; }
.hero .fade-in { opacity: 1 !important; transform: translateY(0) !important; transition: none !important; }
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.eyebrow { color: var(--color-champagne); font-size: 12px; font-weight: 700; letter-spacing: 3px; margin-bottom: 25px; text-transform: uppercase; }
.title { color: var(--color-white); font-family: var(--font-serif); font-size: 72px; line-height: 1.15; font-weight: 400; margin-bottom: 30px; }
.title i { color: var(--color-champagne); font-style: italic; font-weight: 600; }
.hero .description { color: rgba(255,255,255,0.7); font-size: 20px; line-height: 1.7; margin-top: 20px; max-width: 700px; font-weight: 300; }
.hero-actions { margin-top: 50px; display: flex; gap: 30px; align-items: center; flex-wrap: wrap; }

.hero-stats { margin-top: 80px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 40px; }
.stat-val { color: var(--color-white); font-size: 36px; font-family: var(--font-serif); font-weight: 600; display: block; margin-bottom: 5px; }
.stat-label { color: var(--color-champagne); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; display: block; }

/* Sections General */
.section { padding: 120px 10%; position: relative; }
.bg-light { background-color: var(--color-white); }
.bg-alt { background-color: var(--color-bg-alt); }
.bg-dark { background-color: var(--color-navy); }
.container { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.section-title { font-size: 48px; font-family: var(--font-serif); color: var(--color-navy); margin-bottom: 40px; max-width: 800px; line-height: 1.2; font-weight: 600;}
.section-title.light { color: var(--color-white); }
.section-title i { color: var(--color-champagne); font-style: italic; }
.body-muted { color: var(--color-muted-text); font-size: 18px; line-height: 1.8; margin-bottom: 25px; font-weight: 300; }

/* Split Text Layout */
.split-text { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.split-text p { font-size: 18px; line-height: 1.8; color: var(--color-muted-text); font-weight: 300; margin-bottom: 30px; }

/* Cards & Grids */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: 30px; }
.card { background: var(--color-white); border: 1px solid rgba(0,0,0,0.05); padding: 50px 40px; transition: all 0.4s ease; box-shadow: 0 4px 20px rgba(0,0,0,0.02); display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); background: var(--color-navy); box-shadow: 0 20px 40px rgba(10, 25, 49, 0.15); }
.card:hover * { color: var(--color-white) !important; }
.card:hover .card-link { color: var(--color-champagne) !important; }
.card-num { color: var(--color-champagne); font-size: 14px; font-weight: 700; margin-bottom: 20px; font-family: var(--font-sans); }
.card h3 { color: var(--color-body-text); font-size: 24px; margin-bottom: 20px; font-family: var(--font-serif); line-height: 1.3; }
.card p { color: var(--color-muted-text); line-height: 1.7; font-size: 16px; margin-bottom: 30px; flex-grow: 1; }
.card-link { color: var(--color-navy); font-weight: 600; font-size: 13px; text-decoration: none; letter-spacing: 1px; margin-top: auto; transition: color 0.3s; display: inline-block; }

/* List Grid (Why Aaman) */
.list-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; }
.list-item { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.list-item h4 { font-family: var(--font-sans); font-size: 20px; color: var(--color-white); margin-bottom: 15px; display: flex; align-items: center; gap: 15px;}
.list-item h4 span { color: var(--color-champagne); font-size: 14px; font-weight: 700; }
.list-item p { color: rgba(255,255,255,0.7); line-height: 1.7; font-size: 17px; font-weight: 300; }

/* Footer */
.footer { background-color: var(--color-navy); color: var(--color-white); padding: 100px 10% 40px; font-size: 14px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 70px; margin-bottom: 80px; }
.brand-col .footer-logo-wrap { display: flex; align-items: center; margin-bottom: 30px; }
.brand-col .footer-logo-wrap img { height: 120px; margin-right: 0; }
.brand-col .footer-logo-text { display: none; }
.brand-col p { margin-bottom: 25px; line-height: 1.8; font-weight: 300; color: rgba(255,255,255,0.8); }
.status-footer { color: var(--color-champagne); font-size: 11px; letter-spacing: 2px; font-weight: 600; text-transform: uppercase; display: block; margin-bottom: 25px; }
.social-icons { display: flex; gap: 15px; }
.social-icon { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--color-white); text-decoration: none; transition: all 0.3s; }
.social-icon:hover { background: var(--color-champagne); color: var(--color-navy); border-color: var(--color-champagne); }

.footer-col h4 { color: var(--color-white); margin-bottom: 25px; font-size: 15px; letter-spacing: 1px; font-weight: 600; }
.links-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; margin-bottom: 15px; transition: color 0.3s ease; font-weight: 300; }
.links-col a:hover { color: var(--color-champagne); }
.contact-col p { margin-bottom: 15px; font-weight: 300; color: rgba(255,255,255,0.7); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 40px; text-align: center; font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; }
.footer-bottom p { margin-bottom: 10px; }

/* Floating WhatsApp Button */
.whatsapp-float { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background-color: var(--color-whatsapp); color: var(--color-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); z-index: 1000; text-decoration: none; animation: pulse 2s infinite; }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }
@keyframes pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

/* Consultation Dialog */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); backdrop-filter: blur(5px); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal-content { width: 90%; max-width: 600px; background: var(--color-white); border-radius: 8px; overflow: hidden; transform: translateY(30px); transition: transform 0.3s ease; box-shadow: 0 20px 40px rgba(0,0,0,0.2); }
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-header { background: var(--color-navy); padding: 30px 40px; position: relative; }
.modal-header .eyebrow { margin-bottom: 10px; }
.modal-header h2 { color: var(--color-white); font-family: var(--font-serif); font-size: 28px; margin-bottom: 10px; }
.modal-header p { color: rgba(255,255,255,0.8); font-size: 15px; line-height: 1.6; }
.modal-close { position: absolute; top: 20px; right: 20px; background: transparent; border: none; color: var(--color-white); font-size: 28px; cursor: pointer; opacity: 0.7; transition: opacity 0.3s; }
.modal-close:hover { opacity: 1; }
.modal-body { padding: 40px; height: 500px; }

/* Mobile Menu & Responsive Elements */
.hamburger { display: none; background: transparent; border: none; font-size: 26px; color: var(--color-navy); cursor: pointer; padding: 5px; }
.hamburger span { display: block; width: 25px; height: 3px; background-color: var(--color-navy); margin: 4px auto; transition: all 0.3s ease; border-radius: 2px; }

@media (max-width: 1024px) {
    .title { font-size: 56px; }
    .split-text, .list-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 50px; }
    .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .fade-in { opacity: 1 !important; transform: translateY(0) !important; transition: none !important; }
    
    .navbar { padding: 0 20px; }
    .hamburger { display: block; }
    .nav-links { 
        display: none; 
        position: absolute; top: 100%; left: 0; width: 100%; 
        background: var(--glass-bg); flex-direction: column; 
        padding: 20px; gap: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        text-align: center; border-top: 1px solid rgba(0,0,0,0.05);
        z-index: 1005;
    }
    .nav-links.active { display: flex; }
    .navbar .btn-primary { display: none; }
    
    .logo-container img { height: 50px; margin-right: 0; }
    
    .title { font-size: 38px; }
    .hero { min-height: auto; padding: 120px 5% 80px; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-champagne, .btn-transparent-border { text-align: center; }
    .section { padding: 80px 5%; }
    .section-title { font-size: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .cards-grid { grid-template-columns: 1fr; }
    .list-grid { grid-template-columns: 1fr; gap: 40px; }
    .split-text { gap: 40px; }
}


/* Services Page Specifics */
.quick-nav { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 40px; }
.quick-nav-chip { padding: 10px 20px; border: 1px solid rgba(255,255,255,0.3); border-radius: 30px; font-size: 13px; font-weight: 500; color: var(--color-white); text-decoration: none; transition: all 0.3s; }
.quick-nav-chip:hover { background: var(--color-champagne); color: var(--color-navy); border-color: var(--color-champagne); }
.service-row { scroll-margin-top: 130px; }
.service-block { padding: 80px 10%; border-bottom: 1px solid rgba(0,0,0,0.05); }
.service-num { font-size: 80px; font-family: var(--font-serif); color: rgba(10, 25, 49, 0.05); font-weight: 600; line-height: 1; margin-bottom: -40px; position: relative; z-index: 1; }
.service-content { position: relative; z-index: 2; max-width: 800px; }
.service-content h2 { font-size: 36px; }


/* --- Center Menu Adjustments --- */
.logo-container { flex: 1; display: flex; justify-content: flex-start; align-items: center; }
.nav-actions { flex: 1; display: flex; justify-content: flex-end; align-items: center; }

@media (max-width: 992px) {
    .nav-actions { display: none !important; }
    .logo-container { flex: none; }
}

/* --- Center Menu Adjustments (Grid) --- */
@media (min-width: 993px) {
    .navbar {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }
    .logo-container {
        justify-self: start;
        margin-right: 0;
    }
    .nav-links {
        justify-self: center;
    }
    .nav-actions {
        justify-self: end;
    }
}
@media (max-width: 992px) {
    .nav-actions { display: none !important; }
}
