/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--navy);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(134, 179, 122, 0.28) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 20% 80%, rgba(120, 138, 116, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #0e1b0d 0%, #172a15 40%, #1a2b17 100%);
    z-index: 0;
}

.hero__grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(162, 189, 154, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(162, 189, 154, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 1;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: rgba(134, 179, 122, 0.22);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero__orb--2 {
    width: 300px;
    height: 300px;
    background: rgba(163, 203, 140, 0.15);
    bottom: 100px;
    left: 10%;
    animation-delay: -3s;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: rgba(120, 138, 116, 0.22);
    top: 40%;
    right: 30%;
    animation-delay: -5s;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: clamp(6rem, 15vh, 10rem) 0 clamp(4rem, 8vh, 6rem);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.4rem;
    background: rgba(162, 189, 154, 0.12);
    border: 1px solid rgba(162, 189, 154, 0.35);
    border-radius: 100px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.hero__badge span {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero__eyebrow {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1rem;
    display: block;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero__title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.hero__title strong {
    font-weight: 600;
    display: block;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s 0.35s ease both;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.5s ease both;
}

/* Visa button */
.hero__visa-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.hero__visa-btn:hover {
    background: rgba(134, 179, 122, 0.3);
    border-color: var(--teal-light);
    transform: translateY(-2px);
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.7s 0.65s ease both;
    flex-wrap: wrap;
}

.hero__stat {
    text-align: left;
}

.hero__stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: fadeIn 1s 1.2s ease both;
}

.hero__scroll span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Destination cards floating on right */
.hero__destinations {
    position: absolute;
    right: clamp(2rem, 8vw, 8rem);
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 2;
    animation: slideInLeft 0.8s 0.8s ease both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate(40px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.hero__dest-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-width: 210px;
    transition: var(--transition);
    cursor: pointer;
}

.hero__dest-card:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(162, 189, 154, 0.6);
    transform: translateX(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__dest-flag {
    font-size: 1.8rem;
    line-height: 1;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.5));
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 4px 6px;
}

.hero__dest-info {
    flex: 1;
}

.hero__dest-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero__dest-price {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
}

.hero__dest-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: var(--transition);
    font-weight: bold;
}

.hero__dest-card:hover .hero__dest-arrow {
    color: var(--gold);
    transform: translateX(3px);
}

/* Homepage sections */
.home-featured {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: var(--white);
}

.home-featured__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.home-featured__footer {
    text-align: center;
    margin-top: 2.5rem;
}

.home-services {
    padding: clamp(4rem, 8vh, 6rem) 0;
    background: var(--off-white);
}

.home-services__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.home-services__header p {
    color: var(--gray-700);
    max-width: 520px;
    margin: 0.75rem auto 0;
    font-size: 1rem;
    line-height: 1.7;
}

.home-services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.home-service-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-dark);
}

.home-service-item:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(134, 179, 122, 0.15);
}

.home-service-item__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
}

.home-service-item__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--teal);
    fill: none;
}

.home-services__footer {
    text-align: center;
}

/* CTA Banner */
.home-cta {
    padding: clamp(4rem, 8vh, 5rem) 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.home-cta__inner {
    position: relative;
    text-align: center;
}

.home-cta__label {
    color: rgba(255, 255, 255, 0.6);
}

.home-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: white;
    margin-bottom: 1rem;
}

.home-cta__title em {
    font-style: italic;
    color: var(--gold);
}

.home-cta__desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.home-cta__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .hero__destinations {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero__stats {
        gap: 1.5rem;
    }

    .hero__stat-divider {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }
}