* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Color Variables */
:root {
    --navy: #1E2B3C;
    --navy-light: #2a3d52;
    --navy-dark: #141f2c;
    --gold: #B59A5D;
    --gold-light: #c9ae6e;
    --gold-dark: #9b8548;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --grey-light: #EAECEF;
    --grey-medium: #D1D5DB;
    --text-dark: #1A2A3A;
    --text-muted: #5a6e7e;
    --shadow-sm: 0 10px 30px -12px rgba(0,0,0,0.08);
    --shadow-md: 0 20px 40px -15px rgba(0,0,0,0.12);
    --shadow-lg: 0 30px 50px -20px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --transition-fast: all 0.25s ease;
}

body {
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'playfair display', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
}

h1 { font-size: 38px; font-weight: 400; line-height: 1.2; }
h2 { font-size: 26px; font-weight: 400; line-height: 1.25; }
h3 { font-size: 22px; font-weight: 400; }
h4 { font-size: 16px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 26px; }
    h3 { font-size: 20px; }
}

p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .container { padding: 0 24px; }
    section { padding: 70px 0; }
}

/* Buttons */
.btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    font-family: 'Jost', sans-serif;
    font-size: 14px;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(181,154,93,0.25);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 12px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Navbar */
  /* ========== NAVBAR ========== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 18px 0;
            transition: all 0.3s ease;
            background: transparent;
            
            
            letter-spacing: 0.5px;
        }
        .navbar.scrolled {
            padding: 10px 0;
            background: transparent;
            color: var(--navy-dark);
            
        }

        /* Add this to your existing styles */
.navbar.nav-hidden {
  transform: translateY(-100%);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-img {
    width: 200px;
    height: 100px;
    object-fit: contain;
}
.logo span { color: var(--gold); }
.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    position: relative;
}
.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}
.nav-links a:hover:after, 
.nav-links a.active:after {
    width: 100%;
}
.nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 8px 20px;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}
.nav-cta:after { display: none; }
.hamburger {
    display: none;
    font-size: 28px;
    color: var(--gold);
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 992px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .nav-container { padding: 0 24px; }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--navy-dark);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    visibility: hidden;
}
.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}
.mobile-menu a {
    color: var(--white);
    font-size: 24px;
    font-family: 'Playfair Display', serif;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.35s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta {
    background: var(--gold);
    color: var(--navy) !important;
    padding: 12px 32px;
    font-size: 18px;
    margin-top: 20px;
}
.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 32px;
    color: var(--gold);
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition-fast);
}
.close-menu:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

/* ================= ELITE PAGE HERO ================= */
.page-hero {
    position: relative;
    padding: 180px 0 110px;
    text-align: center;
    overflow: hidden;

    /* Real image + overlay */
    background:
        linear-gradient(rgba(20,31,44,0.82), rgba(20,31,44,0.9)),
        url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&auto=format&fit=crop') center/cover no-repeat;
}

/* REMOVE this completely */
.page-hero::before {
    display: none;
}
/* Soft vignette effect */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0) 40%,
        rgba(0,0,0,0.25) 100%
    );
}
.page-hero h1 {
    color: var(--gold);
    margin-bottom: 16px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto;
}
.hero-pattern {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold),
        transparent
    );
    opacity: 0.6;
}
.gold-text {
    color: var(--gold);
}
.gold-underline {
    width: 80px;
    height: 3px;
    background: var(--gold);
    margin: 24px auto 0;
}
.breadcrumb {
    color: rgba(255,255,255,0.6);
    margin-bottom: 30px;
    font-size: 13px;
    letter-spacing: 1px;
}
.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
}
.breadcrumb .separator {
    margin: 0 8px;
    color: rgba(255,255,255,0.4);
}
.hero-subtitle {
    color: rgba(255,255,255,0.8);
    max-width: 700px;
    margin: 28px auto 0;
    font-size: 16px;
}

/* Section Label */
.section-label {
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
}
.section-label.centered {
    text-align: center;
}

/* Philosophy Section */
.philosophy-section {
    background: var(--white);
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.philosophy-text h2 {
    margin-bottom: 24px;
}
.philosophy-text p {
    margin-bottom: 20px;
}
.mt-20 {
    margin-top: 20px;
}
.philosophy-stats {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}
.stat {
    text-align: left;
}
.stat-number {
    font-size: 36px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    font-weight: 700;
    display: block;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
    display: block;
}
.philosophy-quote {
    background: var(--off-white);
    padding: 60px 50px;
    position: relative;
}
.quote-mark {
    font-size: 80px;
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}
.philosophy-quote blockquote p {
    font-size: 22px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}
.philosophy-quote cite {
    font-size: 13px;
    color: var(--gold);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}
.quote-decoration {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 2px;
    background: var(--gold);
}

/* Credentials Showcase */
.credentials-showcase {
    background: var(--off-white);
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    margin-bottom: 16px;
}
.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(alic(--text-muted));
}
.creds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.creds-card {
    background: var(--navy);
    padding: 48px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}
.creds-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.creds-icon {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--gold);
}
.creds-card h3 {
    margin-bottom: 16px;
    font-size: 20px;
    color: var(--gold);
}
.creds-card p {
    font-size: 14px;
    line-height: 1.6;
    color: aliceblue;
}
.card-hover-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: var(--transition);
}
.creds-card:hover .card-hover-line {
    width: 100%;
}

/* Principal Section */
.principal-section {
    background: var(--white);
}
.profile-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 70px;
    align-items: start;
}
.profile-image-frame {
    position: relative;
}
.profile-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.profile-image:hover img {
    transform: scale(1.02);
}
.image-caption {
    text-align: center;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.profile-content .section-label {
    margin-bottom: 12px;
}
.profile-content h2 {
    margin-bottom: 12px;
}
.profile-credentials {
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}
.profile-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 24px;
}
.mt-16 {
    margin-top: 16px;
}
.honors-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 32px 0;
}
.honor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
}
.honor-item i {
    color: var(--gold);
    font-size: 14px;
}
.signature-block {
    margin-top: 24px;
}
.signature {
    font-family: 'Playfair Display', cursive;
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 12px;
}
.signature-line {
    width: 120px;
    height: 1px;
    background: var(--grey-light);
}

/* Ethics Section */
.ethics-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.ethics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.03"><path fill="none" d="M20,20 L80,20 M20,50 L80,50 M20,80 L80,80" stroke="%23B59A5D" stroke-width="0.5"/></svg>');
    background-size: 40px 40px;
}
.ethics-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.ethics-icon {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
}
.ethics-section h2 {
    color: var(--gold);
    margin-bottom: 16px;
}
.gold-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 20px auto;
}
.ethics-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}
.ethics-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.badge {
    background: rgba(181,154,93,0.15);
    padding: 10px 24px;
    font-size: 13px;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.badge i {
    font-size: 14px;
}

/* Service Areas */
.service-areas {
    background: var(--off-white);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 40px;
}
.area-item {
    background: var(--white);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    transition: var(--transition-fast);
    border: 1px solid var(--grey-light);
}
.area-item i {
    color: var(--gold);
    font-size: 14px;
}
.area-item:hover {
    border-color: var(--gold);
    transform: translateX(5px);
}

/* Contact Bridge */
.contact-bridge {
    background: var(--white);
    text-align: center;
    padding: 80px 0;
}
.bridge-content h2 {
    margin-bottom: 16px;
}
.bridge-content p {
    margin-bottom: 32px;
}
.bridge-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.bridge-address {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}
.bridge-address i {
    color: var(--gold);
}

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.75);
    padding-top: 70px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}
.footer h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer p {
    line-height: 1.7;
    font-size: 13px;
}
.footer-logo {
    width: 50px;
    margin-bottom: 16px;
}
.tagline {
    font-size: 13px;
    margin-bottom: 20px;
}
.footer a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition-fast);
}
.footer a:hover {
    color: var(--gold);
}
.footer-link {
    display: inline-block;
    margin-top: 12px;
    font-weight: 500;
    color: var(--gold);
}
.socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}
.socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(181,154,93,0.15);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}
.socials a:hover {
    background: var(--gold);
    color: var(--navy);
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-contact-item i {
    color: var(--gold);
    font-size: 13px;
    width: 16px;
}
.sub-footer {
    border-top: 1px solid rgba(181,154,93,0.2);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    gap: 12px;
}
.dev-link {
    color: var(--gold);
    font-weight: 500;
}
.dev-link:hover {
    text-decoration: underline;
}

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    transition: var(--transition-fast);
}
.float-wa i {
    font-size: 28px;
    color: white;
}
.float-wa:hover {
    transform: scale(1.08);
    background: #20b358;
}

/* Responsive */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .profile-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .creds-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .honors-list {
        grid-template-columns: 1fr;
    }
    .philosophy-stats {
        justify-content: space-between;
    }
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
    .sub-footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand {
        text-align: center;
    }
    .socials {
        justify-content: center;
    }
    .philosophy-quote blockquote p {
        font-size: 18px;
    }
    .philosophy-quote {
        padding: 40px 30px;
    }
    .bridge-buttons .btn-primary,
    .bridge-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
    .ethics-badges {
        flex-direction: column;
        align-items: center;
    }
    .badge {
        width: 100%;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}