:root {
    --diz-primary: #0B7A5A;
    --diz-primary-dark: #065A42;
    --diz-accent: #FF8C42;
    --diz-ocean: #0E4D64;
    --diz-sand: #F7F4EF;
    --diz-dark: #1A2332;
    --diz-muted: #5C6778;
    --diz-white: #ffffff;
    --diz-radius: 18px;
    --diz-radius-sm: 12px;
    --diz-shadow: 0 18px 50px rgba(15, 45, 60, 0.12);
    --diz-font: "Prompt", sans-serif;
    --diz-header-h: 78px;
}

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

html { scroll-behavior: smooth; }

body.diz-body {
    margin: 0;
    font-family: var(--diz-font);
    color: var(--diz-dark);
    background: var(--diz-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; transition: color 0.2s, opacity 0.2s; }

.diz-container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}

/* ---- Top bar ---- */
.diz-topbar {
    background: var(--diz-dark);
    color: rgba(255,255,255,0.88);
    font-size: 0.85rem;
    padding: 10px 0;
}

.diz-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 28px;
    justify-content: center;
}

.diz-topbar a {
    color: rgba(255,255,255,0.92);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.diz-topbar a:hover { color: var(--diz-accent); }

.diz-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---- Navbar ---- */
.diz-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.diz-navbar-inner {
    min-height: var(--diz-header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.diz-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.diz-logo span {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--diz-primary-dark);
    line-height: 1.2;
}

.diz-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 12px;
    background: var(--diz-sand);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.diz-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--diz-dark);
    border-radius: 2px;
    transition: 0.25s;
}

.diz-nav-wrap {
    display: flex;
    align-items: center;
    gap: 28px;
}

.diz-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.diz-nav-link {
    display: block;
    padding: 10px 14px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--diz-dark);
    border-radius: 10px;
}

.diz-nav-link:hover,
.diz-nav-link.active {
    color: var(--diz-primary);
    background: rgba(11, 122, 90, 0.08);
}

.diz-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.diz-lang {
    border: 2px solid #e8ecef;
    border-radius: 10px;
    padding: 8px 12px;
    font-family: var(--diz-font);
    font-size: 0.9rem;
    background: #fff;
    cursor: pointer;
}

.diz-lang-picker {
    position: relative;
}

.diz-lang-native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.diz-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e8ecef;
    border-radius: 10px;
    padding: 8px 12px;
    font-family: var(--diz-font);
    font-size: 0.9rem;
    background: #fff;
    cursor: pointer;
    color: var(--diz-text);
    min-width: 140px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.diz-lang-trigger:hover,
.diz-lang-picker.open .diz-lang-trigger {
    border-color: var(--diz-primary);
    box-shadow: 0 0 0 3px rgba(11, 122, 90, 0.12);
}

.diz-lang-flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.diz-lang-caret {
    margin-left: auto;
    font-size: 0.7rem;
    color: #888;
    transition: transform 0.2s;
}

.diz-lang-picker.open .diz-lang-caret {
    transform: rotate(180deg);
}

.diz-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 100%;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: #fff;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    z-index: 1200;
}

.diz-lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--diz-text);
    transition: background 0.15s;
}

.diz-lang-option:hover,
.diz-lang-option.active {
    background: rgba(11, 122, 90, 0.08);
    color: var(--diz-primary);
}

.diz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.diz-btn-primary {
    background: linear-gradient(135deg, var(--diz-primary) 0%, var(--diz-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(11, 122, 90, 0.28);
}

.diz-btn-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 122, 90, 0.34);
}

.diz-btn-accent {
    background: linear-gradient(135deg, var(--diz-accent) 0%, #e6732f 100%);
    color: #fff;
}

.diz-btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.85);
    color: #fff;
}

.diz-btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }

.diz-btn-sm { padding: 10px 18px; font-size: 0.88rem; }

/* ---- Hero ---- */
.diz-hero {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
}

.diz-hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.diz-hero-slide.active { opacity: 1; }

.diz-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 77, 100, 0.72) 0%, rgba(11, 122, 90, 0.55) 100%);
}

.diz-hero-content {
    position: relative;
    z-index: 2;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 16px 80px;
    color: #fff;
}

.diz-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.15;
}

.diz-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 680px;
    margin: 0 auto 28px;
    opacity: 0.95;
}

.diz-hero-dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.diz-hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.diz-hero-dot.active { background: #fff; }

/* ---- Page hero ---- */
.diz-page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 130px 0 70px;
    color: #fff;
}

.diz-page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 77, 100, 0.78), rgba(11, 122, 90, 0.65));
}

.diz-page-hero .diz-container { position: relative; z-index: 1; text-align: center; }

.diz-page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 10px;
}

.diz-page-hero p {
    margin: 0;
    opacity: 0.92;
    font-size: 1.05rem;
}

.diz-breadcrumb {
    margin-top: 14px;
    font-size: 0.92rem;
    opacity: 0.9;
}

.diz-breadcrumb a { color: #fff; text-decoration: underline; }

/* ---- Sections ---- */
.diz-section {
    padding: 80px 0;
}

.diz-section-alt {
    background: var(--diz-sand);
}

.diz-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.diz-kicker {
    display: inline-block;
    color: var(--diz-primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.diz-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
}

.diz-section-head p {
    margin: 0;
    color: var(--diz-muted);
}

/* ---- Grid cards ---- */
.diz-grid {
    display: grid;
    gap: 28px;
}

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

.diz-card {
    background: #fff;
    border-radius: var(--diz-radius);
    overflow: hidden;
    box-shadow: var(--diz-shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s, box-shadow 0.25s;
}

.diz-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(15, 45, 60, 0.16);
}

.diz-card-img {
    height: 240px;
    overflow: hidden;
    background: #e9ecef;
}

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

.diz-card:hover .diz-card-img img { transform: scale(1.06); }

.diz-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.diz-card-body h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.35;
}

.diz-card-body h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    color: var(--diz-primary);
}

.diz-card-body p {
    margin: 0 0 12px;
    color: var(--diz-muted);
    font-size: 0.96rem;
}

.diz-card-body .diz-btn { margin-top: auto; align-self: flex-start; }

/* ---- Split layout ---- */
.diz-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.diz-content h3 {
    margin: 24px 0 10px;
    font-size: 1.25rem;
    color: var(--diz-primary-dark);
}

.diz-content p { color: var(--diz-muted); margin-bottom: 14px; }

.diz-media-stack {
    display: grid;
    gap: 18px;
}

.diz-media-stack img,
.diz-media img {
    width: 100%;
    border-radius: var(--diz-radius);
    object-fit: cover;
    min-height: 220px;
    max-height: 420px;
}

.diz-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.diz-stat {
    background: #fff;
    border-radius: var(--diz-radius-sm);
    padding: 20px 24px;
    box-shadow: var(--diz-shadow);
    min-width: 140px;
    text-align: center;
}

.diz-stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--diz-primary);
    line-height: 1;
    margin-bottom: 6px;
}

.diz-stat span { font-size: 0.9rem; color: var(--diz-muted); }

/* ---- Feature boxes ---- */
.diz-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.diz-feature {
    background: #fff;
    border-radius: var(--diz-radius-sm);
    padding: 24px;
    box-shadow: var(--diz-shadow);
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.diz-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(11, 122, 90, 0.12);
    color: var(--diz-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.diz-feature h3 { margin: 0 0 8px; font-size: 1.05rem; }
.diz-feature p { margin: 0; color: var(--diz-muted); font-size: 0.92rem; }

/* ---- Checklist ---- */
.diz-checklist {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.diz-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--diz-muted);
}

.diz-checklist i {
    color: var(--diz-primary);
    margin-top: 4px;
}

/* ---- CTA band ---- */
.diz-cta {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
    color: #fff;
    text-align: center;
}

.diz-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11, 122, 90, 0.82);
}

.diz-cta .diz-container { position: relative; z-index: 1; }

.diz-cta h2 {
    margin: 0 0 20px;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* ---- Contact ---- */
.diz-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.diz-contact-item {
    background: #fff;
    border-radius: var(--diz-radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--diz-shadow);
}

.diz-contact-item i {
    font-size: 1.6rem;
    color: var(--diz-primary);
    margin-bottom: 14px;
}

.diz-contact-item h4 { margin: 0 0 8px; }
.diz-contact-item p { margin: 0; color: var(--diz-muted); }

.diz-map {
    border-radius: var(--diz-radius);
    overflow: hidden;
    min-height: 400px;
    height: 50vh;
    max-height: 520px;
    box-shadow: var(--diz-shadow);
}

.diz-map #googleMap { width: 100%; height: 100%; min-height: 400px; }

.diz-form {
    background: #fff;
    border-radius: var(--diz-radius);
    padding: 32px;
    box-shadow: var(--diz-shadow);
}

.diz-form .form_control,
.diz-form input,
.diz-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-family: var(--diz-font);
    margin-bottom: 16px;
}

.diz-form input:focus,
.diz-form textarea:focus {
    outline: none;
    border-color: var(--diz-primary);
}

/* ---- Map destination ---- */
.diz-map-banner {
    min-height: 420px;
    height: 55vh;
    max-height: 680px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--diz-sand);
    border-radius: var(--diz-radius);
}

.diz-card-body h3 a {
    color: var(--diz-dark);
}

.diz-card-body h3 a:hover {
    color: var(--diz-primary);
}

/* ---- Footer ---- */
.diz-footer {
    background: var(--diz-dark);
    color: rgba(255,255,255,0.86);
    padding: 70px 0 0;
}

.diz-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.diz-footer h4 {
    color: #fff;
    margin: 0 0 18px;
    font-size: 1.1rem;
}

.diz-footer p { margin: 0 0 16px; line-height: 1.7; }

.diz-footer-logo img {
    width: 90px;
    margin-top: 12px;
}

.diz-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.diz-footer-links a {
    color: rgba(255,255,255,0.82);
    font-size: 0.95rem;
}

.diz-footer-links a:hover { color: var(--diz-accent); }

.diz-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
}

.diz-footer-bottom a { color: rgba(255,255,255,0.75); margin-left: 16px; }
.diz-footer-bottom a:hover { color: var(--diz-accent); }

/* ---- WhatsApp ---- */
.whatsapp-button {
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    position: fixed;
    left: 16px;
    bottom: 16px;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    font-weight: 600;
}

.whatsapp-agent { bottom: 5.5rem; }

.whatsapp-button img { margin-right: 8px; width: 36px; height: 36px; }

.diz-back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--diz-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    box-shadow: var(--diz-shadow);
}

.diz-back-top:hover { color: #fff; background: var(--diz-primary-dark); }

/* ---- Excursion meta ---- */
.excursion-meta span { cursor: pointer; font-size: 0.92rem; }
.excursion-meta span:hover { opacity: 0.8; }

/* ---- Tour gallery ---- */
.diz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .diz-menu-toggle { display: flex; }

    .diz-nav-wrap {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 88vw);
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 24px;
        box-shadow: -8px 0 40px rgba(0,0,0,0.12);
        transition: right 0.3s ease;
        overflow-y: auto;
    }

    .diz-nav-wrap.open { right: 0; }

    .diz-nav {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .diz-nav-link { padding: 14px 0; border-bottom: 1px solid #f0f0f0; }

    .diz-nav-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 20px;
    }

    .diz-lang-trigger {
        width: 100%;
        justify-content: flex-start;
    }

    .diz-lang-menu {
        left: 0;
        right: 0;
    }

    .diz-split,
    .diz-grid-2,
    .diz-grid-3,
    .diz-contact-grid,
    .diz-footer-grid,
    .diz-gallery-grid,
    .diz-features {
        grid-template-columns: 1fr;
    }

    .diz-logo span { display: none; }

    .diz-topbar { display: none; }

    .diz-hero,
    .diz-hero-content { min-height: 75vh; }
}

@media (max-width: 575px) {
    .diz-section { padding: 56px 0; }
    .diz-card-img { height: 200px; }
}
