/* CSS Version: 2025-08-22 - Force Refresh */
/* CSS Variables */
:root {
    /* Background Foundation */
    --primary-bg: #0a1929;      /* Deep navy */
    --secondary-bg: #1a2f3f;    /* Rich blue */
    --deep-charcoal: #0d1117;   /* Deep charcoal */
    --rich-navy: #0f1419;       /* Rich navy */
    
    /* Text Colors */
    --text-primary: #ffffff;     /* Pure white */
    --text-secondary: #e2e8f0;  /* Light blue-gray */
    --text-muted: #94a3b8;      /* Muted blue-gray */
    
    /* Bronze & Copper Accents */
    --accent: #a67c52;          /* Complementary bronze */
    --accent-hover: #8b6b47;    /* Darker complementary bronze */
    --gold-light: #b08d57;      /* Primary bronze */
    --gold-dark: #8b6b47;       /* Darker bronze */
    --royal-gold: #7a5c3e;      /* Deep bronze */
    --gold-complement: #d2b48c;  /* Complementary tan */
    --warm-copper: #c19a6b;     /* Warm tan */
    --deep-bronze: #6b4423;     /* Rich dark brown */
    --sage-light: #9cafc8;      /* Light slate-blue */
    --sage-dark: #7a8cac;       /* Medium slate */
    --cream: #f5f1e8;           /* Cream accent */
    
    /* Blue Accents */
    --blue-accent: #6b7c8c;     /* Muted slate */
    --steel-blue: #8c9cac;      /* Light slate */
    --blue-muted: #4a5a6b;      /* Dark slate */
    
    /* UI Elements */
    --bg-card: rgba(26, 47, 63, 0.9);           /* Blue-tinted cards */
    --border-light: rgba(205, 127, 50, 0.15);   /* Bronze borders */
    --border-gold: rgba(176, 141, 87, 0.3);     /* New bronze borders */
    --shadow-gold: rgba(176, 141, 87, 0.1);     /* New bronze shadows */
    --shadow-blue: rgba(107, 124, 140, 0.1);    /* Slate shadows */
}

/* Simple Logo Tinting System */
.logo {
    filter: sepia(0.8) saturate(1.5) hue-rotate(20deg) brightness(0.9) contrast(1.2);
    transition: filter 0.3s ease;
}

.logo:hover {
    filter: sepia(1.0) saturate(2.0) hue-rotate(25deg) brightness(1.0) contrast(1.3);
}

/* Bronze tinting */
.logo-bronze {
    filter: sepia(0.9) saturate(2.0) hue-rotate(15deg) brightness(0.8) contrast(1.3);
}

/* Slate tinting */
.logo-slate {
    filter: sepia(0.7) saturate(1.8) hue-rotate(200deg) brightness(0.8) contrast(1.3);
}

/* Gold tinting */
.logo-gold {
    filter: sepia(1.0) saturate(2.2) hue-rotate(10deg) brightness(0.85) contrast(1.4);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--rich-navy) 25%, var(--primary-bg) 50%, var(--secondary-bg) 100%);
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(205, 127, 50, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(30, 58, 138, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Typography Refinement - Optimized for Oswald */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
}

h1 {
    font-weight: 500;
}

h2 {
    font-weight: 400;
}

p {
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

/* Hero Hamburger */
.hero .hamburger {
    position: absolute;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: rgba(0, 0, 0, 0.1);
    padding: 8px;
    border-radius: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.hamburger:hover span {
    background: var(--gold-light);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    transform: scaleX(1.1);
}

/* Hamburger Dropdown */
.hamburger {
    position: relative;
}

.hamburger-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(205, 127, 50, 0.3);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.hamburger-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(205, 127, 50, 0.1);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background: rgba(205, 127, 50, 0.1);
    color: var(--gold-light);
    padding-left: 2rem;
}

/* Hero Section */
.hero {
    padding: 4rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/lionheart-innovation-768x768.png');
    background-size: cover;
    background-repeat: no-repeat;
    /* JavaScript will control all background positioning */
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
    /* JavaScript will handle all positioning to prevent jumping */
}

/* Hero Container - Increased Width */
.hero-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* General Container Styles */
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Target Audience Section */
.target-audience {
    margin-top: 4rem;
    padding: 2rem 0;
}

/* Sponsored By Section */
.sponsored-by {
    padding: 3rem 0;
    background: transparent;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.sponsored-by .container {
    padding: 0;
}

.sponsored-content {
    text-align: center;
    padding: 0;
    margin: 0;
}

.sponsored-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.sponsor-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
    align-items: center;
    justify-items: center;
}

.sponsor-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.sponsor-logo:hover {
    transform: scale(1.05);
}

.sponsor-image {
    width: 160px;
    height: 110px;
    object-fit: contain;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

.sponsor-image:hover {
    filter: brightness(1) contrast(1.2);
}

.sponsor-logo.featured {
    transform: scale(1.3);
}

.sponsor-image.featured {
    transform: scale(1.4);
}

/* Sponsored By Section - Configured for exactly 4 logos */
.sponsor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    flex-wrap: nowrap;
}



@media (max-width: 768px) {
    .sponsor-logos {
        gap: 1.5rem;
        flex-direction: column;
    }
    
    .sponsored-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .sponsor-image {
        width: 140px;
        height: 95px;
    }
    
    .sponsor-logo.featured {
        transform: scale(1.2);
    }
    
    .sponsor-image.featured {
        transform: scale(1.3);
    }
}

/* Video Section Styles */
.video-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-card) 100%);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(205, 127, 50, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(205, 127, 50, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.video-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(205, 127, 50, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 8s ease-in-out infinite;
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.video-header {
    margin-bottom: 4rem;
}

.video-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 300;
    margin-top: 1rem;
    opacity: 0.8;
}

.video-container {
    margin-bottom: 4rem;
}

.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.video-placeholder {
    position: relative;
    width: 800px;
    height: 450px;
    max-width: 100%;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-dark) 100%);
    border: 2px solid var(--border-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    margin: 0 auto;
}

.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-radius: 14px;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    min-width: 0;
    min-height: 0;
}

.video-placeholder:hover .thumbnail-image {
    transform: scale(1.05);
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(205, 127, 50, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.video-placeholder:hover::before {
    transform: translateX(100%);
}

.video-placeholder:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-light);
    box-shadow: 0 20px 40px rgba(205, 127, 50, 0.2);
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 2rem;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.play-button svg {
    width: 32px;
    height: 32px;
    margin-left: 4px;
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.4);
}

/* Responsive video placeholder */
@media (max-width: 1024px) {
    .video-placeholder {
        width: 600px;
        height: 338px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .video-placeholder {
        width: 100%;
        height: 250px;
        max-width: 400px;
        min-width: 280px;
        margin: 0 auto;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .video-placeholder {
        width: 100%;
        height: 200px;
        max-width: 100%;
        min-width: 250px;
        margin: 0 auto;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .play-button svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 360px) {
    .video-placeholder {
        width: 100%;
        height: 180px;
        max-width: 100%;
        min-width: 200px;
        margin: 0 auto;
    }
    
    .play-button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .play-button svg {
        width: 18px;
        height: 18px;
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold-light);
    border-radius: 50%;
    animation: videoPulse 2s ease-in-out infinite;
}

.video-caption {
    margin-top: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.7;
}

.video-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-light);
    background: rgba(205, 127, 50, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-size: 1.5rem;
}

.feature-item h4 {
    color: var(--gold-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 300;
}

/* Video Section Animations */
@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes videoPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-placeholder {
        width: 100%;
        max-width: 500px;
        height: 281px;
    }
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .play-button svg {
        width: 24px;
        height: 24px;
    }
}

/* Sponsor Logos Section */
.sponsors-content {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sponsors-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    letter-spacing: 0.5px;
}

.sponsors-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
}

.sponsors-track {
    display: flex;
    animation: scrollSponsors 30s linear infinite;
    width: max-content;
}

.sponsor-logo {
    flex-shrink: 0;
    margin: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-width: 180px;
    height: 120px;
}

.sponsor-logo:hover {
    transform: translateY(-8px) scale(1.05);
}

.sponsor-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.9) contrast(0.8) saturate(0.7);
    transition: all 0.3s ease;
    opacity: 0.8;
}

.sponsor-logo:hover .sponsor-image {
    filter: brightness(1.1) contrast(1.1) saturate(1.2);
    opacity: 1;
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}

/* Sponsor Section Responsive */
@media (max-width: 768px) {
    .sponsor-logo {
        margin: 0 2rem;
        min-width: 140px;
        height: 90px;
    }
    
    .sponsors-track {
        animation-duration: 20s;
    }
    
    .sponsors-title {
        font-size: 1.5rem;
    }
}

/* Event Page Styles */
.event-info-slider {
    padding: 4rem 0;
    background: transparent;
    border-top: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.slider-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.nav-btn {
    background: transparent;
    border: 2px solid var(--border-light);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-btn:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
    transform: translateY(-2px);
}

.nav-btn.active {
    background: var(--gold-light);
    border-color: var(--gold-light);
    color: var(--bg-dark);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.slider-content {
    position: relative;
    min-height: 600px;
    padding: 2rem 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    z-index: 2;
}

.slide.sliding-left {
    opacity: 0;
    transform: translateX(-100%);
    z-index: 1;
}

.slide.sliding-right {
    opacity: 0;
    transform: translateX(100%);
    z-index: 1;
}

.expectations-grid,
.attendees-grid,
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.expectation-item,
.attendee-category,
.reason-item {
    background: var(--bg-dark);
    padding: 2rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expectation-item:hover,
.attendee-category:hover,
.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--gold-light);
}

.expectation-item h3,
.attendee-category h3,
.reason-item h3 {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.expectation-item p,
.attendee-category p,
.reason-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* Tablet breakpoint for event grids */
@media (max-width: 1024px) {
    .expectations-grid,
    .attendees-grid,
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .slider-content {
        min-height: 700px;
        padding: 3rem 0;
    }
    
    .expectations-grid,
    .attendees-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }
    
    .expectation-item,
    .attendee-category,
    .reason-item {
        min-height: 100px;
        padding: 1.5rem 1.5rem;
    }
}

/* About Us Page Styles */
.main-nav {
    background: rgba(10, 25, 41, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(205, 127, 50, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* About Hero Section */
.about-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--rich-navy) 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(205, 127, 50, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(30, 58, 138, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 6rem 0;
    background: transparent;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--accent), var(--royal-gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mission-card:hover::before,
.vision-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mission-card h2,
.vision-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.mission-card p,
.vision-card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Company Story Section */
.company-story {
    padding: 6rem 0;
    background: transparent;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

.story-text p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    letter-spacing: 0.01em;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 0.9rem;
}

/* Core Values Section */
.core-values {
    padding: 6rem 0;
    background: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Leadership Section */
.leadership {
    padding: 6rem 0;
    background: transparent;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.leader-photo {
    margin-bottom: 1.5rem;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto;
    color: var(--accent);
}

.leader-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.leader-title {
    color: var(--accent);
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.leader-bio {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: transparent;
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.approach-step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold-light), var(--accent));
    color: var(--text-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0 auto 1.5rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--text-primary);
}

.approach-step p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-charcoal) 0%, var(--rich-navy) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 300;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.btn-primary {
    background: var(--accent);
    color: var(--text-primary);
    border: 1px solid var(--accent);
}

.btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-gold);
}

.btn-secondary:hover {
    background: rgba(205, 127, 50, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.2);
}

/* Footer */
.footer {
    background: var(--deep-charcoal);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-muted);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .about-hero-title {
        font-size: 3rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
    grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    align-items: center;
}

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expectations-grid,
    .attendees-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
}

.vision-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.vision-line {
    width: 100px;
    height: 1px;
    background: var(--text-secondary);
    margin: 0 auto 3rem;
    opacity: 0.6;
}

.vision-line:last-of-type {
    margin: 3rem auto 0;
}

.vision-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
    text-transform: uppercase;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.audience-item {
    text-align: center;
    padding: 1.5rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.audience-item:hover {
    background: rgba(205, 127, 50, 0.08);
    border: 1px solid rgba(205, 127, 50, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.15);
}

.audience-item:hover .audience-icon {
    color: var(--gold-light);
    filter: drop-shadow(0 0 12px rgba(205, 127, 50, 0.4));
    transform: scale(1.05);
    opacity: 1;
}

.audience-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--accent);
    filter: drop-shadow(0 0 8px rgba(205, 127, 50, 0.2));
    transition: all 0.3s ease;
    opacity: 0.8;
}

.audience-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.audience-label {
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent);
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* Responsive Design for Audience Grid */
@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .audience-item {
        padding: 1rem;
    }
    
    .audience-icon {
        width: 40px;
        height: 40px;
    }
    
    .audience-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(205, 127, 50, 0.008) 0%, transparent 40%),
        radial-gradient(circle at 70% 80%, rgba(30, 58, 138, 0.005) 0%, transparent 40%);
    z-index: -1;
    filter: blur(8px);
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            rgba(10, 25, 41, 0.95) 0%, 
            rgba(26, 47, 63, 0.93) 50%, 
            rgba(10, 25, 41, 0.95) 100%);
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(205, 127, 50, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(30, 58, 138, 0.05) 0%, transparent 50%);
    z-index: -1;
    filter: blur(2px);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: translateZ(0);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    text-align: center;
    backface-visibility: hidden;
    will-change: transform;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, 
        rgba(205, 127, 50, 0.05) 0%, 
        rgba(30, 58, 138, 0.03) 50%, 
        rgba(205, 127, 50, 0.05) 100%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(20px);
    transform: translateZ(-10px);
}

.hero-presenter {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--gold-light);
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(205, 127, 50, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    position: relative;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 0 40px rgba(205, 127, 50, 0.2),
        0 10px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    transform: translateZ(20px);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--accent), var(--royal-gold));
    border-radius: 1px;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-weight: 300;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0.025em;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--accent) 50%, var(--royal-gold) 100%);
    color: var(--deep-charcoal);
    font-weight: 400;
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.3), 0 0 0 1px rgba(205, 127, 50, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::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.6s ease;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(205, 127, 50, 0.4), 0 0 0 2px rgba(205, 127, 50, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(205, 127, 50, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: var(--accent);
    color: var(--deep-charcoal);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(205, 127, 50, 0.3);
}

.hero-image {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.hero-image-placeholder {
    width: 300px;
    height: 200px;
    background: linear-gradient(135deg, var(--deep-blue), var(--royal-blue));
    border: 2px solid var(--gold-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--gold-light), var(--gold-dark), var(--gold-light));
    border-radius: 14px;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes float3D {
    0%, 100% {
        transform: translateZ(0) translateY(0px) rotateX(0deg);
    }
    50% {
        transform: translateZ(10px) translateY(-10px) rotateX(2deg);
    }
}

.hero-content {
    animation: float3D 8s ease-in-out infinite;
}

/* Sections */
section {
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 5rem;
    font-weight: 300;
    position: relative;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-light), var(--accent), var(--royal-gold));
    border-radius: 1px;
    box-shadow: 0 0 15px rgba(205, 127, 50, 0.3);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 1px;
    background: var(--border-gold);
    border-radius: 0.5px;
}

/* About Section */
.about {
    background: var(--bg-card);
    padding: 4rem 0;
    border-top: 1px solid var(--border-light);
}

/* Team Section Styles */
.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    height: 400px;
    perspective: 1000px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.team-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

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

.team-card-front,
.team-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 2rem;
    border-radius: 16px;
}

.team-card-front {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border-light);
}

.team-card-back {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid var(--gold-light);
    transform: rotateY(180deg);
}

.team-photo {
    position: relative;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.team-headshot {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;
    border: 3px solid var(--border-light);
    transition: all 0.4s ease;
}

.team-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--border-light);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold-light);
    background: rgba(15, 23, 42, 0.8);
    margin: 0 auto;
}

.team-card:hover .team-headshot {
    border-color: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
}

.team-card:hover .team-placeholder {
    border-color: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(176, 141, 87, 0.3);
    background: rgba(15, 23, 42, 1);
}

.expertise-badge {
    position: relative;
    background: var(--gold-light);
    color: var(--bg-dark);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 70px;
    text-align: center;
    margin-top: 0.5rem;
}

.team-card:hover .expertise-badge {
    transform: translateY(-50%) scale(1.1) !important;
    background: #b8860b !important;
    box-shadow: 0 2px 10px rgba(218, 165, 32, 0.4) !important;
}

.team-name {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

.team-role {
    color: var(--text-primary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    max-width: 200px;
}

.team-focus {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-bottom: 0;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
    max-width: 200px;
}

.team-expertise {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
}

.team-card-back .team-expertise {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-weight: 300;
    text-align: left;
    max-height: 300px;
    overflow-y: auto;
    padding: 0 0.5rem;
    margin-top: 1rem;
}

.team-card-back .team-expertise::-webkit-scrollbar {
    width: 4px;
}

.team-card-back .team-expertise::-webkit-scrollbar-track {
    background: rgba(176, 141, 87, 0.1);
    border-radius: 2px;
}

.team-card-back .team-expertise::-webkit-scrollbar-thumb {
    background: var(--gold-light);
    border-radius: 2px;
}

.team-card-back .team-expertise::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.team-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.team-description p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* Tablet Responsiveness for Team Section */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsiveness for Team Section */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-card {
        padding: 1.5rem;
    }
    
    .team-headshot {
        width: 100px;
        height: 100px;
    }
    
    .expertise-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .team-name {
        font-size: 1.2rem;
    }
    
    .team-role {
        font-size: 0.9rem;
    }
    
    .team-expertise {
        font-size: 0.9rem;
    }
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.about-cta {
    text-align: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.event-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 600px;
}

.event-detail-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.event-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: var(--gold-light);
}

.event-detail-item h3 {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-detail-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .event-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.about-quote {
    font-size: 2rem;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 2rem;
    font-weight: 300;
    line-height: 1.4;
}



.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat:hover::before {
    transform: scaleX(1);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat h3 {
    font-size: 3rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.stat p {
    color: var(--text-secondary);
    font-weight: 300;
}

/* Services Section */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-light), var(--accent), var(--royal-gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--border-gold);
    background: rgba(26, 26, 26, 0.95);
}

.service-card.highlighted {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gold-light);
    background: rgba(26, 26, 26, 0.95);
    border-color: var(--gold-light);
    animation: pulse 2s ease-in-out;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gold-light); }
    50% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 3px var(--gold-light), 0 0 20px rgba(251, 191, 36, 0.4); }
}

.service-card h3 {
    margin-bottom: 1rem;
    font-weight: 400;
}

.service-card p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
}

/* Contact Section */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}



.contact-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 300;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(15, 23, 42, 0.5);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-light);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
/* Mission & Values Section */
.mission-values {
    padding: 4rem 2rem;
    background: var(--bg-card);
    border-radius: 16px;
    margin: 2rem auto;
    max-width: 1200px;
}

.mission-section {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background: rgba(176, 141, 87, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    position: relative;
}



.values-section {
    margin-top: 2rem;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    color: var(--gold-light);
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.5;
    fill: none;
}

.value-card:hover .value-icon {
    color: var(--gold-dark);
    transform: scale(1.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: rgba(15, 23, 42, 0.6);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--border-gold);
}

.value-card h3 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 500;
    height: 3rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* What We Do Section */
.what-we-do {
    padding: 4rem 2rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
    filter: grayscale(0.3) brightness(1.1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    filter: grayscale(0) brightness(1.3);
    transform: scale(1.1);
}

/* Removed conflicting services-grid rule */

.service-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
        text-align: center;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--border-gold);
}

.service-card h3 {
    color: var(--gold-light);
    margin-bottom: 1rem;
    font-weight: 500;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer {
    background: var(--navy-blue);
    border-top: 1px solid var(--border-light);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo h3 {
    margin: 0;
    font-weight: 400;
}

.footer-logo p {
    color: var(--text-secondary);
    font-weight: 300;
    margin: 0;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-weight: 400;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
        justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent);
    color: var(--bg-card);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(205, 127, 50, 0.4);
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Social Media Specific Colors */
.social-link.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-link.x-twitter:hover {
    background: #000000;
    border-color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #dc2743;
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-weight: 300;
}

/* Back to Top Button */
.back-to-top {
        position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--bg-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    font-weight: 400;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Tablet Breakpoint */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}


