:root {
    --ink: #0b2130;
    --muted: #596977;
    --line: #e6eef6;
    --paper: #ffffff;
    --soft: #f6fbfc;
    --brand: #0f766e;
    --brand-dark: #0b5e58;
    --brand-light: #d4f1f0;
    --accent: #f59e0b;
    --accent-light: #fef3cd;
    --danger: #dc2626;
    --success: #16a34a;
    --violet: #8b5cf6;
    --violet-light: #ede9fe;
    --pink: #ec4899;
    --pink-light: #fce7f3;
    --blue: #3b82f6;
    --blue-light: #dbeafe;
    --amber: #f59e0b;
    --amber-light: #fef3c7;
    --shadow-sm: 0 2px 8px rgba(8,20,26,0.06);
    --shadow-md: 0 8px 30px rgba(8,20,26,0.08);
    --shadow-lg: 0 20px 60px rgba(8,20,26,0.12);
    --shadow-xl: 0 30px 80px rgba(8,20,26,0.16);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.15s ease;
    --max-width: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--soft);
    font-family: var(--font-sans);
    line-height: 1.6;
    font-size: 16px;
    width: 100%;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img, iframe, video { max-width: 100%; height: auto; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; line-height: 1.2; }
p { margin: 0; }

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(18px, 4vw, 64px);
}

.section-padding {
    padding: clamp(60px, 8vw, 120px) 0;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
@keyframes ripple {
    to { transform: scale(4); opacity: 0; }
}
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(15, 118, 110, 0.3); }
    50% { box-shadow: 0 0 40px rgba(15, 118, 110, 0.6); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }

/* ========== SECTION LABEL ========== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--brand-light);
    color: var(--brand-dark);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 640px;
    line-height: 1.7;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px clamp(18px, 4vw, 64px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(230, 238, 246, 0.8);
    transition: var(--transition-fast);
}

.site-header.scrolled {
    padding: 8px clamp(18px, 4vw, 64px);
    box-shadow: var(--shadow-sm);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
    flex-shrink: 0;
}

.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.brand-text { display: flex; flex-direction: column; }
.brand-text strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}
.brand-text small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.site-nav a {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    transition: var(--transition-fast);
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 2px;
    background: var(--brand);
    border-radius: 1px;
    transition: transform 0.2s ease;
}

.site-nav a:hover { color: var(--brand); background: rgba(15, 118, 110, 0.06); }
.site-nav a:hover::after { transform: translateX(-50%) scaleX(1); }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px !important;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark)) !important;
    color: #fff !important;
    border-radius: var(--radius-full) !important;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
    transition: var(--transition);
    margin-left: 8px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.4) !important;
    background: linear-gradient(135deg, var(--brand-dark), #064e3b) !important;
}

.lang-switcher {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    background: var(--soft);
    padding: 3px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
}

.lang-btn {
    padding: 5px 10px;
    border: none;
    background: transparent;
    color: var(--muted);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-btn[aria-pressed="true"] {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(15, 118, 110, 0.2);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid var(--brand);
    border-radius: var(--radius-sm);
    background: #fff;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--ink);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ========== MOBILE OVERLAY MENU ========== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    flex-direction: column;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity .28s ease, transform .28s ease, visibility .28s ease;
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px clamp(18px, 4vw, 40px);
    border-bottom: 1px solid rgba(230, 238, 246, 0.9);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}

.mobile-menu-header .brand {
    z-index: 0;
}

.mobile-menu-close {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 2px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--ink);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover {
    background: var(--soft);
    border-color: var(--brand);
    color: var(--brand);
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px clamp(18px, 4vw, 40px) calc(40px + env(safe-area-inset-bottom));
    flex: 1;
}

.mobile-menu-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    transition: background .15s ease, color .15s ease;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a:active {
    background: #E8F5E9;
    color: var(--brand);
}

.mobile-menu-nav a .arrow {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand);
    transition: transform .15s ease;
}

.mobile-menu-nav a:hover .arrow,
.mobile-menu-nav a:active .arrow {
    transform: translateX(3px);
}

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(11, 33, 48, 0.92) 0%, rgba(15, 118, 110, 0.85) 50%, rgba(8, 52, 48, 0.9) 100%);
    z-index: 1;
}

.hero-bg video, .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 16px;
}

.hero h1 span {
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(18px, 2vw, 22px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 600px;
}

.hero-stat {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.hero-stat:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
}

.hero-stat strong {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #fcd34d;
    margin-bottom: 4px;
}

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

/* Hero decorative shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08), transparent);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}
.hero-shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

/* ========== BUTTONS ========== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 24px;
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.button::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.button:hover::after { transform: translateX(0); }

.button:active { transform: scale(0.97); }

.button.primary {
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.3);
}

.button.primary:hover {
    box-shadow: 0 12px 32px rgba(15, 118, 110, 0.45);
    transform: translateY(-2px);
}

.button.secondary {
    background: #fff;
    color: var(--ink);
    border-color: var(--line);
}

.button.secondary:hover {
    border-color: var(--brand);
    color: var(--brand);
    transform: translateY(-2px);
}

.button.ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.button.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.button.whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.button.whatsapp:hover { background: #1da851; transform: translateY(-2px); }

.button.small { min-height: 38px; padding: 0 16px; font-size: 13px; }
.button.full { width: 100%; }

/* ========== CARDS ========== */
.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-md);
    font-size: 24px;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.feature-card .num {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    display: block;
}

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* Activity Card */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.activity-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.activity-card:hover {
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: var(--shadow-xl);
}

.activity-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.activity-card-body {
    padding: 20px;
}

.activity-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.activity-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ========== ABOUT / STORY SECTION ========== */
.story-section {
    background: linear-gradient(180deg, var(--soft), #fff);
}

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

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.story-image::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 3px dashed var(--brand-light);
    border-radius: calc(var(--radius-xl) + 12px);
    z-index: -1;
}

.story-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--ink);
}

.story-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-content .highlight {
    color: var(--brand-dark);
    font-weight: 600;
}

/* ========== TESTIMONIALS ========== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 20px;
    font-size: 64px;
    line-height: 1;
    color: var(--brand-light);
    font-family: Georgia, serif;
    font-weight: 700;
}

.testimonial-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-light), var(--brand));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
}

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

.testimonial-card .author-info span {
    font-size: 13px;
    color: var(--muted);
}

/* ========== STEPS / PROCESS ========== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

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

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.3);
}

.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ========== FAQ ========== */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: var(--brand-light); }

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    user-select: none;
    transition: var(--transition-fast);
}

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

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--brand);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ========== FORMS ========== */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: var(--transition-fast);
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: var(--brand);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
}

/* Floating Labels */
.floating-group {
    position: relative;
    margin-bottom: 20px;
}

.floating-group input,
.floating-group select,
.floating-group textarea {
    width: 100%;
    min-height: 56px;
    padding: 24px 16px 8px;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: var(--radius-md);
    font-family: var(--font-sans);
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: var(--transition-fast);
}

.floating-group textarea {
    min-height: 120px;
    padding-top: 28px;
}

.floating-group label {
    position: absolute;
    top: 18px;
    left: 16px;
    font-size: 14px;
    color: var(--muted);
    pointer-events: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label,
.floating-group select:focus ~ label,
.floating-group select:not([value=""]):not([value=""]) ~ label {
    top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-group input:focus,
.floating-group select:focus,
.floating-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

/* ========== INQUIRY SECTION ========== */
.inquiry-section {
    background: linear-gradient(135deg, var(--soft), #fff);
}

.inquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.inquiry-info h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
}

.inquiry-info p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-details {
    display: grid;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--brand-light);
    transform: translateX(4px);
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--brand-light);
    border-radius: var(--radius-sm);
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item-content strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
}

.contact-item-content span {
    font-size: 13px;
    color: var(--muted);
}

/* ========== SOCIAL / INSTAGRAM ========== */
.social-section {
    background: #fff;
}

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

.social-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: var(--transition);
    background: #fff;
}

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

.social-card a {
    position: relative;
    display: block;
    aspect-ratio: 1;
    overflow: hidden;
}

.social-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.social-card p {
    padding: 14px 16px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
    word-break: break-word;
    overflow-wrap: break-word;
}

.new-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--danger);
    color: #fff;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 0;
}

.map-container {
    position: relative;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    max-width: 320px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.map-overlay p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* ========== FOOTER ========== */
.site-footer {
    background: #0b2130;
    color: #cbd5e1;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-section .brand {
    margin-bottom: 16px;
}

.footer-brand-section .brand-text strong { color: #fff; }
.footer-brand-section .brand-text small { color: #94a3b8; }
.footer-brand-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 360px;
}

.footer h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 14px;
    color: #94a3b8;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #94a3b8;
}

.footer-contact li strong {
    color: #cbd5e1;
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom a { color: #94a3b8; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent); }

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateY(-2px);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse-glow 2s infinite;
}

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

.whatsapp-float svg { width: 28px; height: 28px; }

/* ========== WHATSAPP MODAL ========== */
.wa-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.wa-modal[aria-hidden="false"] { display: flex; animation: fadeIn 0.2s ease; }

.wa-modal-panel {
    background: #fff;
    padding: 32px;
    border-radius: var(--radius-xl);
    width: min(440px, 100%);
    box-shadow: var(--shadow-xl);
    position: relative;
    animation: scaleIn 0.3s ease;
}

.wa-modal-panel h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 6px;
    color: var(--ink);
}

.wa-modal-panel .wa-modal-sub {
    color: var(--muted);
    font-size: 14px;
    margin: 0 0 20px;
}

.wa-modal-panel .floating-group { margin-bottom: 16px; }

.wa-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.wa-actions .button { flex: 1; }

.wa-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--soft);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: var(--transition-fast);
}

.wa-close:hover { background: var(--line); color: var(--ink); }

.wa-note {
    color: var(--muted);
    font-size: 12px;
    margin-top: 16px;
    line-height: 1.5;
}

/* ========== FLASH MESSAGES ========== */
.flash {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: slideInRight 0.3s ease;
    max-width: 400px;
}

.flash.success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.flash.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 90px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand);
    color: #fff;
    border: none;
    cursor: pointer;
    display: none;
    place-items: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.visible { display: grid; }
.back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* ========== ADMIN PANEL ========== */
.admin-body {
    background: radial-gradient(circle at 100% 0%, #dff7f4 0, transparent 28%), #f4f7fb;
    color: #172033;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 100;
}

.admin-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-dark));
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    min-height: calc(100vh - 64px);
}

.admin-sidebar {
    background: linear-gradient(180deg, #102c3f, #0b2130);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    padding: 16px;
    position: sticky;
    top: 88px;
    align-self: start;
    box-shadow: var(--shadow-sm);
}

.admin-sidebar h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a9c7ce;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    margin-bottom: 8px;
}

.admin-sidebar nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: #d7e5ea;
    transition: var(--transition-fast);
    margin-bottom: 2px;
}

.admin-sidebar nav a:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
}

.admin-sidebar nav a.active {
    background: linear-gradient(90deg, #13a69b, #0f766e);
    color: #fff;
    font-weight: 700;
}

.admin-main { min-width: 0; max-width: 100%; overflow-x: auto; }
.admin-main .button.ghost { color: var(--primary); border-color: var(--primary); }
.admin-main .button.ghost:hover { background: var(--primary); color: #fff; }

.admin-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(15, 36, 51, .05);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.admin-card-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 0;
}

.admin-workspace-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.eyebrow { color: var(--brand); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .1em; margin: 0 0 4px; }
.admin-muted, .admin-empty { color: var(--muted); font-size: 14px; line-height: 1.6; }
.admin-quick-actions { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.admin-quick-actions a { border: 1px solid var(--line); border-radius: 10px; padding: 11px 12px; color: var(--ink); font-size: 13px; font-weight: 700; background: #fbfdff; transition: .2s ease; }
.admin-quick-actions a:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.followup-list { display: grid; gap: 5px; }
.followup-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.followup-row:last-child { border-bottom: 0; }
.followup-row strong, .followup-row small { display: block; }
.followup-row small, .followup-row time { color: var(--muted); font-size: 11px; }
.followup-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-light); color: var(--brand-dark); font-size: 12px; font-weight: 800; }

@media (max-width: 900px) { .admin-workspace-grid { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .admin-quick-actions { grid-template-columns: repeat(2, 1fr); } .admin-card { padding: 18px; } }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.stat-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.stat-card-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.stat-card span { font-size: 13px; color: var(--muted); font-weight: 600; }
.stat-card strong {
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    display: block;
}

.stat-card .trend {
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
}

.stat-card .trend.up { color: var(--success); }
.stat-card .trend.down { color: var(--danger); }

/* Admin Tables */
.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th {
    text-align: left;
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--muted);
    background: var(--soft);
    border-bottom: 2px solid var(--line);
    white-space: nowrap;
}

.admin-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    vertical-align: middle;
}

.admin-table tbody tr { transition: var(--transition-fast); }
.admin-table tbody tr:hover { background: rgba(15, 118, 110, 0.03); }
.admin-table tbody tr:last-child td { border-bottom: none; }

.status-badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.status-badge.new { background: #dbeafe; color: #1e40af; }
.status-badge.contacted { background: #fef3c7; color: #92400e; }
.status-badge.interested { background: #ede9fe; color: #6d28d9; }
.status-badge.visited { background: #d1fae5; color: #065f46; }
.status-badge.admitted { background: #ccfbf1; color: #134e4a; }
.status-badge.closed { background: #fee2e2; color: #991b1b; }
.status-badge.active { background: #d1fae5; color: #065f46; }
.status-badge.paid { background: #d1fae5; color: #065f46; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.overdue { background: #fee2e2; color: #991b1b; }
.status-badge.partial { background: #ede9fe; color: #6d28d9; }

/* Admin Filters */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 16px;
    background: var(--soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
}

.filter-bar .form-input,
.filter-bar .form-select { min-height: 40px; font-size: 14px; width: auto; min-width: 180px; flex: 1; }

.filter-bar .button { min-height: 40px; }

/* Pagination */
.pagination {
    display: flex;
    gap: 6px;
    justify-content: flex-end;
    padding: 16px 0 0;
}

.pagination a, .pagination span {
    padding: 8px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    background: #fff;
    transition: var(--transition-fast);
}

.pagination a:hover {
    border-color: var(--brand);
    color: var(--brand);
}

.pagination .active {
    background: var(--brand);
    color: #fff;
    border-color: var(--brand);
}

/* Login Page */
.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #0b2130 0%, #0f766e 100%);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.06), transparent);
    top: -200px;
    right: -200px;
}

.login-page::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139,92,246,0.06), transparent);
    bottom: -150px;
    left: -150px;
}

.login-card {
    width: min(440px, 100%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    animation: scaleIn 0.4s ease;
}

.login-card .brand { margin-bottom: 24px; justify-content: center; }

.login-card h1 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
}

.login-card p {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 24px;
}

/* ========== BLOG GRID ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 24px;
}

.blog-card .date {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.blog-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card .read-more {
    font-size: 14px;
    font-weight: 700;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card .read-more:hover { gap: 10px; }

/* ========== PAGE HEADER ========== */
.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, rgba(11, 33, 48, 0.95), rgba(15, 118, 110, 0.9));
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.06), transparent);
    top: -100px;
    right: -100px;
}

.page-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    position: relative;
    z-index: 1;
}

/* ========== EMPTY STATE ========== */
.empty-state {
    text-align: center;
    padding: 60px 24px;
}

.empty-state-icon {
    font-size: 64px;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--muted);
    font-size: 15px;
    margin-bottom: 20px;
}

/* ========== 404 PAGE ========== */
.error-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 24px;
}

.error-page h1 {
    font-size: 120px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.error-page h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.error-page p {
    color: var(--muted);
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 400px;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: grid;
    place-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

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

/* ========== BREADCRUMBS ========== */
.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.breadcrumbs a { color: rgba(255, 255, 255, 0.7); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255, 255, 255, 0.4); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .story-grid { grid-template-columns: 1fr; gap: 40px; }
    .inquiry-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-layout { grid-template-columns: 1fr; }
    .admin-layout { gap: 16px; padding: 16px; }
    .admin-sidebar {
        display: block;
        position: static;
        width: 100%;
        overflow-x: auto;
        padding: 8px;
        border-radius: 12px;
        -webkit-overflow-scrolling: touch;
    }
    .admin-sidebar h4 { display: none; }
    .admin-sidebar nav { display: flex; width: max-content; gap: 4px; }
    .admin-sidebar nav a { margin: 0; padding: 9px 11px; white-space: nowrap; }
    .admin-sidebar nav a[style] { margin-top: 0 !important; padding-top: 9px !important; border-top: 0 !important; }
}

@media (max-width: 900px) {
    .site-header { z-index: 1100; }
    .nav-toggle { display: flex; }
    .site-nav { display: none; }
    .mobile-menu { display: flex; }
    .lang-switcher { position: relative; z-index: 1001; }
    .hero-stats { grid-template-columns: 1fr; }
    .social-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .site-header { gap: 10px; padding: 10px 16px; }
    .brand { gap: 8px; min-width: 0; }
    .brand-logo { width: 46px; height: 46px; }
    .nav-toggle { flex: 0 0 44px; }
    .container { padding: 0 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .social-grid { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .activity-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .filter-bar { flex-direction: column; }
    .filter-bar .form-input,
    .filter-bar .form-select { min-width: 100%; }
    .login-card { padding: 24px; }
    .map-container { min-height: 0; }
    .map-container iframe { height: 300px; }
    .map-overlay { position: relative; top: auto; left: auto; max-width: 100%; border-radius: 0; padding: 20px 16px; }
    .brand-text strong { font-size: 14px; }
    .brand-text small { font-size: 10px; }
    .hero h1 { font-size: 32px; }
    .hero-actions .button { width: 100%; justify-content: center; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
    .whatsapp-float { width: 54px; height: 54px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); }
    .whatsapp-float svg { width: 25px; height: 25px; }
    .back-to-top { right: 20px; bottom: 82px; }
    .admin-topbar { padding: 10px 14px; }
    .admin-topbar-right > span { display: none; }
    .admin-main { overflow-x: visible; }
    .admin-table-wrap { margin: 0 -18px; padding: 0 18px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .wa-actions { flex-direction: column; }
}

/* ========== PRINT ========== */
@media print {
    .site-header, .whatsapp-float, .back-to-top, .site-footer { display: none; }
    body { background: #fff; }
    .page-header { padding: 20px 0; background: #f8fafc !important; }
    .page-header h1 { color: #000; }
}
