/* Base styles */
:root {
    --color-primary: #0d43a6;
    --color-secondary: #e5a915;
    --color-dark: #0a225d;
    --color-light: #ffffff;
    --color-muted: #f5f7fb;
    --color-text: #1f2a44;
    --font-main: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    --radius-base: 16px;
    --shadow-soft: 0 16px 40px rgba(13, 67, 166, 0.1);
    scroll-behavior: smooth;
}

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

body {
    margin: 0;
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
}

a:hover,
a:focus {
    text-decoration: underline;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 3px;
}

h1,
h2,
h3 {
    color: var(--color-dark);
    line-height: 1.3;
    margin: 0 0 0.6em;
}

p {
    margin: 0 0 1.2em;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 10px 16px;
    border-radius: 8px;
    z-index: 1000;
}

.skip-link:focus {
    top: 16px;
}

.container {
    width: min(1100px, 90%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
    background-color: var(--color-light);
}

section[id] {
    scroll-margin-top: 110px;
}

.section--light {
    background-color: var(--color-muted);
}

.section__header {
    margin-bottom: 48px;
}

.section__header--center {
    text-align: center;
}

.section__header p {
    max-width: 720px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
    background: var(--color-secondary);
    color: var(--color-dark);
    box-shadow: 0 10px 30px rgba(229, 169, 21, 0.3);
}

.btn--secondary {
    background: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 10px 30px rgba(13, 67, 166, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--color-light);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn:hover,
.btn:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(13, 67, 166, 0.2);
    text-decoration: none;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(10, 34, 93, 0.95);
    color: var(--color-light);
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 56px;
    height: auto;
}

.identity__name {
    margin: 0;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.identity__slogan {
    margin: 2px 0 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.navigation {
    display: flex;
    align-items: center;
    gap: 24px;
}

.navigation__list {
    display: flex;
    gap: 24px;
}

.navigation__list a {
    color: var(--color-light);
    font-weight: 500;
    position: relative;
    padding-bottom: 6px;
}

.navigation__list a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.2s ease;
}

.navigation__list a:hover::after,
.navigation__list a:focus::after {
    width: 100%;
}

.language-switcher {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    overflow: hidden;
}

.language-switcher__btn {
    background: transparent;
    border: none;
    color: var(--color-light);
    font-weight: 600;
    padding: 6px 16px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-switcher__btn.is-active {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 8px 12px;
    color: var(--color-light);
    font-weight: 600;
}

.nav-toggle__line {
    width: 22px;
    height: 2px;
    background: currentColor;
}

/* Hero */
.hero {
    position: relative;
    padding: 40px 0 30px;
    background: linear-gradient(135deg, rgba(10, 34, 93, 0.9), rgba(13, 67, 166, 0.82)), url("../../image/IMG-20251009-WA0023.jpg") center/cover no-repeat;
    color: var(--color-light);
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -240px;
    right: -220px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(229, 169, 21, 0.65) 0%, rgba(229, 169, 21, 0) 65%);
    filter: blur(0.5px);
    opacity: 0.45;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13, 67, 166, 0.65) 0%, rgba(229, 169, 21, 0.2) 100%);
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 36px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr);
}

.hero__text {
    max-width: 600px;
}

.hero__eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.8rem;
    color: rgba(229, 169, 21, 0.85);
    margin-bottom: 10px;
}

.hero__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--color-light);
    margin: 0 0 16px;
}

.hero__subtitle {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero__mission {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    max-width: 640px;
}

.hero__features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.hero__features li {
    position: relative;
    padding-left: 28px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.hero__features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    color: var(--color-secondary);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
}

.hero__stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.hero__stat-label {
    color: rgba(255, 255, 255, 0.75);
    margin: 6px 0 0;
}

.hero__media {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-top: 6px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    background: rgba(229, 169, 21, 0.95);
    color: var(--color-dark);
    font-weight: 700;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__card {
    width: min(340px, 90%);
    margin-top: 18px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(13, 67, 166, 0.2) 0%, rgba(10, 34, 93, 0.85) 100%);
    border: 1px solid rgba(229, 169, 21, 0.35);
    box-shadow: 0 24px 50px rgba(10, 34, 93, 0.35);
    backdrop-filter: blur(6px);
    animation: float 6s ease-in-out infinite;
}

.hero__card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.hero__card figcaption {
    padding: 20px 24px 24px;
}

.hero__card-title {
    margin: 0 0 6px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero__card-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
}

.hero__mobile-media {
    display: none;
}

.hero__stamp {
    position: absolute;
    bottom: 12px;
    right: -20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(229, 169, 21, 0.6);
    border-radius: 999px;
    box-shadow: 0 18px 40px rgba(13, 67, 166, 0.3);
    transform: rotate(-10deg);
    backdrop-filter: blur(6px);
    animation: pulse 4s ease-in-out infinite;
}

.hero__stamp-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(180deg, rgba(10, 34, 93, 0.55) 0%, rgba(13, 67, 166, 0.35) 50%, rgba(13, 67, 166, 0) 100%);
    pointer-events: none;
}

@media (min-width: 1024px) {
    .hero__content {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }

    .hero__media {
        align-items: flex-end;
        padding-right: 24px;
    }

    .hero__badge {
        margin-left: auto;
    }

    .hero__stamp {
        right: 18px;
        bottom: 18px;
    }
}

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

@keyframes pulse {
    0%,
    100% {
        transform: rotate(-10deg) scale(1);
        box-shadow: 0 18px 40px rgba(13, 67, 166, 0.3);
    }
    50% {
        transform: rotate(-10deg) scale(1.05);
        box-shadow: 0 20px 45px rgba(229, 169, 21, 0.35);
    }
}

@keyframes whatsappRing {
    0% {
        transform: scale(0.88);
        opacity: 0;
    }
    25% {
        opacity: 0.38;
    }
    100% {
        transform: scale(1.16);
        opacity: 0;
    }
}

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

.highlight-card {
    background: var(--color-light);
    border-radius: var(--radius-base);
    padding: 32px;
    box-shadow: var(--shadow-soft);
}

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.packages {
    position: relative;
    padding: 32px;
    border-radius: 36px;
    background: linear-gradient(140deg, rgba(13, 67, 166, 0.1), rgba(229, 169, 21, 0.08));
    overflow: hidden;
}

.packages__bubble {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229, 169, 21, 0.45) 0%, rgba(229, 169, 21, 0) 65%);
    filter: blur(0.5px);
    opacity: 0.45;
    pointer-events: none;
}

.packages__bubble--left {
    top: -60px;
    left: -80px;
}

.packages__bubble--right {
    bottom: -80px;
    right: -60px;
    background: radial-gradient(circle, rgba(13, 67, 166, 0.45) 0%, rgba(13, 67, 166, 0) 65%);
}

.packages__grid {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.package-card {
    position: relative;
    background: var(--color-light);
    border-radius: 28px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 67, 166, 0.12);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    background: linear-gradient(135deg, rgba(13, 67, 166, 0.16), rgba(229, 169, 21, 0.16));
}

.package-card--featured::before {
    opacity: 1;
}

.package-card:hover,
.package-card:focus-within {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(13, 67, 166, 0.18);
}

.package-card:hover::before,
.package-card:focus-within::before {
    opacity: 1;
}

.package-card__badge {
    align-self: flex-start;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(13, 67, 166, 0.12);
    color: var(--color-primary);
}

.package-card[data-tier="economy"] .package-card__badge {
    background: rgba(13, 67, 166, 0.12);
    color: var(--color-primary);
}

.package-card[data-tier="comfort"] .package-card__badge {
    background: rgba(229, 169, 21, 0.16);
    color: var(--color-dark);
}

.package-card[data-tier="vip"] .package-card__badge {
    background: rgba(13, 67, 166, 0.18);
    color: var(--color-secondary);
}

.package-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.package-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    font-size: 1.5rem;
    background: rgba(13, 67, 166, 0.08);
}

.package-card[data-tier="comfort"] .package-card__icon {
    background: rgba(229, 169, 21, 0.12);
}

.package-card[data-tier="vip"] .package-card__icon {
    background: rgba(13, 67, 166, 0.18);
}

.package-card__price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 4px 0 0;
}

.package-card[data-tier="comfort"] .package-card__price {
    color: var(--color-dark);
}

.package-card[data-tier="vip"] .package-card__price {
    color: var(--color-secondary);
}

.package-card__summary {
    margin: 0;
    color: rgba(31, 42, 68, 0.85);
    font-weight: 500;
}

.package-card__list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.package-card__list li {
    position: relative;
    padding-left: 28px;
    color: rgba(31, 42, 68, 0.85);
}

.package-card__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: var(--color-primary);
}

.package-card[data-tier="comfort"] .package-card__list li::before {
    color: var(--color-dark);
}

.package-card[data-tier="vip"] .package-card__list li::before {
    color: var(--color-secondary);
}

.package-card__cta {
    margin-top: auto;
    align-self: flex-start;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 67, 166, 0.1);
    color: var(--color-primary);
    transition: background 0.2s ease, color 0.2s ease;
}

.package-card__cta::after {
    content: "→";
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.package-card__cta:hover,
.package-card__cta:focus {
    background: var(--color-primary);
    color: var(--color-light);
    text-decoration: none;
}

.package-card__cta:hover::after,
.package-card__cta:focus::after {
    transform: translateX(3px);
}

.package-card[data-tier="comfort"] .package-card__cta {
    background: rgba(229, 169, 21, 0.18);
    color: var(--color-dark);
}

.package-card[data-tier="comfort"] .package-card__cta:hover,
.package-card[data-tier="comfort"] .package-card__cta:focus {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.package-card[data-tier="vip"] .package-card__cta {
    background: rgba(13, 67, 166, 0.18);
    color: var(--color-secondary);
}

.package-card[data-tier="vip"] .package-card__cta:hover,
.package-card[data-tier="vip"] .package-card__cta:focus {
    background: var(--color-secondary);
    color: var(--color-dark);
}

/* Testimonials */
.testimonials {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.testimonial {
    position: relative;
    background: var(--color-light);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 16px 40px rgba(13, 67, 166, 0.14);
    border: 1px solid rgba(13, 67, 166, 0.08);
    display: grid;
    gap: 18px;
    overflow: hidden;
}

.testimonial::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(13, 67, 166, 0.06), rgba(229, 169, 21, 0.04));
    opacity: 0;
    transition: opacity 0.2s ease;
}

.testimonial:hover::before,
.testimonial:focus-within::before {
    opacity: 1;
}

.testimonial--highlight {
    border: 1px solid rgba(229, 169, 21, 0.4);
    box-shadow: 0 22px 60px rgba(229, 169, 21, 0.18);
}

.testimonial__tag {
    position: absolute;
    top: 22px;
    right: -60px;
    transform: rotate(38deg);
    background: var(--color-secondary);
    color: var(--color-dark);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 80px;
    font-size: 0.72rem;
}

.testimonial__profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial--highlight .testimonial__avatar {
    background: var(--color-secondary);
    color: var(--color-dark);
}

.testimonial__name {
    margin: 0;
    font-weight: 700;
    color: var(--color-dark);
}

.testimonial__location {
    margin: 4px 0 0;
    color: rgba(31, 42, 68, 0.65);
    font-size: 0.9rem;
}

.testimonial__rating span {
    display: inline-flex;
    background: rgba(229, 169, 21, 0.12);
    color: var(--color-secondary);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.18em;
}

.testimonial blockquote {
    margin: 0;
    font-size: 1rem;
    font-style: italic;
    color: rgba(31, 42, 68, 0.85);
}

.testimonial__badge {
    margin: 0;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: rgba(13, 67, 166, 0.08);
    color: var(--color-primary);
}

.testimonial--highlight .testimonial__badge {
    background: rgba(229, 169, 21, 0.18);
    color: var(--color-dark);
}

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

.ziyara__grid article {
    background: rgba(13, 67, 166, 0.05);
    border-radius: var(--radius-base);
    padding: 24px;
}

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

.team-card {
    background: var(--color-light);
    border-radius: var(--radius-base);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.team-card__photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(13, 67, 166, 0.18);
}

.team-card__role {
    font-weight: 600;
    color: var(--color-primary);
}

/* Gallery */
.gallery__grid {
    column-count: 4;
    column-gap: 18px;
}

.gallery__item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 18px;
    overflow: hidden;
    border-radius: 22px;
    background: var(--color-light);
    box-shadow: 0 18px 40px rgba(13, 67, 166, 0.18);
    isolation: isolate;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery__item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: linear-gradient(180deg, rgba(13, 67, 166, 0.05), rgba(229, 169, 21, 0.06));
}

.gallery__item::before {
    display: none;
}

.gallery__item figcaption {
    position: static;
    padding: 16px 18px 18px;
    color: var(--color-secondary);
    display: grid;
    gap: 8px;
    opacity: 1;
    transform: none;
}

.gallery__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(229, 169, 21, 0.85);
    color: var(--color-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery__item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(31, 42, 68, 0.82);
}

.gallery__item:hover,
.gallery__item:focus,
.gallery__item:focus-within {
    transform: translateY(-6px);
    box-shadow: 0 24px 52px rgba(13, 67, 166, 0.28);
}

.gallery__item--wide,
.gallery__item--tall {
    grid-column: auto;
    grid-row: auto;
}

/* Why cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.why-card {
    background: var(--color-light);
    border-radius: var(--radius-base);
    padding: 28px;
    border: 1px solid rgba(13, 67, 166, 0.1);
    box-shadow: var(--shadow-soft);
}

/* Contact */
.contact__layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.contact__details {
    display: grid;
    gap: 12px;
    padding: 0;
}

.contact__cards {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.contact-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.82);
    border-radius: 18px;
    padding: 16px 18px;
    box-shadow: 0 16px 36px rgba(13, 67, 166, 0.14);
    border: 1px solid rgba(13, 67, 166, 0.12);
    backdrop-filter: blur(6px);
}

.contact-card--accent {
    background: linear-gradient(125deg, rgba(13, 67, 166, 0.92), rgba(229, 169, 21, 0.82));
    color: var(--color-light);
}

.contact-card__icon {
    font-size: 1.4rem;
    background: rgba(13, 67, 166, 0.12);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.contact-card__icon img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
}

.contact-card--accent .contact-card__icon {
    background: rgba(255, 255, 255, 0.18);
}

.contact-card h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--color-dark);
}

.contact-card--accent h3 {
    color: var(--color-light);
}

.contact-card p {
    margin: 0;
    color: rgba(31, 42, 68, 0.75);
}

.contact-card--accent p,
.contact-card--accent a {
    color: rgba(255, 255, 255, 0.96);
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus {
    text-decoration: underline;
}

.contact__cta-panel {
    margin-top: 28px;
    padding: 20px 24px;
    border-radius: 20px;
    background: linear-gradient(110deg, rgba(229, 169, 21, 0.18), rgba(13, 67, 166, 0.15));
    border: 1px solid rgba(13, 67, 166, 0.12);
    box-shadow: 0 16px 40px rgba(13, 67, 166, 0.12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact__cta-panel p {
    margin: 0;
    color: rgba(31, 42, 68, 0.82);
    font-weight: 500;
    max-width: 360px;
}

.contact-form {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 255, 0.92));
    border-radius: var(--radius-base);
    padding: 32px;
    box-shadow: 0 20px 50px rgba(13, 67, 166, 0.18);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    border: 1px solid rgba(13, 67, 166, 0.12);
}

.contact-form__header {
    grid-column: 1 / -1;
    display: grid;
    gap: 12px;
}

.contact-form__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(13, 67, 166, 0.12);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-form__header p {
    margin: 0;
    color: rgba(31, 42, 68, 0.72);
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(13, 67, 166, 0.2);
    font-size: 1rem;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(13, 67, 166, 0.15);
}

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

.contact-form__submit {
    grid-column: 1 / -1;
}

.contact-form__footer {
    grid-column: 1 / -1;
    display: grid;
    gap: 6px;
}

.contact-form__disclaimer {
    font-size: 0.85rem;
    color: rgba(31, 42, 68, 0.7);
    margin: 0;
}

.contact-form__status {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

/* Blog */
.blog-card {
    background: var(--color-light);
    border-radius: var(--radius-base);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(13, 67, 166, 0.1);
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 100%;
}

.blog-card__eyebrow {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(216, 166, 67, 0.16);
    color: var(--color-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-card h3 {
    margin: 0;
}

.blog-card__excerpt {
    margin: 0;
    color: rgba(32, 49, 79, 0.8);
}

.blog-card__highlights {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.blog-card__highlights li {
    position: relative;
    padding-left: 24px;
    color: rgba(32, 49, 79, 0.78);
    line-height: 1.5;
}

.blog-card__highlights li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), #f2cb78);
    box-shadow: 0 0 0 4px rgba(216, 166, 67, 0.14);
}

.blog-card__link {
    margin-top: auto;
    font-weight: 600;
    color: var(--color-primary);
}

.blog-card__link::after {
    content: " →";
    transition: transform 0.2s ease;
}

.blog-card__link:hover::after {
    transform: translateX(2px);
}

/* FAQ */
.faq__list {
    display: grid;
    gap: 16px;
}

.faq__item {
    background: var(--color-light);
    border-radius: 18px;
    border: 1px solid rgba(13, 67, 166, 0.12);
    box-shadow: var(--shadow-soft);
    padding: 0 22px;
}

.faq__item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-dark);
    list-style: none;
    padding: 22px 0;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__item[open] summary {
    padding-bottom: 12px;
}

.faq__item p {
    margin: 0 0 22px;
    color: rgba(31, 42, 68, 0.82);
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #0a225d, #0d43a6);
    color: rgba(255, 255, 255, 0.9);
    padding: 56px 0 28px;
}

.site-footer__simple {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 24px;
}

.site-footer__column {
    min-width: 200px;
}

.site-footer__column--brand {
    max-width: 320px;
}

.site-footer__logo {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
}

.site-footer__column h3 {
    margin: 0 0 16px;
    color: var(--color-secondary);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.site-footer__list a {
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.2s ease;
}

.site-footer__list a:hover,
.site-footer__list a:focus {
    color: var(--color-secondary);
    text-decoration: none;
}

.site-footer__legal {
    text-align: center;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .site-footer__simple {
        flex-direction: column;
        gap: 28px;
    }
}

/* Floating WhatsApp */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #4ae57f 0%, #25d366 48%, #169c49 100%);
    border: 4px solid rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 40px rgba(15, 97, 46, 0.28);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
    overflow: hidden;
    isolation: isolate;
    z-index: 50;
}

.whatsapp-fab::before,
.whatsapp-fab::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.whatsapp-fab::before {
    inset: 7px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 62%);
    z-index: 0;
}

.whatsapp-fab::after {
    inset: -8px;
    border: 1px solid rgba(37, 211, 102, 0.4);
    animation: whatsappRing 2.8s ease-out infinite;
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 24px 46px rgba(15, 97, 46, 0.34);
    text-decoration: none;
}

.whatsapp-fab__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 50%;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 16px rgba(21, 102, 50, 0.18);
    line-height: 1;
    position: relative;
    z-index: 1;
}

.whatsapp-fab__icon img {
    width: 27px;
    height: 27px;
    display: block;
    object-fit: contain;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navigation__list {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        flex-direction: column;
        background: rgba(10, 34, 93, 0.98);
        padding: 24px;
        border-radius: 18px;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }

    .navigation__list.is-open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .navigation {
        align-items: flex-start;
        gap: 16px;
        position: relative;
    }

    .contact__layout {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .site-header .container {
        position: relative;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 12px 16px;
    }

    .logo-group {
        width: auto;
        justify-content: center;
        gap: 12px;
        margin: 0 auto;
    }

    .identity {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .identity__name {
        display: none;
    }

    .identity__slogan {
        display: none;
    }

    .navigation {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nav-toggle,
    .language-switcher {
        position: relative;
        z-index: 2;
    }

    .logo {
        width: 84px;
    }

    .language-switcher {
        margin-left: 0;
    }

    .hero {
        padding: 90px 0 70px;
    }

    .hero__features {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero__content {
        text-align: center;
        justify-items: center;
        gap: 28px;
    }

    .hero__mission {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__media {
        align-items: center;
        padding-right: 0;
    }

    .hero__card {
        width: min(320px, 85vw);
    }

    .hero__stamp {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: 12px;
        transform: rotate(0deg);
        animation: none;
    }

    .hero__badge {
        align-self: center;
        margin-bottom: 4px;
    }

    .hero__stats {
        width: 100%;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        text-align: center;
        gap: 10px;
    }

    .hero__mobile-media {
        display: flex;
        justify-content: center;
        margin: 16px 0 0;
        width: 100%;
    }

    .hero__card--mobile {
        display: inline-block;
        animation: none;
        width: min(320px, 85vw);
    }

    .hero__card--mobile img {
        height: 200px;
        object-fit: cover;
    }

    .hero__media {
        display: none;
    }

    .packages {
        padding: 24px;
    }

    .packages__grid {
        gap: 20px;
    }

    .package-card {
        padding: 28px;
    }

    .package-card--featured {
        transform: none;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .testimonials {
        grid-template-columns: 1fr;
    }

    .testimonial {
        padding: 28px;
    }

    .testimonial__tag {
        position: static;
        transform: none;
        text-align: center;
        display: inline-block;
        margin-top: 12px;
        border-radius: 999px;
        padding: 6px 18px;
    }

    .gallery__grid {
        column-count: 3;
    }

    .whatsapp-fab {
        bottom: 16px;
        right: 16px;
        width: 64px;
        height: 64px;
    }

    .whatsapp-fab__icon {
        width: 40px;
        height: 40px;
    }

    .whatsapp-fab__icon img {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 600px) {
    .packages {
        padding: 20px;
        border-radius: 28px;
    }

    .packages__bubble {
        display: none;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        column-count: 2;
    }

    .site-footer__simple {
        gap: 24px;
    }

    .site-footer__column {
        min-width: 100%;
    }

    .contact__cards {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        column-count: 1;
    }

    .navigation {
        left: 12px;
        right: 12px;
    }

    .logo {
        width: 74px;
    }
}

/* Visual refresh */
:root {
    --color-primary: #0b3b82;
    --color-secondary: #d8a643;
    --color-dark: #071c3d;
    --color-light: #ffffff;
    --color-muted: #eef3fb;
    --color-text: #20314f;
    --color-surface: rgba(255, 255, 255, 0.82);
    --color-surface-strong: rgba(255, 255, 255, 0.94);
    --border-soft: 1px solid rgba(11, 59, 130, 0.12);
    --shadow-soft: 0 22px 60px rgba(7, 28, 61, 0.12);
    --shadow-strong: 0 28px 80px rgba(7, 28, 61, 0.2);
}

body {
    background:
        radial-gradient(circle at top right, rgba(216, 166, 67, 0.16), transparent 30%),
        radial-gradient(circle at 0% 20%, rgba(11, 59, 130, 0.1), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6fc 50%, #eef3fb 100%);
    color: var(--color-text);
}

h1,
h2,
h3 {
    letter-spacing: -0.03em;
    text-wrap: balance;
}

p {
    color: rgba(32, 49, 79, 0.84);
}

.container {
    width: min(1180px, 92%);
}

.section {
    position: relative;
    padding: 96px 0;
    background: transparent;
}

.section--light {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(238, 243, 251, 0.92));
}

.section__header {
    display: grid;
    gap: 14px;
    max-width: 760px;
}

.section__header h2 {
    font-size: clamp(2rem, 3.4vw, 3rem);
    margin: 0;
    padding-bottom: 16px;
    position: relative;
}

.section__header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--color-secondary), #f2cb78);
}

.section__header--center {
    margin-left: auto;
    margin-right: auto;
}

.section__header--center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section__header p {
    margin: 0;
    max-width: 640px;
    font-size: 1.02rem;
    color: rgba(32, 49, 79, 0.7);
}

.section__header--center p {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    gap: 10px;
    padding: 15px 30px;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-soft);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary), #f1ca73);
}

.btn--secondary {
    background: linear-gradient(135deg, #0b3b82, #1456bb);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(10px);
}

.btn:hover,
.btn:focus {
    transform: translateY(-3px) scale(1.01);
    box-shadow: var(--shadow-strong);
}

.site-header {
    background: rgba(7, 28, 61, 0.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 36px rgba(7, 28, 61, 0.12);
}

.site-header .container {
    padding: 18px 0;
}

.logo {
    width: 62px;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}

.identity__name {
    color: var(--color-light);
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.identity__slogan {
    color: rgba(255, 255, 255, 0.72);
    max-width: 320px;
}

.navigation__list {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.navigation__list a {
    padding-bottom: 0;
}

.navigation__list a::after {
    bottom: -8px;
    height: 3px;
    border-radius: 999px;
}

.language-switcher {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.language-switcher__btn {
    padding: 8px 16px;
}

.nav-toggle {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.hero {
    padding: 76px 0 58px;
    background:
        linear-gradient(135deg, rgba(7, 28, 61, 0.92), rgba(11, 59, 130, 0.8)),
        url("../../image/IMG-20251009-WA0023.jpg") center/cover no-repeat;
}

.hero::before {
    top: -160px;
    right: -120px;
    width: 500px;
    height: 500px;
    opacity: 0.55;
}

.hero::after {
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
        linear-gradient(160deg, rgba(13, 67, 166, 0.5) 0%, rgba(216, 166, 67, 0.16) 100%);
}

.hero__content {
    gap: 48px;
}

.hero__text {
    max-width: 650px;
    padding: clamp(24px, 4vw, 40px);
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(7, 28, 61, 0.46), rgba(7, 28, 61, 0.16));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 80px rgba(4, 17, 39, 0.28);
    backdrop-filter: blur(14px);
}

.hero__eyebrow {
    font-weight: 600;
    color: rgba(242, 203, 120, 0.96);
}

.hero__title {
    max-width: 12ch;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.04;
    margin-bottom: 18px;
}

.hero__subtitle {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 24px;
}

.hero__mission {
    color: rgba(255, 255, 255, 0.78);
}

.hero__features {
    gap: 14px;
}

.hero__features li {
    display: flex;
    align-items: center;
    padding: 12px 18px 12px 44px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero__stats {
    margin-top: 12px;
}

.hero__stats > div {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    color: var(--color-light);
}

.hero__stat-number {
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    color: var(--color-light);
}

.hero__badge {
    padding: 16px 28px;
    background: linear-gradient(135deg, #f4d07c, var(--color-secondary));
    box-shadow: var(--shadow-strong);
}

.hero__card {
    margin-top: 8px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(7, 28, 61, 0.88));
    box-shadow: 0 30px 70px rgba(7, 28, 61, 0.34);
}

.hero__card img {
    height: 220px;
}

.hero__stamp {
    background: rgba(7, 28, 61, 0.46);
}

.hero__wave {
    height: 140px;
    background: linear-gradient(180deg, rgba(7, 28, 61, 0.52) 0%, rgba(11, 59, 130, 0.28) 52%, rgba(11, 59, 130, 0) 100%);
}

.highlight-card,
.package-card,
.testimonial,
.ziyara__grid article,
.team-card,
.gallery__item,
.why-card,
.contact-card,
.contact-form,
.blog-card,
.faq__item {
    border: var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.highlight-card,
.team-card,
.why-card,
.blog-card,
.faq__item,
.ziyara__grid article {
    background: linear-gradient(180deg, var(--color-surface-strong), rgba(245, 248, 252, 0.9));
}

.highlight-card,
.team-card,
.why-card,
.blog-card,
.faq__item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.highlight-card:hover,
.team-card:hover,
.why-card:hover,
.blog-card:hover,
.faq__item:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 166, 67, 0.32);
    box-shadow: var(--shadow-strong);
}

.highlight-card {
    padding: 34px;
}

.highlight-card h2 {
    font-size: 1.35rem;
}

.packages {
    border: var(--border-soft);
    background: linear-gradient(140deg, rgba(11, 59, 130, 0.12), rgba(216, 166, 67, 0.16));
    box-shadow: var(--shadow-soft);
}

.package-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 252, 0.96));
}

.package-card--featured {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.package-card__icon {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.testimonial {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92));
}

.testimonial__rating span {
    letter-spacing: 0.12em;
}

.testimonial blockquote {
    font-size: 1.03rem;
}

.ziyara__grid article {
    padding: 28px;
}

.team-card {
    padding: 30px;
}

.team-card__photo {
    height: 240px;
}

.gallery__grid {
    column-gap: 22px;
}

.gallery__item {
    border-radius: 28px;
    box-shadow: 0 24px 58px rgba(7, 28, 61, 0.18);
}

.gallery__item::before {
    background: linear-gradient(180deg, rgba(7, 28, 61, 0.04) 20%, rgba(7, 28, 61, 0.86) 100%);
}

.gallery__item figcaption {
    padding: 24px;
}

.gallery__badge {
    box-shadow: 0 10px 24px rgba(216, 166, 67, 0.2);
}

.why-card {
    padding: 30px;
}

.contact {
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(216, 166, 67, 0.12), transparent 22%),
        radial-gradient(circle at 85% 20%, rgba(11, 59, 130, 0.1), transparent 24%);
    pointer-events: none;
}

.contact__layout {
    gap: 48px;
}

.contact__intro {
    position: relative;
    overflow: hidden;
    padding: 38px;
    border-radius: 32px;
    background: linear-gradient(160deg, rgba(7, 28, 61, 0.96), rgba(11, 59, 130, 0.9));
    box-shadow: 0 30px 80px rgba(7, 28, 61, 0.22);
}

.contact__intro::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 166, 67, 0.28), rgba(216, 166, 67, 0));
    pointer-events: none;
}

.contact__intro h2,
.contact__intro > p {
    position: relative;
    z-index: 1;
}

.contact__intro h2 {
    color: var(--color-light);
}

.contact__intro > p {
    color: rgba(255, 255, 255, 0.76);
}

.contact-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.contact-card h3,
.contact-card p,
.contact-card a {
    color: rgba(255, 255, 255, 0.94);
}

.contact-card__icon {
    background: rgba(255, 255, 255, 0.14);
}

.contact-card--accent {
    background: linear-gradient(135deg, rgba(216, 166, 67, 0.24), rgba(255, 255, 255, 0.1));
}

.contact__cta-panel {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.contact__cta-panel p {
    color: rgba(255, 255, 255, 0.82);
}

.contact-form {
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 252, 0.96));
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.92);
}

.blog-card {
    padding: 30px;
}

.faq__item {
    padding: 0 24px;
}

.faq__item summary {
    position: relative;
    padding-right: 40px;
}

.faq__item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 59, 130, 0.08);
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 700;
}

.faq__item[open] summary::after {
    content: "-";
}

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 72px 0 32px;
    background: linear-gradient(135deg, #071c3d 0%, #0d43a6 58%, #123066 100%);
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: -120px -120px auto auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 166, 67, 0.2), rgba(216, 166, 67, 0));
    pointer-events: none;
}

.site-footer__column--brand {
    padding: 24px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__column--brand p {
    color: rgba(255, 255, 255, 0.84);
}

.site-footer__list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-footer__list a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(216, 166, 67, 0.9);
    box-shadow: 0 0 0 4px rgba(216, 166, 67, 0.12);
}

.whatsapp-fab {
    width: 72px;
    height: 72px;
    border-width: 4px;
    box-shadow: 0 24px 48px rgba(15, 97, 46, 0.32);
}

.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
    transform: translateY(-6px) scale(1.04);
}

@media (max-width: 992px) {
    .section {
        padding: 82px 0;
    }

    .navigation__list {
        margin-top: 10px;
        border-radius: 22px;
        background: rgba(7, 28, 61, 0.94);
    }

    .hero__text {
        padding: 28px;
    }

    .package-card--featured {
        transform: none;
    }

    .contact__intro,
    .contact-form {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    .section__header h2 {
        font-size: clamp(1.9rem, 8vw, 2.5rem);
    }

    .hero {
        padding: 68px 0 54px;
    }

    .hero__text {
        border-radius: 28px;
        text-align: center;
    }

    .hero__title {
        max-width: none;
    }

    .hero__features li {
        width: 100%;
        justify-content: flex-start;
    }

    .contact__intro {
        padding: 28px 24px;
    }

    .contact-form {
        padding: 24px;
    }

    .site-footer__column--brand {
        padding: 22px;
    }
}

/* Upcoming departures */
.departures {
    position: relative;
    overflow: hidden;
}

.departures::before {
    content: "";
    position: absolute;
    inset: 40px auto auto -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 67, 166, 0.12), rgba(13, 67, 166, 0));
    pointer-events: none;
}

.departures__header {
    max-width: 820px;
    margin: 0 auto 20px;
    text-align: center;
}

.departures__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(13, 67, 166, 0.08);
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.departures__included {
    margin: 0 auto 14px;
    max-width: 920px;
    padding: 18px 24px;
    border-radius: 22px;
    background: linear-gradient(125deg, rgba(13, 67, 166, 0.94), rgba(229, 169, 21, 0.82));
    color: var(--color-light);
    font-weight: 600;
    text-align: center;
    box-shadow: 0 18px 36px rgba(13, 67, 166, 0.18);
    overflow-wrap: anywhere;
}

.departures__note {
    margin: 0 auto 30px;
    max-width: 760px;
    text-align: center;
    color: rgba(31, 42, 68, 0.72);
}

.departures__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.departure-card {
    --departure-accent: linear-gradient(90deg, rgba(13, 67, 166, 0.8), rgba(229, 169, 21, 0.85));
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 20px;
    border-radius: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 252, 0.92));
    border: 1px solid rgba(13, 67, 166, 0.1);
    box-shadow: 0 20px 40px rgba(13, 67, 166, 0.12);
    overflow: hidden;
    min-width: 0;
}

.departure-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: var(--departure-accent);
}

.departure-card::after {
    content: "";
    position: absolute;
    right: -54px;
    bottom: -68px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 67, 166, 0.12), rgba(13, 67, 166, 0));
    pointer-events: none;
}

.departure-card[data-theme="june"] {
    --departure-accent: linear-gradient(90deg, #6f7f93, #c1d0de);
}

.departure-card[data-theme="september"] {
    --departure-accent: linear-gradient(90deg, #8f1930, #e15c68);
}

.departure-card[data-theme="october"] {
    --departure-accent: linear-gradient(90deg, #17345e, #4f7fc7);
}

.departure-card[data-theme="december"] {
    --departure-accent: linear-gradient(90deg, #1f7c3d, #63c87d);
}

.departure-card__poster {
    position: relative;
    display: block;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 34px rgba(13, 67, 166, 0.18);
    background: rgba(255, 255, 255, 0.92);
    min-width: 0;
}

.departure-card__poster img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.departure-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 0;
}

.departure-card__badge {
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(13, 67, 166, 0.08);
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.departure-card h3 {
    margin: 0;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.15;
    color: var(--color-dark);
    max-width: 100%;
    overflow-wrap: anywhere;
    text-wrap: balance;
}

.departure-card__prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-width: 0;
}

.departure-price {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(13, 67, 166, 0.05);
    border: 1px solid rgba(13, 67, 166, 0.08);
    min-width: 0;
}

.departure-price__label {
    margin: 0 0 12px;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--color-dark);
    overflow-wrap: anywhere;
}

.departure-price__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}

.departure-price__list li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    min-width: 0;
}

.departure-price__name {
    color: rgba(31, 42, 68, 0.78);
    font-weight: 600;
    min-width: 0;
    overflow-wrap: anywhere;
}

.departure-price__value {
    color: var(--color-dark);
    font-weight: 700;
    white-space: nowrap;
    text-align: right;
}

.departure-card__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
    min-width: 0;
}

.departure-card__actions .btn {
    justify-content: center;
    min-width: 0;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
    padding-inline: 18px;
}

.departure-card__poster-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    min-height: 52px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(13, 67, 166, 0.06);
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    min-width: 0;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
}

.departure-card__poster-link::after {
    content: "→";
    transition: transform 0.2s ease;
}

.departure-card__poster-link:hover,
.departure-card__poster-link:focus {
    text-decoration: none;
}

.departure-card__poster-link:hover::after,
.departure-card__poster-link:focus::after {
    transform: translateX(4px);
}

@media (max-width: 1100px) {
    .departures__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .departures__included {
        padding: 16px 18px;
        border-radius: 18px;
        font-size: 0.95rem;
    }

    .departures__eyebrow {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
    }

    .departure-card {
        padding: 18px;
        border-radius: 22px;
    }

    .departure-card__prices {
        grid-template-columns: 1fr;
    }

    .departure-card__actions .btn,
    .departure-card__poster-link {
        width: 100%;
        justify-content: center;
    }

    .departure-price__list li {
        align-items: flex-start;
    }

    .departure-price__value {
        flex-shrink: 0;
    }
}

/* Article pages */
.article-page {
    background:
        radial-gradient(circle at top left, rgba(216, 166, 67, 0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(11, 59, 130, 0.12), transparent 32%),
        linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
}

.article-main {
    padding-top: 48px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.88);
}

.article-hero {
    position: relative;
    overflow: hidden;
    padding: 48px;
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(7, 28, 61, 0.95), rgba(11, 59, 130, 0.88)),
        url("../../image/IMG-20251009-WA0023.jpg") center/cover no-repeat;
    color: var(--color-light);
    box-shadow: var(--shadow-strong);
}

.article-hero::before {
    content: "";
    position: absolute;
    inset: auto -60px -80px auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(216, 166, 67, 0.28), rgba(216, 166, 67, 0));
    pointer-events: none;
}

.article-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    gap: 32px;
    align-items: center;
}

.article-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: rgba(242, 203, 120, 0.98);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.article-hero h1 {
    color: var(--color-light);
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: 1.06;
    margin-bottom: 18px;
}

.article-hero__lead {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.86);
    max-width: 64ch;
    margin-bottom: 22px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.article-meta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.92rem;
}

.article-hero__card {
    padding: 22px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 50px rgba(7, 28, 61, 0.22);
}

.article-hero__card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 16px;
}

.article-hero__card p {
    color: rgba(255, 255, 255, 0.84);
    margin: 0;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 32px;
    margin-top: 32px;
    align-items: start;
}

.article-content,
.article-sidebar {
    display: grid;
    gap: 24px;
}

.article-card,
.article-note,
.article-cta {
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
    border: var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.article-card h2,
.article-card h3 {
    margin-bottom: 14px;
}

.article-card p:last-child,
.article-note p:last-child,
.article-cta p:last-child {
    margin-bottom: 0;
}

.article-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.article-list li {
    position: relative;
    padding-left: 26px;
    color: rgba(32, 49, 79, 0.8);
    line-height: 1.55;
}

.article-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-secondary), #f2cb78);
    box-shadow: 0 0 0 4px rgba(216, 166, 67, 0.14);
}

.article-note {
    background: linear-gradient(135deg, rgba(216, 166, 67, 0.16), rgba(255, 255, 255, 0.92));
}

.article-sidebar__card {
    padding: 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.94));
    border: var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.article-sidebar__card h3 {
    margin-bottom: 14px;
}

.article-sidebar__card p {
    margin-bottom: 14px;
}

.article-sidebar__card .article-list {
    margin-bottom: 18px;
}

.article-sidebar__card .btn {
    width: 100%;
}

.article-cta {
    display: grid;
    gap: 18px;
    background: linear-gradient(135deg, rgba(11, 59, 130, 0.96), rgba(7, 28, 61, 0.94));
}

.article-cta h2,
.article-cta p {
    color: var(--color-light);
}

.article-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

@media (max-width: 992px) {
    .article-hero {
        padding: 32px;
    }

    .article-hero__grid,
    .article-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .article-main {
        padding-top: 28px;
    }

    .article-hero {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .article-card,
    .article-note,
    .article-cta,
    .article-sidebar__card {
        padding: 24px;
        border-radius: 22px;
    }

    .article-cta__actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    :root {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
