/* ========================================
   CTA BURKINA - Design System
   ======================================== */

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

:root {
    --forest-deep: #0d3b2e;
    --forest-mid: #1a5928;
    --sage-light: #87a96b;
    --sage-pale: #a8c99c;
    --gold: #d4af37;
    --amber: #f59e0b;
    --sunset: #ff6b35;
    --cream: #faf8f3;
    --sand: #e8dcc4;
    --earth: #8b6f47;
    --white: #ffffff;
    --dark: #1a1a1a;
}

[data-theme="dark"] {
    --cream: #1a1a1a;
    --white: #2a2a2a;
    --dark: #f0f0f0;
    --sand: #2d2d2d;
    --earth: #b8b8b8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.7;
    transition: background 0.3s, color 0.3s;
}

/* ========================================
   Particles Background
   ======================================== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.3;
}

/* ========================================
   Cursor Trail Effect
   ======================================== */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135, 169, 107, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease-out;
    z-index: 9999;
}

/* ========================================
   Floating Background Elements
   ======================================== */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.03;
    animation: float 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 600px;
    height: 600px;
    background: var(--forest-mid);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 400px;
    height: 400px;
    background: var(--amber);
    bottom: -100px;
    right: -100px;
    animation-delay: -7s;
}

.bg-circle:nth-child(3) {
    width: 500px;
    height: 500px;
    background: var(--sage-light);
    top: 50%;
    right: -250px;
    animation-delay: -14s;
}

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

/* ========================================
   Navigation
   ======================================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 248, 243, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    text-decoration: none;
}

.logo img {
    height: 135px;
    width: auto;
    object-fit: contain;
}

nav ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

nav a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: all 0.3s ease;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav a:hover {
    color: var(--forest-mid);
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: var(--forest-mid);
}

nav a.active::after {
    width: 100%;
}

/* Navigation Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 2px solid var(--forest-mid);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--forest-mid);
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--forest-mid);
    color: var(--white);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    padding: 0.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    min-width: 150px;
}

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

.lang-option {
    padding: 0.7rem 1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-option:hover {
    background: var(--cream);
}

/* Theme Toggle */
.theme-toggle {
    width: 60px;
    height: 30px;
    background: var(--forest-mid);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s;
}

.theme-toggle::after {
    content: '🌞';
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: all 0.3s;
}

[data-theme="dark"] .theme-toggle::after {
    content: '🌙';
    left: 32px;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--forest-mid);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.1);
    padding: 6rem 2rem 2rem;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 0;
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: var(--forest-mid);
    padding-left: 1rem;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--forest-mid), var(--sage-light));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(26, 89, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 89, 40, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--forest-mid);
    border: 2px solid var(--forest-mid);
}

.btn-secondary:hover {
    background: var(--forest-mid);
    color: var(--white);
    transform: translateY(-3px);
}

/* ========================================
   Scroll to Top Button
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--forest-mid), var(--sage-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(26, 89, 40, 0.3);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26, 89, 40, 0.4);
}

/* ========================================
   Progress Bar
   ======================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    z-index: 10000;
    transform-origin: left;
    transition: transform 0.1s;
}

/* ========================================
   Section Styles
   ======================================== */
section {
    padding: 8rem 3rem;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--forest-deep), var(--sage-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--earth);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-bottom-left-radius: 80px;
    border-bottom-right-radius: 80px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 2s ease-in-out, transform 6s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* Soft gradient overlay matching the cream background */
    background: linear-gradient(105deg, 
                var(--cream) 0%, 
                var(--cream) 35%, 
                rgba(250, 248, 243, 0.7) 60%, 
                rgba(250, 248, 243, 0.2) 80%,
                transparent 100%);
    z-index: 1;
}

[data-theme="dark"] .hero-overlay {
    background: linear-gradient(105deg, 
                var(--cream) 0%, 
                var(--cream) 35%, 
                rgba(26, 26, 26, 0.7) 60%, 
                rgba(26, 26, 26, 0.2) 80%,
                transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 50%, var(--sage-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-text p {
    font-size: 1.3rem;
    color: var(--earth);
    margin-bottom: 3rem;
    font-weight: 300;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

/* Typewriter Effect */
.typewriter {
    display: inline;
    border-right: 3px solid var(--amber);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-visual {
    position: relative;
    height: 600px;
    animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: 30px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-card:hover {
    transform: translateY(-10px) rotate(2deg) scale(1.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

.hero-card:nth-child(1) {
    width: 320px;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--forest-mid), var(--forest-deep));
    color: var(--white);
    animation: floatCard 6s infinite ease-in-out;
}

.hero-card:nth-child(2) {
    width: 280px;
    top: 180px;
    right: 0;
    background: var(--white);
    animation: floatCard 6s infinite ease-in-out -2s;
}

.hero-card:nth-child(3) {
    width: 300px;
    bottom: 0;
    left: 80px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--white);
    animation: floatCard 6s infinite ease-in-out -4s;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
}

/* ========================================
   Statistics Section
   ======================================== */
.stats-section {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

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

.stat-item {
    text-align: center;
    color: var(--white);
    position: relative;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========================================
   Video Section
   ======================================== */
.video-section {
    padding: 8rem 3rem;
    background: var(--sand);
    position: relative;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.video-placeholder {
    position: relative;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--forest-mid);
    transition: all 0.3s;
    position: absolute;
}

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

/* ========================================
   About Section
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--amber), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(135, 169, 107, 0.3));
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--forest-deep);
    font-weight: 700;
}

.about-card p {
    color: var(--earth);
    line-height: 1.8;
    font-weight: 300;
}

/* ========================================
   Objectives Section
   ======================================== */
.objectives {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 100%);
    color: var(--white);
}

.objectives .section-title,
.objectives .section-subtitle {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

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

.objective-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.objective-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    opacity: 0;
    transition: opacity 0.5s;
}

.objective-card:hover::before {
    opacity: 0.1;
}

.objective-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--amber);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.objective-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--amber);
    opacity: 0.5;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.objective-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.objective-card p {
    line-height: 1.7;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* ========================================
   Domains Section
   ======================================== */
.domains {
    background: var(--sand);
}

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

.domain-card {
    background: var(--white);
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.domain-card::before {
    content: attr(data-icon);
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 8rem;
    opacity: 0.1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.domain-card:hover::before {
    opacity: 0.2;
    transform: scale(1.2) rotate(10deg);
}

.domain-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(26, 89, 40, 0.05), rgba(135, 169, 107, 0.1));
}

.domain-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(212, 175, 55, 0.1));
}

.domain-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(232, 220, 196, 0.2));
}

.domain-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(245, 158, 11, 0.1));
}

.domain-card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.domain-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.domain-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-deep);
    font-weight: 700;
}

.domain-card p {
    color: var(--earth);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    padding: 6rem 3rem;
    background: var(--cream);
}

.partners-carousel {
    max-width: 1200px;
    margin: 3rem auto;
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.partner-logo {
    min-width: 200px;
    height: 100px;
    background: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--earth);
}

.partner-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 6 - 4rem * 6)); }
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 8rem 3rem;
    background: var(--white);
}

.testimonials-grid {
    max-width: 1200px;
    margin: 3rem auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--cream);
    padding: 3rem;
    border-radius: 25px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    transition: all 0.5s;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    font-family: 'Playfair Display', serif;
    color: var(--amber);
    opacity: 0.2;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    margin-bottom: 2rem;
    font-style: italic;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.author-info p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   Membership Section
   ======================================== */
.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.membership-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--amber) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.membership-card:hover::before {
    opacity: 0.05;
}

.membership-card:hover {
    transform: translateY(-15px) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.membership-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 1;
}

.membership-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--forest-deep);
    position: relative;
    z-index: 1;
}

.membership-card > p {
    color: var(--earth);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.membership-card ul {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.membership-card li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark);
    font-weight: 300;
    transition: all 0.3s;
}

.membership-card li:hover {
    padding-left: 2.5rem;
    color: var(--forest-mid);
}

.membership-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: linear-gradient(135deg, var(--forest-deep), var(--forest-mid));
    color: var(--white);
}

.contact .section-title,
.contact .section-subtitle {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: var(--white);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    gap: 1.5rem;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: var(--amber);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    font-family: inherit;
    font-size: 1rem;
    color: var(--dark);
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber);
    background: var(--white);
    transform: translateY(-2px);
}

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

/* ========================================
   Footer
   ======================================== */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

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

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

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

.footer-text {
    opacity: 0.7;
    margin-bottom: 2rem;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
    font-weight: 300;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--amber);
}

/* ========================================
   Page Hero (for sub-pages)
   ======================================== */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(135, 169, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        var(--cream);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--forest-mid) 50%, var(--sage-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--earth);
    font-weight: 300;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.page-hero-content .breadcrumb {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: var(--earth);
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.page-hero-content .breadcrumb a {
    color: var(--forest-mid);
    text-decoration: none;
    transition: color 0.3s;
}

.page-hero-content .breadcrumb a:hover {
    color: var(--amber);
}

.page-hero-content .breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* ========================================
   Content Image Sections
   ======================================== */

/* Full-width image banner */
.image-banner {
    position: relative;
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 30px;
    margin: 3rem auto;
    max-width: 1400px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.image-banner img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.image-banner:hover img {
    transform: scale(1.03);
}

.image-banner .banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 59, 46, 0.8) 0%, rgba(13, 59, 46, 0.2) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    color: var(--white);
}

.image-banner .banner-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.image-banner .banner-overlay p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    font-weight: 300;
}

/* Split content (text + image side by side) */
.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.split-content.reverse {
    direction: rtl;
}

.split-content.reverse > * {
    direction: ltr;
}

.split-content-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.split-content-text p {
    color: var(--earth);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.split-content-text .highlight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.split-content-text .highlight-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--dark);
    font-weight: 400;
}

.split-content-text .highlight-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-size: 1rem;
}

.split-content-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.split-content-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.split-content-image:hover img {
    transform: scale(1.05);
}

.split-content-image .image-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Image gallery grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 59, 46, 0.9) 0%, transparent 100%);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
}

.gallery-item .gallery-caption h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.gallery-item .gallery-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 300;
}

/* Timeline */
.timeline {
    max-width: 900px;
    margin: 3rem auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--amber), var(--gold), var(--forest-mid));
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
    padding-right: calc(50% + 2rem);
    text-align: right;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: calc(50% + 2rem);
    text-align: left;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    border-radius: 50%;
    border: 4px solid var(--cream);
    box-shadow: 0 0 0 4px var(--amber);
    z-index: 2;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.timeline-year {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--amber);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--earth);
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Feature highlight blocks */
.feature-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 3rem auto;
}

.feature-block {
    background: var(--white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.feature-block-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.feature-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.feature-block-content {
    padding: 2rem;
}

.feature-block-content h4 {
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.feature-block-content p {
    color: var(--earth);
    line-height: 1.7;
    font-weight: 300;
}

/* Map placeholder */
.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
    .split-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .split-content.reverse {
        direction: ltr;
    }

    .image-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .feature-blocks {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: row;
        padding-right: 0;
        padding-left: 3.5rem;
        text-align: left;
    }

    .timeline-dot {
        left: 20px;
    }
}

@media (max-width: 768px) {
    .image-banner img {
        height: 350px;
    }

    .image-banner .banner-overlay {
        padding: 2rem;
    }

    .image-banner .banner-overlay h3 {
        font-size: 1.5rem;
    }

    .split-content-image img {
        height: 300px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 250px;
    }

    .feature-block-image {
        height: 200px;
    }

    .map-container {
        height: 300px;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 4rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loader-text {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: var(--forest-mid);
    font-weight: 600;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1200px) {
    .hero-content {
        gap: 3rem;
    }

    .hero-visual {
        height: 500px;
    }

    .about-grid,
    .objectives-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 1024px) {
    nav ul {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-visual {
        order: 2;
        height: 400px;
        margin: 0 auto;
        max-width: 500px;
    }

    .cta-group {
        justify-content: center;
    }

    .domains-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    section {
        padding: 6rem 2rem;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo::before {
        font-size: 1.6rem;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .hero {
        min-height: auto;
        padding: 6rem 1.5rem 4rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-card {
        padding: 2rem;
    }

    .hero-card:nth-child(1) {
        width: 280px;
    }

    .hero-card:nth-child(2) {
        width: 240px;
        top: 150px;
    }

    .hero-card:nth-child(3) {
        width: 260px;
        left: 40px;
    }

    .card-icon {
        font-size: 2.5rem;
    }

    .card-title {
        font-size: 1.2rem;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        padding: 2rem;
    }

    .about-icon {
        font-size: 3rem;
    }

    .about-card h3 {
        font-size: 1.5rem;
    }

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

    .objective-card {
        padding: 2rem;
    }

    .objective-number {
        font-size: 3rem;
    }

    .objective-card h3 {
        font-size: 1.3rem;
    }

    .domain-card {
        min-height: 350px;
        padding: 2.5rem 2rem;
    }

    .domain-card::before {
        font-size: 6rem;
        top: 1.5rem;
        right: 1.5rem;
    }

    .domain-icon {
        font-size: 3rem;
    }

    .domain-card h3 {
        font-size: 1.6rem;
    }

    .domain-card p {
        font-size: 1rem;
    }

    .membership-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .membership-card {
        padding: 2.5rem 2rem;
    }

    .membership-badge {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .membership-card h3 {
        font-size: 1.6rem;
    }

    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-group .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .cursor-glow {
        display: none;
    }

    .bg-circle:nth-child(1) {
        width: 400px;
        height: 400px;
    }

    .bg-circle:nth-child(2) {
        width: 300px;
        height: 300px;
    }

    .bg-circle:nth-child(3) {
        width: 350px;
        height: 350px;
    }

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

    .stat-number {
        font-size: 3rem;
    }

    .scroll-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }

    .nav-controls {
        gap: 1rem;
    }

    .theme-toggle {
        width: 50px;
        height: 26px;
    }

    .theme-toggle::after {
        width: 22px;
        height: 22px;
        font-size: 0.8rem;
    }

    [data-theme="dark"] .theme-toggle::after {
        left: 26px;
    }

    .stats-section,
    .video-section,
    .partners-section,
    .testimonials-section {
        padding: 4rem 1.5rem;
    }

    .page-hero {
        min-height: 40vh;
        padding: 6rem 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .hero-card {
        padding: 1.5rem;
    }

    .hero-card:nth-child(1) {
        width: 240px;
    }

    .hero-card:nth-child(2) {
        width: 200px;
        top: 120px;
    }

    .hero-card:nth-child(3) {
        width: 220px;
        left: 20px;
    }

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

    .about-card,
    .objective-card,
    .membership-card {
        padding: 1.5rem;
    }

    .domain-card {
        padding: 2rem 1.5rem;
        min-height: 320px;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 1rem;
    }

    nav {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .mobile-menu {
        width: 90%;
    }
}

@media (hover: none) and (pointer: coarse) {
    .about-card:hover,
    .objective-card:hover,
    .domain-card:hover,
    .membership-card:hover {
        transform: none;
    }

    .about-card:active,
    .objective-card:active,
    .domain-card:active,
    .membership-card:active {
        transform: scale(0.98);
    }

    nav a,
    .mobile-menu a,
    .btn {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
