:root {
    --bg-top: #f6efe5;
    --bg-bottom: #d8edf5;
    --surface: rgba(255, 255, 255, 0.68);
    --surface-strong: rgba(255, 255, 255, 0.86);
    --text: #123047;
    --muted: #4f6b7c;
    --accent: #0f766e;
    --accent-strong: #0b5e58;
    --accent-soft: #e8fbf6;
    --sand: #f0b96a;
    --shadow: 0 24px 60px rgba(17, 48, 71, 0.16);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --border: 1px solid rgba(255, 255, 255, 0.44);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top right, rgba(240, 185, 106, 0.28), transparent 24%),
        radial-gradient(circle at bottom left, rgba(15, 118, 110, 0.18), transparent 28%),
        linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-shell {
    position: relative;
    isolation: isolate;
    min-height: 100vh;
}

.ambient {
    position: fixed;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.7;
    z-index: -1;
    animation: floatBlob 16s ease-in-out infinite;
}

.ambient-one {
    width: 280px;
    height: 280px;
    top: 80px;
    right: -70px;
    background: rgba(15, 118, 110, 0.16);
}

.ambient-two {
    width: 360px;
    height: 360px;
    bottom: 10%;
    left: -100px;
    background: rgba(240, 185, 106, 0.22);
    animation-delay: -5s;
}

.ambient-three {
    width: 200px;
    height: 200px;
    top: 42%;
    left: 45%;
    background: rgba(18, 48, 71, 0.08);
    animation-delay: -10s;
}

.topbar,
.hero-panel,
.status-ribbon,
.gallery-section,
.features-panel,
.closing-banner {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.topbar {
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(18, 48, 71, 0.18);
    border: 4px solid rgba(255, 255, 255, 0.58);
}

.brand-kicker {
    display: block;
    color: var(--muted);
    font-size: 0.92rem;
}

.brand strong {
    font-size: 1.15rem;
}

.topbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ghost-btn,
.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ghost-btn {
    background: rgba(255, 255, 255, 0.45);
    border: var(--border);
    color: var(--text);
}

.primary-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, #0f4c81 100%);
    box-shadow: 0 18px 32px rgba(15, 118, 110, 0.25);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(18, 48, 71, 0.08);
}

.ghost-btn:hover,
.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
}

.content-wrap {
    padding-bottom: 56px;
}

.hero-panel {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    padding: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.42) 100%);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: var(--border);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.1);
    color: var(--accent-strong);
    font-weight: 800;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
}

.hero-copy h1,
.section-heading h2,
.closing-banner h2 {
    margin: 16px 0 14px;
    font-family: 'Marhey', cursive;
    line-height: 1.25;
}

.hero-copy h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
}

.hero-copy p,
.section-heading p,
.destination-copy h3,
.feature-card p,
.closing-banner p {
    color: var(--muted);
    line-height: 1.9;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 28px;
}

.hero-tags span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 48, 71, 0.08);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-visual {
    position: relative;
    min-height: 440px;
}

.visual-card {
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 26px 48px rgba(18, 48, 71, 0.22);
}

.main-visual {
    height: 100%;
}

.main-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-overlay {
    position: absolute;
    inset-inline: 20px;
    bottom: 20px;
    padding: 18px 20px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(18, 48, 71, 0.76), rgba(15, 118, 110, 0.68));
    color: #fff;
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.visual-overlay span,
.destination-copy span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.82;
}

.visual-overlay strong {
    display: block;
    margin-top: 6px;
    font-size: 1.25rem;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 20px;
    box-shadow: 0 16px 32px rgba(18, 48, 71, 0.18);
    border: var(--border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.badge-top {
    top: -16px;
    left: -10px;
}

.badge-bottom {
    bottom: 30px;
    left: -26px;
}

.badge-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sand) 0%, #ffcf91 100%);
    font-weight: 800;
}

.badge-label {
    font-weight: 700;
}

.status-ribbon {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.status-ribbon article,
.gallery-section,
.features-panel,
.closing-banner {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: var(--border);
    box-shadow: var(--shadow);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.status-ribbon article {
    padding: 22px;
    text-align: center;
}

.status-ribbon strong {
    display: block;
    font-size: 2rem;
    color: var(--accent-strong);
}

.gallery-section,
.features-panel,
.closing-banner {
    margin-top: 24px;
    padding: 28px;
}

.section-heading.compact h2 {
    margin-bottom: 0;
}

.destination-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.destination-card {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 24px 36px rgba(18, 48, 71, 0.16);
}

.destination-card.tall {
    grid-row: span 2;
    min-height: 100%;
}

.destination-card.wide {
    grid-column: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.destination-card:hover img {
    transform: scale(1.06);
}

.destination-copy {
    position: absolute;
    inset-inline: 18px;
    bottom: 18px;
    padding: 18px 20px;
    border-radius: 22px;
    color: #fff;
    background: linear-gradient(180deg, rgba(18, 48, 71, 0.08), rgba(18, 48, 71, 0.78));
}

.destination-copy h3 {
    margin: 6px 0 0;
    color: #fff;
}

.features-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.feature-card {
    padding: 26px 22px;
    border-radius: 24px;
    background: var(--surface-strong);
    border: 1px solid rgba(18, 48, 71, 0.08);
}

.feature-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: var(--accent-soft);
    color: var(--accent-strong);
    font-size: 1.4rem;
}

.feature-card h3 {
    margin: 16px 0 10px;
    font-size: 1.2rem;
}

.closing-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

@keyframes floatBlob {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -18px, 0);
    }
}

@media (max-width: 980px) {
    .hero-panel {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 360px;
    }

    .status-ribbon,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .destination-card.tall,
    .destination-card.wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 290px;
    }

    .closing-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .brand {
        justify-content: center;
        text-align: center;
    }

    .topbar-actions,
    .hero-actions {
        flex-direction: column;
    }

    .status-ribbon,
    .destination-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel,
    .gallery-section,
    .features-panel,
    .closing-banner {
        padding: 22px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .floating-badge {
        position: static;
        margin-top: 14px;
    }

    .badge-bottom {
        left: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}