/*
 * Friends of Thai Agriculture (FTA) Page Styles
 * Modern, Professional & Elegant Design
 */

/* ======= CSS Variables ======= */
:root {
    --fta-primary: #2563eb;
    --fta-primary-dark: #1e40af;
    --fta-secondary: #4CAF50;
    --fta-secondary-dark: #388E3C;
    --fta-accent: #ff5a00;
    --fta-accent-dark: #e14d00;
    --fta-navy: #0f172a;
    --fta-gray-50: #f8fafc;
    --fta-gray-100: #f1f5f9;
    --fta-gray-200: #e2e8f0;
    --fta-gray-300: #cbd5e1;
    --fta-gray-400: #94a3b8;
    --fta-gray-500: #64748b;
    --fta-gray-600: #475569;
    --fta-gray-700: #334155;
    --fta-gray-800: #1e293b;
    --fta-gray-900: #0f172a;
    --fta-white: #ffffff;
    --fta-success: #10b981;
    --fta-warning: #ff5a00;
    --fta-error: #ef4444;
    
    /* Legacy support variable */
    --primary-color: #4CAF50;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--fta-primary) 0%, var(--fta-navy) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--fta-secondary) 0%, var(--fta-secondary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--fta-accent) 0%, var(--fta-accent-dark) 100%);
    --gradient-hero: linear-gradient(135deg, var(--fta-accent) 0%, var(--fta-accent-dark) 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --section-padding: 6rem 0;
    --container-padding: 1rem;
    --border-radius: 12px;
    --border-radius-lg: 16px;
    
    /* Typography */
    --font-family: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
    --font-family-heading: 'Inter', 'Segoe UI', 'Roboto', sans-serif;
}

/* ======= Base Styles ======= */
.fta-page {
    background-color: var(--fta-white);
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--fta-gray-700);
    overflow-x: hidden;
    isolation: isolate;
}

/* Remove default site-content padding for FTA page */
body.page-template-fta .site-content,
.fta-page .site-content {
    padding-top: 0 !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ======= Typography ======= */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--fta-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
}

.section-badge:hover::before {
    left: 100%;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--fta-gray-900);
    margin-bottom: 0;
    line-height: 1.1;
    font-family: var(--font-family-heading);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.section-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 2s infinite;
}

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

.section-description {
    font-size: 1.125rem;
    color: var(--fta-gray-600);
    max-width: 1150px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ======= FTA Hero Section ======= */
.fta-hero {
    position: relative;
    padding: 4rem 0 3rem;
    color: var(--fta-white);
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.7) 0%,
        rgba(37, 99, 235, 0.6) 25%,
        rgba(76, 175, 80, 0.5) 75%,
        rgba(255, 90, 0, 0.6) 100%
    );
    z-index: 3;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 120px 120px, 80px 80px;
    animation: float 20s ease-in-out infinite;
    z-index: 4;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(0.5deg); }
    66% { transform: translateY(5px) rotate(-0.5deg); }
}



/* Slide transition effects */
.hero-slide.fade-in {
    animation: fadeIn 1.5s ease-in-out;
}

@keyframes fadeIn {
    0% { 
        opacity: 0;
        transform: scale(1.05);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

.fta-hero .container {
    position: relative;
    z-index: 15 !important;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.fta-hero-content {
    position: relative;
    z-index: 10 !important;
    text-align: center;
    max-width: 1150px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
}

.badge-text {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fta-title {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    letter-spacing: 0.01em;
}

/* FTA Logo Styles */
.fta-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.fta-logo {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.fta-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.4));
}

/* Responsive Logo Styles */
@media (max-width: 768px) {
    .fta-logo {
        max-width: 220px;
    }
    
    .fta-logo-container {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 480px) {
    .fta-logo {
        max-width: 180px;
    }
    
    .fta-logo-container {
        margin-bottom: 1rem;
    }
}

.title-main {
    display: block !important;
    color: var(--fta-white) !important;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    visibility: visible !important;
    opacity: 1 !important;
}

.fta-subtitle {
    font-size: clamp(2.5rem, 5.5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    font-weight: 800;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    letter-spacing: -0.02em;
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    text-align: center;
    position: relative;
    z-index: 15;
    
    /* Enhanced readability with multiple shadow layers */
    text-shadow: 
        /* Strong dark shadow for contrast */
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 4px 8px rgba(0, 0, 0, 0.6),
        0 8px 16px rgba(0, 0, 0, 0.4),
        /* White glow for visibility */
        0 0 20px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(255, 255, 255, 0.2),
        /* Blue accent glow */
        0 0 60px rgba(30, 64, 175, 0.4);
    
    /* Animation for "alive" effect */
    animation: subtitlePulse 4s ease-in-out infinite;
    
    /* Gradient text effect */
    background: linear-gradient(
        45deg,
        #ffffff 0%,
        #e0f2fe 25%,
        #ffffff 50%,
        #e0f2fe 75%,
        #ffffff 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: subtitlePulse 4s ease-in-out infinite, gradientShift 6s ease-in-out infinite;
}

/* Pulse animation for dynamic effect */
@keyframes subtitlePulse {
    0%, 100% { 
        transform: translateY(0) scale(1);
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.8),
            0 4px 8px rgba(0, 0, 0, 0.6),
            0 8px 16px rgba(0, 0, 0, 0.4),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(255, 255, 255, 0.2),
            0 0 60px rgba(30, 64, 175, 0.4);
    }
    50% { 
        transform: translateY(-3px) scale(1.02);
        text-shadow: 
            0 4px 8px rgba(0, 0, 0, 0.9),
            0 8px 16px rgba(0, 0, 0, 0.7),
            0 16px 32px rgba(0, 0, 0, 0.5),
            0 0 30px rgba(255, 255, 255, 0.4),
            0 0 50px rgba(255, 255, 255, 0.3),
            0 0 80px rgba(30, 64, 175, 0.6);
    }
}

/* Gradient shift animation */
@keyframes gradientShift {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* Hover effect for interactivity */
.fta-subtitle:hover {
    animation-duration: 2s;
    transform: translateY(-2px) scale(1.03);
    text-shadow: 
        /* Enhanced shadows on hover */
        0 4px 8px rgba(0, 0, 0, 0.9),
        0 8px 16px rgba(0, 0, 0, 0.7),
        0 16px 32px rgba(0, 0, 0, 0.5),
        /* Brighter glow on hover */
        0 0 30px rgba(255, 255, 255, 0.4),
        0 0 50px rgba(255, 255, 255, 0.3),
        0 0 80px rgba(30, 64, 175, 0.6);
}

/* Mobile-optimized pulse animation */
@keyframes subtitlePulseMobile {
    0%, 100% { 
        transform: translateY(0) scale(1);
        text-shadow: 
            0 2px 4px rgba(0, 0, 0, 0.9),
            0 4px 8px rgba(0, 0, 0, 0.6),
            0 0 15px rgba(255, 255, 255, 0.3),
            0 0 30px rgba(30, 64, 175, 0.4);
    }
    50% { 
        transform: translateY(-2px) scale(1.01);
        text-shadow: 
            0 3px 6px rgba(0, 0, 0, 0.95),
            0 6px 12px rgba(0, 0, 0, 0.7),
            0 0 20px rgba(255, 255, 255, 0.4),
            0 0 40px rgba(30, 64, 175, 0.5);
    }
}

/* Accessibility: Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    .fta-subtitle {
        animation: none !important;
    }
    
    .fta-subtitle:hover {
        transform: none !important;
        transition: text-shadow 0.3s ease;
    }
    
    .theme-card:hover {
        transform: none !important;
    }
    
    .theme-card:hover .conference-photo {
        transform: none !important;
    }
}

/* Hero Event Details */
.hero-event-details {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.event-date-venue {
    font-size: clamp(1.125rem, 2.2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92) !important;
    text-align: center;
    margin: 0 0 1.5rem 0;
    padding: 0;
    display: block;
    max-width: 100%;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.015em;
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--fta-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-cta-section {
    margin-top: 2rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-buttons {
    display: flex !important;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn {
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 5;
}

.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: linear-gradient(135deg, #f95c06 0%, #e14d00 100%);
    color: var(--fta-white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--fta-white);
    background: linear-gradient(135deg, #ff6b1a 0%, #f95c06 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--fta-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: var(--fta-white);
    color: var(--fta-primary);
    border-color: var(--fta-white);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: var(--fta-white);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(200%); }
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ======= Mission & Vision Section ======= */
.fta-mission-vision {
    padding: var(--section-padding);
    background: var(--fta-gray-50);
    position: relative;
}

.mission-vision-container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.mission-card,
.vision-card {
    background: var(--fta-white);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--fta-gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 0 var(--border-radius-lg) 0 100%;
    opacity: 0.1;
}

.mission-card .card-icon,
.vision-card .card-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--fta-white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
}

.mission-card .card-title,
.vision-card .card-title {
    font-size: 1.75rem;
    color: var(--fta-gray-900);
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-family: var(--font-family-heading);
}

.mission-card .card-description,
.vision-card .card-description {
    font-size: 1.125rem;
    color: var(--fta-gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--fta-gray-700);
    font-weight: 500;
}

.feature-item i {
    color: var(--fta-secondary);
    font-size: 1rem;
}

.impact-banner {
    background: var(--gradient-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    color: var(--fta-white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.impact-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.impact-content {
    flex: 1;
    text-align: left;
}

.impact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.impact-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.impact-action {
    flex-shrink: 0;
}

.btn-impact {
    background: var(--fta-white);
    color: var(--fta-primary);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-impact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--fta-primary);
}

/* ======= Focus Areas Section ======= */
.fta-focus-areas {
    padding: var(--section-padding);
    background: var(--fta-white);
    position: relative;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.bg-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--fta-gray-100) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--fta-gray-100) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
}

.focus-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.focus-area-card {
    background: var(--fta-white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--fta-gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.focus-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.focus-area-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.focus-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fta-white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.card-badge {
    background: var(--fta-gray-100);
    color: var(--fta-gray-700);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.focus-title {
    font-size: 1.25rem;
    color: var(--fta-gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: var(--font-family-heading);
}

.focus-description {
    color: var(--fta-gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
    font-size: 0.95rem;
}

.focus-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.focus-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0;
    color: var(--fta-gray-700);
    font-weight: 500;
    border-bottom: 1px solid var(--fta-gray-100);
    font-size: 0.9rem;
}

.focus-features li:last-child {
    border-bottom: none;
}

.focus-features li i {
    color: var(--fta-secondary);
    font-size: 0.9rem;
    width: 14px;
}

.card-action {
    margin-top: auto;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--fta-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.75rem 0;
}

.learn-more-btn:hover {
    color: var(--fta-secondary-dark);
    gap: 1rem;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn:hover i {
    transform: translateX(4px);
}

/* ======= FTA About Conference Section - Clean Professional Design ======= */
.fta-about-conference {
    position: relative;
    padding: 0 0 2rem 0;
    background: var(--fta-white);
    overflow: hidden;
}

/* Main Wrapper */
.about-conference-wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
    padding: 2rem 0;
    color: var(--fta-gray-900);
}

/* Left Content */
.about-content {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Content Header */
.content-header {
    margin-bottom: 3rem;
}

.content-header .section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.1;
    color: var(--fta-gray-900);
}

/* Gradient Title for About Conference */
.gradient-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem) !important;
    font-weight: 800 !important;
    background: var(--gradient-primary) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    line-height: 1.1 !important;
    margin-bottom: 0 !important;
    position: relative;
    display: inline-block;
}



/* Content Body */
.content-body {
    flex: 1;
}

.lead-text {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: var(--fta-gray-600);
    line-height: 1.7;
    font-weight: 400;
}

.highlight-card {
    background: linear-gradient(135deg, var(--fta-gray-50) 0%, rgba(37, 99, 235, 0.03) 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--fta-gray-200);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 0 2px 2px 0;
}

.highlight-card:hover {
    background: linear-gradient(135deg, var(--fta-white) 0%, rgba(37, 99, 235, 0.05) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.highlight-content {
    position: relative;
    z-index: 2;
}

.highlight-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin: 0;
    color: var(--fta-gray-700);
    font-weight: 500;
}

/* Right Content - Theme Card */
.about-visual {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.theme-card {
    width: 100%;
    max-width: 420px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #ff5a00 0%, #e14d00 100%);
    border-radius: 24px;
    box-shadow: 0 8px 30px rgba(255, 90, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.theme-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 100%);
    z-index: 3;
}

.theme-card:hover {
    box-shadow: 0 12px 40px rgba(255, 90, 0, 0.35);
    transform: translateY(-5px);
}

/* Theme Header */
.theme-header {
    padding: 2rem 2rem 1rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.theme-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Theme Content */
.theme-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.theme-quote {
    flex: 1;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.theme-quote blockquote {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--fta-white);
    margin: 0;
    font-style: normal;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

/* Theme Image */
.theme-image {
    overflow: hidden;
    position: relative;
    margin-top: auto;
    border-radius: 0 0 24px 24px;
    z-index: 2;
}

.conference-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.theme-card:hover .conference-photo {
    transform: scale(1.05);
}

/* Enhanced visual overlay for orange theme */
.theme-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(
        to top,
        rgba(225, 77, 0, 0.8) 0%,
        rgba(225, 77, 0, 0.4) 50%,
        transparent 100%
    );
    pointer-events: none;
}

/* Decorative pattern overlay */
.theme-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px, 70px 70px;
    pointer-events: none;
    z-index: 1;
}



/* Responsive Design for About Conference */
@media (max-width: 1024px) {
    .about-conference-wrapper {
        gap: 3rem;
    }
    
    .content-header .section-title {
        font-size: clamp(1.75rem, 4vw, 2.25rem);
    }
    
    .gradient-title {
        font-size: clamp(2.25rem, 5vw, 3rem) !important;
    }
    
    .about-visual {
        padding: 1.5rem 0;
    }
    
    .theme-card {
        max-width: 380px;
        min-height: 400px;
    }
    
    .conference-photo {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .fta-about-conference {
        padding: 4rem 0;
    }
    
    .about-conference-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 1.5rem 0;
    }
    
    .content-header {
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .content-header .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .gradient-title {
        font-size: clamp(2rem, 7vw, 2.75rem) !important;
    }
    
    .lead-text {
        text-align: center;
        max-width: 100%;
    }
    
    .highlight-card {
        padding: 1.5rem;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .about-visual {
        padding: 2rem 0;
        height: auto;
    }
    
    .theme-card {
        max-width: 100%;
        margin: 0 auto;
        height: auto;
        min-height: 350px;
    }
    
    .theme-header {
        padding: 1.5rem 2rem 0.75rem 2rem;
    }
    
    .theme-quote {
        padding: 1.5rem;
    }
    
    .theme-quote blockquote {
        font-size: 1.25rem;
    }
    
    .conference-photo {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .fta-about-conference {
        padding: 3rem 0;
    }
    
    .about-conference-wrapper {
        gap: 2.5rem;
        padding: 1rem 0;
    }
    
    .about-content {
        padding: 1rem 0;
    }
    
    .content-header {
        margin-bottom: 2rem;
    }
    
    .content-header .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }
    
    .gradient-title {
        font-size: clamp(1.875rem, 8vw, 2.5rem) !important;
    }
    
    .lead-text {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .highlight-card {
        padding: 1.25rem;
    }
    
    .highlight-text {
        font-size: 1rem;
    }
    
    .about-visual {
        padding: 1.5rem 0;
        height: auto;
    }
    
    .theme-card {
        margin: 0 1rem;
        border-radius: 20px;
        height: auto;
        min-height: 320px;
    }
    
    .theme-header {
        padding: 1.25rem 1.5rem 0.75rem 1.5rem;
    }
    
    .theme-title {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }
    
    .theme-quote {
        padding: 1rem 1.5rem;
    }
    
    .theme-quote blockquote {
        font-size: 1.125rem;
        line-height: 1.3;
    }
    
    .conference-photo {
        height: 140px;
    }
}





/* ======= FTA Conference Overview Section ======= */
.fta-conference-overview {
    padding: 4rem 0;
    background: var(--fta-white);
    position: relative;
}

.conference-agenda {
    margin-top: 2rem;
}

.agenda-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--fta-white);
    border-radius: 12px;
    border: 1px solid var(--fta-gray-200);
    overflow: hidden;
}

.agenda-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Inter', sans-serif;
}

.agenda-table thead {
    background: var(--fta-gray-900);
    color: var(--fta-white);
}

.agenda-table th {
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    border: none;
}

.agenda-table .time-column {
    width: 160px;
    text-align: center;
}

.agenda-table tbody tr {
    border-bottom: 1px solid var(--fta-gray-200);
}

.agenda-table tbody tr:hover {
    background: var(--fta-gray-50);
}

.agenda-table tbody tr:last-child {
    border-bottom: none;
}

.agenda-table tbody tr.break-session {
    background: rgba(37, 99, 235, 0.05);
}

.agenda-table td {
    padding: 1rem 1.5rem;
    vertical-align: top;
    border: none;
}

.time-slot {
    font-weight: 600;
    color: var(--fta-primary);
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
}

.activity-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fta-gray-900);
    margin: 0 0 0.25rem 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.activity-description {
    font-size: 0.9rem;
    color: var(--fta-gray-600);
    margin: 0;
    line-height: 1.4;
    font-style: italic;
}

.breakout-sessions {
    margin-top: 0.5rem;
}

.session-item {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--fta-gray-700);
    line-height: 1.3;
}

.session-item strong {
    color: var(--fta-primary);
    font-weight: 600;
}

/* Breakout session details styling */
.session-item p {
    margin: 0.25rem 0 0 1.5rem;
    padding-left: 1rem;
    font-size: 0.85rem;
    color: var(--fta-gray-300);
    line-height: 1.4;
    font-style: italic;
    border-left: 2px solid var(--fta-gray-200);
}

/* Responsive Design */
@media (max-width: 768px) {
    .agenda-container {
        margin: 0 1rem;
    }
    
    .agenda-table th,
    .agenda-table td {
        padding: 0.75rem 1rem;
    }
    
    .time-slot {
        font-size: 0.8rem;
        white-space: normal;
        text-align: left;
    }
    
    .activity-title {
        font-size: 0.9rem;
    }
}

/* Mobile card layout */
@media (max-width: 480px) {
    .agenda-table,
    .agenda-table thead,
    .agenda-table tbody,
    .agenda-table th,
    .agenda-table td,
    .agenda-table tr {
        display: block;
    }
    
    .agenda-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .agenda-table tr {
        background: var(--fta-white);
        border: 1px solid var(--fta-gray-200);
        border-radius: 8px;
        margin-bottom: 1rem;
        padding: 1rem;
    }
    
    .agenda-table tr.break-session {
        background: rgba(37, 99, 235, 0.05);
    }
    
    .agenda-table td {
        border: none;
        padding: 0;
    }
    
    .time-slot {
        background: var(--fta-primary);
        color: var(--fta-white);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        font-size: 0.8rem;
    }
    
    .activity-content {
        margin-top: 0.5rem;
    }
    
    .agenda-container {
        margin: 0 1rem;
        border: none;
        background: transparent;
    }
    
    .conference-agenda {
        margin-top: 1.5rem;
    }
}

/* ======= FTA Marketplace Section ======= */
.fta-marketplace {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.marketplace-content {
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.marketplace-intro {
    margin-bottom: 3rem;
    text-align: center;
}

.marketplace-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: var(--fta-gray-700);
    line-height: 1.7;
    max-width: 1150px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.marketplace-description strong {
    color: var(--fta-primary);
    font-weight: 600;
}

.purpose-impact-section {
    background: var(--fta-white);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--fta-gray-200);
}

.purpose-title {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-weight: 700;
    color: var(--fta-gray-900);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Inter', sans-serif;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
}

.purpose-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--fta-gray-50);
    border-radius: 8px;
    border: 1px solid var(--fta-gray-200);
    transition: transform 0.2s ease;
    min-height: 120px;
}

.purpose-item:hover {
    transform: translateY(-2px);
}

.purpose-icon {
    width: 50px;
    height: 50px;
    background: var(--fta-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.purpose-icon i {
    font-size: 1.25rem;
    color: var(--fta-white);
}

.purpose-content p {
    font-size: 0.95rem;
    color: var(--fta-gray-700);
    line-height: 1.5;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ======= FTA Exhibitor Profile Section ======= */
.fta-exhibitor-profile {
    padding: 3rem 0;
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.3) 0%, var(--fta-white) 100%);
    position: relative;
}

.fta-exhibitor-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ea580c 50%, transparent 100%);
    opacity: 0.3;
}

.exhibitor-content {
    margin-top: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.exhibitor-title {
    margin: 0 0 2rem 0;
    text-align: left;
}

.exhibitor-title p {
    display: inline-block;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    color: var(--fta-white);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.exhibitor-title p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.exhibitor-title p:hover::before {
    left: 100%;
}

.exhibitor-title p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-card {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem;
    margin: 0;
    transition: all 0.3s ease;
    min-height: auto;
    text-align: left;
    border-radius: 8px;
    position: relative;
}

.category-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #ea580c, #dc2626);
    border-radius: 2px;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateX(8px);
    background: rgba(248, 250, 252, 0.5);
}

.category-card:hover::before {
    transform: scaleY(1);
}

/* Icon positioned on the left */
.category-icon-wrapper {
    position: relative;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-icon-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(1);
}

.category-card:hover .category-icon-image {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Content styling on the right */
.category-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0;
    margin: 0;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--fta-gray-900);
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

/* Responsive Design for Marketplace and Exhibitor Profile */
@media (max-width: 1024px) and (min-width: 769px) {
    .categories-grid {
        gap: 2rem;
        margin-top: 2rem;
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .category-card {
        gap: 1rem;
    }
    
    .category-icon-image {
        width: 65px;
        height: 65px;
        padding: 0.875rem;
    }
    
    .category-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .marketplace-content,
    .exhibitor-content {
        margin-top: 1.5rem;
        padding: 0 1rem;
    }
    
    .exhibitor-title {
        margin-bottom: 1.5rem;
    }
    
    .exhibitor-title p {
        font-size: 1rem;
        padding: 0.625rem 1.25rem;
        border-radius: 20px;
        letter-spacing: 0.3px;
    }
    
    .purpose-impact-section {
        padding: 2rem 1.5rem;
    }
    
    .purpose-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .purpose-item {
        padding: 1rem;
        gap: 0.75rem;
        min-height: 100px;
    }
    
    .purpose-icon {
        width: 40px;
        height: 40px;
    }
    
    .purpose-icon i {
        font-size: 1rem;
    }
    
    .category-card {
        gap: 1rem;
        padding: 1rem;
        margin: 0;
        background: rgba(248, 250, 252, 0.5);
        border-radius: 12px;
        border: 1px solid var(--fta-gray-200);
    }
    
    .category-icon-image {
        width: 60px;
        height: 60px;
        padding: 0.75rem;
    }
    
    .category-title {
        font-size: 0.95rem;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .marketplace-intro,
    .exhibitor-intro {
        margin-bottom: 1.5rem;
    }
    
    .exhibitor-title {
        margin-bottom: 1.25rem;
    }
    
    .exhibitor-title p {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
        border-radius: 18px;
        letter-spacing: 0.25px;
    }
    
    .purpose-impact-section {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .purpose-grid {
        max-width: 320px;
    }
    
    .purpose-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        min-height: 80px;
        padding: 1rem 0.75rem;
    }
    
    .purpose-icon {
        margin: 0 auto;
    }
    
    .categories-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .category-card {
        gap: 0.75rem;
        padding: 0.75rem;
        margin: 0;
        background: rgba(248, 250, 252, 0.7);
        border-radius: 10px;
        border: 1px solid var(--fta-gray-200);
    }
    
    .category-icon-image {
        width: 50px;
        height: 50px;
        padding: 0.6rem;
    }
    
    .category-title {
        font-size: 0.875rem;
        margin: 0;
        line-height: 1.3;
    }
}

/* ======= Photo Gallery Section ======= */
.fta-photo-gallery {
    padding: 4rem 0;
    background: var(--fta-white);
    position: relative;
}

/* Photo Carousel Container */
.photo-carousel-container {
    position: relative;
    margin-top: 2rem;
}

.photo-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 -2rem;
    z-index: 10;
    pointer-events: none;
}

.photo-carousel-nav .carousel-btn {
    width: 40px;
    height: 40px;
    background: var(--fta-gray-900);
    color: var(--fta-white);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
}

.photo-carousel-nav .carousel-btn:hover {
    background: var(--fta-primary);
}

.photo-carousel-nav .carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.photo-carousel-nav .carousel-prev {
    left: -20px;
}

.photo-carousel-nav .carousel-next {
    right: -20px;
}

.photo-carousel-wrapper {
    overflow: hidden;
    border-radius: 8px;
}

.photo-carousel {
    display: flex;
    transition: transform 0.5s ease;
    gap: 0;
}

.photo-card {
    min-width: calc(33.333% - 1rem);
    margin-right: 1.5rem;
    background: var(--fta-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--fta-gray-200);
}

.photo-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.photo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Photo Carousel Indicators */
.photo-carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.photo-carousel-indicators .carousel-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fta-gray-300);
    cursor: pointer;
    border: none;
}

.photo-carousel-indicators .carousel-indicator.active {
    background: var(--fta-primary);
}

.photo-carousel-indicators .carousel-indicator:hover {
    background: var(--fta-primary);
}

/* ======= FTA Supporters Section ======= */
.fta-supporters {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: start;
}

.supporter-card {
    background: var(--fta-white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--fta-gray-200);
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform 0.2s ease;
}

.supporter-card:hover {
    transform: translateY(-3px);
}

.supporter-logo-container {
    width: 100px;
    height: 80px;
    margin: 0 auto 1rem;
    padding: 0.5rem;
    background: var(--fta-gray-50);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.supporter-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.supporter-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    margin-top: 1rem;
}

.supporter-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--fta-gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-family: var(--font-family-heading);
}



/* Responsive Supporters Grid */
@media (max-width: 1024px) {
    .supporters-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .supporter-card {
        padding: 1.5rem;
        height: 260px;
    }
    
    .supporter-logo-container {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .fta-supporters {
        padding: 3rem 0;
    }
    
    .supporters-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .supporter-card {
        padding: 1.25rem;
        height: 240px;
    }
    
    .supporter-logo-container {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }
    
    .supporter-name {
        font-size: 1rem;
    }
    

}

@media (max-width: 480px) {
    .supporters-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .supporter-card {
        padding: 1rem;
        height: 220px;
    }
    
    .supporter-logo-container {
        width: 70px;
        height: 70px;
    }
}

/* ======= Get Involved Section ======= */
.fta-get-involved {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.involvement-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    z-index: 1;
}

.involvement-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(15, 23, 42, 0.9));
    z-index: 2;
}

.involvement-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 15s ease-in-out infinite;
    z-index: 3;
}

.get-involved-content {
    position: relative;
    z-index: 4;
    color: var(--fta-white);
}

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

.get-involved-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
}

.section-header-content .get-involved-title {
    margin-bottom: 0;
}

.get-involved-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 1150px;
    margin: 0 auto;
    line-height: 1.7;
}

.involvement-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.involvement-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.involvement-card.featured {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.involvement-card:hover .card-glow {
    opacity: 1;
}

.involvement-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.involvement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--fta-white);
    box-shadow: var(--shadow-lg);
}

.involvement-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-family-heading);
}

.involvement-description {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.involvement-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.involvement-benefits li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    opacity: 0.9;
}

.involvement-benefits li i {
    color: var(--fta-accent);
    font-size: 1rem;
}

.btn-outline-light {
    background: transparent;
    color: var(--fta-white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--fta-white);
    color: var(--fta-primary);
    border-color: var(--fta-white);
    transform: translateY(-2px);
}

.partnership-process {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.process-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-family-heading);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 200px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--fta-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--fta-white);
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.875rem;
    opacity: 0.8;
    line-height: 1.5;
}

.step-connector {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ======= Responsive Design ======= */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2rem;
    }
    
    .fta-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .focus-areas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    

    

    
    .impact-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-content {
        text-align: center;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: stretch;
    }
    
    .step-connector {
        width: 2px;
        height: 40px;
        align-self: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 1.5rem;
    }
    
    .fta-hero {
        padding: 3rem 0 2rem;
        min-height: 60vh;
    }
    

    
    .fta-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 0.75rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
        letter-spacing: 0.005em;
    }
    
    .fta-subtitle {
        font-size: clamp(2rem, 6.5vw, 2.75rem);
        margin-bottom: 1.25rem;
        line-height: 1.2;
        font-weight: 800;
        
        /* Simplified but effective shadows for mobile */
        text-shadow: 
            0 2px 6px rgba(0, 0, 0, 0.9),
            0 4px 12px rgba(0, 0, 0, 0.7),
            0 0 20px rgba(255, 255, 255, 0.3),
            0 0 40px rgba(30, 64, 175, 0.4);
        
        /* Reduced animation intensity for mobile performance */
        animation: subtitlePulseMobile 5s ease-in-out infinite;
    }
    
    .event-date-venue {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
        padding: 0;
        margin-bottom: 1.25rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        font-size: 1rem;
    }
    
    .btn-cta-primary {
        min-width: 260px;
        padding: 16px 30px;
        font-size: 1rem;
    }

    .focus-areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    


    /* Photo Carousel Responsive */
    .photo-card {
        min-width: calc(50% - 0.75rem);
    }
    
    .photo-carousel-nav .carousel-prev {
        left: -15px;
    }
    
    .photo-carousel-nav .carousel-next {
        right: -15px;
    }
    
    .photo-container {
        height: 250px;
    }

    .involvement-options {
        grid-template-columns: 1fr;
    }

    .involvement-card.featured {
        transform: none;
    }
    

}

@media (max-width: 480px) {
    .fta-hero {
        padding: 2.5rem 0 2rem;
        min-height: 50vh;
    }
    


    .section-title {
        font-size: 1.75rem;
    }

    .get-involved-title {
        font-size: 2rem;
    }

    .mission-card,
    .vision-card,
    .focus-area-card,
    .involvement-card {
        padding: 2rem;
    }
    
    /* Photo Carousel Mobile */
    .photo-card {
        min-width: 100%;
        margin-right: 0;
    }
    
    .photo-carousel {
        gap: 0;
    }
    
    .photo-container {
        height: 250px;
    }
    
    .photo-carousel-nav .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .photo-carousel-nav .carousel-prev,
    .photo-carousel-nav .carousel-next {
        position: relative;
        left: auto;
        right: auto;
    }
    
    .photo-carousel-nav {
        position: relative;
        padding: 1rem 0 0;
        justify-content: center;
        gap: 1rem;
        transform: none;
        top: auto;
    }
    

    

    


    .scroll-indicator {
        bottom: 0.75rem;
    }
    
    .fta-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        text-shadow: 0 3px 15px rgba(0, 0, 0, 0.7);
        margin-bottom: 1rem;
        letter-spacing: -0.005em;
    }
    
    .fta-subtitle {
        font-size: clamp(2.25rem, 9vw, 3rem);
        padding: 0 1.5rem;
        line-height: 1.1;
        margin-bottom: 1.25rem;
        font-weight: 900;
    }
    
    .event-date-venue {
        font-size: clamp(1rem, 4vw, 1.25rem);
        padding: 0;
        margin-bottom: 0.75rem;
        line-height: 1.3;
    }
    
    .btn-cta-primary {
        min-width: 260px;
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}

/* ======= Animation Support ======= */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/* ======= Print Styles ======= */
@media print {
    .fta-hero {
        background: var(--fta-white) !important;
        color: var(--fta-gray-900) !important;
        padding: 2rem 0 !important;
    }
    
    .section-background,
    .hero-background,
    .involvement-background {
        display: none !important;
    }
    
    .btn,
    .scroll-indicator,
    .partnership-nav {
        display: none !important;
    }
}

/* ======= FTA Page Isolation ======= */
/* Ensure FTA styles don't interfere with global styles */
.fta-page * {
    box-sizing: border-box;
}

/* Ensure footer and other elements after FTA page aren't affected */
.fta-page + * {
    clear: both;
    margin-top: 0;
}

/* Override any container styles that might be inherited */
.fta-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Ensure proper spacing after FTA page */
.fta-page:last-child {
    margin-bottom: 0;
}

/* Reset any inherited z-index issues */
.fta-page {
    position: relative;
    z-index: 1;
}



/* Responsive Design */

@media (max-width: 768px) {
    .fta-members {
        padding: 40px 0;
    }
    
    .member-card {
        width: 280px;
        height: 160px;
        padding: 15px;
    }
    
    .member-logo-container {
        height: 120px;
        padding: 12px;
    }
    
    .member-logo {
        height: 120px;
    }
    
    .members-carousel-container .carousel-nav {
        display: none;
    }
    
    .coalition-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .coalition-title {
        font-size: 1.5rem;
    }
    
    .coalition-banner {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .fta-hero {
        padding: 2.5rem 0 2rem;
        min-height: 50vh;
    }
    
    .fta-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        margin-bottom: 0.75rem;
        letter-spacing: 0.01em;
    }
    
    .fta-subtitle {
        font-size: clamp(1.75rem, 7.5vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 
            0 0 12px rgba(255, 255, 255, 0.9),
            0 0 25px rgba(255, 255, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3);
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
    }
    
    .event-date-venue {
        font-size: clamp(0.95rem, 3.5vw, 1.125rem);
        padding: 0;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .btn-cta-primary {
        min-width: 240px;
        padding: 15px 26px;
        font-size: 0.95rem;
    }
}


/* Force visibility for all hero elements */
.fta-title,
.title-main,
.fta-subtitle,
.hero-cta-section,
.hero-buttons,
.btn {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 20 !important;
}

.hero-buttons .btn {
    display: inline-flex !important;
}

/* Primary CTA Button */
.btn-cta-primary {
    position: relative;
    background: linear-gradient(135deg, #f95c06 0%, #e14d00 100%);
    border: none;
    color: white !important;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    letter-spacing: 0.02em;
    box-shadow: 
        0 8px 24px rgba(249, 92, 6, 0.35),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    min-width: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: none;
    text-decoration: none;
    font-family: 'Inter', 'Segoe UI', 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-cta-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 ease;
}

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

.btn-cta-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(249, 92, 6, 0.6),
        0 10px 30px rgba(0, 0, 0, 0.35);
    color: white !important;
    text-decoration: none;
    background: linear-gradient(135deg, #ff6b1a 0%, #f95c06 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-cta-primary .btn-text {
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary .btn-icon {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover .btn-icon {
    transform: scale(1.1);
}



@media (max-width: 480px) {
    .fta-hero {
        padding: 2.5rem 0 2rem;
        min-height: 50vh;
    }
    
    .fta-title {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        margin-bottom: 0.75rem;
        letter-spacing: 0.01em;
    }
    
    .fta-subtitle {
        font-size: clamp(1.75rem, 7.5vw, 2.25rem);
        line-height: 1.2;
        margin-bottom: 1rem;
        font-weight: 700;
        text-shadow: 
            0 0 12px rgba(255, 255, 255, 0.9),
            0 0 25px rgba(255, 255, 255, 0.6),
            0 2px 4px rgba(0, 0, 0, 0.3);
        filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.2));
    }
    
    .event-date-venue {
        font-size: clamp(0.95rem, 3.5vw, 1.125rem);
        padding: 0;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .btn-cta-primary {
        min-width: 240px;
        padding: 15px 26px;
        font-size: 0.95rem;
    }
}

/* ======= FTA Media Section ======= */
.fta-media-section {
    padding: 4rem 0;
    background: var(--fta-white);
    position: relative;
}

.media-buttons-container {
    margin-top: 2rem;
}

.media-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.media-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--fta-white);
    border: 1px solid var(--fta-gray-200);
    border-radius: 12px;
    text-decoration: none;
    color: var(--fta-gray-900);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.media-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: var(--fta-gray-900);
}

.media-btn-icon {
    width: 50px;
    height: 50px;
    background: var(--fta-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fta-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.media-btn-content {
    flex: 1;
}

.media-btn-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--fta-gray-900);
    margin-bottom: 0.25rem;
    font-family: 'Inter', sans-serif;
}

.media-btn-description {
    font-size: 0.9rem;
    color: var(--fta-gray-600);
    margin: 0;
    line-height: 1.4;
}

.media-btn-arrow {
    color: var(--fta-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Responsive Styles for All Sections */
@media (max-width: 768px) {
    .fta-about-conference,
    .fta-conference-overview,
    .fta-marketplace,
    .fta-exhibitor-profile,
    .fta-photo-gallery,
    .fta-supporters,
    .fta-media-section {
        padding: 3rem 0;
    }
    
    .media-buttons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 0 1rem;
    }
    
    .media-btn {
        padding: 1.25rem;
    }
    
    .photo-carousel-nav .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fta-about-conference,
    .fta-conference-overview,
    .fta-marketplace,
    .fta-exhibitor-profile,
    .fta-photo-gallery,
    .fta-supporters,
    .fta-media-section {
        padding: 2rem 0;
    }
    
    .media-buttons-grid {
        margin: 0 0.5rem;
    }
    
    .media-btn {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .media-btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .photo-carousel-nav {
        display: none;
    }
    
    .photo-card {
        min-width: 100%;
        margin-right: 0;
    }
}

/* ======= FTA Custom Footer ======= */
.fta-footer {
    background: linear-gradient(135deg, var(--fta-gray-900) 0%, var(--fta-navy) 100%);
    color: var(--fta-white);
    margin-top: 4rem;
}

.fta-footer-widgets-container {
    padding: 4rem 0 2rem;
    position: relative;
}

.fta-footer-widgets-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.fta-footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.fta-footer-widget {
    margin-bottom: 1rem;
}

.fta-footer-widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fta-white);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-heading);
    position: relative;
    padding-bottom: 0.5rem;
}

.fta-footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--fta-primary);
}

.fta-footer-widget p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.fta-footer-links,
.fta-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fta-footer-links li,
.fta-contact-info li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.fta-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.fta-footer-links a:hover {
    color: var(--fta-primary);
    padding-left: 5px;
}

.fta-contact-info li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.fta-contact-info i {
    color: var(--fta-primary);
    width: 16px;
    flex-shrink: 0;
}



/* Responsive FTA Footer */
@media (max-width: 768px) {
    .fta-footer-widgets-container {
        padding: 3rem 0 1.5rem;
    }
    
    .fta-footer-widgets {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    

}

@media (max-width: 480px) {
    .fta-footer-widgets-container {
        padding: 2rem 0 1rem;
    }
    
    .fta-footer-widget-title {
        font-size: 1.125rem;
    }
}