/* Lóvua do Zambeze — Site Turístico Oficial */

:root {
    --primary: #0d5c3d;
    --primary-dark: #084530;
    --primary-light: #1a7a54;
    --accent: #c9a227;
    --accent-light: #e8c547;
    --angola-red: #c8102e;
    --dark: #0c1218;
    --dark-soft: #1a2332;
    --text: #2c3e50;
    --text-light: #5a6d7e;
    --text-muted: #8494a3;
    --bg: #ffffff;
    --bg-light: #f6f8f7;
    --bg-warm: #faf9f6;
    --border: #e2e8e5;
    --shadow-sm: 0 2px 8px rgba(12, 18, 24, 0.06);
    --shadow: 0 8px 32px rgba(12, 18, 24, 0.08);
    --shadow-lg: 0 20px 60px rgba(12, 18, 24, 0.12);
    --radius: 14px;
    --radius-sm: 8px;
    --font-display: 'Libre Baskerville', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --header-height: 118px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.75;
    padding-top: var(--header-height);
    overflow-x: hidden;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
}

img, video, iframe { max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--dark);
    font-weight: 700;
    line-height: 1.25;
}

a { text-decoration: none; transition: color var(--transition), opacity var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ── Header ── */
.site-header {
    z-index: 1030;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    padding: 0.45rem 0;
    border-bottom: 2px solid var(--angola-red);
}

.top-bar-gov {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.top-bar-gov i { color: var(--accent); }

.top-bar-contact a {
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-contact a:hover { color: var(--accent-light); }

#mainNav {
    background: rgba(12, 18, 24, 0.97);
    backdrop-filter: blur(16px);
    padding: 0.65rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.brand-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
}

.brand-tagline {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 0.3px;
    max-width: 200px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 0.85rem !important;
    position: relative;
    color: rgba(255,255,255,0.82) !important;
    letter-spacing: 0.2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.2rem);
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active { color: #fff !important; }

.nav-link:hover::after,
.nav-link.active::after { transform: translateX(-50%) scaleX(1); }

.lang-switch {
    background: rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 3px;
    border: 1px solid rgba(255,255,255,0.12);
}

.lang-switch .btn {
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 50px !important;
    background: transparent;
}

.lang-switch .btn.active {
    background: var(--accent);
    color: var(--dark);
}

/* Desktop navbar */
@media (min-width: 992px) {
    .navbar-shell {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 1rem;
    }

    .navbar-nav-wrap {
        display: flex !important;
        flex: 1;
        justify-content: flex-end;
        align-items: center;
    }
}

/* Mobile nav panel — fora do header */
.mobile-nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--dark-soft);
    padding: 0.75rem 1rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mobile-nav-panel.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    top: var(--header-height);
    z-index: 9998;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

body.menu-open .nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open { overflow: hidden; }

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    min-width: 46px;
    min-height: 46px;
    z-index: 10000;
    position: relative;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.4);
}

.navbar-toggler.is-active {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--accent);
}

/* ── Buttons ── */
.btn {
    font-weight: 600;
    letter-spacing: 0.2px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(13, 92, 61, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 92, 61, 0.35);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary-dark);
    border-color: #fff;
}

/* ── Hero ── */
.hero-section {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    background: url('../images/turismo-6.png') center/cover no-repeat fixed;
    margin-top: calc(-1 * var(--header-height));
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8, 69, 48, 0.92) 0%, rgba(12, 18, 24, 0.78) 55%, rgba(12, 18, 24, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 4rem 0;
}

.min-vh-hero { min-height: calc(100vh - var(--header-height) - 4rem); }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--accent-light);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 3.75rem);
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.88);
    max-width: 540px;
    margin-bottom: 2.25rem;
    font-weight: 400;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Stats Bar ── */
.stats-bar {
    background: var(--primary);
    position: relative;
    z-index: 2;
    margin-top: -1px;
}

.stat-item {
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.12);
    color: #fff;
}

.stat-item:last-child { border-right: none; }

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1;
    color: var(--accent-light);
}

.stat-label {
    display: block;
    font-size: 0.82rem;
    opacity: 0.85;
    margin-top: 0.4rem;
    font-weight: 500;
}

/* ── Page Hero ── */
.page-hero {
    position: relative;
    padding: 3rem 0 4rem;
    background-size: cover;
    background-position: center;
    margin-top: calc(-1 * var(--header-height));
    padding-top: calc(3rem + var(--header-height));
}

.page-hero-sm { padding-bottom: 2.5rem; }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(8, 69, 48, 0.9) 0%, rgba(12, 18, 24, 0.82) 100%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-breadcrumb {
    margin-bottom: 1.25rem;
    --bs-breadcrumb-divider: '›';
}

.page-breadcrumb .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
}

.page-breadcrumb .breadcrumb-item a:hover { color: var(--accent-light); }

.page-breadcrumb .breadcrumb-item.active {
    color: rgba(255,255,255,0.95);
    font-size: 0.85rem;
}

.page-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.4);
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 0.6rem;
}

.page-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
}

/* ── Sections ── */
.section-padding { padding: 5.5rem 0; }

.section-header { margin-bottom: 3.5rem; }

.section-tag {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.75rem;
}

.section-header h2,
section h2 { font-size: clamp(1.85rem, 3vw, 2.5rem); }

.section-desc {
    color: var(--text-light);
    max-width: 560px;
    margin: 0.75rem auto 0;
    font-size: 1.05rem;
}

.lead-text {
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 500;
}

.bg-light { background: var(--bg-light) !important; }

/* ── Feature Cards ── */
.feature-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2.25rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(13, 92, 61, 0.2);
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.feature-card p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* ── Preview Cards ── */
.preview-card {
    display: block;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
    color: inherit;
}

.preview-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.preview-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.preview-card:hover .preview-img { transform: scale(1.05); }

.preview-body { padding: 1.5rem; }

.preview-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.preview-body p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.preview-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.preview-card:hover .preview-link { gap: 0.6rem; }

/* ── Image Grid ── */
.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.grid-item {
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    min-height: 170px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition);
}

.grid-item:hover { transform: scale(1.02); }

.grid-main { grid-column: 1 / -1; min-height: 280px; }

/* ── CTA ── */
.cta-section {
    position: relative;
    padding: 5rem 0;
    background: url('../images/turismo-3.png') center/cover no-repeat fixed;
    color: #fff;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 69, 48, 0.93), rgba(12, 18, 24, 0.88));
}

.cta-section .container { position: relative; z-index: 1; }

.cta-section h2 {
    color: #fff;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}

/* ── Attractions ── */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto 3rem;
    border: 1px solid var(--border);
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    padding: 0.55rem 1.35rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover { color: var(--primary); }

.filter-btn.active {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 12px rgba(13, 92, 61, 0.3);
}

.attraction-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.attraction-img {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.attraction-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255,255,255,0.95);
    color: var(--primary-dark);
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.attraction-body { padding: 1.5rem; }
.attraction-body h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.attraction-body p { color: var(--text-light); font-size: 0.9rem; margin: 0; }
.attraction-item.hidden { display: none; }

/* ── Culture ── */
.culture-image {
    height: 380px;
    border-radius: var(--radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.culture-list { list-style: none; padding: 0; margin: 1.25rem 0 0; }

.culture-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.culture-list i { color: var(--primary); flex-shrink: 0; }

.event-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid var(--border);
    height: 100%;
    transition: all var(--transition);
}

.event-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.event-date { display: flex; align-items: center; gap: 0.5rem; }

.event-date .month {
    background: var(--primary);
    color: #fff;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.event-date .day {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
}

.event-card h3 { font-size: 1.05rem; margin: 0; }
.event-card p { color: var(--text-light); font-size: 0.88rem; margin: 0; }

/* ── Gallery ── */
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 69, 48, 0.85), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
    color: #fff;
    gap: 0.35rem;
}

.gallery-overlay span {
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.gallery-overlay i { font-size: 1.5rem; margin-bottom: auto; padding-top: 1rem; }

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Visitor ── */
.visitor-block {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    height: 100%;
}

.visitor-block h2 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.transport-option {
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border);
}

.transport-option:last-child { border-bottom: none; }

.transport-option h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.transport-option h4 i {
    color: var(--primary);
    width: 28px;
    height: 28px;
    background: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.transport-option p { color: var(--text-light); margin: 0; font-size: 0.92rem; }

.season-cards { display: flex; flex-direction: column; gap: 1rem; }

.season-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 1.25rem;
    border-left: 4px solid #ccc;
}

.season-card.season-best { border-left-color: var(--primary); background: rgba(13, 92, 61, 0.05); }

.season-card h4 {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 700;
    display: inline;
    margin-right: 0.5rem;
}

.season-card p { color: var(--text-light); font-size: 0.88rem; margin: 0.6rem 0 0; }

.useful-contacts { list-style: none; padding: 0; margin: 0; }

.useful-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.useful-contacts li:last-child { border-bottom: none; }

.useful-contacts li > i {
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.useful-contacts strong { display: block; color: var(--dark); font-size: 0.88rem; }
.useful-contacts span { color: var(--text-light); font-size: 0.92rem; }

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.map-container iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ── Contact ── */
.contact-info-card,
.contact-form-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2.25rem;
    border: 1px solid var(--border);
    height: 100%;
}

.contact-info-card h2,
.contact-form-card h2 {
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--bg-light);
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.contact-detail:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail strong { display: block; color: var(--dark); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-detail p { color: var(--text-light); margin: 0.25rem 0 0; font-size: 0.95rem; }

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 0.4rem;
}

.contact-form .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    transition: all var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(13, 92, 61, 0.1);
}

.alert { border-radius: var(--radius-sm); border: none; }

/* ── About ── */
.content-block { margin-bottom: 3rem; }

.content-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

.content-block h2 i { font-size: 1.1rem; }

.info-card {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 1.15rem;
    border: 1px solid var(--border);
    height: 100%;
}

.info-card strong {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-card span { font-weight: 600; color: var(--dark); font-size: 0.95rem; }

.content-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.content-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.content-photo figcaption {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    font-size: 0.82rem;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}

.sidebar-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
    box-shadow: var(--shadow-sm);
}

.sidebar-card .sidebar-logo {
    max-width: 120px;
    margin: 0 auto 1.25rem;
}

.sidebar-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.admin-list { list-style: none; padding: 0; margin: 0; }

.admin-list li {
    display: flex;
    gap: 0.85rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
}

.admin-list li:last-child { border-bottom: none; }

.admin-list i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    width: 20px;
    text-align: center;
}

.admin-list strong { display: block; font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
.admin-list span { font-size: 0.88rem; color: var(--text); }

/* ── Footer ── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); }

.footer-main { padding: 4rem 0 3rem; }

.footer-logo { height: 72px; width: auto; margin-bottom: 1rem; }

.footer-brand h5 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--accent-light);
    font-size: 0.88rem;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-address { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin: 0; }

.site-footer h6 {
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-links a:hover { color: var(--accent-light); padding-left: 4px; }

.footer-contact { list-style: none; padding: 0; margin: 0; }

.footer-contact li {
    display: flex;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-contact small {
    display: block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.15rem;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.footer-contact a:hover { color: var(--accent-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
}

.footer-bottom p { margin: 0; }

.footer-gov { color: rgba(255,255,255,0.35) !important; }

/* ── Back to top ── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 1020;
    box-shadow: 0 4px 16px rgba(13, 92, 61, 0.35);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) { animation-delay: 0.15s; opacity: 0; }
.fade-in:nth-child(3) { animation-delay: 0.3s; opacity: 0; }
.fade-in:nth-child(4) { animation-delay: 0.45s; opacity: 0; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */

/* Tablet landscape & small laptop */
@media (max-width: 1199.98px) {
    .hero-title { font-size: clamp(2.2rem, 4.5vw, 3.25rem); }
    .preview-img { height: 180px; }
    .culture-image { height: 320px; }
}

/* Tablet portrait */
@media (max-width: 991.98px) {
    .brand-tagline { display: none; }

    .hero-section,
    .cta-section { background-attachment: scroll; }

    .hero-content { padding: 3rem 0; }
    .min-vh-hero { min-height: auto; padding: 2rem 0; }

    .culture-image { height: 280px; }
    .sidebar-card { position: static; margin-top: 2rem; }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        padding: 1.5rem 1rem;
    }

    .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .footer-main { padding: 3rem 0 2rem; }

    /* Mobile nav links */
    .mobile-nav-panel .navbar-nav {
        width: 100%;
        padding: 0.25rem 0;
    }

    .nav-item { width: 100%; }

    .nav-link {
        padding: 0.85rem 1rem !important;
        border-radius: var(--radius-sm);
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-link::after { display: none; }

    .nav-link.active {
        background: rgba(255,255,255,0.08);
        color: var(--accent-light) !important;
    }

    .nav-lang {
        width: 100%;
        margin: 0.5rem 0 0 !important;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .lang-switch {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .lang-switch .btn {
        flex: 1;
        max-width: 80px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-contact {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid rgba(255,255,255,0.08);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .mobile-nav-contact a {
        color: rgba(255,255,255,0.75);
        font-size: 0.88rem;
        padding: 0.65rem 1rem;
        border-radius: var(--radius-sm);
        background: rgba(255,255,255,0.04);
        display: flex;
        align-items: center;
        gap: 0.6rem;
        min-height: 44px;
        word-break: break-all;
    }

    .mobile-nav-contact a:hover { color: var(--accent-light); }

    .page-hero {
        padding-top: calc(2rem + var(--header-height));
        padding-bottom: 2.5rem;
    }

    .page-hero h1 { font-size: clamp(1.75rem, 5vw, 2.25rem); }

    .contact-info-card,
    .contact-form-card { margin-bottom: 1rem; }

    .visitor-block + .visitor-block,
    .visitor-block.mt-5 { margin-top: 1.5rem !important; }
}

/* Mobile */
@media (max-width: 767.98px) {
    .top-bar { display: none; }

    .section-padding { padding: 3rem 0; }
    .section-header { margin-bottom: 2.5rem; }

    .hero-section {
        min-height: auto;
        padding-bottom: 1rem;
    }

    .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-scroll { display: none; }

    .stat-number { font-size: 1.85rem; }
    .stat-label { font-size: 0.75rem; }
    .stat-item { padding: 1.25rem 0.75rem; }

    .brand-logo { height: 38px; }
    .brand-text { font-size: 0.95rem; }

    .feature-card { padding: 1.75rem 1.5rem; }
    .feature-icon { width: 52px; height: 52px; font-size: 1.2rem; }

    .image-grid { grid-template-columns: 1fr; gap: 0.65rem; }
    .grid-main { min-height: 220px; }
    .grid-item { min-height: 140px; }

    .preview-img { height: 160px; }
    .preview-body { padding: 1.25rem; }

    .filter-tabs-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.5rem 2rem;
        padding: 0 0.5rem;
        scrollbar-width: none;
    }

    .filter-tabs-wrapper::-webkit-scrollbar { display: none; }

    .filter-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: max-content;
        min-width: 100%;
        border-radius: var(--radius);
        padding: 0.4rem;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
        min-height: 40px;
        padding: 0.5rem 1.1rem;
    }

    .attraction-img { height: 200px; }
    .attraction-body { padding: 1.25rem; }

    .culture-image { height: 240px; }
    .culture-section .row { gap: 1.5rem !important; }

    .gallery-item { aspect-ratio: 16/10; }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(8, 69, 48, 0.88) 0%, transparent 55%);
    }

    .gallery-overlay i { display: none; }

    .gallery-overlay span {
        font-size: 0.8rem;
        padding-bottom: 0.25rem;
    }

    .map-container iframe { height: 280px; }

    .contact-info-card,
    .contact-form-card,
    .visitor-block,
    .sidebar-card { padding: 1.5rem; }

    .contact-form .btn-lg {
        width: 100%;
        min-height: 48px;
    }

    .content-block h2 {
        font-size: 1.2rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .cta-section { padding: 3.5rem 0; }
    .cta-section .d-flex { flex-direction: column; }
    .cta-section .btn { width: 100%; min-height: 48px; }

    .footer-main { padding: 2.5rem 0 1.5rem; }
    .footer-brand { margin-bottom: 1rem; }
    .footer-logo { height: 56px; }

    .footer-bottom {
        text-align: center;
        font-size: 0.78rem;
    }

    .footer-bottom .container { gap: 0.5rem !important; }

    .back-to-top {
        bottom: max(1rem, env(safe-area-inset-bottom));
        right: max(1rem, env(safe-area-inset-right));
        width: 44px;
        height: 44px;
    }

    .page-breadcrumb { margin-bottom: 1rem; }
    .page-hero p { font-size: 1rem; }

    #lightboxImg { max-height: 70vh; object-fit: contain; }
}

/* Small phones */
@media (max-width: 575.98px) {
    .container { padding-left: 1rem; padding-right: 1rem; }

    .hero-title { font-size: 1.75rem; }

    .section-header h2,
    section h2 { font-size: 1.5rem; }

    .section-desc { font-size: 0.95rem; }

    .stat-item:nth-child(odd) { border-right: none; }

    .event-card { padding: 1.25rem; }

    .info-cards .col-sm-6 { margin-bottom: 0.5rem; }

    .admin-list span { font-size: 0.82rem; }
}

/* Very small phones */
@media (max-width: 374.98px) {
    .brand-text { font-size: 0.85rem; max-width: 140px; line-height: 1.2; }
    .brand-logo { height: 34px; }

    .hero-badge { font-size: 0.7rem; }
    .hero-title { font-size: 1.6rem; }

    .stat-number { font-size: 1.6rem; }
    .stat-label { font-size: 0.68rem; }
}

/* Touch devices — gallery always shows caption */
@media (hover: none) and (pointer: coarse) {
    .gallery-overlay { opacity: 1; }
    .gallery-item:active img { transform: scale(1.02); }

    .feature-card:hover,
    .attraction-card:hover,
    .preview-card:hover { transform: none; }

    .nav-link,
    .btn,
    .filter-btn,
    .gallery-item { -webkit-tap-highlight-color: transparent; }
}

/* Large desktop */
@media (min-width: 1400px) {
    .container { max-width: 1320px; }

    .hero-title { font-size: 3.75rem; }
    .section-padding { padding: 6rem 0; }
    .culture-image { height: 420px; }
    .attraction-img { height: 260px; }
}

/* Landscape phone */
@media (max-width: 991.98px) and (orientation: landscape) {
    .hero-section { min-height: auto; }
    .min-vh-hero { min-height: auto; padding: 1.5rem 0; }
    .hero-scroll { display: none; }
}

/* Safe areas (notched devices) */
@supports (padding: max(0px)) {
    body {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .site-header {
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }

    .back-to-top {
        bottom: max(1.25rem, env(safe-area-inset-bottom));
        right: max(1.25rem, env(safe-area-inset-right));
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; }
    .hero-scroll { animation: none; }
}

/* Print */
@media print {
    .site-header,
    .back-to-top,
    .hero-scroll,
    .filter-tabs-wrapper { display: none !important; }

    body { padding-top: 0; color: #000; }
    .hero-overlay, .page-hero-overlay, .cta-overlay { display: none; }
    .hero-section, .page-hero, .cta-section { min-height: auto; color: #000; }
    .hero-title, .page-hero h1, .cta-section h2 { color: #000; }
}
