/* Fonts */
:root {
    --font-primary: 'Vazirmatn', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Colors from New Chitta Bank Logo */
    --primary-blue: #1E40AF;        /* آبی اصلی لوگو */
    --primary-blue-dark: #1E3A8A;   /* آبی تیره‌تر */
    --primary-blue-light: #3B82F6;  /* آبی روشن‌تر */
    
    --cyan: #06B6D4;                /* سبز فیروزه‌ای لوگو */
    --cyan-dark: #0891B2;           /* فیروزه‌ای تیره */
    --cyan-light: #22D3EE;          /* فیروزه‌ای روشن */
    --turquoise: #14B8A6;           /* سبز آبی */
    
    --red-accent: #991B1B;          /* قرمز تیره لوگو */
    --red-accent-light: #DC2626;    /* قرمز روشن */
    --red-accent-dark: #7F1D1D;     /* قرمز خیلی تیره */
    
    /* Background Colors - سفید و خاکستری */
    --white: #ffffff;
    --off-white: #F9FAFB;           /* خاکستری خیلی روشن */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --gray-light: #F3F4F6;
    --gray-medium: #6B7280;
    --gray-dark: #374151;
    --gray-darker: #1F2937;
    
    /* Text Colors */
    --text-primary: #111827;        /* متن اصلی تیره */
    --text-secondary: #6B7280;      /* متن ثانویه */
    --text-light: #9CA3AF;          /* متن روشن */
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    --transition-slow: all 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--cyan) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--cyan) 0%, var(--turquoise) 100%);
    --gradient-accent: linear-gradient(135deg, var(--red-accent) 0%, var(--red-accent-light) 100%);
}

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

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

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================
   Skip to Main Content - Accessibility
========================================== */
.skip-link {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    font-weight: 600;
    z-index: 100000;
    border-radius: 0 0 0 4px;
}

.skip-link:focus {
    top: 0;
    outline: 3px solid var(--red-accent);
    outline-offset: 2px;
}

/* ==========================================
   Loading Screen
========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.pulse-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
        box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.7;
        box-shadow: 0 8px 30px rgba(6, 182, 212, 0.6);
    }
}

/* ==========================================
   Header & Navigation
========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
    transition: var(--transition);
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.main-header.scrolled .logo-text {
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 14px;
    position: relative;
    transition: var(--transition-fast);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
    white-space: nowrap;
}

.main-header.scrolled .nav-link {
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.nav-link:hover {
    color: #B91C1C;
}

/* حالت active - وقتی روی همون بخش هستیم */
.nav-link.active {
    color: #B91C1C !important;
    font-weight: 600;
}

.main-header.scrolled .nav-link.active {
    color: #B91C1C !important;
    font-weight: 600;
}

.nav-link::after {
    display: none;
}

.lang-switch .nav-link {
    padding: 6px 14px;
    border: 1px solid var(--white);
    border-radius: 20px;
    font-size: 0.8rem;
    color: var(--white);
}

.main-header.scrolled .lang-switch .nav-link {
    border-color: var(--white);
    color: var(--white);
}

.lang-switch .nav-link:hover {
    background: #B91C1C;
    color: var(--white);
    border-color: var(--cyan);
}
    background: var(--cyan);
    color: var(--primary-blue);
}

.lang-switch .nav-link::after {
    display: none;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    padding: 15px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    min-width: 220px;
    list-style: none;
    margin-top: 15px;
}

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

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--gray-light);
    color: var(--accent-blue);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
    border-radius: 2px;
}

/* ==========================================
   Hero Section - Dual Parallax Effect
========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 700px;
}

.parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Layer 1: Sky Background - Moves with scroll */
.hero-sky-layer {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    will-change: transform;
    z-index: 1;
}

/* Layer 2: Mountains Foreground - Stays fixed */
.hero-mountains-layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.4) 0%, 
        rgba(0, 0, 0, 0.5) 50%, 
        rgba(0, 0, 51, 0.7) 100%);
    z-index: 3;
    pointer-events: none;
}

/* Hero Section Alignment - Force Right (RTL) */
.hero-section .container.hero-content,
.hero-section .hero-content,
.hero-content {
    text-align: right !important;
}

.hero-content *,
.hero-content h1,
.hero-content p,
.hero-main-title,
.hero-description {
    text-align: right !important;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: right !important;
    color: var(--white);
    padding: 0 20px;
}

.hero-content * {
    text-align: right !important;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-main-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    margin: 0 0 var(--spacing-3) 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
    color: #FFF5EE;
    text-shadow: 
        0 2px 10px rgba(255, 245, 238, 0.5),
        0 4px 20px rgba(255, 255, 255, 0.3);
    text-align: right !important;
}

.hero-subtitle-large {
    font-family: var(--font-primary);
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
    color: #F5F5DC;
    text-shadow: 
        0 2px 8px rgba(245, 245, 220, 0.4),
        0 4px 15px rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-family: var(--font-serif);
    font-size: clamp(1.125rem, 2.2vw, 1.375rem);
    font-weight: 400;
    line-height: 1.9;
    margin: var(--spacing-6) 0 0 0;
    max-width: 750px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
}

/* RTL (Right to Left) - Persian */
[dir="rtl"] .hero-description {
    padding-right: var(--spacing-3);
    border-right: 3px solid var(--color-accent-600);
    text-align: right !important;
}

/* LTR (Left to Right) - English */
[dir="ltr"] .hero-description {
    padding-left: var(--spacing-3);
    border-left: 3px solid var(--color-accent-600);
    text-align: left !important;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.animate-text {
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.lead-text {
    font-size: clamp(1rem, 2vw, 1.4rem);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.6s;
    font-weight: 300;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(30px);
    }
}

/* ==========================================
   Container & Utilities
========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.3;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.section-intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--gradient-secondary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 255, 0.3);
}

/* ==========================================
   Introduction Section
========================================== */
/* ==========================================
   Introduction Section - Templeton Style
========================================== */
.intro-section {
    padding: 0;
    background: var(--white);
    overflow: hidden;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.intro-image-container {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
}

.intro-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.intro-image-container:hover .intro-hero-image {
    transform: scale(1.05);
}

.intro-content-container {
    display: flex;
    align-items: center;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--white);
}

.intro-content {
    max-width: 600px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-primary);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .intro-image-container {
        height: 400px;
    }
    
    .intro-content-container {
        padding: var(--spacing-lg) var(--spacing-md);
    }
}

/* ==========================================
   What Section
========================================== */
.what-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.what-content {
    max-width: 1000px;
    margin: 0 auto;
}

.what-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.what-item {
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.what-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.what-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.what-item.highlight {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

/* ==========================================
   Future Section
========================================== */
.future-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.future-image {
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-dark));
    box-shadow: var(--shadow-xl);
    position: relative;
    transition: all 0.5s ease;
}

.future-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(185, 28, 28, 0.15), rgba(30, 64, 175, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.future-image:hover::before {
    opacity: 1;
}

.future-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35);
}

.future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.future-image:hover img {
    transform: scale(1.08);
}

.future-content {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
}

.future-content .section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.feature-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0 30px;
    flex-wrap: wrap;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.feature-icon-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: var(--transition);
}

.feature-icon-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-blue);
}

.feature-icon-item:hover img {
    transform: scale(1.15);
}

.feature-icon-item:hover span {
    color: var(--cyan-light);
}

.future-text p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.future-text p.highlight-text {
    font-weight: 600;
    color: #B91C1C !important;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================================
   Mission Section
========================================== */
.mission-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.mission-header {
    text-align: center;
    margin-bottom: 60px;
}

.mission-intro,
.mission-core {
    max-width: 900px;
    margin: 0 auto 60px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.mission-intro h3,
.mission-core h3 {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 20px;
}

.mission-intro p,
.mission-core p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

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

.mission-actions h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.action-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition);
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

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

.action-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--cyan);
    margin-bottom: 15px;
    line-height: 1;
}

.action-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================
   Membership Section
========================================== */
.membership-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.membership-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.membership-types {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.membership-types h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-card {
    background: var(--gray-light);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.type-card:hover {
    background: var(--white);
    border-color: var(--cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
}

.type-card h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.type-label {
    font-size: 0.9rem;
    color: var(--cyan);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.type-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.membership-requirements {
    max-width: 1200px;
    margin: 0 auto;
}

.membership-requirements h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    text-align: center;
}

.requirement-note {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 255, 255, 0.3);
}

.requirement-note p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.requirement-note p:last-child {
    margin-bottom: 0;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.requirement-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--cyan), var(--primary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.requirement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(6, 182, 212, 0.25);
    border-color: var(--cyan-light);
}

.req-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    transition: all 0.3s ease;
}

.requirement-card:hover .req-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.4);
}

.requirement-card h4 {
    font-size: 1.4rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-weight: 700;
}

.req-subtitle {
    font-size: 0.95rem;
    color: var(--cyan-dark);
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    letter-spacing: 0.3px;
}

.req-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.req-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    color: var(--text-secondary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.req-tag:hover {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.requirement-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* Full-width Banner Image */
.banner-image-full {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.final-note {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: var(--primary-blue);
    font-weight: 600;
}

/* ==========================================
   Audiences Section
========================================== */
.audiences-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.audiences-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.audiences-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.audience-card {
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-right: 5px solid var(--cyan);
}

.audience-card:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: hue-rotate(180deg) brightness(1.2);
    display: flex;
    justify-content: center;
    align-items: center;
}

.audience-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: none;
    transition: var(--transition);
}

.audience-card:hover .audience-icon img {
    transform: scale(1.1);
}

.audience-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.audience-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-primary);
    margin: 0 0 25px 0;
}

/* Audience Register Button */
.audience-register-btn {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
    margin-top: 10px;
}

.audience-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.audience-register-btn:active {
    transform: translateY(0);
}

.audience-register-btn svg {
    transition: transform 0.3s ease;
}

.audience-register-btn:hover svg {
    transform: scale(1.1);
}

/* ==========================================
   Prize Section
========================================== */
.prize-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-100) 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.prize-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 64, 175, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.prize-header {
    text-align: center;
    margin-bottom: 80px;
}

.prize-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.prize-main-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 7rem);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.prize-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 400;
    color: var(--text-secondary);
}

.prize-content {
    max-width: 1200px;
    margin: 0 auto;
}

.prize-block {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.prize-block:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.prize-block h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.prize-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin: 0;
}

.philosophy-text p {
    margin-bottom: 10px;
    font-size: 1.15rem;
    line-height: 1.8;
}

.prize-fields {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-fields h3 {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.fields-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.field-card {
    background: var(--white);
    padding: 25px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.field-card:hover {
    border-color: var(--primary-blue);
    transform: translateX(-5px);
    box-shadow: var(--shadow-md);
}

.field-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 600;
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}

.field-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cyan);
    min-width: 40px;
}

.field-card.highlight .field-number {
    color: var(--white);
}

.field-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
    color: var(--text-primary);
}

.field-card.highlight p {
    color: var(--white);
}

.prize-type {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-type h3 {
    font-size: 1.8rem;
    color: var(--cyan);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.prize-type p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 15px;
}

.prize-examples {
    margin-top: 25px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.prize-examples ul {
    list-style: none;
    padding-right: 0;
}

.prize-examples li {
    padding: 10px 25px 10px 0;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
}

.prize-examples li::before {
    content: '◆';
    position: absolute;
    right: 0;
    color: var(--cyan);
}

.prize-process {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.prize-process h3 {
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cyan);
    min-width: 60px;
    text-align: center;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.step-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cyan-light);
}

.step-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   Contact Section
========================================== */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-content {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.info-card {
    background: var(--gray-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
}

.info-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 1.1rem;
    margin: 0;
}

.info-card a {
    color: inherit;
}

.info-card:hover a {
    color: var(--white);
}

.company-info {
    background: var(--gray-50);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    max-width: 800px;
    margin: 0 auto;
}

.company-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--primary-blue);
    text-align: center;
}

.company-details {
    display: grid;
    gap: 12px;
}

.company-details p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.company-details strong {
    color: var(--text-primary);
    font-weight: 600;
}

.newsletter-box {
    background: var(--gray-light);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-blue);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    justify-content: center;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: 2px solid var(--gray-medium);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ==========================================
   Zen Images - Decorative Consciousness Images
========================================== */
.zen-image-wrapper {
    margin: 60px auto;
    max-width: 400px;
    text-align: center;
    padding: 0 20px;
}

/* Zen Image Small - Half Size */
.zen-image-wrapper.zen-image-small {
    max-width: 250px;
}

.zen-image-wrapper.zen-image-small .zen-decorative {
    max-width: 250px;
}

.zen-decorative {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    display: block;
    margin: 0 auto 20px;
}

.zen-decorative:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.2);
}

.zen-caption {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
}

/* Responsive Zen Images - Tablet */
@media (max-width: 1024px) {
    .zen-image-wrapper {
        max-width: 350px;
        margin: 50px auto;
    }
    
    .zen-decorative {
        max-width: 300px;
    }
    
    .zen-image-wrapper.zen-image-small {
        max-width: 200px;
    }
    
    .zen-image-wrapper.zen-image-small .zen-decorative {
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .zen-image-wrapper {
        margin: 40px auto;
        max-width: 300px;
    }
    
    .zen-decorative {
        max-width: 280px;
        border-radius: 15px;
    }
    
    .zen-image-wrapper.zen-image-small {
        max-width: 180px;
    }
    
    .zen-caption {
        font-size: 1rem;
    }
}

/* ==========================================
   Newsletter Section (Before Footer)
========================================== */
.newsletter-section {
    background: linear-gradient(135deg, #1E40AF 0%, #1E3A8A 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-content-box {
    color: var(--white);
}

.newsletter-heading {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.newsletter-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.newsletter-form-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 40px;
}

.newsletter-main-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input-group {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid transparent;
    border-radius: 12px;
    color: var(--primary-dark);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.newsletter-button {
    padding: 16px 40px;
    background: #B91C1C;
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-button:hover {
    background: #991B1B;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(185, 28, 28, 0.3);
}

.newsletter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
}

.newsletter-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #B91C1C;
}

.newsletter-checkbox label {
    cursor: pointer;
    user-select: none;
}

.newsletter-checkbox a {
    color: var(--white);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.newsletter-checkbox a:hover {
    opacity: 0.8;
}

/* ==========================================
   Footer - Professional & Clean
========================================== */
.main-footer {
    background: #000;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(30, 64, 175, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Footer Main Content */
.footer-main-content {
    padding: 60px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer Logo & About */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-logo h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
}

/* Footer Social Icons Container */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

/* Social Links */
.social-link {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* ==========================================
   Responsive Design - Desktop (1024px)
========================================== */
    color: var(--gray-400);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

/* Footer Bottom */
/* Footer Newsletter */
.footer-newsletter {
    text-align: center;
    padding: 50px 0;
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: 50px;
}

.footer-newsletter h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-newsletter p {
    font-size: 1rem;
    color: var(--gray-400);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: var(--gray-700);
}

.newsletter-btn {
    padding: 14px 32px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
}

.newsletter-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.newsletter-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.newsletter-privacy label {
    cursor: pointer;
}

.newsletter-privacy a {
    color: var(--primary-blue);
    text-decoration: underline;
}

.newsletter-privacy a:hover {
    color: var(--primary-blue-light);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-newsletter {
        padding: 40px 0;
        margin-bottom: 40px;
    }
    
    .footer-newsletter h2 {
        font-size: 1.75rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    
    .newsletter-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
    
    .footer-newsletter {
        padding: 30px 0;
        margin-bottom: 30px;
    }
    
    .footer-newsletter h2 {
        font-size: 1.5rem;
    }
    
    .footer-newsletter p {
        font-size: 0.9rem;
    }
}

/* ==========================================
   Cookie Banner
========================================== */

.footer-links span {
    color: var(--gray-300);
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
}

/* ==========================================
   Custom Cursor
========================================== */
.cursor-dot,
.cursor-outline {
    pointer-events: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10000;
    transition: transform 0.1s;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
}

.cursor-outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--cyan);
    transition: all 0.2s;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* ==========================================
   Skeleton Loader
========================================== */
.skeleton-loader {
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        #f0f0f0 25%,
        #e0e0e0 50%,
        #f0f0f0 75%
    );
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================
   Scroll Reveal
========================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Responsive Design
========================================== */
/* ==========================================
   Responsive Layouts - Tablet (1024px)
========================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .newsletter-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-heading {
        font-size: 2rem;
    }
    
    .newsletter-form-box {
        padding: 32px;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .newsletter-title {
        font-size: 2.5rem;
    }
    
    .newsletter-form-wrapper {
        align-items: center;
    }
    
    .footer-info {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .future-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .future-content {
        min-height: auto;
    }
    
    .future-image {
        height: 350px;
    }
    
    .actions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fields-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .audiences-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
    }
}

/* ==========================================
   Responsive Layouts - Mobile (768px)
========================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .newsletter-wrapper {
        gap: 30px;
    }
    
    .newsletter-heading {
        font-size: 1.75rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    .newsletter-form-box {
        padding: 24px;
    }
    
    .form-input-group {
        flex-direction: column;
    }
    
    .newsletter-button {
        width: 100%;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-main-content {
        padding: 40px 0 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background: var(--primary-dark);
        flex-direction: column;
        padding: 40px 20px;
        transition: var(--transition);
        align-items: flex-start;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-menu a {
        color: var(--white);
    }
    
    .hero-section {
        min-height: 500px;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .action-card {
        padding: 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .newsletter-form input {
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 0;
    }
    
    .footer-newsletter-section {
        padding: 60px 0;
    }
    
    .footer-bottom-section {
        padding: 30px 0;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-main-content {
        padding: 50px 0 30px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-form input {
        width: 100%;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }
    
    .footer-about {
        grid-column: 1;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ==========================================
   Responsive Layouts - Small Mobile (480px)
========================================== */
@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-section {
        min-height: 450px;
        padding: 80px 0 50px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .prize-main-title {
        font-size: 2.5rem;
    }
    
    .action-card,
    .prize-block,
    .audience-card,
    .membership-card {
        padding: 25px 20px;
    }
    
    .step-card {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
    }
}

/* ==========================================
   Registration Modal & Form Styles
========================================== */

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.registration-form {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #000000 !important;
    -webkit-text-fill-color: #000000 !important;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.form-group select {
    cursor: pointer;
}

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

/* File Upload Styling */
.file-upload-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.file-input {
    display: none;
}

.file-upload-label {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-upload-label:hover {
    border-color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.1);
}

.file-upload-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.file-name {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.file-help {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: underline;
}

/* Checkbox Grid for Multiple Selections */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.checkbox-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--primary-blue);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-blue);
}

.checkbox-item span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.checkbox-item input[type="checkbox"]:checked + span {
    color: var(--white);
    font-weight: 600;
}

@media (max-width: 768px) {
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
}

.checkbox-group a:hover {
    color: var(--white);
}

/* Submit Button */
.submit-button {
    background: linear-gradient(135deg, #B91C1C 0%, #991B1B 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 28, 28, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

/* Success Message */
.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success svg {
    margin-bottom: 20px;
    animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Registration Link Button in Newsletter */
.registration-link-button {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.registration-link-button:hover {
    border-color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.registration-link-button:hover .arrow-icon {
    transform: translateX(-5px);
}

/* Responsive Adjustments for Modal */
@media (max-width: 768px) {
    .modal-container {
        margin: 20px 0;
        border-radius: 15px;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group {
        grid-column: 1;
    }
    
    .file-upload-label {
        padding: 20px 15px;
    }
}

/* ==========================================
   Image Integration Styles
========================================== */

/* Section Decorative Images */
.section-image-wrapper {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-decorative-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
    object-fit: cover;
}

.section-image-wrapper:hover .section-decorative-image {
    transform: scale(1.05);
}

/* Image Grid Decorative (3 small images) */
.image-grid-decorative {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.decorative-small {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.decorative-small:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

/* Future Section Image */
.future-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.future-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Inline Decorative Images */
.inline-image-wrapper {
    float: left;
    width: 250px;
    margin: 0 30px 20px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.inline-decorative {
    width: 100%;
    height: auto;
    display: block;
}

/* Visual Separator */
.visual-separator {
    width: 100%;
    height: 200px;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.separator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Visual Header (Multiple Images) */
.section-visual-header {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.header-decorative {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.header-decorative:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
}

/* Header Image Grid (3 images) */
.header-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.grid-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.grid-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* Prize Visual Intro */
.prize-visual-intro {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 0 auto 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 50px rgba(0, 255, 255, 0.3);
}

.prize-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8) contrast(1.1);
}

/* Fields Visual Header */
.fields-visual-header {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.field-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--cyan);
    box-shadow: 0 5px 25px rgba(0, 255, 255, 0.4);
    transition: var(--transition);
}

.field-img:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 40px rgba(0, 255, 255, 0.6);
}

/* ==========================================
   Responsive Adjustments for Images
========================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .inline-image-wrapper {
        float: none;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 30px;
    }
    
    .section-image-wrapper {
        max-width: 600px;
    }
    
    .zen-image-wrapper {
        max-width: 600px;
    }
    
    .header-decorative {
        width: 180px;
        height: 180px;
    }
    
    .field-img {
        width: 180px;
        height: 180px;
    }
    
    .image-grid-decorative {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile Landscape / Small Tablet (768px and below) */
@media (max-width: 768px) {
    .image-grid-decorative {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .decorative-small {
        height: 280px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-image-wrapper {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .zen-image-wrapper {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .zen-decorative {
        max-width: 100%;
        height: auto;
    }
    
    .header-image-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .grid-img {
        height: 250px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .section-visual-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .header-decorative {
        width: 100%;
        max-width: 350px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .fields-visual-header {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .field-img {
        width: 220px;
        height: 220px;
    }
    
    .visual-separator {
        height: 180px;
    }
    
    .prize-visual-intro {
        height: 250px;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    .section-image-wrapper {
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .zen-image-wrapper {
        margin-bottom: 25px;
        border-radius: 15px;
    }
    
    .decorative-small {
        height: 220px;
    }
    
    .grid-img {
        height: 200px;
    }
    
    .header-decorative {
        max-width: 280px;
    }
    
    .field-img {
        width: 180px;
        height: 180px;
    }
    
    .visual-separator {
        height: 150px;
    }
    
    .prize-visual-intro {
        height: 200px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .section-image-wrapper,
    .zen-image-wrapper {
        margin-bottom: 20px;
        border-radius: 12px;
    }
    
    .decorative-small {
        height: 180px;
    }
    
    .grid-img {
        height: 160px;
    }
    
    .header-decorative {
        max-width: 240px;
    }
    
    .field-img {
        width: 150px;
        height: 150px;
    }
    
    .zen-caption {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

/* ==========================================
   Simple Image Reveal Animation (No Structure Change)
========================================== */
/* حالت اولیه: عکس پنهان است */
img.cb-reveal-img {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(8px);
    transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

/* وقتی عکس به viewport رسید */
img.cb-reveal-img.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}