/* ============================================
   COWORKK STUDIO — Premium Stylesheet
   Design System: Light & Bright with Brand Colors
   ============================================ */

/* === CSS Custom Properties (Design Tokens) === */
:root {
    /* Colors — Light & Bright Theme */
    --bg-primary: #ffffff;
    --bg-secondary: #f6f7fb;
    --bg-tertiary: #eef0f6;
    --bg-card: #ffffff;
    --bg-card-hover: #f8f9ff;
    
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a68;
    --text-muted: #8888a4;
    --text-accent: #111111;
    
    /* Brand — derived from the CO WORKK logo: red + blue */
    --accent-red: #e63946;
    --accent-blue: #1d3557;
    --brand-red: #dc2626;
    --brand-blue: #1e3a5f;
    --accent-primary: #dc2626;
    --accent-secondary: #1e3a5f;
    --accent-gradient: linear-gradient(135deg, #dc2626 0%, #e63946 50%, #f43f5e 100%);
    --accent-gradient-hover: linear-gradient(135deg, #ef4444 0%, #f43f5e 50%, #fb7185 100%);
    --accent-gradient-blue: linear-gradient(135deg, #1e3a5f 0%, #1d3557 50%, #2563eb 100%);
    --accent-glow: rgba(220, 38, 38, 0.15);
    --accent-glow-strong: rgba(220, 38, 38, 0.25);
    
    /* Glass */
    --glass-bg: rgba(0, 0, 0, 0.02);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-border-hover: rgba(0, 0, 0, 0.12);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.1);
    --shadow-glow: 0 8px 40px rgba(220, 38, 38, 0.1);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max: 1280px;
    --container-padding: 0 24px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === Reset & Base === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

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

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

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

ul { list-style: none; }

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

.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

/* === Preloader === */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: #eef0f6;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.preloader-progress {
    width: 0;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    animation: preload-progress 1.8s ease-in-out forwards;
}

@keyframes preload-progress {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

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

/* === Gradient Text — disabled for professional look === */
.gradient-text {
    color: var(--text-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-primary);
    background-clip: unset;
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-medium);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.navbar-solid {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.nav-logo-wide {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
}

.navbar:not(.scrolled):not(.navbar-solid) .nav-logo-wide {
    filter: none;
}

.navbar.scrolled .nav-logo-wide,
.navbar-solid .nav-logo-wide {
    height: 40px;
    filter: none;
}

/* Fallback for square logo (footer) */
.nav-logo img:not(.nav-logo-wide) {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: #fff;
    padding: 2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 18px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.navbar:not(.scrolled):not(.navbar-solid) .nav-link {
    color: var(--text-secondary);
}

.navbar:not(.scrolled):not(.navbar-solid) .nav-link:hover,
.navbar:not(.scrolled):not(.navbar-solid) .nav-link.active {
    color: var(--brand-red);
    background: rgba(220, 38, 38, 0.06);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active,
.navbar-solid .nav-link:hover,
.navbar-solid .nav-link.active {
    color: var(--brand-red);
    background: rgba(220, 38, 38, 0.06);
}

.nav-cta {
    padding: 10px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
    background: var(--accent-gradient);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
}

.nav-cta:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.navbar:not(.scrolled):not(.navbar-solid) .nav-toggle span {
    background: var(--text-primary);
}

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

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

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

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

.hero-bg {
    position: absolute;
    inset: 0;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 30, 0.55) 0%,
        rgba(10, 10, 30, 0.4) 40%,
        rgba(10, 10, 30, 0.7) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    padding: 80px 24px 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero .gradient-text {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all var(--transition-fast);
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
}

.btn-primary:hover {
    background: var(--accent-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(220, 38, 38, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* On light bg sections, ghost btn needs different colors */
.about .btn-ghost,
.facilities .btn-ghost,
.gallery-preview .btn-ghost,
.contact-section .btn-ghost,
.cta-band .btn-ghost {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: none;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.82rem;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    font-family: var(--font-primary);
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fbbf24;
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
}

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

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-scroll span {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #fff;
    border-radius: 4px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
    0%, 100% { top: 6px; opacity: 1; }
    50% { top: 22px; opacity: 0.3; }
}

/* === Animations === */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* === Section Headers === */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-red);
    margin-bottom: 16px;
}

.tag-line {
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

/* About section — full-width centered layout (no images) */
.about-content-full {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content-full .section-tag {
    justify-content: center;
}

.about-content-full .section-title {
    color: var(--text-primary);
}

.about-content-full .about-text {
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.8;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header .section-subtitle {
    margin: 0 auto;
}

/* === About Section === */
.about {
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #f0f4ff 100%);
    position: relative;
    z-index: 2;
}

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

.about-images {
    position: relative;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.img-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-sm);
}

.badge-icon {
    font-size: 1.2rem;
    color: #fbbf24;
}

.img-badge span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--bg-primary);
    box-shadow: var(--shadow-lg);
}

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

.about-floating-card {
    position: absolute;
    bottom: 40px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

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

.floating-icon {
    font-size: 2rem;
}

.about-floating-card strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.about-floating-card span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.about-text {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--brand-red);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.about-feature:nth-child(1):hover { border-color: rgba(220,38,38,0.2); transform: translateX(8px); }
.about-feature:nth-child(2):hover { border-color: rgba(37,99,235,0.2); transform: translateX(8px); }
.about-feature:nth-child(3):hover { border-color: rgba(5,150,105,0.2); transform: translateX(8px); }

.about-feature:hover {
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.about-feature:nth-child(1) .feature-icon { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626; }
.about-feature:nth-child(2) .feature-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }
.about-feature:nth-child(3) .feature-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }

.about-feature:hover .feature-icon {
    transform: scale(1.1);
}

.about-feature strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.92rem;
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* === Facilities Section === */
.facilities {
    background: linear-gradient(180deg, #f0f4ff 0%, #fef2f2 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

.facilities::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220,38,38,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.facilities::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

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

.facility-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-medium);
    cursor: default;
    box-shadow: var(--shadow-sm);
}

.facility-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Colorful icon backgrounds for each card */
.facility-card:nth-child(1) .facility-icon { background: linear-gradient(135deg, #fee2e2, #fecaca); color: #dc2626; }
.facility-card:nth-child(2) .facility-icon { background: linear-gradient(135deg, #dbeafe, #bfdbfe); color: #2563eb; }
.facility-card:nth-child(3) .facility-icon { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #d97706; }
.facility-card:nth-child(4) .facility-icon { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #059669; }
.facility-card:nth-child(5) .facility-icon { background: linear-gradient(135deg, #ede9fe, #ddd6fe); color: #7c3aed; }
.facility-card:nth-child(6) .facility-icon { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #db2777; }
.facility-card:nth-child(7) .facility-icon { background: linear-gradient(135deg, #ffedd5, #fed7aa); color: #ea580c; }
.facility-card:nth-child(8) .facility-icon { background: linear-gradient(135deg, #ccfbf1, #99f6e4); color: #0d9488; }
.facility-card:nth-child(9) .facility-icon { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #4f46e5; }

/* Colorful bottom glow per card */
.facility-card:nth-child(1):hover { border-color: rgba(220,38,38,0.2); }
.facility-card:nth-child(2):hover { border-color: rgba(37,99,235,0.2); }
.facility-card:nth-child(3):hover { border-color: rgba(217,119,6,0.2); }
.facility-card:nth-child(4):hover { border-color: rgba(5,150,105,0.2); }
.facility-card:nth-child(5):hover { border-color: rgba(124,58,237,0.2); }
.facility-card:nth-child(6):hover { border-color: rgba(219,39,119,0.2); }
.facility-card:nth-child(7):hover { border-color: rgba(234,88,12,0.2); }
.facility-card:nth-child(8):hover { border-color: rgba(13,148,136,0.2); }
.facility-card:nth-child(9):hover { border-color: rgba(79,70,229,0.2); }

.facility-card:nth-child(1) .facility-glow { background: linear-gradient(90deg, #dc2626, #ef4444); }
.facility-card:nth-child(2) .facility-glow { background: linear-gradient(90deg, #2563eb, #3b82f6); }
.facility-card:nth-child(3) .facility-glow { background: linear-gradient(90deg, #d97706, #f59e0b); }
.facility-card:nth-child(4) .facility-glow { background: linear-gradient(90deg, #059669, #10b981); }
.facility-card:nth-child(5) .facility-glow { background: linear-gradient(90deg, #7c3aed, #8b5cf6); }
.facility-card:nth-child(6) .facility-glow { background: linear-gradient(90deg, #db2777, #ec4899); }
.facility-card:nth-child(7) .facility-glow { background: linear-gradient(90deg, #ea580c, #f97316); }
.facility-card:nth-child(8) .facility-glow { background: linear-gradient(90deg, #0d9488, #14b8a6); }
.facility-card:nth-child(9) .facility-glow { background: linear-gradient(90deg, #4f46e5, #6366f1); }

.facility-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.facility-card:hover .facility-icon {
    transform: scale(1.1) rotate(-3deg);
}

.facility-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.facility-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--transition-medium);
    border-radius: 2px 2px 0 0;
}

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

/* === Membership Plans === */
.memberships {
    background-color: var(--bg-body);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(220, 38, 38, 0.2);
}

.plan-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.plan-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.plan-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.plan-features li svg {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}

/* === Virtual Office Section === */
.virtual-office {
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.virtual-office::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vo-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.vo-text {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}

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

.vo-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.vo-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
    color: #fff;
}

.vo-feature div:last-child {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vo-feature strong {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
}

.vo-feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.vo-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Highlight cards grid on the right */
.vo-highlights {
    display: flex;
    flex-direction: column;
}

.vo-strengths-heading {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.vo-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.vo-highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.vo-highlight-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform var(--transition-medium);
}

.vo-highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(220, 38, 38, 0.15);
}

.vo-highlight-card:hover::after {
    transform: scaleX(1);
}

.vo-highlight-icon {
    font-size: 2rem;
    margin-bottom: 14px;
}

.vo-highlight-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.vo-highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === Gallery Preview (Home) === */
.gallery-preview {
    background: linear-gradient(180deg, #fff7ed 0%, #fef2f2 50%, #ffffff 100%);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.mosaic-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.mosaic-large {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic-wide {
    grid-column: span 2;
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 30, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 1;
}

.mosaic-overlay span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* === CTA Section === */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 95, 0.88) 0%,
        rgba(220, 38, 38, 0.35) 50%,
        rgba(30, 58, 95, 0.88) 100%
    );
}

/* CTA without background image */
.cta-no-bg {
    background: var(--bg-secondary);
}

.cta-no-bg .cta-bg,
.cta-no-bg .cta-overlay {
    display: none;
}

.cta-no-bg .cta-title {
    color: var(--text-primary);
}

.cta-no-bg .cta-text {
    color: var(--text-secondary);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-section .gradient-text {
    color: var(--text-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--text-primary);
    background-clip: unset;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

/* Outline button for CTA */
.btn-primary-outline {
    background: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
}

.btn-primary-outline:hover {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.35);
}

/* === Footer === */
.footer {
    background: var(--brand-blue);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    padding: 48px 0 32px;
}

/* Footer Map */
.footer-map {
    width: 100%;
    line-height: 0;
}

.footer-map iframe {
    width: 100%;
    display: block;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: #fff;
    padding: 6px 10px;
    border-radius: var(--radius-md);
}

.footer-logo span {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.footer-logo strong {
    color: #ef4444;
    font-weight: 800;
}

.footer-brand p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.8);
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    background: rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-links-group h4,
.footer-contact h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-group a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    transition: all var(--transition-fast);
}

.footer-links-group a:hover {
    color: #ffffff;
    transform: translateX(4px);
    display: inline-block;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact-item svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item a {
    color: rgba(255,255,255,0.8);
}

.footer-contact-item a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.footer-credit-link {
    color: rgba(255,255,255,0.65);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.footer-credit-link:hover {
    color: #ffffff;
}

/* === Floating Call Button === */
.call-float {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: var(--brand-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(30, 58, 95, 0.4);
    transition: all var(--transition-fast);
    animation: call-pulse 2s ease-in-out infinite;
}

.call-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(30, 58, 95, 0.5);
}

@keyframes call-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(30, 58, 95, 0.4); }
    50% { box-shadow: 0 6px 24px rgba(30, 58, 95, 0.6), 0 0 0 12px rgba(30, 58, 95, 0.1); }
}

/* === WhatsApp Float === */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-fast);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* === Page Hero (Gallery & Contact) === */
.page-hero {
    position: relative;
    padding: 200px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-hero-short {
    padding: 180px 0 80px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(30, 58, 95, 0.85) 0%,
        rgba(30, 58, 95, 0.7) 50%,
        rgba(30, 58, 95, 0.92) 100%
    );
}

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

.page-hero .section-tag {
    color: rgba(255,255,255,0.8);
}

.page-hero .tag-line {
    background: rgba(255,255,255,0.5);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.page-hero .gradient-text {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #ffffff;
    background-clip: unset;
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* === Gallery Full Page === */
.gallery-full {
    background: var(--bg-secondary);
}

.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: var(--font-primary);
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
    color: var(--text-primary);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-card);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item-tall {
    grid-row: span 2;
}

.gallery-item-wide {
    grid-column: span 2;
}

.gallery-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 30, 0) 40%, rgba(10, 10, 30, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    opacity: 1;
    transition: background var(--transition-fast);
}

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

.gallery-item-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(220, 38, 38, 0.85);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-item-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.gallery-item-info p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
}

.gallery-zoom-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-fast);
    align-self: flex-end;
    flex-shrink: 0;
}

.gallery-zoom-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: scale(1.1);
}

/* === Lightbox === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-md);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

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

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 10;
}

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

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(220, 38, 38, 0.3);
    border-color: rgba(220, 38, 38, 0.5);
}

.lightbox-caption {
    text-align: center;
    padding: 16px 0 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
}

/* === CTA Band === */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.04) 0%, rgba(30, 58, 95, 0.04) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-band-content {
    text-align: center;
}

.cta-band h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cta-band p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 28px;
}

/* === Contact Page === */
.contact-section {
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: rgba(220, 38, 38, 0.15);
    transform: translateX(8px);
    box-shadow: var(--shadow-glow), var(--shadow-md);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(220, 38, 38, 0.06);
    border-radius: var(--radius-md);
    color: var(--brand-red);
    flex-shrink: 0;
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-card-content p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-card-content a {
    color: var(--text-secondary);
}

.contact-card-content a:hover {
    color: var(--brand-red);
}

.contact-detail-note {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.contact-card-action {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--brand-red);
    margin-top: 8px;
    align-self: flex-end;
    flex-shrink: 0;
}

.contact-card-action:hover {
    gap: 10px;
}

/* Social Links */
.contact-socials h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.contact-social-links {
    display: flex;
    gap: 12px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: all var(--transition-fast);
    flex: 1;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.social-link-card:hover {
    border-color: rgba(220, 38, 38, 0.2);
    background: rgba(220, 38, 38, 0.03);
    color: var(--brand-red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link-card span {
    font-size: 0.82rem;
    font-weight: 600;
}

/* Contact Form */
.contact-form-card {
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.optional {
    color: var(--text-muted);
    font-weight: 400;
}

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

.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.input-wrap:focus-within {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
    background: #fff;
}

.input-wrap svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.input-wrap input,
.input-wrap select {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
}

.input-wrap input::placeholder {
    color: var(--text-muted);
}

.input-wrap select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.input-wrap select option {
    background: #fff;
    color: var(--text-primary);
}

.select-wrap {
    position: relative;
}

.select-wrap::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.textarea-wrap {
    align-items: flex-start;
}

.textarea-wrap textarea {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 0.9rem;
    font-family: var(--font-primary);
    color: var(--text-primary);
    resize: vertical;
    min-height: 100px;
}

.textarea-wrap textarea::placeholder {
    color: var(--text-muted);
}

/* === Map Section === */
.map-section {
    position: relative;
    background: var(--bg-secondary);
}

.map-section iframe {
    display: block;
}

.map-overlay-info {
    position: absolute;
    top: 40px;
    left: 40px;
    z-index: 10;
}

.map-info-card {
    padding: 28px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    max-width: 300px;
    box-shadow: var(--shadow-lg);
}

.map-info-logo {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    margin-bottom: 12px;
}

.map-info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.map-info-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.map-info-landmark {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
    font-style: italic;
    margin-bottom: 16px;
    display: block;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    
    .about-content-full {
        padding: 0 16px;
    }
    
    .contact-grid {
        gap: 40px;
    }
    
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .vo-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        height: 100dvh;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: 100px 24px 32px;
        gap: 2px;
        transition: right var(--transition-medium);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 40px rgba(0,0,0,0.12);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link,
    .navbar:not(.scrolled):not(.navbar-solid) .nav-link {
        width: 100%;
        padding: 16px 20px;
        font-size: 1.02rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-radius: var(--radius-md);
        transition: all var(--transition-fast);
    }
    
    .nav-link:hover,
    .nav-link.active,
    .navbar:not(.scrolled):not(.navbar-solid) .nav-link:hover,
    .navbar:not(.scrolled):not(.navbar-solid) .nav-link.active {
        color: var(--brand-red);
        background: rgba(220, 38, 38, 0.06);
    }
    
    /* Show CTA as last item inside mobile nav */
    .nav-cta {
        display: none;
    }
    
    /* Mobile nav CTA button injected via CSS */
    .nav-links::after {
        content: 'Book a Tour';
        display: block;
        margin-top: 16px;
        padding: 16px 28px;
        font-size: 0.95rem;
        font-weight: 600;
        color: white;
        background: var(--accent-gradient);
        border-radius: var(--radius-full);
        text-align: center;
        letter-spacing: 0.3px;
        box-shadow: 0 4px 16px rgba(220, 38, 38, 0.25);
        cursor: pointer;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span {
        background: var(--text-primary) !important;
    }
    
    .hero {
        min-height: 100svh;
        height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        padding: 100px 20px 0;
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-actions .btn {
        width: 100%;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .vo-grid {
        gap: 32px;
    }

    .vo-highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vo-actions {
        flex-direction: column;
    }

    .vo-actions .btn {
        width: 100%;
    }

    /* CTA section mobile */
    .cta-no-bg {
        padding: 60px 0;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
    }
    
    .mosaic-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .mosaic-wide {
        grid-column: span 2;
    }
    
    .mosaic-overlay {
        opacity: 1 !important;
        background: linear-gradient(180deg, transparent 30%, rgba(10, 10, 30, 0.75) 100%);
        padding: 12px;
    }
    
    .mosaic-overlay span {
        font-size: 0.82rem;
    }
    
    .mosaic-item:hover img {
        transform: none;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }
    
    .gallery-item-tall,
    .gallery-item-wide {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-map iframe {
        height: 200px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
    
    .call-float {
        bottom: 84px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    
    .call-float svg {
        width: 22px;
        height: 22px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .contact-social-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .social-link-card {
        flex: 1 1 calc(50% - 6px);
        min-width: 0;
        padding: 12px 14px;
    }
    
    .social-link-card span {
        font-size: 0.78rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Contact card — remove translateX hover on mobile (not touch-friendly) */
    .contact-card:hover {
        transform: none;
    }
    
    /* Make contact cards stack action below content on mobile */
    .contact-card {
        flex-wrap: wrap;
        padding: 20px;
        gap: 14px;
    }
    
    .contact-card-icon {
        width: 44px;
        height: 44px;
    }
    
    .contact-card-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .contact-card-content {
        flex: 1;
        min-width: 0;
    }
    
    .contact-card-content p {
        font-size: 0.85rem;
        word-break: break-word;
    }
    
    .contact-card-action {
        width: 100%;
        justify-content: flex-start;
        padding-top: 8px;
        border-top: 1px solid var(--glass-border);
        margin-top: 0;
        align-self: auto;
    }
    
    /* Map section mobile */
    .map-section iframe {
        height: 350px;
    }
    
    .map-overlay-info {
        position: relative;
        top: auto;
        left: auto;
        padding: 24px;
        background: var(--bg-primary);
    }
    
    .map-info-card {
        max-width: 100%;
        box-shadow: none;
        border: none;
        padding: 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }

    .cta-actions {
        flex-direction: column;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .about-floating-card {
        left: 10px;
        bottom: 10px;
    }
    
    .about-content-full {
        text-align: center;
    }
    
    .about-content-full .about-text {
        text-align: left;
        font-size: 0.95rem;
    }
    
    .gallery-filters {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
    
    .page-hero {
        padding: 140px 0 60px;
    }
    
    .page-hero-short {
        padding: 130px 0 50px;
    }
    
    .page-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.8rem);
    }
    
    .page-hero-subtitle {
        font-size: 0.95rem;
    }
    
    .contact-form-card {
        padding: 24px 20px;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
    
    .contact-section.section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        gap: 16px;
    }
    
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 200px;
    }
    
    .mosaic-large,
    .mosaic-wide {
        grid-column: span 1;
    }
    
    /* Contact cards stack vertically on very small screens */
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px;
    }
    
    .contact-card-action {
        align-self: flex-start;
    }
    
    .contact-social-links {
        flex-direction: column;
    }
    
    .social-link-card {
        flex: 1 1 100%;
    }
    
    /* Contact form tighter on small phones */
    .contact-form-card {
        padding: 20px 16px;
    }
    
    .input-wrap {
        padding: 12px 14px;
    }
    
    /* Map card on small screens */
    .map-overlay-info {
        padding: 16px;
    }
    
    .map-section iframe {
        height: 280px;
    }
    
    /* Smaller nav logo on small phones */
    .nav-logo-wide {
        height: 36px;
    }
    
    .navbar.scrolled .nav-logo-wide,
    .navbar-solid .nav-logo-wide {
        height: 32px;
    }
    
    /* Mobile nav links tighter */
    .nav-links {
        width: 85%;
        padding: 90px 20px 24px;
    }
    
    .nav-link,
    .navbar:not(.scrolled):not(.navbar-solid) .nav-link {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
}
