:root {
    --navy: #0B132B;
    --navy-light: #1C2541;
    --gold: #D4AF37;
    --gold-light: #F3E5AB;
    --pearl: #F8F9FA;
    --white: #FFFFFF;
    --text-main: #333333;
    --text-muted: #666666;
    
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 10px 30px rgba(11, 19, 43, 0.05);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base size */
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    background-color: var(--pearl);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Fluid Container & Padding */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: clamp(60px, 10vw, 120px) 0;
}

.bg-dark {
    background-color: var(--navy);
    color: var(--white);
}

.bg-dark h2, .bg-dark h3 {
    color: var(--white);
}

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

/* Typography Elements */
.gold-text {
    color: var(--gold);
}

.subtitle {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 12px;
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--navy);
    margin: 24px auto;
}

.divider.gold {
    background-color: var(--gold);
}

.divider.left {
    margin: 24px 0;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 40px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 1px solid transparent;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-gold:hover {
    background-color: var(--white);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border-color: rgba(255,255,255,0.5);
    color: var(--white);
}

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

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

.btn-outline.gold-border:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.logo-icon svg {
    color: var(--gold);
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
}

.logo-text span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

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

.nav-links a:not(.btn) {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    opacity: 0.8;
}

.nav-links a:not(.btn):hover {
    opacity: 1;
    color: var(--gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background-color: var(--navy);
}

.hero-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Abstract luxury pattern */
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, transparent 60%),
                radial-gradient(circle at bottom left, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0.2) 0%, var(--navy) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 400;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 700px;
    margin-inline: auto;
    font-weight: 300;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light p {
    color: rgba(255,255,255,0.7);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.card-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.about-card h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Network */
.network-flex {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.network-box {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px;
    border-radius: 4px;
}

.network-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--gold);
}

.custom-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
}

/* Partners */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.partner-logo {
    padding: 20px 30px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    min-width: 140px;
    text-align: center;
    transition: var(--transition);
}

.partner-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--navy-light);
    font-weight: 600;
}

.partner-logo:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

/* Leadership */
.leadership-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.leader-card {
    background: var(--pearl);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    padding: 50px;
}

.leader-card.premium {
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-top: 4px solid var(--gold);
}

.leader-profile {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.leader-avatar {
    width: 80px;
    height: 80px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    border-radius: 50%;
}

.leader-avatar.small {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.leader-titles h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
}

.role {
    display: block;
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.education {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

.leader-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 30px;
}

.experience h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 16px;
}

.experience ul li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

.year {
    color: var(--gold);
    font-size: 0.85rem;
    margin-left: 10px;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    border-radius: 4px;
    overflow: hidden;
}

.contact-info {
    background: var(--navy);
    color: var(--white);
    padding: clamp(40px, 6vw, 80px);
}

.contact-info h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.contact-info > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.info-item h4 {
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-item p, .info-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.contact-form-container {
    padding: clamp(40px, 6vw, 80px);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

/* Footer */
.footer {
    background: var(--navy-light);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    color: var(--white);
    margin: 0;
}

.footer-logo span {
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 19, 43, 0.98);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive - Mobile Friendly Fixes */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .leader-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        flex-direction: column;
        align-items: center;
        width: 100%;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translate(-50%, -50%) scale(1);
    }

    .nav-links a:not(.btn) {
        font-size: 1.5rem;
        padding: 15px;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-actions {
        display: flex;
        justify-content: center;
    }

    .about-card {
        padding: 40px 20px;
    }

    .network-box {
        padding: 30px;
    }

    .leader-card {
        padding: 30px 20px;
    }

    .contact-info, .contact-form-container {
        padding: 40px 20px;
    }

    /* Better mobile animations: disable staggered delays when elements stack vertically */
    [data-aos-delay] {
        transition-delay: 0s !important;
    }
}
