/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== CSS VARIABLES ===== */
:root {
    /* Foundation Brand Colors */
    --primary-wine: #722f37;
    --primary-purple: #6b46c1;
    --primary-gold: #f59e0b;
    --primary-white: #ffffff;
    
    /* Trust Colors */
    --trust-blue: #1e40af;
    --trust-silver: #94a3b8;
    --trust-dark-blue: #1e3a8a;
    
    /* Neutral Colors */
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --background-light: #f8fafc;
    --background-gray: #f1f5f9;
    --border-light: #e5e7eb;
    --border-medium: #d1d5db;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-purple) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--trust-blue) 0%, var(--primary-purple) 100%);
    --gradient-gold: linear-gradient(135deg, var(--primary-gold) 0%, #fbbf24 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --element-spacing: 2rem;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ===== LAYOUT COMPONENTS ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.section-title {
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-wine), var(--primary-purple));
    margin: 1rem auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.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;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #8b3a42 0%, #7c3aed 100%);
}

.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #1d4ed8 0%, #7c3aed 100%);
}

.btn-outline {
    background: transparent;
    color: var(--primary-wine);
    border: 2px solid var(--primary-wine);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: var(--primary-wine);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--text-primary);
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    border-radius: 16px;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-icon {
    padding: 0.75rem;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    justify-content: center;
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-wine);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-wine);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-wine);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.language-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-medium);
    border-radius: 12px;
    background: var(--primary-white);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    min-width: 120px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.language-select:hover {
    border-color: var(--primary-wine);
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.language-select:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.language-flag {
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-right: 0.5rem;
    border-radius: 2px;
    background-size: cover;
    background-position: center;
    vertical-align: middle;
}

.flag-en { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3crect width='60' height='30' fill='%23012169'/%3e%3cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3e%3cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='4'/%3e%3cpath d='M30,0 L30,30 M0,15 L60,15' stroke='%23fff' stroke-width='10'/%3e%3cpath d='M30,0 L30,30 M0,15 L60,15' stroke='%23C8102E' stroke-width='6'/%3e%3c/svg%3e"); }
.flag-fr { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3crect width='20' height='30' fill='%23002395'/%3e%3crect x='20' width='20' height='30' fill='%23fff'/%3e%3crect x='40' width='20' height='30' fill='%23ED2939'/%3e%3c/svg%3e"); }
.flag-it { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3crect width='20' height='30' fill='%23009246'/%3e%3crect x='20' width='20' height='30' fill='%23fff'/%3e%3crect x='40' width='20' height='30' fill='%23CE2B37'/%3e%3c/svg%3e"); }
.flag-lg { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3crect width='60' height='5' fill='%23000'/%3e%3crect y='5' width='60' height='5' fill='%23FCDC04'/%3e%3crect y='10' width='60' height='5' fill='%23D90000'/%3e%3crect y='15' width='60' height='5' fill='%23000'/%3e%3crect y='20' width='60' height='5' fill='%23FCDC04'/%3e%3crect y='25' width='60' height='5' fill='%23D90000'/%3e%3c/svg%3e"); }
.flag-af { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3e%3crect width='60' height='5' fill='%23000'/%3e%3crect y='5' width='60' height='5' fill='%23001489'/%3e%3crect y='10' width='60' height='5' fill='%23fff'/%3e%3crect y='15' width='60' height='5' fill='%23FFB612'/%3e%3crect y='20' width='60' height='5' fill='%23DE3831'/%3e%3crect y='25' width='60' height='5' fill='%23007A4D'/%3e%3c/svg%3e"); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-normal);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%) !important;
}

.hero-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: -2 !important;
}

.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(255, 215, 0, 0.1) 30%, rgba(114, 47, 55, 0.7) 70%, rgba(107, 70, 193, 0.6) 100%) !important;
    z-index: 1 !important;
}

.hero-video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.3 !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: var(--primary-white) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    animation: fadeInUp 1.2s ease-out !important;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem) !important;
    font-weight: 800 !important;
    margin-bottom: 2rem !important;
    margin-top: 3rem !important;
    line-height: 1.1 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
    letter-spacing: -0.02em !important;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    font-weight: 900 !important;
    display: inline-block !important;
    animation: shimmer 3s ease-in-out infinite !important;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem) !important;
    margin-bottom: 3rem !important;
    opacity: 0.95 !important;
    line-height: 1.7 !important;
    color: #f8f9fa !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-actions {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    margin-bottom: 4rem !important;
    flex-wrap: wrap !important;
}

.hero-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 4rem !important;
    flex-wrap: wrap !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border-radius: 20px !important;
    padding: 2rem 3rem !important;
    border: 1px solid rgba(255, 215, 0, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
}

.stat {
    text-align: center !important;
    position: relative !important;
    padding: 1rem !important;
}

.stat::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #DAA520, #FFD700) !important;
    border-radius: 2px !important;
}

.stat-number {
    display: block !important;
    font-size: clamp(2.5rem, 4vw, 3.5rem) !important;
    font-weight: 900 !important;
    color: #FFD700 !important;
    margin-bottom: 0.5rem !important;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 50%, #FFA500 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    animation: pulse 2s ease-in-out infinite !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 1rem !important;
    opacity: 1 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5) !important;
}

/* ===== HERO BANNERS SECTION ===== */
.hero-banners {
    position: relative;
    height: 70vh;
    overflow: hidden;
    background: #000;
}

.banner-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.7) 0%, rgba(107, 70, 193, 0.6) 100%);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--primary-white);
    max-width: 800px;
    padding: 2rem;
    animation: fadeInUp 1s ease-out;
}

.banner-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--primary-white);
}

.banner-content p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    color: #f8f9fa;
}

.banner-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner-dot.active,
.banner-dot:hover {
    background: var(--primary-white);
    border-color: var(--primary-white);
    transform: scale(1.2);
}

.banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--primary-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.banner-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev {
    left: 30px;
}

.banner-next {
    right: 30px;
}

/* ===== QUICK LINKS SECTION ===== */
.quick-links {
    padding: 5rem 0;
    background: var(--background-light);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quick-link-card {
    background: var(--primary-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.quick-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 2rem;
}

.quick-link-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.quick-link-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.card-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.card-link:hover {
    color: #f0f0f0;
}

/* ===== MISSION SECTION ===== */
.mission {
    padding: 5rem 0;
}

.mission h2 {
    color: #1f2937;
    font-weight: 700;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    text-align: left;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-statement {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.mission-pillars {
    display: grid;
    gap: 1.5rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-wine);
}

.pillar i {
    font-size: 1.5rem;
    color: var(--primary-wine);
    min-width: 24px;
}

.pillar h4 {
    margin-bottom: 0.25rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.pillar p {
    margin: 0;
    font-size: 1rem;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.mission-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* ===== APP DOWNLOAD SECTION ===== */
.app-download {
    padding: 5rem 0;
    background: var(--background-gray);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-features {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--primary-white);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.feature i {
    color: var(--primary-wine);
    font-size: 1.25rem;
    min-width: 20px;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.download-btn img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-fast);
}

.download-btn:hover img {
    transform: scale(1.05);
}

.app-mockup {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    display: block;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    padding: 5rem 0;
    text-align: center;
    background: var(--background-light);
}

.partners h2 {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.partners p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    align-items: center;
}

.partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    background: var(--primary-white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
    transform: translateY(0);
    animation: fadeInUp 0.6s ease-out forwards;
}

.partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partner-logo:nth-child(5) { animation-delay: 0.5s; }
.partner-logo:nth-child(6) { animation-delay: 0.6s; }
.partner-logo:nth-child(7) { animation-delay: 0.7s; }
.partner-logo:nth-child(8) { animation-delay: 0.8s; }
.partner-logo:nth-child(9) { animation-delay: 0.9s; }
.partner-logo:nth-child(10) { animation-delay: 1.0s; }
.partner-logo:nth-child(11) { animation-delay: 1.1s; }
.partner-logo:nth-child(12) { animation-delay: 1.2s; }

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.partner-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-wine), var(--primary-purple));
    padding: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.partner-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gold), var(--primary-wine), var(--primary-purple));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.partner-logo:hover .partner-image::before {
    opacity: 1;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: var(--primary-white);
}

.partner-logo:hover .partner-image img {
    transform: scale(1.1);
}

.partner-name {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.partner-logo:hover .partner-name {
    color: var(--primary-wine);
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(139, 69, 19, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(139, 69, 19, 0.6), 0 0 30px rgba(139, 69, 19, 0.4);
    }
}

/* Enhanced continuous animations */
.partner-logo {
    animation: fadeInUp 0.6s ease-out forwards, 
               float 3s ease-in-out infinite,
               pulse 6s ease-in-out infinite;
}

.partner-logo:hover {
    animation: float 3s ease-in-out infinite,
               glow 2s ease-in-out infinite;
}

.partner-image::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(255, 215, 0, 0.4), 
        transparent, 
        rgba(139, 69, 19, 0.4), 
        transparent);
    background-size: 400% 400%;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: shimmer 3s linear infinite;
    z-index: -1;
}

.partner-logo:hover .partner-image::after {
    opacity: 1;
}

.partners-cta {
    margin-top: 3rem;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 4rem 0;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-align: center;
}

.newsletter-content h2 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    background: var(--primary-white);
    color: var(--text-primary);
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.form-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-purple) 100%);
    color: var(--primary-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.page-header-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.page-header-content p {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ===== HISTORY & PURPOSE SECTION ===== */
.history-purpose {
    padding: 7rem 0;
    background: var(--primary-white);
    position: relative;
}

.history-purpose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, rgba(114, 47, 55, 0.02) 50%, transparent 51%);
    pointer-events: none;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.content-text h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    position: relative;
}

.content-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.content-text .lead {
    font-size: clamp(1.25rem, 2.5vw, 1.375rem);
    color: var(--primary-wine);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 400;
}

.content-visual {
    position: relative;
}

.history-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: transform var(--transition-normal);
}

.history-image:hover {
    transform: scale(1.02);
}

/* ===== MISSION, VISION, VALUES SECTION ===== */
.mission-vision {
    padding: 7rem 0;
    background: var(--background-light);
    position: relative;
}

.mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(114, 47, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.mvv-card {
    background: var(--primary-white);
    padding: 3.5rem 3rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.mvv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

.mvv-card h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
}

.mvv-card p {
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    font-weight: 400;
}

.objectives-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.objectives-list li {
    padding: 0.875rem 0;
    color: var(--text-primary);
    position: relative;
    padding-left: 2rem;
    line-height: 1.7;
    font-size: 1.125rem;
    font-weight: 400;
}

.objectives-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.875rem;
    color: var(--primary-wine);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===== FOUNDER MESSAGE SECTION ===== */
.founder-message {
    padding: 7rem 0;
    background: var(--primary-white);
    position: relative;
}

.founder-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(114, 47, 55, 0.02) 0%, transparent 30%, rgba(107, 70, 193, 0.02) 100%);
    pointer-events: none;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.founder-image {
    position: relative;
    text-align: center;
}

.founder-photo {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid var(--primary-white);
    position: relative;
    z-index: 2;
    transition: transform var(--transition-normal);
}

.founder-photo:hover {
    transform: scale(1.05);
}

.founder-quote-mark {
    position: absolute;
    top: -25px;
    right: 15px;
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 3;
}

.founder-text h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: clamp(2.25rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
}

.founder-text h3 {
    color: var(--primary-wine);
    margin-bottom: 0.5rem;
    font-size: clamp(1.375rem, 2.5vw, 1.625rem);
    font-weight: 600;
}

.founder-title {
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 500;
}

.founder-quote {
    font-size: clamp(1.25rem, 2.5vw, 1.375rem);
    color: var(--primary-wine);
    font-style: italic;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--background-light);
    border-left: 4px solid var(--primary-wine);
    border-radius: 0 12px 12px 0;
    position: relative;
    font-weight: 500;
    line-height: 1.7;
}

.founder-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 400;
}

.founder-signature {
    margin-top: 2rem;
}

.signature {
    height: 60px;
    opacity: 0.8;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership {
    padding: 7rem 0;
    background: var(--background-light);
    position: relative;
}

.leadership::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(114, 47, 55, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(107, 70, 193, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.leader-card {
    background: var(--primary-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    transform: translateY(0);
}

.leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-info {
    padding: 2rem;
}

.leader-info h4 {
    color: #1f2937 !important;
    margin-bottom: 0.5rem;
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    font-weight: 700;
    line-height: 1.3;
}

.leader-title {
    color: var(--primary-wine) !important;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.leader-bio {
    color: #1f2937 !important;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    font-weight: 400;
}

.leader-social {
    display: flex;
    gap: 1rem;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.leader-social a:hover {
    background: var(--primary-wine);
    color: var(--primary-white);
    transform: translateY(-2px);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--primary-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--primary-white);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}
/* ===== PROGRAMS PAGE STYLES ===== */

/* Programs Navigation */
.programs-nav {
    padding: 3rem 0;
    background: var(--primary-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.programs-nav-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.programs-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: var(--background-light);
    border: 2px solid transparent;
    border-radius: 16px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: all var(--transition-normal);
    min-width: 180px;
    text-align: center;
}

.programs-nav .nav-item:hover,
.programs-nav .nav-item.active {
    background: var(--primary-white);
    border-color: var(--primary-wine);
    color: var(--primary-wine);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.programs-nav .nav-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.programs-nav .nav-item span {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Program Sections */
.program-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.program-section:nth-child(even) {
    background: var(--background-light);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    text-align: left;
}

.program-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 2.5rem;
    box-shadow: var(--shadow-lg);
    flex-shrink: 0;
}

.program-title h2 {
    color: var(--text-primary) !important;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.program-subtitle {
    color: var(--primary-wine) !important;
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0;
}

.program-content {
    max-width: 1000px;
    margin: 0 auto;
}

.program-content h3 {
    color: var(--text-primary) !important;
}

.program-content p {
    color: var(--text-secondary) !important;
}

.program-content .lead {
    color: var(--text-primary) !important;
}

/* App Features */
.app-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-wine);
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* App Showcase */
.app-showcase {
    text-align: center;
    margin: 4rem 0;
}

.app-screens {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Academy Styles */
.academy-overview {
    text-align: center;
    margin-bottom: 4rem;
}

.academy-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.program-track {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.program-track:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.track-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--background-light);
}

.track-header i {
    font-size: 2.5rem;
    color: var(--primary-wine);
}

.track-header h3 {
    color: var(--text-primary);
    margin: 0;
    font-size: 1.5rem;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.course-list li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
    border-bottom: 1px solid var(--background-light);
}

.course-list li:last-child {
    border-bottom: none;
}

.course-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--primary-wine);
    font-weight: bold;
    font-size: 1.1rem;
}

.track-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--background-light);
}

.stat {
    text-align: center;
    color: var(--primary-wine);
    font-weight: 600;
    font-size: 0.95rem;
}

.academy-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 4rem 2rem;
    background: var(--gradient-primary);
    border-radius: 20px;
    color: var(--primary-white);
}

.academy-cta h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.academy-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

/* Conference Styles */
.conference-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.conference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23722f37" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%236b46c1" opacity="0.05"/><circle cx="50" cy="10" r="0.5" fill="%23722f37" opacity="0.03"/><circle cx="10" cy="60" r="0.5" fill="%236b46c1" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.conference-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 5rem;
}

.conference-header .program-header {
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.conference-header .program-icon {
    background: var(--gradient-primary);
    box-shadow: 0 20px 40px rgba(114, 47, 55, 0.3);
    transform: scale(1.1);
}

.conference-header .program-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
}

.conference-header .program-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    color: var(--primary-wine) !important;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
}

.conference-header .program-subtitle::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.conference-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.conference-overview .overview-text {
    padding: 2rem;
}

.conference-overview .overview-text h3 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.conference-overview .overview-text h3::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.conference-overview .overview-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform var(--transition-slow);
}

.conference-overview .overview-image:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.conference-overview .overview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0 5rem;
    position: relative;
    z-index: 2;
}

.theme-card {
    background: var(--primary-white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid rgba(114, 47, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.theme-card:hover::before {
    transform: scaleX(1);
}

.theme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.theme-card i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.theme-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.theme-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.conference-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 5rem 0;
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: var(--primary-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-normal);
    border: 1px solid rgba(114, 47, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.highlight-card:hover::before {
    transform: scaleX(1);
}

.highlight-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.highlight-card i {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    display: block;
    position: relative;
}

.highlight-card i::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-gold);
    border-radius: 1px;
}

.highlight-card h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 600;
}

.highlight-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1rem;
}

/* Conference Stats */
.conference-stats {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 4rem 3rem;
    margin: 5rem 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.conference-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Conference CTA */
.conference-cta {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 5rem 3rem;
    text-align: center;
    color: var(--primary-white);
    margin: 5rem 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.conference-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
    50% { transform: translateX(0%) translateY(0%) rotate(180deg); }
}

.conference-cta h3 {
    color: var(--primary-white) !important;
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.conference-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-buttons .btn-primary {
    background: var(--primary-white);
    color: var(--primary-wine);
    border: 2px solid var(--primary-white);
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: var(--primary-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.cta-buttons .btn-outline:hover {
    background: var(--primary-white);
    color: var(--primary-wine);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Conference Section */
@media (max-width: 1024px) {
    .conference-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .conference-overview .overview-text h3::before {
        display: none;
    }
    
    .conference-overview .overview-image {
        transform: none;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .themes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .conference-highlights {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .conference-header .program-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .conference-header .program-icon {
        transform: scale(1);
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .conference-header .program-title h2 {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .conference-header .program-subtitle {
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .conference-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .conference-stats {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .conference-cta {
        padding: 3rem 2rem;
        margin: 3rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .conference-section {
        padding: 4rem 0;
    }
    
    .theme-card,
    .highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .conference-stats {
        padding: 2rem 1.5rem;
    }
    
    .conference-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
}
.magazine-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.magazine-features {
    display: grid;
    gap: 2rem;
    margin: 3rem 0;
}

.magazine-covers {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.magazine-cover {
    width: 150px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.magazine-cover:hover {
    transform: scale(1.05) rotate(2deg);
}

.media-channels {
    margin-top: 4rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.channel-card {
    background: var(--primary-white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.channel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.channel-card i {
    font-size: 3rem;
    color: var(--primary-wine);
    margin-bottom: 1.5rem;
}

.channel-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.channel-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.channel-link {
    color: var(--primary-wine);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
}

.channel-link:hover {
    color: var(--primary-purple);
}

/* ===== PARTNERSHIPS PAGE STYLES ===== */

/* Enhanced Text Visibility for Partnerships Page */
.partnerships-page section,
.partnerships-page section p,
.partnerships-page section h2,
.partnerships-page section h3,
.partnerships-page section div {
    color: #1f2937 !important; /* Dark black for better visibility */
}

.partnerships-page section h2,
.partnerships-page section h3 {
    color: #6b46c1 !important; /* Purple for headings */
    font-weight: 700;
}

.partnerships-page .section-header h2 {
    color: #6b46c1 !important; /* Purple for main section headers */
}

.partnerships-page .section-header p {
    color: #1f2937 !important; /* Black for subtitle text */
}

/* Ensure all paragraph text is visible */
.partnerships-page p {
    color: #1f2937 !important; /* Black for all paragraphs */
}

/* Ensure div text content is visible */
.partnerships-page div {
    color: #1f2937 !important; /* Black for div content */
}

/* White text for specific elements on partnerships page */
.partnerships-page .pillar p {
    color: white !important; /* White text for pillar descriptions: "Active in 15+ countries", "Over 10,000 women", "Transparent reporting" */
}

.partnerships-page .section-subtitle[data-translate="partnerships.csr-subtitle"] {
    color: white !important; /* White text for CSR subtitle: "Align your brand with meaningful social impact" */
}

.partnerships-page .quick-link-card p {
    color: white !important; /* White text for all card descriptions including strategic partnerships */
}

.partnerships-page .section-subtitle[data-translate="partnerships.partners-subtitle"] {
    color: white !important; /* White text for partners subtitle: "We're proud to work with organizations" */
}

/* White text for Partnership Levels cards */
.partnerships-page .quick-links-grid .quick-link-card h3,
.partnerships-page .quick-links-grid .quick-link-card p,
.partnerships-page .quick-links-grid .quick-link-card li,
.partnerships-page .quick-links-grid .quick-link-card strong {
    color: white !important; /* White text for all partnership level content */
}

/* Partnership Contact Section Styles */
#contact-form {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

#contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

#contact-form .container {
    position: relative;
    z-index: 2;
}

#contact-form .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#contact-form .section-title {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

#contact-form .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

#contact-form .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Partnership Form Styles */
.partnership-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.partnership-form::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(107, 70, 193, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    animation: slideInUp 0.6s ease-out;
}

.form-group:nth-child(odd) {
    animation-delay: 0.1s;
}

.form-group:nth-child(even) {
    animation-delay: 0.2s;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
    position: relative;
    padding-left: 0.5rem;
}

.form-group label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 16px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background: var(--primary-white);
    font-family: inherit;
    position: relative;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-purple);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 70, 193, 0.1);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 4px rgba(107, 70, 193, 0.1), 0 8px 25px rgba(107, 70, 193, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b46c1" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6,9 12,15 18,9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 3rem;
    appearance: none;
}

/* Form Submit Button Enhancement */
.partnership-form .btn-primary {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    border: none;
    border-radius: 12px;
    color: var(--primary-white);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partnership-form .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.5s;
}

.partnership-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(107, 70, 193, 0.3);
}

.partnership-form .btn-primary:hover::before {
    left: 100%;
}

.partnership-form .btn-primary:active {
    transform: translateY(0);
}

.partnership-form .btn-primary i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Required field indicator */
.form-group label[data-translate*="*"]::after {
    content: ' *';
    color: #ef4444;
    font-weight: 700;
}

/* Form validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input:valid:not(:placeholder-shown),
.form-group select:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Partnership Levels Enhancement */
.quick-links-grid .quick-link-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.quick-links-grid .quick-link-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    padding-left: 1.5rem;
}

.quick-links-grid .quick-link-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: bold;
}

.quick-links-grid .quick-link-card ul li:last-child {
    border-bottom: none;
}

/* Partnership Proposal Section */
.partnership-proposal {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-pink) 100%);
    color: var(--primary-white);
    padding: 4rem 0;
    text-align: center;
}

.proposal-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.proposal-text h2 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.proposal-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.proposal-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.proposal-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.proposal-features li:before {
    content: "📋";
    position: absolute;
    left: 0;
}

.download-proposal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-white);
    color: var(--primary-purple);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.download-proposal-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--background-light);
}

/* CSR Opportunities Enhancement */
.csr-opportunities {
    background: var(--background-light);
    padding: 5rem 0;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.csr-card {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.csr-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.csr-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.csr-card .card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-white);
}

.csr-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.csr-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Partnership Benefits */
.partnership-benefits {
    padding: 5rem 0;
    background: var(--primary-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.benefit-item:hover {
    background: var(--background-light);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-white);
}

.benefit-item h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Partnership Impact Stats */
.impact-stats {
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 4rem 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-white), var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Partnership Timeline */
.partnership-timeline {
    padding: 5rem 0;
    background: var(--background-light);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-purple);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-content {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.timeline-content:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content:before {
    right: -20px;
    border-left-color: var(--primary-white);
}

.timeline-item:nth-child(even) .timeline-content:before {
    left: -20px;
    border-right-color: var(--primary-white);
}

.timeline-step {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    transform: translateY(-50%);
    border: 4px solid var(--primary-white);
    box-shadow: var(--shadow-sm);
}

.timeline-item:nth-child(odd) .timeline-step {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-step {
    left: -10px;
}

/* Responsive Design for Partnerships */
@media (max-width: 768px) {
    .proposal-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .partnership-form {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-step {
        left: 10px !important;
        right: auto !important;
    }
    
    .timeline-content:before {
        left: -20px !important;
        right: auto !important;
        border-right-color: var(--primary-white) !important;
        border-left-color: transparent !important;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ===== MEDIA PAGE STYLES ===== */

/* Featured Story Section */
.featured-story {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-purple) 100%);
    color: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.featured-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.featured-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
}

.featured-text .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.featured-text p {
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.7;
}

.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Media Filters */
.media-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-white);
    border: 2px solid var(--border-light);
    border-radius: 25px;
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    display: inline-block;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-wine);
    color: var(--primary-white);
    border-color: var(--primary-wine);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(114, 47, 55, 0.3);
}

/* Media Grid */
.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.media-card {
    background: var(--primary-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.media-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.media-card:hover .media-image img {
    transform: scale(1.05);
}

.media-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-wine);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.media-content {
    padding: 2rem;
}

.media-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.media-date {
    color: var(--primary-wine);
    font-weight: 500;
}

.media-content h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.media-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-wine);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.read-more:hover {
    color: var(--primary-purple);
}

.read-more i {
    transition: transform var(--transition-fast);
}

.read-more:hover i {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--background-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    font-size: 1.5rem;
}

.testimonial-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
}

.testimonial-author h4 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.testimonial-author span {
    display: block;
    color: var(--text-light);
    font-size: 0.875rem;
}

.location {
    color: var(--primary-wine) !important;
    font-weight: 500 !important;
}

/* Press Kit Section */
.press-kit-section {
    padding: 6rem 0;
    background: var(--background-gray);
}

.press-kit-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.press-kit-text h2 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.press-kit-text .lead {
    font-size: 1.25rem;
    color: var(--primary-wine);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.press-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.press-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

.press-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.press-feature i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.press-feature span {
    color: var(--text-secondary);
    font-weight: 500;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-wine);
    color: var(--primary-wine);
}

.btn-outline:hover {
    background: var(--primary-wine);
    color: var(--primary-white);
}

/* Newsletter Section Enhancement */
.newsletter {
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="70" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 15s ease-in-out infinite reverse;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

/* Responsive Media Styles */
@media (max-width: 768px) {
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .media-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .press-kit-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .media-card {
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .press-feature {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* ===== GET INVOLVED PAGE STYLES ===== */

/* Volunteer Opportunities Section */
.volunteer-opportunities {
    padding: 6rem 0;
    background: var(--background-light);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.volunteer-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.volunteer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.volunteer-card:hover::before {
    transform: scaleX(1);
}

.volunteer-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.volunteer-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    font-size: 1.75rem;
}

.volunteer-card h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.volunteer-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.time-commitment {
    display: inline-block;
    background: var(--background-light);
    color: var(--primary-wine);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.volunteer-stats {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    margin-top: 2rem;
}

.volunteer-stats h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Donation Section Enhancements */
.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.donation-amounts h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.amount-card {
    background: var(--primary-white);
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.amount-card:hover,
.amount-card.selected {
    border-color: var(--primary-wine);
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-purple) 100%);
    color: var(--primary-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.amount-card .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-wine);
    margin-bottom: 0.5rem;
}

.amount-card:hover .amount,
.amount-card.selected .amount {
    color: var(--primary-white);
}

.amount-card .impact {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.amount-card:hover .impact,
.amount-card.selected .impact {
    color: rgba(255, 255, 255, 0.9);
}

.custom-amount {
    margin-top: 1rem;
}

.custom-amount input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1.125rem;
    text-align: center;
    transition: border-color var(--transition-fast);
}

.custom-amount input:focus {
    border-color: var(--primary-wine);
    outline: none;
}

.donation-form {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.donation-form h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-type {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.donation-type label {
    flex: 1;
    padding: 1rem;
    background: var(--background-light);
    border: 2px solid var(--border-light);
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    font-weight: 500;
}

.donation-type input[type="radio"] {
    display: none;
}

.donation-type input[type="radio"]:checked + label {
    background: var(--primary-wine);
    color: var(--primary-white);
    border-color: var(--primary-wine);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 1rem;
    background: var(--background-light);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.security-note i {
    color: var(--primary-wine);
}

/* Membership Section */
.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.membership-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid var(--border-light);
    position: relative;
    text-align: center;
}

.membership-card.featured {
    border-color: var(--primary-wine);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.membership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.membership-header {
    margin-bottom: 2rem;
    position: relative;
}

.membership-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.membership-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-wine);
    margin-bottom: 0.5rem;
}

.membership-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--primary-white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.membership-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.membership-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.membership-benefits i {
    color: var(--primary-wine);
    font-size: 0.875rem;
    width: 16px;
    flex-shrink: 0;
}

/* Volunteer Application Form */
.volunteer-application-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.volunteer-application-form h3 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 1rem;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color var(--transition-fast);
}

.checkbox-label:hover {
    background: var(--background-light);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-wine);
    border-color: var(--primary-wine);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-white);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Advocacy Section */
.advocacy-section {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.advocacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 25s ease-in-out infinite;
}

.advocacy-content {
    position: relative;
    z-index: 1;
}

.advocacy-content h2 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.advocacy-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.social-share {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.social-share-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-share-btn:hover {
    background: var(--primary-white);
    color: var(--primary-wine);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Get Involved Styles */
@media (max-width: 768px) {
    .donation-options {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .amount-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .membership-tiers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .membership-card.featured {
        transform: none;
    }
    
    .membership-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .donation-type {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .volunteer-application-form {
        padding: 2rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .social-share {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .advocacy-content h2 {
        font-size: 2rem;
    }
    
    .advocacy-content p {
        font-size: 1.125rem;
    }
}

@media (max-width: 480px) {
    .volunteer-card,
    .donation-form,
    .membership-card {
        padding: 1.5rem;
    }
    
    .amount-card {
        padding: 1.5rem 1rem;
    }
    
    .amount-card .amount {
        font-size: 1.5rem;
    }
    
    .membership-price {
        font-size: 2rem;
    }
    
    .volunteer-application-form {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .social-share-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Information Cards */
.contact-details {
    margin-top: 1.5rem;
}

.contact-details p {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-wine);
    transition: all var(--transition-fast);
}

.contact-details p:hover {
    background: rgba(139, 69, 19, 0.05);
    transform: translateX(4px);
}

.contact-details strong {
    color: var(--primary-wine);
    display: block;
    margin-bottom: 0.25rem;
}

/* Enhanced Contact Form */
.contact-form {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--primary-white);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-wine);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

/* Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 12px;
    transition: background-color var(--transition-fast);
    margin-bottom: 1.5rem;
}

.checkbox-label:hover {
    background: var(--background-light);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-wine);
    border-color: var(--primary-wine);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-white);
    font-size: 0.875rem;
    font-weight: 600;
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.checkbox-text a {
    color: var(--primary-wine);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Office Locations */
.office-locations {
    padding: 6rem 0;
    background: var(--background-light);
}

.office-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.office-card {
    background: var(--primary-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.office-card:hover::before {
    transform: scaleX(1);
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.office-flag {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--background-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-light);
}

.office-info h3 {
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
}

.office-type {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.office-details {
    margin-bottom: 2rem;
}

.office-details p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.office-details i {
    color: var(--primary-wine);
    width: 16px;
    flex-shrink: 0;
}

.office-hours {
    background: var(--background-light);
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.office-hours h4 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.office-hours p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

/* Map Container */
.map-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--primary-wine) 0%, var(--primary-purple) 100%);
    color: var(--primary-white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="1.5" fill="rgba(255,255,255,0.08)"/><circle cx="60" cy="30" r="1" fill="rgba(255,255,255,0.06)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.map-placeholder > * {
    position: relative;
    z-index: 1;
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.map-placeholder h3 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.map-placeholder p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.map-placeholder .btn {
    background: var(--primary-white);
    color: var(--primary-wine);
    border: none;
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1rem;
}

.map-placeholder .btn:hover {
    background: var(--background-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--primary-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: var(--primary-white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--background-light);
}

.faq-question.active {
    background: var(--primary-wine);
    color: var(--primary-white);
}

.faq-icon {
    font-size: 1.25rem;
    transition: transform var(--transition-fast);
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-normal);
    background: var(--background-light);
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 0;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    animation: float 25s ease-in-out infinite;
}

.contact-cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.contact-cta h2 {
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.contact-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
}

.contact-cta .btn-secondary {
    background: var(--primary-white);
    color: var(--primary-wine);
    border: 2px solid var(--primary-white);
}

.contact-cta .btn-secondary:hover {
    background: transparent;
    color: var(--primary-white);
}

.contact-cta .btn-outline {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
}

.contact-cta .btn-outline:hover {
    background: var(--primary-white);
    color: var(--primary-wine);
}

/* Responsive Contact Styles */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .office-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .office-card {
        padding: 2rem;
    }
    
    .map-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .contact-cta h2 {
        font-size: 2rem;
    }
    
    .contact-cta p {
        font-size: 1.125rem;
    }
    
    .contact-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
        margin: 0 -1rem;
        border-radius: 0;
    }
    
    .office-card {
        padding: 1.5rem;
    }
    
    .office-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .office-flag {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
    }
    
    .map-placeholder i {
        font-size: 3rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer.active {
        padding: 1rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-primary) !important;
    background-color: #1f2937 !important;
    color: var(--primary-white) !important;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--primary-white) !important;
    color: #ffffff !important;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--primary-wine);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--primary-white) !important;
    color: #ffffff !important;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-white) !important;
    color: #ffffff !important;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8) !important;
}

.contact-info i {
    color: var(--primary-gold) !important;
    color: #f59e0b !important;
    min-width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.8) !important;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--primary-white) !important;
    color: #ffffff !important;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--gradient-secondary);
    color: var(--primary-white);
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    color: var(--primary-white);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.align-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease-out;
}

/* ===== LOADING STATES ===== */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== FOCUS STYLES ===== */
*:focus {
    outline: 2px solid var(--primary-wine);
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid var(--primary-gold);
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .footer,
    .btn,
    .nav-toggle {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .page-header {
        margin-top: 0;
        padding: 2rem 0;
    }
}

/* ===== ENHANCED TEAM PORTFOLIO DESIGNS ===== */

/* Leadership Team Enhanced Styles */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.leader-card {
    background: var(--primary-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(114, 47, 55, 0.1);
    transition: all var(--transition-normal);
    transform: translateY(0);
    position: relative;
    border: 2px solid transparent;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    border-radius: 25px;
}

.leader-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(114, 47, 55, 0.2);
    border-color: var(--primary-wine);
}

.leader-card:hover::before {
    opacity: 0.05;
}

.leader-image {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: var(--gradient-primary);
}

.leader-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 0%, rgba(114, 47, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.leader-card:hover .leader-image::after {
    opacity: 1;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    filter: grayscale(20%);
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Board of Trustees Enhanced Styles */
.board-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(114, 47, 55, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(107, 70, 193, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.board-member {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 3px solid transparent;
}

.board-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, var(--primary-wine), var(--primary-purple), var(--primary-gold), var(--primary-wine));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.board-member:hover {
    transform: translateY(-20px) rotateY(5deg);
    box-shadow: 0 30px 80px rgba(114, 47, 55, 0.15);
    border-color: var(--primary-wine);
}

.board-member:hover::before {
    opacity: 0.1;
}

.member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--primary-wine);
    position: relative;
    box-shadow: 0 10px 30px rgba(114, 47, 55, 0.3);
}

.member-photo::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    filter: brightness(1.1) contrast(1.1);
}

.board-member:hover .member-photo img {
    transform: scale(1.1);
}

/* Advisory Council Enhanced Styles */
.advisory-section {
    padding: 100px 0;
    background: var(--primary-white);
    position: relative;
}

.advisory-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.advisor {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(107, 70, 193, 0.1);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid var(--border-light);
}

.advisor::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-secondary);
    opacity: 0;
    border-radius: 25px;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.advisor:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(107, 70, 193, 0.2);
    border-color: var(--primary-purple);
}

.advisor:hover::after {
    opacity: 0.05;
}

.advisor-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.advisor-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--primary-purple);
    position: relative;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.25);
}

.advisor-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: conic-gradient(var(--primary-purple), var(--primary-gold), var(--primary-purple));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 15s linear infinite;
}

.advisor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.advisor:hover .advisor-image img {
    transform: scale(1.15);
    filter: brightness(1.1);
}

.advisor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(107, 70, 193, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.advisor:hover .advisor-overlay {
    opacity: 1;
}

.advisor-social {
    display: flex;
    gap: 0.5rem;
}

/* Regional Directors Enhanced Styles */
.regional-directors-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #6b46c1 100%);
    position: relative;
    color: var(--primary-white);
}

.regional-directors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.directors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.director-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
}

.director-card:hover {
    transform: translateY(-20px) rotateX(5deg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-gold);
}

.director-image-container {
    position: relative;
    margin-bottom: 2rem;
}

.director-image {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 5px solid var(--primary-gold);
    position: relative;
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.director-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: conic-gradient(var(--primary-gold), var(--primary-wine), var(--primary-gold));
    border-radius: 50%;
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.director-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.director-card:hover .director-image img {
    transform: scale(1.2);
}

.director-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 158, 11, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.director-card:hover .director-overlay {
    opacity: 1;
}

.director-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    transform: scale(1.2);
    background: var(--primary-gold);
    color: var(--primary-white);
}

/* Country Representatives Enhanced Styles */
.country-representatives-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.representatives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.representative-card {
    background: var(--primary-white);
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.representative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform var(--transition-normal);
}

.representative-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-gold);
}

.representative-card:hover::before {
    transform: scaleX(1);
}

.representative-image-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.representative-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--primary-gold);
    position: relative;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.representative-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

.representative-card:hover .representative-image img {
    transform: scale(1.1);
}

.representative-badge {
    position: absolute;
    top: -5px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--primary-gold);
}

.country-flag {
    font-size: 1.5rem;
}

/* Enhanced Typography for All Sections */
.member-info h3,
.member-info h4,
.advisor-info h4,
.director-info h4,
.representative-info h4 {
    color: #722f37 !important; /* Primary wine color */
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.member-title,
.advisor-expertise,
.director-position,
.representative-country {
    color: #6b46c1 !important; /* Primary purple color */
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.member-org,
.advisor-org,
.director-expertise,
.representative-focus {
    color: #6b7280 !important; /* Text secondary color */
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

/* Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.values-section {
    padding: 80px 0;
    background: var(--color-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--color-light);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--color-white);
}

.value-card h3 {
    color: var(--color-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--color-text);
    line-height: 1.6;
}

/* ===== PROGRAM SECTIONS SPECIFIC STYLES ===== */
#app, #academy, #conference, #gmop, #safepath, #herland {
    background: linear-gradient(135deg, #6b46c1 0%, #8b5cf6 50%, #a855f7 100%) !important;
    position: relative;
}

#app::before, #academy::before, #conference::before, #gmop::before, #safepath::before, #herland::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

#app .container, #academy .container, #conference .container, #gmop .container, #safepath .container, #herland .container {
    position: relative;
    z-index: 1;
}

/* Program Titles */
#app .program-title h2, #academy .program-title h2, #gmop .program-title h2, #safepath .program-title h2, #herland .program-title h2 {
    color: var(--primary-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Conference Title - White with no shadow */
#conference .program-title h2 {
    color: white !important;
    text-shadow: none !important;
}

#app .program-subtitle, #academy .program-subtitle, #conference .program-subtitle, #gmop .program-subtitle, #safepath .program-subtitle, #herland .program-subtitle {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Content Headings */
#app .content-text h3, #academy .overview-text h3, #conference .overview-text h3, #gmop .overview-text h3, #safepath .overview-text h3, #herland .overview-text h3 {
    color: var(--primary-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#app .content-text .lead, #academy .lead, #conference .lead, #gmop .lead, #safepath .lead, #herland .lead {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#app .download-section h4, #academy h4, #conference h4, #gmop h4, #safepath h4, #herland h4 {
    color: var(--primary-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Feature Items */
#app .feature-item, #academy .program-track, #conference .track-item, #gmop .service-item, #safepath .feature-item, #herland .benefit-item {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

#app .feature-item:hover, #academy .program-track:hover, #conference .track-item:hover, #gmop .service-item:hover, #safepath .feature-item:hover, #herland .benefit-item:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-8px);
}

#app .feature-content h4, #academy .track-content h4, #conference .track-content h4, #gmop .service-content h4, #safepath .feature-content h4, #herland .benefit-content h4 {
    color: var(--primary-white) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

#app .feature-content p, #academy p, #conference p, #gmop p, #safepath p, #herland p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

#app .feature-item i, #academy .program-track i, #conference .track-item i, #gmop .service-item i, #safepath .feature-item i, #herland .benefit-item i {
    color: var(--primary-gold) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Program Icons */
#app .program-icon i, #academy .program-icon i, #conference .program-icon i, #gmop .program-icon i, #safepath .program-icon i, #herland .program-icon i {
    color: var(--primary-gold) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Sections */
#academy .academy-cta h3, #conference .conference-cta h3, #gmop .gmop-cta h3, #safepath .safepath-cta h3, #herland .herland-cta h3 {
    color: var(--primary-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#academy .academy-cta p, #conference .conference-cta p, #gmop .gmop-cta p, #safepath .safepath-cta p, #herland .herland-cta p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Location tags for Herland */
#herland .location-tag {
    background: rgba(255, 255, 255, 0.15) !important;
    color: var(--primary-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Course Lists for Academy */
#academy .course-list li {
    color: rgba(255, 255, 255, 0.9) !important;
}

#academy .course-list li::before {
    color: var(--primary-gold) !important;
}

/* Conference feature cards with colored text */
#conference .feature-item .feature-content h4 {
    color: #FFD700 !important; /* Gold color for feature titles */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

#conference .feature-item .feature-content p {
    color: #E6E6FA !important; /* Light lavender for feature descriptions */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Additional styling for all program feature cards */
.feature-item .feature-content h4 {
    transition: color 0.3s ease;
}

.feature-item:hover .feature-content h4 {
    color: #FFA500 !important; /* Orange on hover */
}

/* Track Headers for Academy */
#academy .track-header {
    background: rgba(255, 255, 255, 0.1) !important;
}

#academy .track-header h4 {
    color: var(--primary-white) !important;
}

#academy .track-header i {
    color: var(--primary-gold) !important;
}