/* ============================================
   פארק המים יבנה - Modern Stylesheet
   ============================================ */

:root {
    /* Primary brand - more vibrant blue */
    --primary: #0066cc;
    --primary-dark: #004d99;
    --primary-darker: #003366;
    --primary-light: #3399ff;
    --primary-lighter: #b3d9ff;

    /* Accent colors - ocean turquoise */
    --accent: #00b4d8;
    --accent-2: #06b6d4;
    --accent-light: #67e8f9;
    --warm: #ff6b35;
    --warm-light: #ffd166;
    --magenta: #e63946;
    --emerald: #06d6a0;

    /* Modern gradients */
    --grad-primary: linear-gradient(135deg, #0066cc 0%, #00b4d8 100%);
    --grad-ocean: linear-gradient(135deg, #003366 0%, #0066cc 50%, #00b4d8 100%);
    --grad-sunset: linear-gradient(135deg, #ff6b35 0%, #ffd166 100%);
    --grad-aurora: linear-gradient(135deg, #06d6a0 0%, #00b4d8 50%, #0066cc 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);

    /* Neutral palette */
    --ink: #0f172a;
    --ink-light: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;

    /* Background */
    --bg: #ffffff;
    --bg-soft: #f8fafc;
    --bg-tint: #f0f9ff;

    /* Status */
    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #ef4444;
    --whatsapp: #25d366;

    /* Effects - Modern shadows */
    --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
    --shadow: 0 4px 16px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 24px 64px rgba(15, 23, 42, 0.15);
    --shadow-2xl: 0 32px 96px rgba(15, 23, 42, 0.2);
    --shadow-primary: 0 12px 32px rgba(0, 102, 204, 0.3);
    --shadow-primary-lg: 0 20px 60px rgba(0, 102, 204, 0.35);
    --shadow-glow: 0 0 40px rgba(0, 180, 216, 0.4);
    --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);

    /* Borders & radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
    --transition-fast: all 0.15s var(--ease);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Assistant', 'Heebo', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--bg);
    overflow-x: hidden;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.lang-en {
    direction: ltr;
    font-family: 'Poppins', 'Assistant', sans-serif;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

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

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

ul {
    list-style: none;
}

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

/* ============================================
   Modern Effects & Utilities
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.gradient-border {
    position: relative;
    background: white;
    border-radius: var(--radius-lg);
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--grad-aurora);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(2deg); }
}

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

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-25%); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(0, 180, 216, 0.4); }
    50% { box-shadow: 0 0 40px rgba(0, 180, 216, 0.8); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.top-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-info i {
    color: var(--primary-light);
    font-size: 12px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.9);
}

.lang-btn.active {
    color: var(--primary-light);
    font-weight: 600;
}

.top-social {
    display: flex;
    gap: 6px;
}

.top-social a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition-fast);
}

.top-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

.hide-mobile {
    display: flex;
}

/* ============================================
   Header
   ============================================ */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow);
    border-bottom-color: transparent;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    gap: 32px;
}

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

.logo-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.3);
    transition: var(--transition);
}

.logo-icon svg {
    width: 26px;
    height: 26px;
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.4);
}

.logo-img {
    width: auto;
    height: 60px;
    max-width: 180px;
    transition: var(--transition);
}

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

.footer-logo .logo-img {
    height: 70px;
    filter: brightness(1.2) contrast(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-top: 2px;
}

.nav {
    margin-inline: auto;
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 10px 14px;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    font-size: 14px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    transform: translateX(50%);
    width: 0;
    height: 3px;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link.active::before {
    width: 60%;
}

.header-btn {
    flex-shrink: 0;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 6px;
}

.mobile-toggle span {
    width: 100%;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
    cursor: pointer;
    white-space: nowrap;
    border: 2px solid transparent;
    font-family: inherit;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-aurora);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
}

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

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border-color: var(--gray-300);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: white;
    border-color: var(--ink);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-tint);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    padding: 60px 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.15); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 51, 102, 0.65) 0%, rgba(0, 102, 204, 0.4) 50%, rgba(0, 180, 216, 0.5) 100%),
        radial-gradient(circle at 20% 30%, rgba(0, 0, 0, 0.25) 0%, transparent 60%);
    z-index: 2;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(2px 2px at 80% 10%, white, transparent),
        radial-gradient(1px 1px at 30% 90%, white, transparent);
    background-size: 200% 200%;
    opacity: 0.15;
    animation: shimmer 30s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-card {
    width: 400px;
    flex-shrink: 0;
    transform: translateX(-60px);
}

@media (min-width: 1321px) {
    .hero-card {
        transform: translateX(-120px);
    }
}

@media (min-width: 1101px) and (max-width: 1320px) {
    .hero-card {
        width: 380px;
        transform: translateX(-40px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
    font-size: clamp(42px, 6.5vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.18);
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #92400e 0%, #b45309 15%, #ca8a04 30%, #eab308 50%, #facc15 75%, #fde047 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    display: inline-block;
    margin-top: 8px;
    filter:
        drop-shadow(-1px -1px 0 rgba(255, 255, 255, 0.7))
        drop-shadow(1px -1px 0 rgba(255, 255, 255, 0.7))
        drop-shadow(-1px 1px 0 rgba(255, 255, 255, 0.7))
        drop-shadow(1px 1px 0 rgba(255, 255, 255, 0.7))
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.28));
}


.hero-subtitle {
    font-size: clamp(17px, 1.8vw, 20px);
    max-width: 580px;
    margin-bottom: 40px;
    opacity: 0.98;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4), 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-card {
    background: linear-gradient(160deg, #0c3f6e 0%, #061e36 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    padding: 32px;
    color: white;
    box-shadow: var(--shadow-2xl), inset 0 1px 0 rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.8s var(--ease) 0.3s both;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(0, 180, 216, 0.15) 90deg, transparent 180deg, rgba(255, 107, 53, 0.1) 270deg, transparent 360deg);
    animation: shimmer 20s linear infinite;
    pointer-events: none;
}

.hero-card-modern {
    padding: 22px !important;
}

.hero-card-header-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.status-pulse-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.status-pulse {
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);
}

.status-pulse::before,
.status-pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(34, 197, 94, 0.6);
    border-radius: 50%;
    animation: status-pulse 2s ease-out infinite;
}

.status-pulse::after {
    animation-delay: 1s;
}

@keyframes status-pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.hero-card-header-modern h4 {
    font-size: 17px;
    font-weight: 800;
    color: white;
    margin-bottom: 1px;
    letter-spacing: -0.01em;
    line-height: 1.1;
}

.hero-card-header-modern p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.hero-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 14px !important;
}

/* Facilities Status */
.facilities-status {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
    position: relative;
}

.facility-star {
    color: #fbbf24;
    font-weight: 800;
    margin-inline-start: 2px;
}

.facility-note {
    margin: 12px 0 0;
    font-size: 11px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.75);
}

.facility-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 14px 12px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.facility-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

.facility-item.facility-closed {
    opacity: 0.6;
}

.facility-item.facility-closing-soon {
    border-color: rgba(251, 191, 36, 0.5);
    background: rgba(251, 191, 36, 0.1);
}

.facility-top {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 5px;
    gap: 6px;
}

.facility-name {
    color: white;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
    line-height: 1.2;
}

.facility-name i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.facility-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: flex-start;
}

.facility-badge i {
    font-size: 9px;
}

.facility-badge.open {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(74, 222, 128, 0.4);
}

.facility-badge.closing-soon {
    background: rgba(251, 191, 36, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.4);
}

.facility-badge.closed {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.4);
}

.facility-info-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.facility-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 6px;
}

.facility-hours i {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.facility-progress-track {
    height: 4px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 6px;
}

.facility-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #4ade80);
    border-radius: 100px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.facility-item.facility-closing-soon .facility-progress-bar {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.facility-remaining {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.facility-remaining i {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.facility-item.facility-closing-soon .facility-remaining {
    color: #fbbf24;
}

.facility-item.facility-closing-soon .facility-remaining i {
    color: #fbbf24;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-card-header i {
    font-size: 32px;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
    padding: 16px;
    border-radius: var(--radius);
}

.hero-card-header h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-card-header p {
    font-size: 14px;
    opacity: 0.9;
}

.hero-card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 20px;
}

.hero-card-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
}

.status {
    font-weight: 600;
    font-size: 13px;
}

.status.open { color: #4ade80; }
.status.closed { color: #fb923c; }

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: white;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -8px); }
    60% { transform: translate(-50%, -4px); }
}

/* ============================================
   Stats Bar
   ============================================ */
.stats-bar {
    background: var(--ink);
    padding: 40px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(2, 132, 199, 0.1) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:first-child {
    border-right: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--grad-aurora);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 180, 216, 0.4);
    transition: var(--transition);
}

.stat-item:hover .stat-icon {
    transform: rotate(-8deg) scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 180, 216, 0.6);
}

.stat-number {
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    color: white;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: white;
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow: 0 4px 16px rgba(0, 102, 204, 0.12);
    border: 1px solid var(--primary-lighter);
    position: relative;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--grad-primary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
    animation: pulse 2s infinite;
}

.section-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.025em;
}

.section-title .accent {
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-desc {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* ============================================
   About Section
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
    padding: 20px;
}

.img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4 / 5;
}

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

.img-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 55%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid white;
}

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

.img-floating {
    position: absolute;
    top: 30px;
    right: -30px;
    background: white;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.floating-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #fde047, #fb923c);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.floating-content strong {
    display: block;
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 2px;
}

.floating-content span {
    color: var(--gray-500);
    font-size: 13px;
}

.about-content .lead {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    margin: 24px 0 16px;
    font-weight: 500;
}

.about-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 36px 0;
}

.feature-row {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-tint);
    color: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-row:hover .feature-icon {
    background: var(--grad-primary);
    color: white;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.4);
}

.feature-row h4 {
    color: var(--ink);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.feature-row p {
    color: var(--gray-500);
    font-size: 14px;
    margin: 0;
}

/* ============================================
   Attractions Preview
   ============================================ */
.attractions-preview {
    padding: 120px 0;
    background: var(--bg-soft);
}

.attractions-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
}

.attraction-modern {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: var(--shadow);
    isolation: isolate;
}

.attraction-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    background: var(--grad-aurora);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    z-index: 2;
    mix-blend-mode: overlay;
    pointer-events: none;
}

.attraction-modern:hover::after {
    opacity: 0.3;
}

.attraction-modern:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-2xl);
}

.attraction-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
    aspect-ratio: 4/3;
}

.attraction-modern:hover img {
    transform: scale(1.08);
}

.attraction-modern.large {
    grid-row: span 2;
}

.attraction-modern.large img {
    aspect-ratio: 4/5;
}

.attractions-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.attraction-modern-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 89, 133, 0.95) 0%, rgba(7, 89, 133, 0.4) 50%, transparent 100%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transition: var(--transition);
}

.attraction-modern.large .attraction-modern-overlay {
    padding: 36px;
}

.attraction-modern-overlay h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.attraction-modern.large .attraction-modern-overlay h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.attraction-modern-overlay p {
    font-size: 14px;
    opacity: 0.95;
    margin-bottom: 16px;
}

.modern-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.modern-tag.new {
    background: #fb923c;
    border-color: transparent;
}

.modern-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    font-size: 15px;
    align-self: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.modern-link:hover {
    gap: 14px;
    border-color: white;
}

.attractions-modern-grid .attraction-modern .attraction-modern-overlay {
    padding: 20px;
}

.attractions-modern-grid .attraction-modern h3 {
    font-size: 18px;
    margin-bottom: 0;
}

.attractions-modern-grid .modern-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    color: var(--primary);
    justify-content: center;
    padding: 0;
    border: none;
    position: absolute;
    bottom: 20px;
    left: 20px;
    opacity: 0;
    transform: translateY(10px);
}

.attractions-modern-grid .attraction-modern:hover .modern-link {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Services Strip
   ============================================ */
.services-strip {
    padding: 50px 0;
    background: var(--bg);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.services-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.strip-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.strip-item:hover {
    background: var(--bg-tint);
}

.strip-item i {
    font-size: 28px;
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: var(--bg-tint);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.strip-item:hover i {
    background: var(--grad-primary);
    color: white;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.strip-item h4 {
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.strip-item p {
    font-size: 12px;
    color: var(--gray-500);
    margin: 0;
}

/* ============================================
   Accessibility Widget (Israeli Standard 5568)
   ============================================ */
.a11y-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #0066cc, #003d99);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.5);
    z-index: 999;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid white;
}

.a11y-button:hover, .a11y-button:focus {
    transform: scale(1.1) rotate(-10deg);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.6);
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.a11y-panel {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 360px;
    max-width: 100vw;
    max-height: 85vh;
    background: white;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateX(110%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    overflow: hidden;
}

.a11y-panel.active {
    transform: translateX(0);
}

.a11y-header {
    background: linear-gradient(135deg, #0066cc, #003d99);
    color: white;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.a11y-header h3 {
    font-size: 19px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.a11y-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

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

.a11y-content {
    overflow-y: auto;
    padding: 16px;
    flex: 1;
}

.a11y-group {
    margin-bottom: 16px;
}

.a11y-group-title {
    font-size: 12px;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 0 8px;
}

.a11y-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.a11y-option {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 10px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    font-family: inherit;
    color: #334155;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
}

.a11y-option:hover {
    background: #e0e7ff;
    border-color: #0066cc;
    transform: translateY(-2px);
}

.a11y-option:focus {
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

.a11y-option.active {
    background: #0066cc;
    color: white;
    border-color: #0066cc;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.a11y-option i {
    font-size: 22px;
}

.a11y-reset {
    width: 100%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-family: inherit;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.a11y-reset:hover {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(239, 68, 68, 0.3);
}

.a11y-statement {
    padding: 12px 16px;
    background: #f0f9ff;
    border-top: 1px solid #e0f2fe;
    text-align: center;
}

.a11y-statement a {
    color: #0066cc;
    font-weight: 700;
    font-size: 14px;
    text-decoration: underline;
}

@media (max-width: 480px) {
    .a11y-panel {
        width: 100%;
        border-radius: 0;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }
    .a11y-button {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }
}

/* ============================================
   Accessibility Features (applied via body classes)
   ============================================ */

/* Big Font */
body.a11y-big-font { font-size: 18px !important; }
body.a11y-big-font h1, body.a11y-big-font .hero-title { font-size: 56px !important; }
body.a11y-big-font h2, body.a11y-big-font .section-title { font-size: 42px !important; }
body.a11y-big-font h3 { font-size: 28px !important; }
body.a11y-big-font p, body.a11y-big-font li, body.a11y-big-font span { font-size: 18px !important; }
body.a11y-big-font .btn { font-size: 17px !important; padding: 14px 28px !important; }

body.a11y-bigger-font { font-size: 22px !important; }
body.a11y-bigger-font h1, body.a11y-bigger-font .hero-title { font-size: 64px !important; }
body.a11y-bigger-font h2, body.a11y-bigger-font .section-title { font-size: 48px !important; }
body.a11y-bigger-font h3 { font-size: 32px !important; }
body.a11y-bigger-font p, body.a11y-bigger-font li, body.a11y-bigger-font span { font-size: 22px !important; }
body.a11y-bigger-font .btn { font-size: 20px !important; padding: 16px 32px !important; }

/* High Contrast */
body.a11y-high-contrast {
    background: black !important;
}
body.a11y-high-contrast *,
body.a11y-high-contrast *::before,
body.a11y-high-contrast *::after {
    background: black !important;
    color: yellow !important;
    border-color: yellow !important;
}
body.a11y-high-contrast a,
body.a11y-high-contrast button,
body.a11y-high-contrast .btn {
    background: black !important;
    color: yellow !important;
    border: 2px solid yellow !important;
}
body.a11y-high-contrast img {
    filter: grayscale(100%) contrast(150%);
}
/* Keep floating buttons visible in high-contrast mode */
body.a11y-high-contrast .whatsapp-float,
body.a11y-high-contrast .a11y-button {
    background: yellow !important;
    color: black !important;
    border: 3px solid white !important;
}
body.a11y-high-contrast .whatsapp-float i,
body.a11y-high-contrast .a11y-button i,
body.a11y-high-contrast .whatsapp-float *,
body.a11y-high-contrast .a11y-button * {
    background: yellow !important;
    color: black !important;
}
body.a11y-high-contrast .scroll-top {
    background: yellow !important;
    color: black !important;
    border: 2px solid white !important;
}
body.a11y-high-contrast .scroll-top i {
    background: yellow !important;
    color: black !important;
}

/* Black & White - applied to specific sections, NOT body
   (avoids filter on body breaking fixed-position elements) */
body.a11y-bw .top-bar,
body.a11y-bw .header,
body.a11y-bw .hero,
body.a11y-bw section,
body.a11y-bw footer {
    filter: grayscale(100%);
}

/* Inverted Colors - applied to specific sections, NOT body */
body.a11y-inverted .top-bar,
body.a11y-inverted .header,
body.a11y-inverted .hero,
body.a11y-inverted section,
body.a11y-inverted footer {
    filter: invert(1) hue-rotate(180deg);
}
body.a11y-inverted .top-bar img,
body.a11y-inverted .header img,
body.a11y-inverted .hero img,
body.a11y-inverted section img,
body.a11y-inverted footer img,
body.a11y-inverted .hero-slide,
body.a11y-inverted video {
    filter: invert(1) hue-rotate(180deg);
}

/* Highlight Links */
body.a11y-highlight-links a,
body.a11y-highlight-links button {
    text-decoration: underline !important;
    text-decoration-thickness: 2px !important;
    text-underline-offset: 4px !important;
    background: yellow !important;
    color: black !important;
    padding: 2px 6px !important;
    border-radius: 4px;
    font-weight: bold !important;
}

/* Big Cursor */
body.a11y-big-cursor,
body.a11y-big-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1.5' d='M5 2v17l5-5 3 7 2-1-3-7h7z'/%3E%3C/svg%3E") 0 0, auto !important;
}

/* Stop Animations */
body.a11y-no-animations,
body.a11y-no-animations *,
body.a11y-no-animations *::before,
body.a11y-no-animations *::after {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
}

/* Readable Font */
body.a11y-readable-font,
body.a11y-readable-font * {
    font-family: 'Arial', 'Heebo', sans-serif !important;
    letter-spacing: 0.05em !important;
    word-spacing: 0.1em !important;
    line-height: 1.7 !important;
}

/* Skip to Content */
.skip-to-content {
    position: absolute;
    top: -100px;
    right: 0;
    background: #0066cc;
    color: white;
    padding: 12px 20px;
    z-index: 100000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 0 12px;
    transition: top 0.3s;
}

.skip-to-content:focus {
    top: 0;
    outline: 3px solid #fbbf24;
}

/* Better focus states everywhere */
body.a11y-keyboard-focus *:focus {
    outline: 3px solid #fbbf24 !important;
    outline-offset: 2px !important;
}

/* ============================================
   Gallery Lightbox
   ============================================ */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.lightbox-overlay.active {
    display: flex;
    opacity: 1;
}

.lightbox-container {
    position: relative;
    max-width: 95vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: lightboxIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes lightboxIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: calc(90vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-image {
    max-width: 90vw;
    max-height: calc(90vh - 100px);
    width: auto;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.lightbox-caption {
    margin-top: 24px;
    text-align: center;
    color: white;
    width: 100%;
    max-width: 600px;
}

.lightbox-caption h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.lightbox-caption p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.lightbox-counter {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100001;
}

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

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100000;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    right: 30px;
}

.lightbox-nav.next {
    left: 30px;
}

/* Thumbnail strip at bottom */
.lightbox-thumbs {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: var(--radius-full);
    max-width: 90vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.lightbox-thumb {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lightbox-thumb:hover {
    opacity: 1;
}

.lightbox-thumb.active {
    opacity: 1;
    border-color: var(--primary-light);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.5);
}

@media (max-width: 700px) {
    .lightbox-nav {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .lightbox-nav.prev { right: 12px; }
    .lightbox-nav.next { left: 12px; }

    .lightbox-close {
        width: 44px;
        height: 44px;
        font-size: 18px;
        top: 12px;
        left: 12px;
    }

    .lightbox-caption h3 {
        font-size: 18px;
    }

    .lightbox-thumbs {
        bottom: 12px;
        padding: 6px;
    }

    .lightbox-thumb {
        width: 40px;
        height: 40px;
    }
}

/* Show pointer cursor on gallery items */
.gallery-pro-item {
    cursor: zoom-in;
}

/* ============================================
   Hours Section
   ============================================ */
.hours-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

.hours-content .section-tag {
    margin-top: 0;
}

.hours-content > p {
    color: var(--gray-500);
    margin: 0 0 32px;
    font-size: 17px;
}

.hours-list {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid var(--gray-100);
}

.hours-day {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition-fast);
}

.hours-day:last-child {
    border-bottom: none;
}

.hours-day:hover {
    background: var(--bg-tint);
}

.hours-day.today {
    background: linear-gradient(90deg, var(--bg-tint), white);
    border-right: 4px solid var(--primary);
}

.day-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
}

.day-time {
    color: var(--primary);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.hours-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border: 1px solid #fbbf24;
    padding: 16px 20px;
    border-radius: var(--radius);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #78350f;
    font-size: 14px;
}

.hours-note i {
    color: #d97706;
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    color: white;
    position: relative;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-header {
    padding: 32px 32px 24px;
    position: relative;
}

.pricing-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pricing-header h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.pricing-list {
    padding: 0 32px;
    position: relative;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.price-row span {
    font-size: 13px;
    opacity: 0.8;
}

.price-row.featured {
    background: rgba(255, 255, 255, 0.1);
    padding: 18px;
    margin: 8px -18px;
    border-radius: var(--radius);
    border-bottom: none;
}

.price {
    font-size: 28px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    color: white;
    letter-spacing: -0.02em;
}

.pricing-card .btn {
    margin: 28px 32px 32px;
    width: calc(100% - 64px);
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.pricing-card .btn:hover {
    background: var(--bg-tint);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--bg);
}

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

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    isolation: isolate;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-aurora);
    opacity: 0;
    border-radius: var(--radius-xl);
    transition: opacity 0.4s;
    z-index: -1;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: 16px;
    left: 24px;
    font-size: 80px;
    font-family: serif;
    color: var(--primary-lighter);
    line-height: 1;
    opacity: 0.6;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: #fbbf24;
    font-size: 16px;
}

.testimonial-card p {
    color: var(--gray-700);
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.testimonial-author strong {
    display: block;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
}

.testimonial-author span {
    color: var(--gray-500);
    font-size: 13px;
}

/* ============================================
   Map Section
   ============================================ */
.map-section {
    padding: 120px 0;
    background: var(--bg-soft);
}

.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: stretch;
}

.map-info > p {
    color: var(--gray-500);
    font-size: 17px;
    margin: 0 0 36px;
}

.contact-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-block {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 18px;
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.contact-block:hover {
    transform: translateX(-8px) translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.contact-block:hover .contact-block-icon {
    background: var(--grad-primary);
    color: white;
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.contact-block-icon {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-block-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-tint);
    color: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-block h4 {
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-block p {
    color: var(--gray-600);
    font-size: 15px;
    line-height: 1.5;
}

.map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 8px solid white;
    min-height: 500px;
}

.map-embed iframe {
    display: block;
    height: 100%;
    min-height: 500px;
}

/* ============================================
   CTA Final
   ============================================ */
.cta-final {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    color: white;
    text-align: center;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(7, 89, 133, 0.92), rgba(6, 182, 212, 0.85));
}

.cta-final-content {
    position: relative;
    z-index: 1;
}

.cta-final h2 {
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.cta-final p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-title,
.footer-logo .logo-subtitle {
    color: white;
}

.footer-about > p {
    margin-bottom: 24px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-right: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--primary-light);
    width: 18px;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ============================================
   WhatsApp Float
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
    z-index: 999;
    animation: pulseWhatsApp 2s infinite;
    transition: var(--transition);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    opacity: 0.3;
    z-index: -1;
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20b958;
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: var(--ink);
    color: white;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--ink);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    left: 80px;
}

@keyframes pulseWhatsApp {
    0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   Scroll to top
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
    font-size: 16px;
}

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

.scroll-top:hover {
    transform: translateY(-4px);
    background: var(--primary-dark);
}

/* ============================================
   Page Header (for inner pages)
   ============================================ */
.page-header {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    color: white;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.3), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.3), transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb i {
    font-size: 10px;
    margin-top: 4px;
}

/* ============================================
   Animations on scroll
   ============================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-aos].in-view {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .header-content {
        padding: 16px 24px;
    }

    .nav {
        display: none;
    }

    .nav.active {
        display: block;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        box-shadow: var(--shadow-lg);
        padding: 16px;
        border-top: 1px solid var(--gray-100);
    }

    .nav.active .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav.active .nav-link {
        padding: 14px 20px;
        display: block;
        border-radius: var(--radius);
    }

    .mobile-toggle {
        display: flex;
    }

    .header-btn {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        gap: 40px;
    }

    .hero-card {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about-images {
        max-width: 500px;
        margin: 0 auto;
    }

    .attractions-modern {
        grid-template-columns: 1fr;
    }

    .attractions-modern-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hours-wrapper,
    .map-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .stat-item {
        border-right: none;
    }
}

@media (max-width: 700px) {
    .container {
        padding: 0 20px;
    }

    .top-bar {
        font-size: 12px;
    }

    .hide-mobile {
        display: none !important;
    }

    .lang-switcher {
        font-size: 12px;
    }

    .header-content {
        padding: 14px 20px;
    }

    .logo-icon {
        width: 42px;
        height: 42px;
    }

    .logo-icon svg {
        width: 22px;
        height: 22px;
    }

    .logo-title {
        font-size: 17px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .hero {
        min-height: auto;
        padding: 50px 0 80px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-scroll {
        display: none;
    }

    .about, .attractions-preview, .hours-section, .testimonials, .map-section {
        padding: 70px 0;
    }

    .about-images {
        padding: 0;
    }

    .img-floating {
        right: 10px;
        top: 10px;
        padding: 14px 18px;
    }

    .img-secondary {
        left: -10px;
        bottom: -20px;
        width: 50%;
    }

    .attractions-modern-grid {
        grid-template-columns: 1fr;
    }

    .services-strip-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .strip-item {
        padding: 8px;
    }

    .pricing-card .btn,
    .pricing-header,
    .pricing-list {
        padding-left: 24px;
        padding-right: 24px;
    }

    .pricing-card .btn {
        margin: 24px;
        width: calc(100% - 48px);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .footer-social,
    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        bottom: 20px;
        left: 20px;
        right: auto;
    }

    .scroll-top {
        width: 44px;
        height: 44px;
        bottom: 84px;
        left: 20px;
        right: auto;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .map-embed,
    .map-embed iframe {
        min-height: 350px;
    }

    .page-header {
        padding: 80px 0 60px;
    }
}

/* ============================================
   Dropdown Menu
   ============================================ */
.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    z-index: 100;
    border: 1px solid var(--gray-100);
}

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

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--gray-700);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-weight: 500;
}

.dropdown a:hover {
    background: var(--bg-tint);
    color: var(--primary);
}

/* ============================================
   News / Notice Board Section
   ============================================ */
.news-section {
    padding: 90px 0;
    background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
}

.news-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 24px;
    align-items: start; /* each card only as tall as its content (no over-stretch) */
}

.news-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 4px;
    background: var(--grad-aurora);
    transition: width 0.4s var(--ease);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.news-card:hover::after {
    width: 100%;
}

.news-card.featured {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    color: white;
    border-color: transparent;
}

.news-card.featured::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--bg-tint);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.news-card.featured .news-badge {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.news-badge.urgent {
    background: #fee2e2;
    color: #dc2626;
}

.news-card.featured .news-badge.urgent {
    background: #fbbf24;
    color: #78350f;
    border-color: transparent;
}

.news-badge.new {
    background: #dcfce7;
    color: #16a34a;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 13px;
    margin-bottom: 12px;
    position: relative;
}

.news-card.featured .news-date {
    color: rgba(255, 255, 255, 0.8);
}

.news-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    line-height: 1.3;
    position: relative;
}

.news-card.featured h3 {
    color: white;
    font-size: 26px;
}

.news-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
    position: relative;
}

.news-card.featured p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    position: relative;
}

.news-card.featured .news-link {
    color: white;
}

.news-link:hover {
    gap: 12px;
}

/* ============================================
   Gallery Mini Preview
   ============================================ */
.gallery-preview {
    padding: 100px 0;
    background: var(--bg-soft);
}

.gallery-mini-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.gallery-mini-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-mini-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-mini-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

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

.gallery-mini-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 132, 199, 0.5), transparent);
    opacity: 0;
    transition: var(--transition);
}

.gallery-mini-item:hover::after {
    opacity: 1;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
    .news-card.featured {
        grid-column: span 2;
    }
    .gallery-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 700px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    .news-card.featured {
        grid-column: span 1;
    }
    .gallery-mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Board Members Section
   ============================================ */
.board-section {
    padding: 80px 0;
    background: var(--bg-soft);
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.board-member {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.board-member:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.board-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-primary);
}

.board-member h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.board-member .role {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.board-member .votes {
    color: var(--gray-500);
    font-size: 13px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
    margin-top: 12px;
}

/* Chairman badge */
.board-member.chairman {
    background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%);
    border-color: #fbbf24;
    border-width: 2px;
    position: relative;
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto 24px;
}

.chair-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 56px;
    height: 36px;
    padding: 0 14px;
    background: linear-gradient(135deg, #ca8a04, #facc15);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -0.5px;
    box-shadow: 0 8px 20px rgba(202, 138, 4, 0.4);
    white-space: nowrap;
}

.board-member.chairman .board-avatar {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.4);
}

.board-member.chairman .role {
    color: #d97706;
    font-weight: 800;
}

/* Committees Leadership */
.committees-leadership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    color: white;
    padding: 20px 24px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-primary);
}

.leader-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.leader-card span {
    display: block;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.leader-card strong {
    font-size: 19px;
    font-weight: 800;
}

@media (max-width: 700px) {
    .committees-leadership {
        grid-template-columns: 1fr;
    }
}

.committee-subtitle {
    color: var(--gray-500);
    font-size: 13px;
    margin: 0 0 12px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--gray-200);
}

.role-tag {
    display: inline-block;
    padding: 2px 8px;
    background: var(--grad-primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    margin-right: auto;
}

.committee-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.committee-list li i.fa-star {
    color: #fbbf24;
}

/* Elections Tabs */
.elections-tabs {
    display: flex;
    gap: 8px;
    background: white;
    padding: 8px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.election-tab {
    flex: 1;
    min-width: 100px;
    padding: 12px 16px;
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--gray-700);
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.election-tab:hover {
    background: var(--bg-soft);
}

.election-tab.active {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.tab-year {
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}

.tab-date {
    font-size: 11px;
    opacity: 0.8;
}

/* Election Content */
.election-content {
    display: none;
    background: white;
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    animation: fadeIn 0.4s ease;
}

.election-content.active {
    display: block;
}

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

.election-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
    flex-wrap: wrap;
}

.election-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.election-header p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.5;
}

.election-badge {
    background: #dcfce7;
    color: #15803d;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

/* Election Results */
.election-results {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-row {
    display: grid;
    grid-template-columns: 40px 180px 1fr 60px 110px;
    gap: 16px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid transparent;
}

.result-row:hover {
    transform: translateX(-4px);
    border-color: var(--gray-200);
    background: white;
    box-shadow: var(--shadow-sm);
}

.result-row.elected {
    background: linear-gradient(90deg, rgba(220, 252, 231, 0.5) 0%, white 100%);
    border-color: #86efac;
}

.result-row.not-elected {
    opacity: 0.7;
}

.result-position {
    width: 40px;
    height: 40px;
    background: var(--grad-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    flex-shrink: 0;
}

.result-row.not-elected .result-position {
    background: var(--gray-400);
}

.result-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
}

.result-bar {
    height: 10px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
}

.bar-fill {
    height: 100%;
    background: var(--grad-primary);
    border-radius: var(--radius-full);
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.result-row.not-elected .bar-fill {
    background: var(--gray-400);
}

.result-votes {
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.result-row.not-elected .result-votes {
    color: var(--gray-500);
}

.result-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    background: var(--bg-tint);
    color: var(--primary);
    white-space: nowrap;
    justify-content: center;
}

.elected-status {
    background: #dcfce7;
    color: #15803d;
}

.not-elected-status {
    background: #fee2e2;
    color: #b91c1c;
}

.results-section-title {
    background: linear-gradient(90deg, var(--bg-tint) 0%, white 100%);
    border-right: 4px solid var(--primary);
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 16px;
}

.results-section-title h4 {
    color: var(--ink);
    font-size: 17px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.01em;
}

.archive-message {
    background: var(--bg-tint);
    border-right: 4px solid var(--primary);
    padding: 24px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 20px;
}

.archive-message i {
    font-size: 36px;
    color: var(--primary);
    flex-shrink: 0;
}

.archive-message p {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 900px) {
    .result-row {
        grid-template-columns: 36px 1fr;
        gap: 12px;
    }

    .result-bar, .result-votes, .result-status {
        grid-column: 2;
    }

    .result-bar {
        width: 100%;
    }

    .result-votes {
        text-align: right;
        font-size: 16px;
    }

    .result-status {
        justify-self: start;
    }

    .election-content {
        padding: 20px;
    }

    .election-header {
        flex-direction: column;
    }
}

.committees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .committees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.committee-card {
    background: white;
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    border-right: 4px solid var(--primary);
}

.committee-card h4 {
    font-size: 19px;
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.committee-card h4 i {
    color: var(--primary);
}

.committee-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.committee-list li {
    padding: 8px 0;
    color: var(--gray-700);
    border-bottom: 1px dashed var(--gray-200);
    display: flex;
    align-items: center;
    gap: 10px;
}

.committee-list li:last-child {
    border-bottom: none;
}

.committee-list i {
    color: var(--primary);
    font-size: 12px;
}

@media (max-width: 1024px) {
    .board-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .committees-grid {
        grid-template-columns: 1fr;
    }
}

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

/* ============================================
   Classes (Hugim) Section
   ============================================ */
.classes-section {
    padding: 80px 0;
}

.classes-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.class-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-lighter);
}

.class-card-header {
    padding: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    position: relative;
}

.class-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.class-card-header .class-type {
    font-size: 13px;
    opacity: 0.95;
    font-weight: 500;
}

.class-icon-big {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 36px;
    opacity: 0.3;
}

.class-card-body {
    padding: 20px 24px;
    flex: 1;
}

.class-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.class-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
}

.class-info-row i {
    color: var(--primary);
    width: 18px;
    text-align: center;
}

.class-info-row strong {
    color: var(--ink);
    margin-right: 4px;
}

.class-description {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.6;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
    margin-top: 8px;
}

.class-card-footer {
    padding: 16px 24px;
    background: var(--bg-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.class-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 16px;
}

.class-card-footer .btn {
    padding: 8px 16px;
    font-size: 13px;
}

@media (max-width: 1024px) {
    .classes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   Icon Display (replaces images)
   ============================================ */
.icon-display {
    background: var(--grad-ocean);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.icon-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,107,53,0.2) 0%, transparent 50%);
}

.spa-icon { background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f43f5e 100%); }
.tennis-icon { background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%); }
.cafe-icon { background: linear-gradient(135deg, #f97316 0%, #fbbf24 50%, #ef4444 100%); }
.gym-icon { background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #0066cc 100%); }
.pool-icon { background: linear-gradient(135deg, #0066cc 0%, #00b4d8 50%, #06d6a0 100%); }
.events-icon { background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%); }
.sports-icon { background: linear-gradient(135deg, #ea580c 0%, #f59e0b 50%, #facc15 100%); }
.ball-icon { background: linear-gradient(135deg, #b45309 0%, #ea580c 50%, #dc2626 100%); }

/* Icon Card (for attraction-modern grid) */
.icon-card {
    background: var(--grad-ocean);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.icon-card.gym-card {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #0066cc 100%);
}

.icon-card-inner {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.icon-card-inner i {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.95);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s var(--ease);
}

.icon-card:hover .icon-card-inner i {
    transform: scale(1.1) rotate(-5deg);
}

.icon-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    z-index: 0;
}

.icon-illustration {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: float 6s ease-in-out infinite;
}

.icon-illustration i {
    font-size: 90px;
    color: white;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

.icon-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon-deco-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
}

.icon-deco-2 {
    width: 40px;
    height: 40px;
    bottom: 15%;
    left: 10%;
    animation: float 10s ease-in-out infinite 1s;
}

.icon-deco-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 8%;
    animation: float 7s ease-in-out infinite 2s;
}

@media (max-width: 700px) {
    .icon-illustration {
        width: 140px;
        height: 140px;
    }
    .icon-illustration i {
        font-size: 60px;
    }
    .icon-deco-1 { width: 40px; height: 40px; }
    .icon-deco-2 { width: 28px; height: 28px; }
    .icon-deco-3 { width: 52px; height: 52px; }
}

/* ============================================
   Classes Table (Real Schedule)
   ============================================ */
.classes-table-wrapper {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-100);
    margin-bottom: 32px;
}

.classes-day-section {
    border-bottom: 1px solid var(--gray-100);
}

.classes-day-section:last-child {
    border-bottom: none;
}

.classes-day-header {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    color: white;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: var(--transition);
    user-select: none;
}

.classes-day-header:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.classes-day-header h3 {
    font-size: 19px;
    font-weight: 700;
    flex: 1;
}

.classes-day-header .day-count {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.classes-day-header .toggle-icon {
    transition: var(--transition);
    font-size: 14px;
}

.classes-day-section.open .toggle-icon {
    transform: rotate(180deg);
}

.classes-day-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.classes-day-section.open .classes-day-content {
    max-height: 3000px;
}

.classes-table {
    width: 100%;
    border-collapse: collapse;
}

.classes-table thead th {
    background: var(--bg-soft);
    padding: 14px 16px;
    text-align: right;
    color: var(--gray-700);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--gray-200);
}

.classes-table tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 14px;
    vertical-align: middle;
}

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

.classes-table tbody tr:hover {
    background: var(--bg-tint);
}

.classes-table .class-name {
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
}

.classes-table .class-instructor {
    color: var(--gray-600);
    font-weight: 500;
}

.classes-table .class-time {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-weight: 600;
    direction: ltr;
    text-align: right;
}

.classes-table .class-days {
    background: var(--bg-tint);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
}

.classes-table .class-price-cell {
    font-weight: 700;
    color: var(--ink);
    white-space: nowrap;
}

.classes-table .class-price-cell.free {
    color: var(--success);
}

.classes-table .class-price-cell.members {
    color: var(--warning);
    font-size: 13px;
}

.classes-legend {
    background: var(--bg-soft);
    padding: 20px 24px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    border-right: 4px solid var(--primary);
}

.classes-legend h4 {
    color: var(--ink);
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 700;
}

.classes-legend ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 8px 24px;
}

.classes-legend li {
    color: var(--gray-700);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.classes-legend i {
    color: var(--primary);
}

/* Entry-prices legend: heading above each detail, shown as cards side by side */
.entry-legend ul {
    gap: 16px;
    align-items: stretch;
    direction: ltr; /* columns flow left->right: "מחירי כניסה" first (leftmost) */
}
.entry-legend li {
    direction: rtl; /* keep the Hebrew text inside each card right-to-left */
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background: white;
    padding: 18px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    line-height: 1.6;
}
.entry-legend .legend-title {
    color: var(--primary-darker);
    font-size: 16px;
    font-weight: 800;
}
.entry-legend .legend-title i {
    color: var(--primary);
    margin-inline-end: 6px;
}

@media (max-width: 700px) {
    .classes-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .classes-table thead {
        display: none;
    }

    .classes-table tbody, .classes-table tr, .classes-table td {
        display: block;
        width: 100%;
    }

    .classes-table tbody tr {
        padding: 16px;
        border-bottom: 8px solid var(--bg-soft);
    }

    .classes-table tbody td {
        padding: 4px 0;
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        gap: 12px;
    }

    .classes-table tbody td::before {
        content: attr(data-label);
        color: var(--gray-500);
        font-weight: 600;
        font-size: 12px;
        text-transform: uppercase;
    }
}

/* ============================================
   Classes Modern Layout (Variant B)
   ============================================ */
.classes-modern {
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: 32px;
    margin-bottom: 24px;
}

.day-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.day-pill {
    padding: 12px 20px;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 14px;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    text-align: center;
    min-width: 110px;
    color: var(--gray-600);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.day-pill:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.day-pill.active {
    background: var(--grad-primary);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.35);
    transform: translateY(-2px);
}

.day-pill .pill-day {
    font-size: 16px;
    font-weight: 800;
}

.day-pill .pill-count {
    font-size: 11px;
    opacity: 0.7;
    font-family: 'Poppins', sans-serif;
}

.day-section-classes {
    display: none;
    animation: fadeIn 0.4s ease;
}

.day-section-classes.active {
    display: block;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
    gap: 16px;
}

.tl-card {
    background: white;
    border-radius: var(--radius);
    padding: 18px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.tl-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.tl-card-time {
    background: var(--grad-primary);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    min-width: 86px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
    flex-shrink: 0;
}

.tl-card-time .tl-start {
    font-size: 17px;
    line-height: 1;
}

.tl-card-time .tl-sep {
    font-size: 10px;
    margin: 4px 0;
    opacity: 0.75;
    font-weight: 500;
}

.tl-card-time .tl-end {
    font-size: 13px;
    opacity: 0.9;
    line-height: 1;
}

.tl-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.tl-card-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.01em;
}

.tl-emoji {
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    transition: var(--transition);
    color: white;
    flex-shrink: 0;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.tl-card:hover .tl-emoji {
    transform: rotate(-8deg) scale(1.1);
}

.tl-emoji.water { background: linear-gradient(135deg, #06b6d4, #0891b2); box-shadow: 0 4px 10px rgba(8, 145, 178, 0.4); }
.tl-emoji.dance { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 4px 10px rgba(219, 39, 119, 0.4); }
.tl-emoji.fitness { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 4px 10px rgba(217, 119, 6, 0.4); }
.tl-emoji.yoga { background: linear-gradient(135deg, #8b5cf6, #7c3aed); box-shadow: 0 4px 10px rgba(124, 58, 237, 0.4); }
.tl-emoji.health { background: linear-gradient(135deg, #ef4444, #dc2626); box-shadow: 0 4px 10px rgba(220, 38, 38, 0.4); }
.tl-emoji.zen { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 4px 10px rgba(5, 150, 105, 0.4); }
.tl-emoji.bone { background: linear-gradient(135deg, #f97316, #ea580c); box-shadow: 0 4px 10px rgba(234, 88, 12, 0.4); }
.tl-emoji.folk { background: linear-gradient(135deg, #b45309, #92400e); box-shadow: 0 4px 10px rgba(146, 64, 14, 0.4); }

.tl-card-inst {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tl-card-inst i {
    color: var(--gray-400);
    font-size: 12px;
}

.tl-card-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    align-self: flex-start;
    background: var(--bg-tint);
    color: var(--primary);
}

.tl-card-price.free {
    background: #dcfce7;
    color: #16a34a;
}

.tl-card-price.members {
    background: #fef3c7;
    color: #b45309;
}

@media (max-width: 700px) {
    .classes-modern {
        padding: 20px;
    }

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

    .day-pill {
        min-width: 90px;
        padding: 10px 14px;
    }
}

/* ============================================
   Hours Table - Full Schedule
   ============================================ */
.full-hours-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.full-hours-table table {
    width: 100%;
    border-collapse: collapse;
}

.full-hours-table th {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    color: white;
    padding: 16px 14px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.full-hours-table th:first-child {
    text-align: right;
}

.full-hours-table td {
    padding: 16px 14px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-700);
    font-size: 14px;
    vertical-align: middle;
}

.full-hours-table td:first-child {
    text-align: right;
    font-weight: 700;
    color: var(--ink);
    background: var(--bg-soft);
}

.full-hours-table tr:hover td {
    background: var(--bg-tint);
}

.full-hours-table tr:hover td:first-child {
    background: var(--primary-lighter);
}

.full-hours-table .time-cell {
    font-family: 'Poppins', sans-serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.6;
    direction: ltr;
}

.full-hours-table .summer-note {
    font-size: 11px;
    color: var(--warning);
    font-weight: 700;
    display: block;
    margin-top: 4px;
}

.full-hours-table .closed-cell {
    display: inline-block;
    padding: 4px 12px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.section-tag.pulse-tag {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    border-color: #fbbf24;
    animation: pulse-gentle 3s ease-in-out infinite;
}

@keyframes pulse-gentle {
    0%, 100% { box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25); }
    50% { box-shadow: 0 4px 24px rgba(251, 191, 36, 0.5); }
}

.section-tag.pulse-tag::before {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    box-shadow: 0 0 12px #f59e0b;
}

/* Per-facility mobile cards (built by buildMobileHours in script.js).
   Hidden on desktop; the real table shows there. */
.hours-cards { display: none; }

@media (max-width: 900px) and (min-width: 701px) {
    .full-hours-table {
        overflow-x: auto;
    }

    .full-hours-table table {
        min-width: 700px;
    }
}

/* On phones: hide the wide table and show one card PER FACILITY,
   each listing that facility's whole week (day | hours). */
@media (max-width: 700px) {
    .full-hours-table {
        overflow: visible;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
    }
    .full-hours-table table { display: none; }

    .hours-cards { display: block; }
    .hours-card {
        background: white;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow);
        margin-bottom: 16px;
        overflow: hidden;
    }
    .hours-card-head {
        background: linear-gradient(135deg, var(--primary-darker), var(--primary));
        color: white;
        text-align: center;
        font-size: 16px;
        font-weight: 800;
        padding: 13px 16px;
    }
    .hours-card-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 16px;
        border-bottom: 1px solid var(--gray-100);
        font-size: 15px;
    }
    .hours-card-row:last-child { border-bottom: none; }
    .hcr-day {
        font-weight: 700;
        color: var(--ink);
    }
    .hcr-time {
        direction: ltr;
        color: var(--primary);
        font-weight: 600;
        font-size: 14px;
    }
}

/* ============================================
   Membership Card
   ============================================ */
.membership-card {
    background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    color: white;
    position: relative;
}

.membership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.membership-header {
    padding: 32px 32px 24px;
    position: relative;
}

.membership-header h3 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.membership-header p {
    opacity: 0.9;
    font-size: 15px;
}

.membership-features {
    padding: 0 32px 24px;
    position: relative;
}

.membership-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
}

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

.membership-features i {
    color: #4ade80;
    font-size: 16px;
}

.membership-card .btn {
    margin: 0 32px 32px;
    width: calc(100% - 64px);
    background: white;
    color: var(--primary);
    box-shadow: none;
}

.membership-card .btn:hover {
    background: var(--bg-tint);
    transform: translateY(-2px);
}

/* ============================================
   Inner Pages Common Sections
   ============================================ */
.section-padding {
    padding: 100px 0;
}

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

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Value Cards (About Page)
   ============================================ */
.value-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-aurora);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    border-radius: var(--radius-xl);
}

.value-card::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--grad-primary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.5s;
}

.value-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.value-card:hover::after {
    transform: scale(3);
    opacity: 0.08;
}

.value-icon {
    width: 88px;
    height: 88px;
    background: var(--grad-primary);
    color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 24px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.25);
    position: relative;
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 20px;
    background: var(--grad-aurora);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.value-card:hover .value-icon {
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 16px 40px rgba(0, 180, 216, 0.4);
}

.value-card:hover .value-icon::after {
    opacity: 1;
}

.value-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.value-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Timeline (About Page)
   ============================================ */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 3;
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    grid-column: 1;
    text-align: left;
}

.timeline-year {
    grid-column: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 24px rgba(2, 132, 199, 0.4);
    z-index: 1;
    margin: 0 auto;
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    margin: 0 20px;
}

.timeline-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.timeline-content p {
    color: var(--gray-600);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 700px) {
    .timeline::before {
        right: 40px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
    }

    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content {
        grid-column: 2;
        text-align: right;
    }

    .timeline-year {
        grid-column: 1;
    }
}

/* ============================================
   Attractions Detail Page
   ============================================ */
.attractions-detail {
    padding: 80px 0;
}

.attraction-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.attraction-detail:last-child {
    margin-bottom: 0;
}

.attraction-detail.reverse .attraction-detail-img {
    order: 2;
}

.attraction-detail-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.attraction-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s var(--ease);
}

.attraction-detail-img:hover img {
    transform: scale(1.05);
}

.attraction-detail-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(2, 132, 199, 0.1), transparent);
    pointer-events: none;
}

.attraction-detail-content .section-tag {
    margin-bottom: 12px;
}

.attraction-detail-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.attraction-detail-content > p {
    color: var(--gray-600);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.attraction-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.attraction-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.attraction-feature i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 4px;
    flex-shrink: 0;
}

.attraction-feature span {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .attraction-detail,
    .attraction-detail.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 70px;
    }

    /* On mobile: title + text first, image below */
    .attraction-detail .attraction-detail-content,
    .attraction-detail.reverse .attraction-detail-content {
        order: 1;
    }
    .attraction-detail .attraction-detail-img,
    .attraction-detail.reverse .attraction-detail-img {
        order: 2;
    }
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-pro {
    padding: 80px 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    color: var(--gray-700);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--gray-200);
    transition: var(--transition-fast);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.gallery-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-pro-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery-pro-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-pro-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

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

.gallery-pro-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 89, 133, 0.9), transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.gallery-pro-item:hover .gallery-pro-overlay {
    opacity: 1;
}

.gallery-pro-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.gallery-pro-overlay span {
    font-size: 13px;
    opacity: 0.9;
}

.gallery-zoom-icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.8);
    transition: var(--transition);
}

.gallery-pro-item:hover .gallery-zoom-icon {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .gallery-pro-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .gallery-pro-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Events Page
   ============================================ */
.events-list {
    padding: 80px 0;
}

.event-card {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 32px;
    align-items: center;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateX(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-lighter);
}

.event-img {
    width: 240px;
    height: 200px;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.event-card:hover .event-img img {
    transform: scale(1.08);
}

.event-content {
    padding: 24px 0;
}

.event-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg-tint);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
}

.event-content h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.event-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 12px;
}

.event-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--gray-500);
    font-size: 13px;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-meta i {
    color: var(--primary);
}

.event-cta {
    padding: 0 32px;
}

@media (max-width: 900px) {
    .event-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .event-img {
        width: 100%;
        height: 200px;
    }

    .event-content {
        padding: 24px;
    }

    .event-cta {
        padding: 0 24px 24px;
    }
}

/* ============================================
   FAQ Page
   ============================================ */
.faq-section {
    padding: 80px 0;
}

.faq-wrapper {
    max-width: 850px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow);
    border-color: var(--primary-lighter);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-fast);
    background: transparent;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--bg-tint);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 12px;
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: white;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: var(--gray-600);
    line-height: 1.7;
    border-top: 1px solid var(--gray-100);
    padding-top: 20px;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-page {
    padding: 80px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-darker), var(--primary));
    color: white;
    padding: 40px 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.4), transparent 70%);
    border-radius: 50%;
}

.contact-info-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
    letter-spacing: -0.02em;
}

.contact-info-card > p {
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-info-item i {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-info-item p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
}

.contact-social-row {
    display: flex;
    gap: 10px;
    position: relative;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-social-row a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.contact-social-row a:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form h3 {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 8px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.contact-form > p {
    color: var(--gray-500);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--ink);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-soft);
    transition: var(--transition-fast);
    color: var(--ink);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}

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

@media (max-width: 1024px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info-card {
        padding: 28px 24px;
    }
}

/* ============================================
   Map embed for contact page
   ============================================ */
.contact-map-section {
    padding: 0 0 80px;
}

.contact-map-section .map-embed {
    height: 450px;
    width: 100%;
}


/* ============================================
   CEO Card (Park Management)
   ============================================ */
.ceo-card {
    position: relative;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    border-radius: 24px;
    padding: 38px 36px;
    margin-bottom: 50px;
    overflow: hidden;
    box-shadow: 0 18px 50px -10px rgba(30, 64, 175, 0.45);
}
.ceo-card-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.18), transparent 45%),
        radial-gradient(circle at 10% 90%, rgba(255,255,255,0.12), transparent 50%);
    pointer-events: none;
}
.ceo-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 32px;
}
.ceo-card .ceo-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    font-size: 38px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4), inset 0 -4px 0 rgba(0,0,0,0.1);
    flex-shrink: 0;
}
.ceo-info { color: white; flex: 1; }
.ceo-title-tag {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    letter-spacing: 0.4px;
    border: 1px solid rgba(255,255,255,0.3);
}
.ceo-info h3 {
    font-size: 32px;
    color: white;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.ceo-info p {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    margin: 0;
    line-height: 1.6;
    max-width: 600px;
}

.board-subtitle {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 28px 0;
    color: var(--text-primary, #1e293b);
    padding-right: 16px;
    border-right: 4px solid var(--brand-blue, #3b82f6);
}

@media (max-width: 768px) {
    .ceo-card { padding: 28px 22px; }
    .ceo-card-content { flex-direction: column; text-align: center; gap: 20px; }
    .ceo-card .ceo-avatar { width: 90px; height: 90px; font-size: 30px; }
    .ceo-info h3 { font-size: 26px; }
    .ceo-info p { font-size: 14px; }
}

/* ============================================
   Facility Period Badges (Public Hours Table)
   ============================================ */
.facility-period-badge {
    display: block;
    background: rgba(245, 158, 11, 0.15);
    color: #92400e;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 8px;
    margin-top: 6px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    line-height: 1.4;
}
.facility-period-badge i { font-size: 9px; margin-left: 3px; }
.facility-closed-badge {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    color: #991b1b;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 8px;
    margin-top: 6px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}
.facility-closed-badge i { font-size: 9px; margin-left: 3px; }

/* Contact form feedback message */
.contact-form-feedback {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    display: none;
    animation: feedback-slide 0.3s ease-out;
}
.contact-form-feedback.success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #065f46;
    border: 1px solid #10b981;
}
.contact-form-feedback.error {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    color: #991b1b;
    border: 1px solid #ef4444;
}
@keyframes feedback-slide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Contact Form - Inline Field Validation
   ============================================ */
.contact-form .form-group input.field-error,
.contact-form .form-group select.field-error,
.contact-form .form-group textarea.field-error {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.contact-form .form-group input.field-error:focus,
.contact-form .form-group select.field-error:focus,
.contact-form .form-group textarea.field-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.field-error-msg {
    color: #b91c1c;
    font-size: 13px;
    font-weight: 600;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    animation: error-slide 0.25s ease-out;
}
.field-error-msg i {
    font-size: 14px;
    color: #ef4444;
}

@keyframes error-slide {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   Skip to Content - Accessibility Required (WCAG 2.1)
   ============================================ */
.skip-to-content {
    position: absolute;
    top: -100px;
    right: 0;
    background: #0066cc;
    color: white;
    padding: 14px 24px;
    z-index: 99999;
    font-weight: 700;
    text-decoration: none;
    border-radius: 0 0 0 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: top 0.2s;
}
.skip-to-content:focus {
    top: 0;
    outline: 3px solid #fbbf24;
    outline-offset: 2px;
}

/* ============================================
   Accessibility Statement Page
   ============================================ */
.a11y-statement-page {
    padding: 60px 0 80px;
    background: var(--bg-soft, #f8fafc);
}

.a11y-section {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}
.a11y-section h2 {
    color: var(--brand-blue, #0066cc);
    margin-bottom: 16px;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.a11y-section h2 i {
    background: linear-gradient(135deg, #0066cc, #003d99);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.a11y-section p { line-height: 1.8; margin-bottom: 14px; color: #334155; }

.a11y-intro {
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border-right: 4px solid #0066cc;
    display: flex;
    align-items: center;
    gap: 24px;
}
.a11y-intro-icon {
    background: linear-gradient(135deg, #0066cc, #003d99);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
}
.a11y-intro h2 { margin: 0 0 8px 0; border: none; }
.a11y-intro h2::before { display: none; }
.a11y-intro p { margin: 0; }

.a11y-compliance-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 18px;
}
.a11y-compliance-card {
    background: linear-gradient(135deg, #f1f5f9, #ffffff);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
    transition: all 0.2s;
}
.a11y-compliance-card:hover {
    border-color: #0066cc;
    transform: translateY(-2px);
}
.a11y-compliance-card i {
    font-size: 32px;
    color: #0066cc;
    margin-bottom: 10px;
}
.a11y-compliance-card strong {
    display: block;
    font-size: 17px;
    color: #0f172a;
    margin-bottom: 4px;
}
.a11y-compliance-card span {
    color: #64748b;
    font-size: 13px;
}

.a11y-features-list,
.a11y-adaptations,
.a11y-complaint-steps {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
}
.a11y-features-list li,
.a11y-adaptations li {
    padding: 12px 16px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 8px;
    line-height: 1.7;
}
.a11y-complaint-steps {
    counter-reset: step;
}
.a11y-complaint-steps li {
    padding: 14px 18px 14px 56px;
    background: #f8fafc;
    border-radius: 10px;
    margin-bottom: 10px;
    counter-increment: step;
    position: relative;
    line-height: 1.7;
}
.a11y-complaint-steps li::before {
    content: counter(step);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #0066cc, #003d99);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.a11y-info-box {
    background: linear-gradient(135deg, #fef3c7, #fffbeb);
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.a11y-info-box i { color: #d97706; font-size: 22px; flex-shrink: 0; padding-top: 2px; }

.a11y-coordinator-section {
    background: linear-gradient(135deg, #eff6ff, #ffffff);
    border: 2px solid #93c5fd;
}
.a11y-coordinator-card {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    border-radius: 14px;
    padding: 24px;
    margin-top: 16px;
}
.a11y-coordinator-icon {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    flex-shrink: 0;
    box-shadow: 0 6px 18px rgba(245, 158, 11, 0.4);
}
.a11y-coord-name {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}
.a11y-coord-role {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 14px 0;
}
.a11y-coord-contact p {
    margin: 4px 0;
    font-size: 14px;
}
.a11y-coord-contact i {
    color: #0066cc;
    width: 18px;
    margin-left: 6px;
}
.a11y-coord-contact a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}
.a11y-coord-contact a:hover { text-decoration: underline; }

.a11y-declaration {
    background: linear-gradient(135deg, #f0fdf4, #ffffff);
    border-right: 4px solid #16a34a;
    text-align: center;
}
.a11y-declaration h2 {
    justify-content: center;
    color: #15803d;
}
.a11y-declaration h2 i {
    background: linear-gradient(135deg, #16a34a, #15803d);
}
.a11y-signature {
    margin-top: 20px;
    font-style: italic;
    color: #64748b;
}

@media (max-width: 768px) {
    .a11y-intro { flex-direction: column; text-align: center; }
    .a11y-coordinator-card { flex-direction: column; text-align: center; }
    .a11y-section { padding: 22px; }
    .a11y-section h2 { font-size: 19px; }
}

/* ============================================
   Event Recap Page (Summer Opening 2026)
   ============================================ */
.event-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    padding: 80px 0 60px;
}
.event-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.55) saturate(1.1);
    z-index: 0;
}
.event-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,102,204,0.5), rgba(0,61,153,0.7));
    z-index: 0;
}
.event-hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; margin: 0 auto; padding: 0 20px; }
.event-hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.22);
    backdrop-filter: blur(12px);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
    margin-bottom: 18px;
}
.event-hero h1 { color: white; font-size: 48px; font-weight: 800; margin: 0 0 16px 0; line-height: 1.15; text-shadow: 0 4px 16px rgba(0,0,0,0.3); }
.event-hero-date { color: rgba(255,255,255,0.95); font-size: 17px; font-weight: 600; margin: 0 0 10px 0; }
.event-hero-date i { margin-left: 6px; }
.event-hero-desc { color: rgba(255,255,255,0.92); font-size: 17px; max-width: 600px; margin: 0 auto; line-height: 1.5; }

.event-recap-page {
    padding: 70px 0;
    background: var(--bg-soft, #f8fafc);
}
.event-section { margin-bottom: 70px; }
.event-section-header { text-align: center; margin-bottom: 36px; }
.event-section-header h2 {
    color: var(--brand-blue, #0066cc);
    font-size: 32px;
    margin: 0 0 10px 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.event-section-header h2 i {
    background: linear-gradient(135deg, #0066cc, #003d99);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.event-section-header p { color: #64748b; font-size: 15px; margin: 0; }

.event-videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 24px;
}
.event-video-card {
    background: black;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.event-video-card video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
    background: black;
}
.event-video-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.event-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.event-photo-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    position: relative;
    background: #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.event-photo-item:hover { transform: scale(1.03); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.event-photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.3s; }
.event-photo-item:hover img { transform: scale(1.1); }
.event-photo-zoom {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 14px;
    color: white;
    font-size: 20px;
    opacity: 0;
    transition: opacity 0.2s;
}
.event-photo-item:hover .event-photo-zoom { opacity: 1; }

.event-cta {
    text-align: center;
    padding: 30px 20px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .event-hero h1 { font-size: 32px; }
    .event-hero { min-height: 400px; padding: 60px 0 40px; }
    .event-section-header h2 { font-size: 24px; }
    .event-videos-grid { grid-template-columns: 1fr; }
    .event-photos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

/* ============================================
   Featured Event Card (Homepage)
   ============================================ */
.featured-event {
    background: linear-gradient(135deg, #0066cc 0%, #003d99 100%);
    border-radius: 24px;
    overflow: hidden;
    margin: 0 auto 60px;
    color: white;
    box-shadow: 0 20px 60px -10px rgba(0, 102, 204, 0.4);
    position: relative;
}
.featured-event::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.15), transparent 50%),
        radial-gradient(circle at 10% 90%, rgba(255,255,255,0.10), transparent 50%);
    pointer-events: none;
}
.featured-event-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    position: relative;
    z-index: 1;
}
.featured-event-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-event-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(12px);
    color: white;
    padding: 8px 18px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.3);
    align-self: flex-start;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.featured-event-badge i { font-size: 12px; }
.featured-event-content h3 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px 0;
    line-height: 1.2;
}
.featured-event-date {
    color: rgba(255,255,255,0.95);
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 14px 0;
}
.featured-event-date i { margin-left: 6px; }
.featured-event-content p {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 24px 0;
}
.featured-event-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #0066cc;
    padding: 13px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s;
    align-self: flex-start;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.featured-event-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.3); }
.featured-event-cta i { font-size: 14px; }

.featured-event-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    background: rgba(0,0,0,0.2);
    aspect-ratio: 4/3;
}
.featured-event-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}
.featured-event-collage a:hover img { transform: scale(1.06); }
.featured-event-collage a {
    overflow: hidden;
    position: relative;
    display: block;
}
.featured-event-play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.35);
    color: white;
    font-size: 38px;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
    pointer-events: none;
}

@media (max-width: 900px) {
    .featured-event-grid { grid-template-columns: 1fr; }
    .featured-event-content { padding: 30px 24px; }
    .featured-event-content h3 { font-size: 22px; }
    .featured-event-collage { aspect-ratio: 16/9; }
}

/* Featured single video (event recap) - wide landscape frame with full video shown (letterbox) */
.event-video-featured {
    margin: 0 auto;
    text-align: center;
    /* no fixed box / aspect-ratio: the video keeps its own proportions */
}
.event-video-featured video {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    display: inline-block;
    background: #000;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    /* portrait or landscape — shown at natural ratio, capped, no black bars */
}

/* ============================================
   News Card with Image (Event Highlight)
   ============================================ */
.event-highlight-row {
    margin-bottom: 24px;
    grid-template-columns: 1fr !important;
}
.news-card.has-image {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.news-card.has-image .news-card-image-link {
    display: block;
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    position: relative;
    background: #e2e8f0;
}
.news-card.has-image .news-card-image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.news-card.has-image:hover .news-card-image-link img {
    transform: scale(1.04);
}
.news-card-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.18);
    color: white;
    font-size: 60px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
    opacity: 0.85;
    transition: all 0.25s;
}
.news-card.has-image:hover .news-card-play-overlay {
    background: rgba(0,0,0,0.3);
    opacity: 1;
    font-size: 68px;
}
.news-card.has-image .news-card-body {
    padding: 26px 28px 28px;
}
.news-card.has-image h3 {
    font-size: 22px;
    margin: 14px 0 10px 0;
}

@media (max-width: 600px) {
    .news-card.has-image .news-card-image-link { aspect-ratio: 16/9; }
    .news-card-play-overlay { font-size: 44px; }
    .news-card.has-image:hover .news-card-play-overlay { font-size: 50px; }
    .news-card.has-image h3 { font-size: 19px; }
}

/* ============================================
   Members-only highlight (attractions: indoor pool, spa, gym)
   ============================================ */
.members-only {
    display: inline-block;
    margin-top: 12px;
    background: #fff4e5;
    color: #92400e;
    font-weight: 800;
    padding: 9px 16px;
    border-radius: 12px;
    border: 1.5px solid #f59e0b;
    line-height: 1.55;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
}
.members-only i {
    margin-inline-end: 7px;
    color: #f59e0b;
}

/* ============================================
   Holidays — top banner + live-status card state
   ============================================ */
.holiday-banner {
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 11px 16px;
    text-align: center;
}
.holiday-banner.special {
    background: linear-gradient(135deg, #b45309, #f59e0b);
}
.holiday-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-wrap: wrap;
}
.holiday-banner i { opacity: 0.9; }
.holiday-banner strong { font-weight: 800; }

/* Holiday state inside the "פעילים עכשיו" card */
.facility-holiday {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.45);
    border-radius: 14px;
    padding: 16px 18px;
}
.facility-holiday.special {
    background: rgba(245, 158, 11, 0.18);
    border-color: rgba(245, 158, 11, 0.5);
}
.holiday-card-title {
    font-weight: 800;
    font-size: 17px;
    color: #fff;
}
.holiday-card-title i { margin-inline-end: 7px; }
.holiday-card-sub {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}
.holiday-card-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.78);
}
