/* ========================================
   AtlantClinical CMS — Premium CRO Design
   World-class UX: MSD, Medpace, ICON, Eczacibasi
   ======================================== */

:root {
    /* Atlant Clinical Brand Colors */
    --primary: #002060;
    --primary-dark: #002060;
    --primary-light: #2C4D75;
    --secondary: #1689AF;
    --secondary-light: #4BACC6;
    --secondary-dark: #144E87;
    --accent: #4BACC6;
    --accent-pink: #E81F76;
    --accent-warm: #E81F76;
    --text: #1a1a1a;
    --text-secondary: #4a5568;
    --text-muted: #9B9B9B;
    --bg: #FFFFFF;
    --bg-light: #f8fafb;
    --bg-warm: #fafaf8;
    --bg-dark: #1B3A5C;
    --border: #e2e8f0;
    --border-light: #edf2f7;
    /* Legacy compat */
    --blue-900: #1B3A5C; --blue-800: #1f4268; --blue-700: #2a5278;
    --blue-600: #3a6a9c; --blue-500: #0097B2; --blue-400: #33b0c6; --blue-300: #66c5d8;
    --pink-600: #C10068; --pink-500: #E5007D; --pink-400: #F0339A; --pink-300: #F566B4;
    --teal-500: #0097B2; --teal-400: #00b5d4; --white: #FFFFFF;
    --gray-50: #fafbfc; --gray-100: #f7fafc; --gray-200: #edf2f7; --gray-300: #e2e8f0;
    --gray-400: #cbd5e0; --gray-500: #a0aec0; --gray-600: #718096; --gray-700: #4a5568;
    --gray-800: #2d3748; --gray-900: #1a202c;
    --success: #10B981; --danger: #EF4444; --warning: #F59E0B;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-display: 'Inter', sans-serif;
    --font-logo: 'Montserrat', 'Inter', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.10);
    --shadow-card: 0 2px 8px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 0.35s var(--ease);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text);
    line-height: 1.65;
    background: var(--bg);
    overflow-x: hidden;
    opacity: 0;
    animation: pageReveal 0.5s ease 0.05s forwards;
}
@keyframes pageReveal { to { opacity: 1; } }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700; line-height: 1.15;
    color: var(--primary); letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin-bottom: 1rem; color: var(--text-secondary); line-height: 1.75; }

a { color: var(--secondary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--secondary-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-lg { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 32px; border-radius: 4px;
    font-size: 0.875rem; font-weight: 600; letter-spacing: 0.03em;
    text-transform: uppercase; cursor: pointer; border: 2px solid transparent;
    transition: all 0.3s var(--ease);
    font-family: var(--font-sans); line-height: 1.2;
}
.btn i { font-size: 0.8em; }
.btn-primary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.btn-primary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; box-shadow: 0 4px 16px rgba(0,151,178,0.35); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; color: #fff; }
.btn-secondary { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn-secondary:hover { background: var(--secondary); color: #fff; box-shadow: 0 4px 16px rgba(0,151,178,0.3); }
.btn-ghost { background: transparent; color: var(--secondary); border-color: transparent; padding: 10px 0; }
.btn-ghost:hover { color: var(--primary); }
.btn-ghost i { transition: transform 0.3s var(--ease); }
.btn-ghost:hover i { transform: translateX(4px); }

/* ===== SECTION ===== */
.section { padding: 40px 0; }
.section-light { background: var(--bg-light); }
.section-warm { background: var(--bg-warm); }
.section-dark { background: var(--primary); color: #fff; }
.section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-header { text-align: center; max-width: 680px; margin: 12px auto 48px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); }
.section-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--secondary); margin-bottom: 14px;
}
.section-dark .section-badge { color: #E5007D; }
.section-line { width: 50px; height: 3px; background: var(--secondary); margin: 0 auto 20px; border-radius: 2px; }

/* ===== NAVBAR — Transparent on hero, white on scroll ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: transparent;
    height: 80px;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    border-bottom: 1px solid transparent;
}
.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
    border-bottom-color: var(--border-light);
}
/* Nav link colors: white on hero, dark on scroll */
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar-brand {
    display: flex; align-items: center; gap: 14px;
    text-decoration: none; color: #fff;
    transform: none !important;
}
.navbar-brand:hover { color: #fff; transform: none !important; }
.navbar.scrolled .navbar-brand { color: var(--primary); }
.logo-img { height: 46px; width: auto; border-radius: 4px; }
.logo-icon { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.logo-img-full { height: 52px; width: auto; transition: all var(--transition); }
.navbar:not(.scrolled) .logo-img-full {
    filter: brightness(1.8) contrast(0.9);
}
.logo-text {
    font-family: var(--font-logo); font-size: 1.25rem; font-weight: 800;
    letter-spacing: 0.05em; color: #fff; line-height: 1.1;
}
.logo-text span { color: var(--secondary); }
.navbar.scrolled .logo-text { color: var(--primary); }
.logo-sub { font-size: 0.6rem; color: rgba(255,255,255,0.5); letter-spacing: 0.08em; text-transform: lowercase; font-weight: 400; font-style: normal; }
.logo-sub em { font-style: normal; color: #E5007D; font-weight: 600; }
.navbar.scrolled .logo-sub { color: var(--text-muted); }
.navbar.scrolled .logo-sub em { color: #E5007D; }

.nav-menu { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-menu li a {
    display: block; padding: 28px 18px; font-size: 0.85rem; font-weight: 500;
    color: rgba(255,255,255,0.85); text-decoration: none;
    letter-spacing: 0.02em; position: relative;
    transition: color 0.3s var(--ease);
}
.navbar.scrolled .nav-menu li a { color: var(--text-secondary); }
.nav-menu li a::after {
    content: ''; position: absolute; bottom: 22px; left: 18px; right: 18px;
    height: 2px; background: var(--accent); transform: scaleX(0);
    transition: transform 0.3s var(--ease); transform-origin: left;
}
.navbar.scrolled .nav-menu li a::after { background: var(--secondary); }
.nav-menu li a:hover { color: #fff; }
.navbar.scrolled .nav-menu li a:hover { color: var(--primary); }
.nav-menu li a:hover::after, .nav-menu li a.active::after { transform: scaleX(1); }
.nav-menu li a.active { color: #fff; font-weight: 600; }
.navbar.scrolled .nav-menu li a.active { color: var(--primary); }

/* Nav CTA button */
.nav-cta a {
    background: var(--secondary) !important; color: #fff !important;
    padding: 10px 24px !important; border-radius: 4px !important;
    font-weight: 600 !important; font-size: 0.8rem !important;
    letter-spacing: 0.04em; text-transform: uppercase;
    transition: all 0.3s var(--ease) !important;
}
.nav-cta a::after { display: none !important; }
.nav-cta a:hover { background: var(--secondary-dark) !important; box-shadow: 0 4px 14px rgba(0,151,178,0.35) !important; }

/* Language switcher */
.lang-switcher {
    display: flex; align-items: center; gap: 4px;
    padding-left: 18px !important; margin-left: 8px;
    border-left: 1px solid rgba(255,255,255,0.15);
}
.navbar.scrolled .lang-switcher { border-left-color: var(--border); }
.lang-btn {
    font-size: 0.75rem; font-weight: 600; padding: 4px 8px; border-radius: 3px;
    color: rgba(255,255,255,0.6); letter-spacing: 0.05em;
    transition: all 0.2s var(--ease);
}
.navbar.scrolled .lang-btn { color: var(--text-muted); }
.lang-btn:hover { color: #fff; }
.navbar.scrolled .lang-btn:hover { color: var(--primary); }
.lang-active { color: var(--accent) !important; background: rgba(110,206,178,0.15); }
.navbar.scrolled .lang-active { color: var(--secondary) !important; background: rgba(0,133,124,0.08); }
.lang-divider { color: rgba(255,255,255,0.2); font-size: 0.75rem; }
.navbar.scrolled .lang-divider { color: var(--border); }

/* Mobile menu toggle */
.menu-toggle {
    display: none; background: none; border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px; padding: 8px 12px; cursor: pointer;
    color: #fff; font-size: 1.1rem; transition: all 0.2s;
    position: relative; width: 44px; height: 40px;
}
.navbar.scrolled .menu-toggle { border-color: var(--border); color: var(--primary); }
.menu-toggle .fa-bars, .menu-toggle .fa-times { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); transition: opacity 0.2s, transform 0.3s; }
.menu-toggle .fa-times { opacity: 0; transform: translate(-50%, -50%) rotate(-90deg); }
.menu-toggle.active .fa-bars { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }
.menu-toggle.active .fa-times { opacity: 1; transform: translate(-50%, -50%) rotate(0); }

/* ===== HERO ===== */
.hero {
    min-height: 0; display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    background: var(--primary); position: relative; overflow: hidden;
    padding: 140px 24px 50px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, #0f1f33 0%, #162a45 30%, #1B3A5C 55%, #243f5e 80%, #2c4a6a 100%);
}
.triangle-1, .triangle-2, .triangle-3, .triangle-4, .triangle-5 { position: absolute; z-index: 1; }
.triangle-1 {
    width: 520px; height: 520px; right: -100px; top: -100px;
    background: linear-gradient(135deg, rgba(229,0,125,0.1) 0%, transparent 55%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.triangle-2 {
    width: 420px; height: 420px; left: -80px; bottom: -80px;
    background: linear-gradient(315deg, rgba(0,151,178,0.12) 0%, transparent 55%);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}
.triangle-3 {
    width: 300px; height: 300px; right: 12%; bottom: 12%;
    background: linear-gradient(45deg, rgba(229,0,125,0.06) 0%, transparent 60%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
.triangle-4 {
    width: 220px; height: 220px; left: 8%; top: 18%;
    background: linear-gradient(200deg, rgba(0,151,178,0.07) 0%, transparent 65%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
    animation: triFloat 8s ease-in-out infinite;
}
.triangle-5 {
    width: 160px; height: 160px; right: 28%; top: 22%;
    background: linear-gradient(160deg, rgba(229,0,125,0.05) 0%, transparent 65%);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    animation: triFloat 10s ease-in-out 2s infinite;
}
@keyframes triFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(3deg); }
}

/* ===== DECORATIVE TRIANGLES — Brand Identity ===== */
.has-triangles { position: relative; overflow: hidden; }
.deco-tri {
    position: absolute; z-index: 0; pointer-events: none;
}
.deco-tri-tl {
    width: 280px; height: 280px; top: -40px; left: -60px;
    background: linear-gradient(135deg, rgba(229,0,125,0.04) 0%, transparent 60%);
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.deco-tri-tr {
    width: 240px; height: 240px; top: -30px; right: -50px;
    background: linear-gradient(225deg, rgba(0,151,178,0.05) 0%, transparent 60%);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.deco-tri-bl {
    width: 200px; height: 200px; bottom: -30px; left: -40px;
    background: linear-gradient(45deg, rgba(0,151,178,0.04) 0%, transparent 60%);
    clip-path: polygon(0 100%, 0 0, 100% 100%);
}
.deco-tri-br {
    width: 260px; height: 260px; bottom: -40px; right: -50px;
    background: linear-gradient(315deg, rgba(229,0,125,0.04) 0%, transparent 60%);
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
}
.deco-tri-center {
    width: 180px; height: 180px; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, rgba(229,0,125,0.025) 0%, transparent 70%);
    clip-path: polygon(50% 0, 0 100%, 100% 100%);
}
/* Light variant for dark sections */
.deco-tri-light.deco-tri-tl {
    background: linear-gradient(135deg, rgba(229,0,125,0.06) 0%, transparent 60%);
}
.deco-tri-light.deco-tri-tr {
    background: linear-gradient(225deg, rgba(0,151,178,0.08) 0%, transparent 60%);
}
.deco-tri-light.deco-tri-bl {
    background: linear-gradient(45deg, rgba(229,0,125,0.04) 0%, transparent 60%);
}
.deco-tri-light.deco-tri-br {
    background: linear-gradient(315deg, rgba(0,151,178,0.06) 0%, transparent 60%);
}
.deco-tri-light.deco-tri-center {
    background: linear-gradient(180deg, rgba(229,0,125,0.035) 0%, transparent 70%);
}

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; z-index: 2; width: 100%; overflow: hidden; }
.hero-slides { display: flex; transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.hero-slide { min-width: 100%; flex-shrink: 0; display: flex; justify-content: center; align-items: center; }

.hero-split { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1200px; margin: 0 auto; gap: 40px; padding: 0 40px; }
.hero-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero-content-left { text-align: left; flex: 1; max-width: 560px; margin: 0; }
.hero-content-left .hero-buttons { justify-content: flex-start; }

/* Triangle image collage */
.hero-triangles { position: relative; flex-shrink: 0; width: 420px; height: 400px; z-index: 2; }
.hero-tri { position: absolute; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.hero-tri img { width: 100%; height: 100%; object-fit: cover; }
.hero-tri-1 {
    width: 260px; height: 260px; top: 0; right: 0;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.hero-tri-2 {
    width: 200px; height: 200px; bottom: 20px; right: 180px;
    clip-path: polygon(0 0, 100% 0, 0 100%);
}
.hero-tri-3 {
    width: 180px; height: 180px; bottom: 0; right: 20px;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
/* Subtle float animation for triangles */
.hero-tri-1 { animation: triFloat 6s ease-in-out infinite; }
.hero-tri-2 { animation: triFloat 8s ease-in-out 1s infinite; }
.hero-tri-3 { animation: triFloat 7s ease-in-out 2s infinite; }

/* Decorative color triangles between photos */
.hero-triangles::before,
.hero-triangles::after {
    content: ''; position: absolute; z-index: -1;
}
.hero-triangles::before {
    width: 90px; height: 90px; top: 60px; right: 220px;
    background: linear-gradient(135deg, #E5007D, #ff3da5);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.7; animation: triFloat 9s ease-in-out 0.5s infinite;
}
.hero-triangles::after {
    width: 70px; height: 70px; bottom: 60px; right: 140px;
    background: linear-gradient(135deg, #0097B2, #00d4f5);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    opacity: 0.6; animation: triFloat 7s ease-in-out 1.5s infinite;
}
/* Extra color triangles via the slide */
.hero-slide .hero-triangles .hero-tri-deco-1,
.hero-slide .hero-triangles .hero-tri-deco-2,
.hero-slide .hero-triangles .hero-tri-deco-3 {
    position: absolute; z-index: -1; pointer-events: none;
}
.hero-tri-deco-1 {
    width: 50px; height: 50px; top: -10px; right: 180px;
    background: #0097B2; opacity: 0.5;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    animation: triFloat 10s ease-in-out 2s infinite;
}
.hero-tri-deco-2 {
    width: 40px; height: 40px; top: 200px; right: -10px;
    background: #E5007D; opacity: 0.45;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    animation: triFloat 8s ease-in-out 3s infinite;
}
.hero-tri-deco-3 {
    width: 60px; height: 60px; bottom: 80px; right: 340px;
    background: linear-gradient(135deg, #E5007D, #0097B2);
    opacity: 0.35;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation: triFloat 11s ease-in-out 0s infinite;
}
.hero-tri-deco-w1,
.hero-tri-deco-w2,
.hero-tri-deco-w3 {
    position: absolute; z-index: -1; pointer-events: none;
}
.hero-tri-deco-w1 {
    width: 35px; height: 35px; top: 30px; right: 280px;
    background: #fff;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.85; animation: triFloat 9s ease-in-out 1s infinite;
}
.hero-tri-deco-w2 {
    width: 28px; height: 28px; top: 160px; right: 10px;
    background: #fff;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    opacity: 0.75; animation: triFloat 7s ease-in-out 2.5s infinite;
}
.hero-tri-deco-w3 {
    width: 22px; height: 22px; bottom: 40px; right: 300px;
    background: #fff; opacity: 0.8;
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    animation: triFloat 8s ease-in-out 3.5s infinite;
}

.hero-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; position: relative; z-index: 3; }
.hero-dot {
    width: 12px; height: 12px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.3); cursor: pointer; transition: background 0.3s ease; padding: 0;
}
.hero-dot.active { background: var(--accent-pink); }
.hero-dot:hover { background: rgba(255,255,255,0.6); }

.hero-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6);
    cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.3); }
.hero-arrow-left { left: -60px; }
.hero-arrow-right { right: -60px; }

/* Slide content animations */
.hero-slide .hero-badge,
.hero-slide h1,
.hero-slide p,
.hero-slide .hero-buttons { opacity: 0; transform: translateY(24px); transition: all 0.6s var(--ease-out); }
.hero-slide.active .hero-badge { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.hero-slide.active h1 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hero-slide.active p { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }
.hero-slide.active .hero-buttons { opacity: 1; transform: translateY(0); transition-delay: 0.6s; }

/* Staggered hero entrance — each element separately */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; margin-bottom: 28px;
    background: rgba(229,0,125,0.1); border: 1px solid rgba(229,0,125,0.2);
    border-radius: 24px;
    font-size: 0.78rem; font-weight: 600; color: #F566B4;
    letter-spacing: 0.1em; text-transform: uppercase;
}
.hero h1 {
    color: #fff; margin-bottom: 20px; font-weight: 800;
    line-height: 1.1; letter-spacing: -0.03em;
}
.hero p {
    font-size: 1.15rem; color: rgba(255,255,255,0.65);
    max-width: 600px; margin: 0 auto 36px; line-height: 1.75;
}
.hero-buttons {
    display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.hero-trust-strip {
    display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
    margin-top: 48px; padding-top: 32px; position: relative; z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.08);
    opacity: 0; animation: heroFadeUp 0.8s var(--ease-out) 0.8s forwards;
}
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.trust-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: rgba(255,255,255,0.45); font-weight: 500;
    letter-spacing: 0.03em;
}
.trust-item i { color: #E5007D; font-size: 0.9rem; }

.hero-scroll {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,0.25); font-size: 0.7rem;
    text-align: center; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
    opacity: 0; animation: heroFadeUp 0.8s var(--ease-out) 1s forwards;
}
.hero-scroll i { display: block; margin-top: 8px; animation: scrollBounce 2s infinite; }
@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(6px); opacity: 0.7; }
}

/* ===== STATS — Floating card ===== */
.stats-section { background: var(--bg); position: relative; z-index: 10; padding: 0; margin-top: 0; }
.stats-grid {
    display: grid; grid-template-columns: repeat(6, 1fr);
    background: #fff; border-radius: 8px;
    box-shadow: var(--shadow-xl); overflow: hidden;
}
.stat-card {
    text-align: center; padding: 36px 16px;
    border-right: 1px solid var(--border-light);
    transition: background 0.3s var(--ease);
}
.stat-card:last-child { border-right: none; }
.stat-card:hover { background: var(--bg-light); }
.stat-number {
    font-size: 2.4rem; font-weight: 800; color: var(--secondary);
    letter-spacing: -0.03em; line-height: 1;
    font-family: var(--font-display);
    min-height: 2.4rem;
}
.stat-number.counted::after { content: '+'; font-size: 0.6em; opacity: 0.7; }
.stat-number[data-prefix].counted::after, .stat-number[data-no-plus].counted::after { display: none; }
.stat-label {
    font-size: 0.72rem; color: var(--text-muted); margin-top: 8px;
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
}

/* ===== PARTNERS / SOCIAL PROOF ===== */
.partners-section {
    padding: 56px 0; border-bottom: 1px solid var(--border-light);
    text-align: center;
}
.partners-label {
    font-size: 0.95rem; font-weight: 500; color: var(--text-muted);
    margin-bottom: 8px; letter-spacing: 0.01em;
}
.partners-count {
    font-size: 0.78rem; color: var(--text-muted); opacity: 0.7; margin-bottom: 24px;
}
.partners-logos {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
}
.partners-logos i {
    font-size: 1.8rem; color: var(--gray-400);
    transition: color 0.3s var(--ease);
}
.partners-logos i:hover { color: var(--secondary); }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 6px; box-shadow: var(--shadow-lg); }
.about-image::after {
    content: ''; position: absolute;
    width: 100%; height: 100%; top: 16px; left: 16px;
    border: 2px solid var(--secondary); border-radius: 6px;
    z-index: -1; opacity: 0.2;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { font-size: 1.02rem; line-height: 1.8; }
.feature-list { list-style: none; margin: 24px 0; }
.feature-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 8px 0; font-size: 0.95rem; color: var(--text-secondary);
}
.feature-list li i { color: var(--secondary); margin-top: 4px; font-size: 0.8rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: #fff; padding: 40px 32px; border-radius: 6px;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease);
    position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--secondary); transform: scaleX(0);
    transition: transform 0.4s var(--ease); transform-origin: left;
}
.service-card:hover { border-color: rgba(0,151,178,0.2); box-shadow: var(--shadow-card); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 56px; height: 56px; border-radius: 8px;
    background: linear-gradient(135deg, rgba(0,151,178,0.08), rgba(229,0,125,0.05));
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; color: var(--secondary); font-size: 1.3rem;
    transition: all 0.3s var(--ease);
}
.service-card:hover .service-icon { background: var(--secondary); color: #fff; box-shadow: 0 4px 12px rgba(0,151,178,0.3); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; margin-bottom: 0; }
.services-more { text-align: center; margin-top: 36px; }

/* ===== PROCESS ===== */
.process-grid { display: flex; align-items: flex-start; gap: 0; justify-content: center; }
.process-step { flex: 1; text-align: center; padding: 0 24px; max-width: 260px; position: relative; }
.process-number {
    font-size: 3rem; font-weight: 800; color: rgba(0,133,124,0.1);
    line-height: 1; margin-bottom: 16px; font-family: var(--font-display);
}
.process-step h3 { margin-bottom: 10px; font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; color: var(--text-muted); }
.process-connector { display: flex; align-items: center; padding-top: 20px; color: var(--border); font-size: 1rem; }

/* ===== TESTIMONIALS ===== */
.section-testimonials {
    background: var(--primary);
    background-image:
        radial-gradient(ellipse at 20% 50%, rgba(0,133,124,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(110,206,178,0.08) 0%, transparent 50%);
    padding: 100px 0;
}
.section-testimonials .section-header h2 { color: #fff; }
.section-testimonials .section-header p { color: rgba(255,255,255,0.5); }
.section-testimonials .section-badge { color: #E5007D; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    padding: 36px 32px; border-radius: 6px;
    transition: all 0.4s var(--ease);
}
.testimonial-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(110,206,178,0.2); }
.testimonial-quote { color: var(--accent); font-size: 1.4rem; margin-bottom: 16px; opacity: 0.4; }
.testimonial-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.8; font-style: italic; }
.testimonial-author {
    display: flex; align-items: center; gap: 14px;
    margin-top: 20px; padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(0,133,124,0.3); display: flex;
    align-items: center; justify-content: center;
    color: var(--accent); font-size: 1rem;
}
.testimonial-author strong { color: #fff; font-size: 0.9rem; display: block; }
.testimonial-author span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }

/* ===== WHY US / VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
    text-align: center; padding: 44px 28px; border-radius: 6px;
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s var(--ease);
}
.value-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(110,206,178,0.2); }
.value-icon {
    width: 64px; height: 64px; border-radius: 12px;
    background: rgba(110,206,178,0.1);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.5rem; color: var(--accent);
    transition: all 0.3s var(--ease);
}
.value-card:hover .value-icon { background: rgba(110,206,178,0.2); }
.value-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.value-card p { font-size: 0.88rem; margin-bottom: 0; }

/* ===== EVENTS ===== */
.events-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 900px; margin: 0 auto; }
.event-card {
    display: flex; align-items: stretch; gap: 0;
    border-radius: 8px; overflow: hidden;
    background: #fff; border: 1px solid var(--border-light);
    transition: all 0.3s var(--ease);
}
.event-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-md); }

/* Left visual area: image + date badge */
.event-visual {
    position: relative; flex-shrink: 0; width: 140px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--bg-light);
}
.event-card:not(.event-card-has-img) .event-visual {
    width: auto; padding: 16px 14px; background: transparent;
}
.event-thumb {
    position: absolute; inset: 0; overflow: hidden;
}
.event-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s var(--ease);
}
.event-card:hover .event-thumb img { transform: scale(1.05); }
.event-date-badge {
    position: relative; z-index: 2;
    background: var(--secondary); color: #fff;
    padding: 8px 10px; border-radius: 6px;
    text-align: center; min-width: 54px;
}
.event-card-has-img .event-date-badge {
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    background: rgba(0,151,178,0.92);
}
.event-date-badge .month { font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.event-date-badge .day { font-size: 1.3rem; font-weight: 800; line-height: 1.1; }
.event-date-badge .year { font-size: 0.58rem; opacity: 0.75; }

/* Right info area */
.event-info { flex: 1; min-width: 0; padding: 18px 22px; }
.event-info h3 { font-size: 1rem; margin-bottom: 4px; line-height: 1.35; color: var(--primary); }
.event-info > p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 6px; }
.event-location { font-size: 0.78rem; color: var(--text-muted); }
.event-location i { color: var(--secondary); margin-right: 4px; }

/* ===== CTA BAND ===== */
.cta-band {
    background: var(--secondary);
    background-image: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 70px 0; text-align: center;
    position: relative; overflow: hidden;
}
.cta-band::before {
    content: ''; position: absolute;
    width: 400px; height: 400px; right: -100px; top: -200px;
    background: rgba(255,255,255,0.03); border-radius: 50%;
}
.cta-band h2 { color: #fff; margin-bottom: 12px; font-size: clamp(1.5rem, 3vw, 2rem); }
.cta-band p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 28px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-band .btn { background: #fff; color: var(--primary); border-color: #fff; font-weight: 700; font-size: 0.85rem; }
.cta-band .btn:hover { background: transparent; color: #fff; border-color: #fff; }

/* ===== CONTACT HOME SECTION ===== */
.contact-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-home-item {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-home-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.contact-home-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
}
.contact-home-item h3 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.contact-home-item p {
  font-size: 0.88rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}
.contact-home-item a {
  color: var(--primary);
  text-decoration: none;
}
.contact-home-item a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .contact-home-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--primary);
    background-image: linear-gradient(135deg, #1B3A5C 0%, #1e4570 100%);
    padding: 140px 0 60px; text-align: center; position: relative;
}
.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent), var(--secondary));
}
.page-header h1 { color: #fff; margin-bottom: 10px; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.breadcrumb { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--accent); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 40px; }
.contact-info-card {
    background: var(--primary); color: #fff; padding: 44px 36px; border-radius: 6px;
    position: relative; overflow: hidden;
}
.contact-info-card::before {
    content: ''; position: absolute; width: 200px; height: 200px;
    right: -60px; bottom: -60px;
    background: rgba(110,206,178,0.08); border-radius: 50%;
}
.contact-info-card h3 { color: #fff; margin-bottom: 8px; }
.contact-info-card > p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.contact-info-item, .info-item { display: flex; gap: 14px; margin-bottom: 24px; }
.contact-info-item .icon, .contact-info-item .info-icon, .info-item .info-icon {
    width: 40px; height: 40px; border-radius: 6px;
    background: rgba(0,133,124,0.2); display: flex;
    align-items: center; justify-content: center;
    color: var(--accent); font-size: 0.95rem; flex-shrink: 0;
}
.contact-info-item h4, .info-item h4 { color: #fff; font-size: 0.85rem; margin-bottom: 4px; }
.contact-info-item p, .info-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin: 0; }
.contact-info-item .details h4 { color: #fff; }
.contact-info-item .details p { color: rgba(255,255,255,0.65); margin: 0; }
.contact-info-item:last-child { margin-bottom: 0; }

.contact-form { background: #fff; padding: 44px 40px; border-radius: 6px; border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block; margin-bottom: 6px; font-size: 0.85rem; font-weight: 600; color: var(--text);
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px; border: 1px solid var(--border);
    border-radius: 4px; font-size: 0.9rem; font-family: var(--font-sans);
    color: var(--text); background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(0,133,124,0.08);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* GDPR consent */
.gdpr-consent, .consent-label {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 0.82rem; color: var(--text-muted); cursor: pointer;
    line-height: 1.5; margin-bottom: 20px;
}
.gdpr-consent input[type="checkbox"], .consent-label input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; accent-color: var(--secondary); flex-shrink: 0;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ===== FOOTER ===== */
.footer {
    background: var(--primary); color: rgba(255,255,255,0.7); padding: 70px 0 0;
}
.footer-grid {
    display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 40px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-icon { height: 38px; width: 38px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.footer-brand .logo-text {
    font-family: var(--font-logo); font-size: 1.1rem;
    font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 0;
}
.footer-brand .logo-text span { color: var(--secondary); }
.footer-brand .logo-sub { font-size: 0.55rem; color: rgba(255,255,255,0.4); letter-spacing: 0.08em; text-transform: lowercase; }
.footer-brand .logo-sub em { font-style: normal; color: #E5007D; font-weight: 600; }
.footer-logo-img { height: 40px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-about p { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.45); font-size: 0.9rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--secondary); color: #fff; }

.footer h4 {
    color: #fff; font-size: 0.82rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 20px; position: relative; padding-bottom: 12px;
}
.footer h4::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 24px; height: 2px; background: var(--secondary);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.45); font-size: 0.85rem;
    transition: all 0.2s; display: inline-block;
}
.footer-links a:hover { color: var(--accent); transform: translateX(3px); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 0; }
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center; padding: 24px 0;
}
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.compliance-badges { display: flex; gap: 8px; }
.compliance-badge {
    font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em;
    padding: 4px 10px; border-radius: 3px;
    background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: rgba(12,35,64,0.98); backdrop-filter: blur(16px);
    padding: 0; display: none;
    border-top: 1px solid rgba(0,151,178,0.2);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.25);
    pointer-events: auto; max-height: 85vh; overflow-y: auto;
}
.cookie-content { padding: 24px 0; }
.cookie-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.cookie-header h3 { color: #fff; font-size: 1.1rem; margin: 0; font-weight: 700; }
.cookie-icon { color: var(--secondary); font-size: 1.4rem; }
.cookie-desc { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.6; margin: 0 0 8px; }
.cookie-links { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin: 0 0 16px; }
.cookie-links a { color: var(--secondary-light); text-decoration: underline; text-underline-offset: 2px; }
.cookie-links a:hover { color: #fff; }
.cookie-categories { margin: 16px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.cookie-category { padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.cookie-cat-header { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.cookie-cat-header strong { color: #fff; font-size: 0.9rem; }
.cookie-always { color: var(--secondary); font-size: 0.75rem; margin-left: 6px; font-weight: 600; }
.cookie-category p { color: rgba(255,255,255,0.6); font-size: 0.8rem; line-height: 1.5; margin: 4px 0 0 48px; }
/* Toggle switch */
.cookie-toggle { position: relative; display: inline-block; width: 36px; height: 20px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
    position: absolute; cursor: pointer; inset: 0;
    background: rgba(255,255,255,0.15); border-radius: 20px; transition: 0.3s;
}
.cookie-toggle-slider::before {
    content: ''; position: absolute; height: 14px; width: 14px;
    left: 3px; bottom: 3px; background: #fff; border-radius: 50%; transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--secondary); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(16px); }
.cookie-toggle input:disabled + .cookie-toggle-slider { opacity: 0.7; cursor: default; }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
    padding: 10px 22px; border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px; cursor: pointer; font-size: 0.82rem;
    font-weight: 600; transition: all 0.2s; font-family: var(--font-sans);
    white-space: nowrap;
}
.cookie-btn.accept,
.cookie-btn.reject,
.cookie-btn.settings {
    background: var(--secondary); color: #fff; border-color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0,151,178,0.3); cursor: pointer; pointer-events: auto;
}
.cookie-btn.accept:hover,
.cookie-btn.reject:hover,
.cookie-btn.settings:hover { background: var(--secondary-light); transform: translateY(-1px); }
.cookie-btn.save {
    background: var(--secondary); color: #fff; border-color: var(--secondary);
    box-shadow: 0 2px 8px rgba(0,151,178,0.3);
}
.cookie-btn.save:hover { background: var(--secondary-light); transform: translateY(-1px); }

/* ===== LEGAL TABLE ===== */
.legal-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; font-size: 0.9rem; }
.legal-table th, .legal-table td { padding: 10px 14px; border: 1px solid #dde3ea; text-align: left; }
.legal-table th { background: var(--primary); color: #fff; font-weight: 600; font-size: 0.85rem; }
.legal-table tr:nth-child(even) { background: #f8f9fb; }

/* ===== FLASH MESSAGE ===== */
.flash-message {
    position: fixed; top: 90px; left: 50%; transform: translateX(-50%);
    z-index: 9998; padding: 14px 28px; border-radius: 6px;
    font-size: 0.88rem; font-weight: 500;
    box-shadow: var(--shadow-lg); animation: slideDown 0.4s var(--ease-out);
    display: flex; align-items: center; gap: 10px;
    transition: opacity 0.4s, transform 0.4s;
}
.flash-message.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.flash-message.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@keyframes slideDown { from { opacity: 0; transform: translateX(-50%) translateY(-20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 32px; right: 32px; z-index: 990;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: #fff;
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem;
    opacity: 0; transform: translateY(20px); pointer-events: none;
    transition: all 0.35s var(--ease);
    box-shadow: var(--shadow-lg);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--secondary); transform: translateY(-2px); }

/* ===== BLOG ===== */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; }
.blog-main { min-width: 0; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.blog-card {
    display: flex; flex-direction: row;
    background: #fff; border-radius: 6px; overflow: hidden;
    border: 1px solid var(--border-light); transition: all 0.35s var(--ease);
}
.blog-card:hover { border-color: rgba(0,133,124,0.15); box-shadow: var(--shadow-card); }
.blog-card-image { display: block; width: 320px; min-height: 220px; flex-shrink: 0; overflow: hidden; background: var(--bg-light); }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card-body { flex: 1; }
.blog-card:hover .blog-card-image img { transform: scale(1.04); }
.blog-card-placeholder { display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 2.5rem; opacity: 0.3; }
.blog-card-body { padding: 24px; }
.blog-card-category { display: inline-block; font-size: 0.7rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card-body h3 a { color: var(--primary); }
.blog-card-body h3 a:hover { color: var(--secondary); }
.blog-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.blog-card-meta { font-size: 0.75rem; color: var(--text-muted); display: flex; gap: 14px; }
.blog-card-meta i { color: var(--secondary); margin-right: 4px; }

.blog-sidebar { position: sticky; top: 100px; }
.sidebar-widget { background: #fff; border-radius: 6px; border: 1px solid var(--border-light); padding: 24px; }
.sidebar-widget h4 { font-size: 0.95rem; margin-bottom: 16px; color: var(--primary); }
.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li { margin-bottom: 0; }
.category-list li a { display: block; padding: 10px 14px; font-size: 0.88rem; color: var(--text-secondary); border-radius: 4px; transition: all 0.2s; }
.category-list li a:hover { background: var(--bg-light); color: var(--secondary); }
.category-list li a.active { background: rgba(0,133,124,0.08); color: var(--secondary); font-weight: 600; }
.blog-search-form { margin: 0; }
.blog-search-wrap { display: flex; border: 1px solid var(--border-light); border-radius: 4px; overflow: hidden; }
.blog-search-input { flex: 1; border: none; padding: 10px 14px; font-size: 0.88rem; outline: none; font-family: var(--font-sans); }
.blog-search-input:focus { box-shadow: inset 0 0 0 1px var(--secondary); }
.blog-search-btn { border: none; background: var(--secondary); color: #fff; padding: 10px 14px; cursor: pointer; transition: background 0.2s; }
.blog-search-btn:hover { background: var(--secondary-dark); }
.sidebar-widget + .sidebar-widget { margin-top: 20px; }
.blog-widget { background: #fff; border: 1px solid var(--border-light); border-radius: 6px; padding: 28px; margin-bottom: 20px; }
.blog-widget h4 { font-size: 0.85rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border-light); text-transform: uppercase; letter-spacing: 0.05em; }
.blog-widget ul { list-style: none; }
.blog-widget ul li { margin-bottom: 8px; }
.blog-widget ul li a { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--text-secondary); padding: 6px 0; transition: color 0.2s; }
.blog-widget ul li a:hover, .blog-widget ul li a.active { color: var(--secondary); }
.blog-widget ul li a span { color: var(--text-muted); font-size: 0.8rem; }

.blog-pagination { display: flex; gap: 6px; justify-content: center; margin-top: 40px; }
.blog-pagination a { padding: 8px 14px; border: 1px solid var(--border); border-radius: 4px; font-size: 0.85rem; color: var(--text-secondary); font-weight: 500; transition: all 0.2s; }
.blog-pagination a:hover, .blog-pagination a.active { background: var(--secondary); color: #fff; border-color: var(--secondary); }

/* Blog Single */
.blog-single-main { min-width: 0; }
.blog-single-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; font-size: 0.85rem; color: var(--text-muted); }
.blog-single-meta i { color: var(--secondary); margin-right: 4px; }
.blog-single-image { margin-bottom: 32px; border-radius: 6px; overflow: hidden; }
.blog-single-image img { width: 100%; height: auto; }
.blog-single-content { font-size: 1.05rem; line-height: 1.9; color: var(--text); }
.blog-single-content h2 { margin: 32px 0 16px; }
.blog-single-content h3 { margin: 24px 0 12px; }
.blog-single-content p { margin-bottom: 18px; }
.blog-single-content img { max-width: 100%; border-radius: 6px; margin: 20px 0; }
.blog-single-content blockquote { border-left: 3px solid var(--secondary); padding: 16px 24px; margin: 24px 0; background: var(--bg-light); border-radius: 0 6px 6px 0; font-style: italic; color: var(--text-secondary); }
.blog-single-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 32px 0; padding: 20px 0; border-top: 1px solid var(--border-light); }
.blog-single-tags i { color: var(--text-muted); }
.blog-single-tags a { padding: 4px 14px; border-radius: 20px; font-size: 0.8rem; background: var(--bg-light); color: var(--text-secondary); font-weight: 500; transition: all 0.2s; }
.blog-single-tags a:hover { background: var(--secondary); color: #fff; }
.blog-author-box { display: flex; gap: 20px; padding: 28px; background: var(--bg-light); border-radius: 6px; margin: 32px 0; border: 1px solid var(--border-light); }
.blog-author-avatar { width: 64px; height: 64px; border-radius: 50%; background: rgba(0,133,124,0.1); display: flex; align-items: center; justify-content: center; color: var(--secondary); font-size: 1.5rem; flex-shrink: 0; }
.blog-author-info strong { display: block; margin-bottom: 6px; color: var(--primary); }
.blog-author-info p { font-size: 0.9rem; margin-bottom: 8px; }
.blog-author-social { display: flex; gap: 10px; }
.blog-author-social a { color: var(--text-muted); font-size: 1rem; }
.blog-author-social a:hover { color: var(--secondary); }
.blog-related { margin-top: 40px; }
.blog-related h3 { margin-bottom: 20px; font-size: 1.15rem; }
.blog-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.blog-related-card { display: block; padding: 20px; border-radius: 6px; background: var(--bg-light); border: 1px solid var(--border-light); transition: all 0.3s var(--ease); }
.blog-related-card:hover { border-color: var(--secondary); box-shadow: var(--shadow-sm); }
.blog-related-card strong { display: block; font-size: 0.9rem; color: var(--primary); margin-bottom: 6px; line-height: 1.4; }
.blog-related-card small { color: var(--text-muted); font-size: 0.78rem; }

/* ===== REVEAL ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * {
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }

/* ===== MARQUEE TRUST STRIP ===== */
.marquee-strip {
    background: #0d2137; overflow: hidden;
    padding: 20px 0;
    border-top: 2px solid rgba(0,151,178,0.3);
    border-bottom: 2px solid rgba(0,151,178,0.15);
    position: relative; z-index: 11;
}
.marquee-track {
    display: flex; width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-content { display: flex; flex-shrink: 0; }
.marquee-item {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 36px; font-size: 0.82rem; font-weight: 700;
    color: rgba(255,255,255,0.7); white-space: nowrap;
    letter-spacing: 0.05em; text-transform: uppercase;
}
.marquee-item i { color: #00b5d4; font-size: 1rem; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== THERAPEUTIC AREAS ===== */
.therapeutic-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.therapeutic-card {
    background: #fff; border-radius: 8px; padding: 32px 28px;
    border: 1px solid var(--border-light); transition: all 0.35s var(--ease);
    position: relative; overflow: hidden;
}
.therapeutic-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent-pink));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.therapeutic-card:hover::before { transform: scaleX(1); }
.therapeutic-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(0,151,178,0.2); }
.therapeutic-icon {
    width: 56px; height: 56px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,151,178,0.1), rgba(0,151,178,0.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--secondary); margin-bottom: 18px;
}
.therapeutic-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--primary); }
.therapeutic-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.therapeutic-phases { display: flex; gap: 6px; }
.phase-tag {
    display: inline-block; padding: 3px 10px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.03em;
    background: rgba(0,151,178,0.1); color: var(--secondary);
}

/* ===== CLINICAL TRIAL PHASES ===== */
.phases-timeline {
    display: flex; flex-direction: column; gap: 0;
    position: relative; padding-left: 40px;
}
.phases-timeline::before {
    content: ''; position: absolute; left: 15px; top: 20px; bottom: 20px;
    width: 2px; background: linear-gradient(180deg, var(--border), var(--secondary), var(--accent-pink));
}
.phase-item {
    display: flex; gap: 24px; align-items: flex-start; padding: 20px 0;
    position: relative;
}
.phase-marker {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--bg-light); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    position: absolute; left: -40px; top: 20px; z-index: 1;
    transition: all 0.3s;
}
.phase-marker.phase-active {
    background: var(--secondary); border-color: var(--secondary);
}
.phase-marker.phase-active::after {
    content: ''; width: 8px; height: 8px; border-radius: 50%; background: #fff;
}
.phase-label {
    position: absolute; left: -40px; top: -18px;
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap;
    display: none;
}
.phase-content {
    flex: 1; background: #fff; border-radius: 8px; padding: 24px 28px;
    border: 1px solid var(--border-light); transition: all 0.3s var(--ease);
}
.phase-content:hover { box-shadow: var(--shadow-sm); border-color: rgba(0,151,178,0.2); }
.phase-content h3 { font-size: 1rem; color: var(--primary); margin-bottom: 8px; }
.phase-content p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin: 0; }

/* ===== COMPLIANCE / CERTIFICATIONS ===== */
.compliance-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.compliance-card {
    background: rgba(255,255,255,0.06); border-radius: 8px; padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.08); transition: all 0.35s var(--ease);
    text-align: center;
}
.compliance-card:hover {
    background: rgba(255,255,255,0.1); border-color: rgba(0,151,178,0.3);
    transform: translateY(-3px);
}
.compliance-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(0,151,178,0.15); margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--secondary-light);
}
.compliance-card h3 { font-size: 0.95rem; color: #fff; margin-bottom: 8px; font-weight: 700; }
.compliance-card p { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }
.section-badge-light { background: rgba(0,151,178,0.2) !important; color: var(--secondary-light) !important; }

/* ===== GLOBAL PRESENCE ===== */
.global-regions {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.region-card {
    background: #fff; border-radius: 8px; padding: 28px 24px;
    border: 1px solid var(--border-light); transition: all 0.35s var(--ease);
    text-align: center;
}
.region-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); border-color: rgba(0,151,178,0.2); }
.region-icon {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, rgba(27,58,92,0.08), rgba(0,151,178,0.08));
    margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary);
}
.region-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 10px; }
.region-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.region-stat { font-size: 0.85rem; color: var(--text-secondary); padding-top: 12px; border-top: 1px solid var(--border-light); }
.region-stat strong { color: var(--secondary); font-size: 1.2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .about-grid { gap: 40px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-image { width: 260px; min-height: 200px; }
    .blog-related-grid { grid-template-columns: repeat(2, 1fr); }
    .therapeutic-grid { grid-template-columns: repeat(2, 1fr); }
    .compliance-grid { grid-template-columns: repeat(2, 1fr); }
    .global-regions { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section { padding: 36px 0; }
    .section-header { margin-bottom: 40px; }

    .menu-toggle { display: flex; align-items: center; justify-content: center; }
    .nav-menu {
        position: fixed; top: 0; right: -300px;
        width: 280px; height: 100vh;
        background: #fff; flex-direction: column;
        padding: 80px 0 32px; align-items: stretch;
        box-shadow: -4px 0 24px rgba(0,0,0,0.1);
        transition: right 0.35s var(--ease-out);
        z-index: 999; gap: 0; overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu li a { padding: 14px 28px; font-size: 0.9rem; border-bottom: 1px solid var(--border-light); color: var(--text-secondary) !important; }
    .nav-menu li a::after { display: none; }
    .nav-menu li a:hover { color: var(--primary) !important; }
    .nav-cta a { margin: 8px 20px !important; text-align: center; border-radius: 4px !important; }
    .lang-switcher { padding: 14px 28px !important; margin-left: 0; border-left: none; border-top: 1px solid var(--border); }
    .lang-switcher .lang-btn { color: var(--text-muted) !important; }

    /* On mobile, navbar always has bg */
    .navbar { background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); }
    .navbar .navbar-brand { color: var(--primary); }
    .navbar .logo-icon { height: 36px; width: 36px; }
    .navbar .logo-text { font-size: 1.05rem; color: var(--primary); }
    .navbar .logo-sub { color: var(--text-muted); }
    .navbar .nav-menu li a { color: var(--text-secondary); }
    .menu-toggle { border-color: var(--border); color: var(--primary); }

    .hero { min-height: 0; padding: 100px 20px 40px; overflow: hidden; }
    /* Mobile: fade slider instead of horizontal slide */
    .hero-slides { display: block; transform: none !important; transition: none; position: relative; }
    .hero-slide { position: absolute; top: 0; left: 0; width: 100%; opacity: 0; transition: opacity 0.6s ease; pointer-events: none; }
    .hero-slide:first-child { position: relative; }
    .hero-slide.active { opacity: 1; pointer-events: auto; }
    .hero-slide .hero-split { flex-direction: column; gap: 0; padding: 0; width: 100%; box-sizing: border-box; }
    .hero-content, .hero-content-left { text-align: center; max-width: 100%; padding: 0; }
    .hero-content-left .hero-buttons { justify-content: center; }
    .hero h1 { font-size: 1.6rem; line-height: 1.2; margin-bottom: 16px; }
    .hero p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; text-align: center !important; max-width: 100% !important; }
    .hero-badge { font-size: 0.7rem; padding: 6px 14px; margin-bottom: 20px; display: inline-flex; }
    .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-buttons .btn { padding: 14px 22px; font-size: 0.9rem; width: 100%; justify-content: center; box-sizing: border-box; }
    .hero-triangles { display: none; }
    .hero-dots { margin-top: 20px; }
    .hero-arrow { display: none; }
    .triangle-1, .triangle-2, .triangle-3 { opacity: 0.3; }
    .triangle-4, .triangle-5 { display: none; }

    .stats-section { margin-top: 0; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .stat-number { font-size: 1.8rem; }
    .stat-card { padding: 24px 12px; }

    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-image::after { display: none; }

    .process-grid { flex-direction: column; gap: 8px; }
    .process-connector { transform: rotate(90deg); padding: 0; margin: -4px auto; }

    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .events-grid { grid-template-columns: 1fr; }
    .event-visual { width: 100px; }
    .event-card:not(.event-card-has-img) .event-visual { width: auto; padding: 12px 10px; }
    .event-info { padding: 14px 16px; }
    .event-info h3 { font-size: 0.9rem; }
    .therapeutic-grid { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .global-regions { grid-template-columns: 1fr; }
    .phases-timeline { padding-left: 30px; }
    .phase-marker { left: -30px; width: 26px; height: 26px; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 28px 20px; }

    .blog-layout { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { flex-direction: row; }
    .blog-card-image { width: 180px; min-height: 180px; }
    .blog-card-body { padding: 16px; }
    .blog-card-body h3 { font-size: 0.95rem; }
    .blog-card-body p { font-size: 0.82rem; margin-bottom: 10px; }
    .blog-related-grid { grid-template-columns: 1fr; }
    .blog-sidebar { position: static; }

    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .cookie-actions { flex-direction: column; align-items: stretch; }
    .cookie-btn { text-align: center; }
    .cookie-category p { margin-left: 0; margin-top: 8px; }
}

@media (max-width: 480px) {
    .hero { padding: 90px 16px 32px; }
    .hero h1 { font-size: 1.3rem; }
    .hero p { font-size: 0.82rem; line-height: 1.55; margin-bottom: 20px; }
    .hero-badge { font-size: 0.65rem; padding: 5px 12px; margin-bottom: 16px; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 0.82rem; }
    .hero-trust-strip { flex-direction: column; gap: 8px; align-items: center; }
    .triangle-1, .triangle-2, .triangle-3 { display: none; }
    .blog-card { flex-direction: column; }
    .blog-card-image { width: 100%; min-height: 180px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .partners-logos { gap: 24px; }
}

/* ===== ADMIN ===== */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: var(--primary); color: #fff;
    padding: 24px 0; flex-shrink: 0; position: sticky; top: 0; height: 100vh; overflow-y: auto;
}
.admin-sidebar-brand {
    padding: 0 24px 20px; margin-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 0.95rem; font-weight: 700; font-family: var(--font-logo); color: #fff;
}
.admin-sidebar-brand span { color: var(--accent); }
.admin-sidebar-brand small { display: block; font-size: 0.65rem; color: rgba(255,255,255,0.35); margin-top: 4px; font-family: var(--font-sans); font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase; }
.admin-nav { list-style: none; }
.admin-nav li a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 24px; color: rgba(255,255,255,0.55);
    font-size: 0.85rem; font-weight: 500; transition: all 0.2s;
}
.admin-nav li a i { width: 18px; text-align: center; font-size: 0.9rem; }
.admin-nav li a:hover { background: rgba(255,255,255,0.05); color: #fff; }
.admin-nav li a.active { background: rgba(0,133,124,0.2); color: var(--accent); border-right: 3px solid var(--accent); }
.admin-nav .nav-section { padding: 20px 24px 8px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); }
.admin-content { flex: 1; padding: 32px; background: var(--bg-light); }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border-light); }
.admin-topbar h2 { font-size: 1.4rem; margin: 0; }
.admin-topbar .admin-user { font-size: 0.85rem; color: var(--text-muted); }
.admin-card { background: #fff; border-radius: 6px; padding: 0; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); overflow: hidden; }
.admin-card-header { padding: 18px 24px; border-bottom: 1px solid var(--border-light); font-weight: 600; font-size: 0.95rem; background: var(--bg-light); }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: 12px 20px; text-align: left; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); background: var(--bg-light); border-bottom: 1px solid var(--border-light); }
.admin-table td { padding: 14px 20px; border-bottom: 1px solid var(--border-light); font-size: 0.88rem; vertical-align: middle; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-btn { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 4px; font-size: 0.8rem; font-weight: 500; cursor: pointer; border: 1px solid var(--border); background: #fff; color: var(--text); transition: all 0.2s; font-family: var(--font-sans); text-decoration: none; }
.admin-btn:hover { background: var(--bg-light); border-color: var(--gray-400); color: var(--text); }
.admin-btn-primary { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.admin-btn-primary:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); color: #fff; }
.admin-btn-danger { background: transparent; color: var(--danger); border-color: var(--danger); }
.admin-btn-danger:hover { background: var(--danger); color: #fff; }
.admin-btn-sm { padding: 5px 10px; font-size: 0.75rem; }
.admin-btn-lg { padding: 12px 24px; font-size: 0.88rem; }
.admin-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 28px; }
.admin-stat-card { background: #fff; padding: 24px; border-radius: 6px; border: 1px solid var(--border-light); display: flex; align-items: center; gap: 16px; }
.admin-stat-icon { width: 48px; height: 48px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.admin-stat-card .stat-number { font-size: 1.6rem; font-weight: 800; color: var(--primary); line-height: 1; }
.admin-stat-card .stat-number::after { display: none; }
.admin-stat-card .stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; }
.badge-success { background: #ecfdf5; color: #065f46; }
.badge-danger { background: #fef2f2; color: #991b1b; }
.badge-warning { background: #fffbeb; color: #92400e; }
.badge-info { background: #eff6ff; color: #1e40af; }
.badge-secondary { background: var(--bg-light); color: var(--text-muted); }
.admin-flash { padding: 14px 20px; border-radius: 6px; margin-bottom: 20px; font-size: 0.88rem; display: flex; align-items: center; gap: 10px; }
.admin-flash-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.admin-flash-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
@media (max-width: 768px) { .admin-sidebar { width: 200px; } .admin-content { padding: 20px; } .admin-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ========== About Page — Highlights Grid ========== */
.about-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.about-hl-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 3px 18px rgba(0,0,0,0.06);
  border-bottom: 3px solid var(--primary);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-hl-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}
.about-hl-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem;
  margin: 0 auto 16px;
}
.about-hl-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.about-hl-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ========== About Page — Mission Banner ========== */
.about-mission-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 60px 0;
}
.about-mission-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.about-mission-quote {
  font-size: 2.5rem;
  color: rgba(255,255,255,0.2);
  margin-bottom: 16px;
  display: block;
}
.about-mission-inner h2 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.about-mission-inner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.08rem;
  line-height: 1.9;
}

/* ========== About Page — Why Atlant Row ========== */
.about-why-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.about-why-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}
.about-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}
.about-why-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
  margin: 0 auto 18px;
}
.about-why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.about-why-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ========== About Page — Key Figures ========== */
.about-figures-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.about-figure-card {
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.about-figure-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}
.about-figure-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.about-figure-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
  .about-why-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .about-highlights { grid-template-columns: repeat(2, 1fr); }
  .about-why-row { grid-template-columns: repeat(2, 1fr); }
  .about-figures-row { grid-template-columns: 1fr; max-width: 340px; }
  .about-figure-number { font-size: 2.5rem; }
  .about-mission-inner h2 { font-size: 1.3rem; }
}

/* ========== Past Event Cards ========== */
.event-card-past { opacity: 0.8; }
.event-card-past:hover { opacity: 1; }
.event-card-past .event-date-badge { background: #8a9bb0; }

/* Expandable event cards */
.event-card-expandable { cursor: pointer; }
.event-card-expandable:hover { opacity: 1; }
.event-full-desc {
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    margin-top: 0;
}
.event-card-expandable.expanded .event-full-desc {
    max-height: 600px; opacity: 1; margin-top: 10px;
    padding-top: 10px; border-top: 1px solid var(--border-light);
}
.event-card-expandable.expanded .event-full-desc p {
    font-size: 0.85rem; line-height: 1.7; color: var(--text-body); margin: 0;
}
.event-meta {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 8px;
}
.event-toggle-hint {
    font-size: 0.72rem; color: var(--secondary); font-weight: 600;
    display: inline-flex; align-items: center; gap: 4px;
    margin-left: auto;
}
.event-toggle-hint i {
    transition: transform 0.3s ease; font-size: 9px;
}
.event-card-expandable.expanded .event-toggle-hint i {
    transform: rotate(180deg);
}
.event-card-expandable .hint-text-collapse { display: none; }
.event-card-expandable.expanded .hint-text { display: none; }
.event-card-expandable.expanded .hint-text-collapse { display: inline; }
.event-card-expandable.expanded { opacity: 1; border-color: var(--secondary); background: #f8fdfd; }
.event-card-expandable.expanded .event-date-badge { background: var(--secondary); }

/* ========== Legal Pages (Privacy Policy, Cookies, etc.) ========== */
.legal-content {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04), 0 2px 8px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
    padding: 50px 60px;
    margin-bottom: 50px;
}
.legal-content h2 {
    font-size: 1.9rem;
    color: var(--primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border-light);
    font-weight: 800;
}
.legal-content h3 {
    font-size: 1.35rem;
    color: var(--primary);
    margin-top: 36px;
    margin-bottom: 18px;
    font-weight: 700;
    position: relative;
    padding-left: 14px;
}
.legal-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background: var(--secondary);
    border-radius: 2px;
}
.legal-content h4 {
    font-size: 1.08rem;
    color: var(--secondary-dark);
    margin-top: 26px;
    margin-bottom: 12px;
    font-weight: 600;
}
.legal-content p {
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 18px;
}
.legal-content ul {
    margin-bottom: 22px;
    padding-left: 24px;
}
.legal-content li {
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
    list-style-type: square;
}
.legal-content li::marker {
    color: var(--secondary);
}
.legal-content a {
    color: var(--secondary);
    font-weight: 500;
    border-bottom: 1px dotted var(--secondary);
    transition: all 0.2s ease;
}
.legal-content a:hover {
    color: var(--secondary-dark);
    border-bottom-style: solid;
}
.legal-contact-card {
    background: #f8fafc;
    border-radius: 8px;
    padding: 24px 30px;
    margin-top: 36px;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}
.legal-contact-card p {
    margin-bottom: 10px;
    font-size: 0.94rem;
    line-height: 1.6;
}
.legal-contact-card p:last-child {
    margin-bottom: 0;
}
.legal-contact-card strong {
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 24px;
    }
    .legal-content h2 {
        font-size: 1.5rem;
    }
    .legal-content h3 {
        font-size: 1.2rem;
    }
}

/* ===== BLOG SINGLE ===== */
.page-header .post-meta {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}
.page-header .post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-header .post-meta i {
    color: var(--accent);
}
.post-featured-image {
    max-width: 900px;
    margin: -60px auto 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
}
.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 450px;
}
.post-content {
    max-width: 800px;
    margin: 0 auto;
}
