/* ===== VARIABLES & RESET ===== */
:root {
    /* Refined Color Palette - Sophisticated Warm Neutrals */
    --primary-charcoal: #2C3E50;
    --secondary-slate: #4A5568;
    --accent-champagne: #E8B86D;
    --warm-cream: #F8F6F0;
    --soft-copper: #CD9777;
    --pearl-white: #FEFEFE;
    --light-gray: #F7F9FC;
    --text-primary: #2C3E50;
    --text-secondary: #4A5568;
    --text-light: #718096;
    --gradient-champagne: linear-gradient(135deg, #E8B86D 0%, #CD9777 100%);
    --gradient-neutral: linear-gradient(135deg, #F8F6F0 0%, #FEFEFE 100%);
    --gradient-charcoal: linear-gradient(135deg, #2C3E50 0%, #4A5568 100%);
    
    /* Typography */
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* Spacing & Sizing */
    --container-max-width: 1400px;
    --section-padding: 80px 0; /* Legacy - using direct padding in sections now */
    --border-radius: 12px;
    --box-shadow: 0 20px 60px rgba(13, 27, 42, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --fast-transition: all 0.2s ease-out;
}

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

/* Hardware acceleration for smooth animations */
.hero-title,
.hero-subtitle,
.hero-buttons,
.nav-link,
.btn,
.project-card,
.leader-card {
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
}

/* Disabled links styling */
.disabled-link {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Ensure AOS animations don't interfere with layout */
[data-aos] {
    transform: none !important; /* Reset transforms when not animating */
}

[data-aos].aos-animate {
    /* Allow transforms only when actively animating */
}

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

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

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-champagne);
    color: var(--primary-charcoal);
    font-weight: 700;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(232, 184, 109, 0.3);
    background: var(--soft-copper);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--pearl-white);
    border: 2px solid rgba(232, 184, 109, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--accent-champagne);
    color: var(--primary-charcoal);
    transform: translateY(-3px);
    border-color: var(--accent-champagne);
}

.btn-gold {
    background: var(--accent-champagne);
    color: var(--primary-charcoal);
    font-weight: 700;
}

.btn-gold:hover {
    background: var(--soft-copper);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(205, 151, 119, 0.3);
}

.section-header {
    text-align: center;
    margin: 0 0 50px 0;
    padding: 0;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-charcoal);
    margin: 0 0 20px 0;
    position: relative;
    line-height: 1.2;
    /* Remove any transforms that could cause positioning issues */
    transform: none;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-champagne);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-navy);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.logo-loader h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--accent-champagne);
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.loading-bar {
    width: 200px;
    height: 4px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loading-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-champagne);
    animation: loading 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== PROFESSIONAL SECTION STRUCTURE - COMPLETE OVERHAUL ===== */

/* Reset all section margins and ensure proper structure */
section {
    margin: 0;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    clear: both;
}

/* Specific section adjustments */
.hero {
    padding: 0; /* Hero section handles its own spacing */
}

.stats-section {
    padding: 60px 0; /* Reduced top spacing after hero */
}

.contact-section {
    padding: 80px 0 100px 0; /* Extra bottom padding for footer separation */
}

/* All sections get scroll margin for sticky header */
section[id] {
    scroll-margin-top: 100px; /* Header height + buffer */
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(44, 62, 80, 0.1);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(232, 184, 109, 0.2);
    z-index: 1000;
    transition: var(--transition);
    height: 80px;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(248, 246, 240, 0.95);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(232, 184, 109, 0.3);
    box-shadow: 0 8px 32px rgba(44, 62, 80, 0.1);
    height: 70px;
}

.navbar.scrolled .nav-link {
    color: var(--primary-charcoal);
}

.navbar.scrolled .logo-text {
    color: var(--accent-champagne);
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-self: start;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--pure-white);
}

.logo-img {
    height: 45px;
    margin-right: 12px;
    border-radius: 8px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-champagne);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 12px 0;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-champagne);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(232, 184, 109, 0.5);
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-champagne);
    text-shadow: 0 0 8px rgba(232, 184, 109, 0.3);
}

.nav-cta {
    display: flex;
    align-items: center;
    justify-self: end;
}

.nav-cta .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--pure-white);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; /* Slightly larger for parallax effect */
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1) saturate(1.1);
}

.video-mute-toggle {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(44, 62, 80, 0.8);
    color: var(--pearl-white);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    z-index: 10;
}

.video-mute-toggle:hover {
    background: rgba(232, 184, 109, 0.9);
    color: var(--primary-charcoal);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(44, 62, 80, 0.4) 0%,
        rgba(74, 85, 104, 0.3) 50%,
        rgba(232, 184, 109, 0.2) 100%
    );
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: var(--pearl-white);
    max-width: 900px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.hero-line-1,
.hero-line-2 {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: heroTextReveal 1s ease forwards;
}

.hero-line-2 {
    color: var(--accent-champagne);
    animation-delay: 0.5s;
    text-shadow: 0 0 20px rgba(232, 184, 109, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 1s ease 1s forwards;
    font-weight: 300;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.3), rgba(44, 62, 80, 0.1));
    border-radius: 8px;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextReveal 1s ease 1.5s forwards;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--pure-white);
}

.scroll-arrow {
    width: 45px;
    height: 45px;
    border: 2px solid var(--accent-champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    background: rgba(232, 184, 109, 0.1);
}

.scroll-arrow:hover {
    background: var(--accent-champagne);
    color: var(--primary-charcoal);
    box-shadow: 0 0 20px rgba(232, 184, 109, 0.4);
}

@keyframes heroTextReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--gradient-charcoal);
    color: var(--pearl-white);
    padding: 100px 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(232, 184, 109, 0.1) 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 50px 30px;
    background: rgba(248, 246, 240, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(232, 184, 109, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.stat-item:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(232, 184, 109, 0.15);
    box-shadow: 0 20px 60px rgba(232, 184, 109, 0.2);
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-champagne);
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 0 15px rgba(232, 184, 109, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: var(--section-padding);
    background: var(--warm-cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-primary);
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: var(--pearl-white);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(44, 62, 80, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(232, 184, 109, 0.1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(232, 184, 109, 0.15);
    border-color: rgba(232, 184, 109, 0.3);
}

.feature-item i {
    color: var(--accent-champagne);
    font-size: 1.3rem;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-primary);
}

.about-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 27, 42, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.image-container:hover img {
    transform: scale(1.1);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
    background: var(--light-gold);
}

/* ===== VISION SECTION ===== */
.vision-section {
    padding: var(--section-padding);
    background: var(--gradient-charcoal);
    color: var(--pearl-white);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
}

.vision-item {
    text-align: center;
    padding: 60px 40px;
    background: rgba(248, 246, 240, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(232, 184, 109, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vision-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232, 184, 109, 0.15) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

.vision-item:hover::before {
    opacity: 1;
}

.vision-item:hover {
    transform: translateY(-10px);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: var(--primary-charcoal);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(232, 184, 109, 0.3);
}

.vision-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-champagne);
    position: relative;
    z-index: 1;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.project-card {
    background: var(--pearl-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(232, 184, 109, 0.1);
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(232, 184, 109, 0.2);
    border-color: rgba(232, 184, 109, 0.3);
}

.project-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.project-status {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-status.completed {
    background: #10B981;
    color: white;
}

.project-status.under-construction {
    background: #F59E0B;
    color: white;
}

.project-content {
    padding: 30px;
}

.project-title {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 10px;
}

.project-location {
    color: var(--accent-champagne);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #E5E7EB;
}

.detail-label {
    font-weight: 600;
    color: var(--text-primary);
}

.detail-value {
    color: var(--accent-champagne);
    font-weight: 500;
}

.project-progress {
    margin-bottom: 25px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E5E7EB;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-champagne);
    border-radius: 4px;
    transition: width 2s ease;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    font-weight: 600;
}

.project-btn {
    width: 100%;
    padding: 15px;
    text-align: center;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: var(--section-padding);
    background: var(--pearl-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.leader-card {
    background: var(--pearl-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(44, 62, 80, 0.08);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(232, 184, 109, 0.1);
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(232, 184, 109, 0.15);
    border-color: rgba(232, 184, 109, 0.3);
}

.leader-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.leader-card:hover .leader-overlay {
    opacity: 1;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: var(--accent-champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-charcoal);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--soft-copper);
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(232, 184, 109, 0.3);
}

.leader-content {
    padding: 30px;
}

.leader-name {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 5px;
}

.leader-title {
    color: var(--accent-champagne);
    font-weight: 600;
    margin-bottom: 5px;
}

.leader-experience {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    opacity: 0.9;
    margin-bottom: 20px;
}

.leader-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    padding: 8px 14px;
    background: rgba(232, 184, 109, 0.1);
    color: var(--accent-champagne);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(232, 184, 109, 0.2);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--accent-champagne);
    color: var(--primary-charcoal);
    border: none;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(232, 184, 109, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--soft-copper);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(232, 184, 109, 0.4);
}

/* ===== RESPONSIVE DESIGN PREVIEW ===== */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .leadership-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Responsive section spacing */
    section {
        padding: 60px 0; /* Reduced padding for mobile */
    }
    
    .stats-section {
        padding: 40px 0; /* Even more reduced for stats */
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 2.5rem); /* Smaller titles on mobile */
    }
    
    section[id] {
        scroll-margin-top: 80px; /* Adjust for mobile header */
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-navy);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 50px 0;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-details {
        grid-template-columns: 1fr;
    }
}

/* ===== STORYLINE SECTIONS ===== */
.story-stage {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.story-stage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(248, 246, 240, 0.05) 0%, 
        rgba(44, 62, 80, 0.02) 100%);
    z-index: 0;
}

.story-stage:nth-child(even) {
    background: var(--warm-cream);
}

.story-stage .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.story-stage .container.reverse {
    grid-template-columns: 1fr 1fr;
}

.story-content {
    position: relative;
}

.story-content.reverse {
    order: 2;
}

.story-visual.reverse {
    order: 1;
}

.stage-number {
    font-family: var(--font-primary);
    font-size: 8rem;
    font-weight: 200;
    color: var(--accent-champagne);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 0;
}

.stage-content {
    position: relative;
    z-index: 1;
}

.stage-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 25px;
    line-height: 1.1;
}

.stage-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 400;
}

.stage-highlight {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(232, 184, 109, 0.1);
    border-left: 4px solid var(--accent-champagne);
    border-radius: 8px;
}

.stage-highlight i {
    color: var(--accent-champagne);
    font-size: 1.2rem;
}

.stage-highlight span {
    font-weight: 600;
    color: var(--primary-charcoal);
}

.stage-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--primary-charcoal);
    color: var(--pearl-white);
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-badge i {
    font-size: 1rem;
}

.vision-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px 15px;
    background: rgba(44, 62, 80, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(232, 184, 109, 0.2);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-champagne);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.future-elements {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.element-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--accent-champagne), var(--soft-copper));
    color: var(--pearl-white);
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(232, 184, 109, 0.3);
}

.element-item i {
    font-size: 1.2rem;
}

.visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(44, 62, 80, 0.15);
    transform: translateZ(0);
}

.visual-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(232, 184, 109, 0.1) 0%, 
        rgba(44, 62, 80, 0.2) 100%);
}

.story-stage:hover .visual-container img {
    transform: scale(1.05);
}

/* Responsive Storyline */
@media (max-width: 768px) {
    .story-stage {
        padding: 80px 0;
    }
    
    .story-stage .container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-content,
    .story-visual {
        order: unset !important;
    }
    
    .stage-number {
        font-size: 5rem;
        top: -20px;
        left: -10px;
    }
    
    .stage-title {
        font-size: 2.2rem;
    }
    
    .stage-text {
        font-size: 1.1rem;
    }
    
    .vision-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stage-features {
        justify-content: center;
    }
    
    .future-elements {
        justify-content: center;
    }
    
    .visual-container img {
        height: 350px;
    }
}

/* ===== MODERN LEADERSHIP FLIP CARDS ===== */
.leadership-section {
    background: var(--warm-cream);
    position: relative;
}

.leadership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(232, 184, 109, 0.03) 0%, 
        rgba(44, 62, 80, 0.05) 100%);
    z-index: 0;
}

.leadership-section .container {
    position: relative;
    z-index: 1;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 500px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, 
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(44, 62, 80, 0.15);
    overflow: hidden;
}

.flip-card-front {
    background: var(--pearl-white);
    border: 1px solid rgba(232, 184, 109, 0.2);
}

.flip-card-back {
    background: linear-gradient(135deg, var(--primary-charcoal) 0%, var(--secondary-slate) 100%);
    color: var(--pearl-white);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.leader-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.flip-card:hover .leader-photo {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(44, 62, 80, 0.4) 100%);
}

.leader-front-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 200px;
}

.leader-front-content .leader-name {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-charcoal);
    margin-bottom: 8px;
}

.leader-front-content .leader-title {
    color: var(--accent-champagne);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.experience-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(232, 184, 109, 0.1);
    border: 1px solid var(--accent-champagne);
    border-radius: 25px;
    color: var(--primary-charcoal);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.experience-badge i {
    color: var(--accent-champagne);
}

.flip-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.flip-card:hover .flip-indicator {
    color: var(--accent-champagne);
    transform: translateX(5px);
}

.flip-indicator i {
    transition: transform 0.3s ease;
}

.flip-card:hover .flip-indicator i {
    transform: translateX(5px);
}

.leader-back-content {
    text-align: center;
    width: 100%;
}

.leader-back-content .leader-name {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--pearl-white);
    margin-bottom: 25px;
}

.leader-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(254, 254, 254, 0.9);
    margin-bottom: 30px;
}

.leader-expertise {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(232, 184, 109, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--accent-champagne);
}

.expertise-item i {
    color: var(--accent-champagne);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.expertise-item span {
    font-weight: 500;
    color: var(--pearl-white);
}

.flip-card-back .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.flip-card-back .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--accent-champagne);
    color: var(--primary-charcoal);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.flip-card-back .social-link:hover {
    background: var(--pearl-white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 184, 109, 0.4);
}

/* Responsive Leadership Cards */
@media (max-width: 768px) {
    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .flip-card {
        height: 450px;
    }
    
    .leader-image-wrapper {
        height: 250px;
    }
    
    .leader-front-content {
        padding: 25px;
        height: 200px;
    }
    
    .leader-back-content {
        padding: 30px;
    }
    
    .leader-back-content .leader-name {
        font-size: 1.5rem;
    }
    
    .leader-description {
        font-size: 1rem;
    }
}