/* ==================================================================
   TRAVELGO — Travel Agency Landing Page
   Modern · Premium · Responsive
================================================================== */

:root {
    --navy: #08182f;
    --navy-2: #0e2a4d;
    --navy-light: #16365f;
    --accent: #f5a623;
    --accent-dark: #e08f0b;
    --white: #ffffff;
    --gray-100: #f6f8fb;
    --gray-200: #eef1f6;
    --text: #2d3850;
    --text-muted: #6b7690;
    --radius: 20px;
    --radius-lg: 28px;
    --shadow-sm: 0 6px 20px rgba(15, 34, 67, .08);
    --shadow-md: 0 14px 40px rgba(15, 34, 67, .12);
    --shadow-lg: 0 24px 60px rgba(15, 34, 67, .18);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
    --transition: all .35s cubic-bezier(.22, .68, .35, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--navy);
    font-weight: 700;
    line-height: 1.2;
}

a { text-decoration: none; }
img { max-width: 100%; display: block; }
/* ------------------------------------------------------------------
   Utility buttons
------------------------------------------------------------------ */
.tgo-btn {
    border: none;
    border-radius: 50px;
    padding: .72rem 1.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    transition: var(--transition);
    letter-spacing: .2px;
    box-shadow: var(--shadow-sm);
    white-space: nowrap;
}
.tgo-btn i { transition: var(--transition); }

.tgo-btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #2a1c02;
}
.tgo-btn-accent:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(245, 166, 35, .4); color: #1f1400; }
.tgo-btn-accent:hover i { transform: translateX(3px); }

.tgo-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .7);
    box-shadow: none;
}
.tgo-btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }
.tgo-btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .7);
    box-shadow: none;
}
.tgo-btn-outline-light:hover { background: var(--white); color: var(--navy); transform: translateY(-3px); }

.tgo-btn-whatsapp {
    background: #25d366;
    color: #ffffff;
}
.tgo-btn-whatsapp:hover { background: #1fb857; color: #fff; transform: translateY(-3px); box-shadow: 0 14px 30px rgba(37, 211, 102, .4); }

.tgo-btn-ghost {
    background: transparent;
    color: var(--accent-dark);
    border: 1px solid rgba(245, 166, 35, .5);
    padding: .5rem 1.2rem;
    box-shadow: none;
}
.tgo-btn-ghost:hover { background: var(--accent); color: #2a1c02; transform: translateY(-2px); }
.tgo-btn-ghost:hover i { transform: translateX(4px); }

.tgo-btn-small { padding: .55rem 1.15rem; font-size: .9rem; }

/* ------------------------------------------------------------------
   NAVBAR
------------------------------------------------------------------ */
.tgo-navbar {
    background: rgba(8, 24, 47, .55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    transition: var(--transition);
}
.tgo-navbar.scrolled {
    background: rgba(8, 24, 47, .96);
    box-shadow: 0 10px 30px rgba(8, 24, 47, .35);
    padding: .6rem 0;
}

.tgo-logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.55rem;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    letter-spacing: 1.5px;
}
.tgo-logo:hover { color: var(--white); }
.tgo-logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #2a1c02;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.tgo-navbar .nav-link {
    color: rgba(255, 255, 255, .85);
    font-weight: 600;
    margin: 0 .35rem;
    position: relative;
    padding: .5rem .6rem;
    transition: var(--transition);
}
.tgo-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: .6rem;
    bottom: .25rem;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: var(--transition);
}
.tgo-navbar .nav-link:hover, .tgo-navbar .nav-link.active {
    color: var(--white);
}
.tgo-navbar .nav-link:hover::after, .tgo-navbar .nav-link.active::after { width: calc(100% - 1.2rem); }

.tgo-navbar .navbar-toggler {
    border-color: rgba(255, 255, 255, .4);
    color: var(--white);
}
.tgo-navbar .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(245, 166, 35, .4); }

@media (max-width: 991.98px) {
    .tgo-navbar { background: rgba(8, 24, 47, .96); }
    .tgo-navbar .navbar-collapse {
        background: var(--navy);
        margin-top: 1rem;
        padding: 1rem 1.25rem 1.25rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }
    .tgo-navbar .navbar-toggler { margin-left: auto; }
    .tgo-navbar .nav-link { padding: .6rem 0; }
}
/* ------------------------------------------------------------------
   HERO
------------------------------------------------------------------ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 1.6s ease, transform 8s ease;
}
.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    animation: slowZoom 14s ease-in-out forwards;
}
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 7rem 0 5rem;
    text-align: center;
}
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: .82rem;
    margin-bottom: 1.4rem;
}
.eyebrow-line { width: 34px; height: 2px; background: var(--accent); }
.hero-title {
    color: var(--white);
    font-size: clamp(2.9rem, 8vw, 5.6rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.4rem;
    text-shadow: 0 10px 40px rgba(0, 0, 0, .35);
}
.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    color: rgba(255, 255, 255, .92);
    max-width: 620px;
    margin: 0 auto 2.2rem;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-trust {
    margin-top: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, .9);
    font-size: .9rem;
    font-weight: 500;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust i { color: var(--accent); }
.hero-trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}
.hero-scroll a {
    color: rgba(255, 255, 255, .8);
    font-size: 1.6rem;
    animation: bounce 2s infinite;
    display: inline-block;
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* ------------------------------------------------------------------
   SECTIONS
------------------------------------------------------------------ */
.section { padding: 6rem 0; position: relative; }
.section.alt { background: var(--gray-100); }

.section-head { max-width: 620px; margin: 0 auto 3.4rem; }
.section-eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 800;
    font-size: .78rem;
    margin-bottom: .8rem;
}
.section-title {
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    margin-bottom: .8rem;
}
.section-title.text-start { text-align: left; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; }
/* ------------------------------------------------------------------
   DESTINATION CARDS
------------------------------------------------------------------ */
.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    background: var(--white);
}
.dest-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.dest-card-media {
    position: relative;
    height: 300px;
    overflow: hidden;
}
.dest-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.dest-card:hover .dest-card-media img { transform: scale(1.12); }
.dest-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 24, 47, .55));
}
.dest-card-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    padding: .28rem .8rem;
    border-radius: 50px;
    letter-spacing: .5px;
}
.dest-card-name {
    position: absolute;
    bottom: 1.1rem;
    left: 1.25rem;
    z-index: 2;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}
.dest-card-body { padding: 1.5rem; }
.dest-card-title {
    font-size: 1.35rem;
    margin-bottom: .4rem;
    transition: var(--transition);
}
.dest-card:hover .dest-card-title { color: var(--accent-dark); }
.dest-card-desc { color: var(--text-muted); font-size: .95rem; margin-bottom: 1.1rem; }

/* ------------------------------------------------------------------
   PACKAGE CARDS
------------------------------------------------------------------ */
.packages { background: var(--gray-100); }
.pkg-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pkg-card-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.pkg-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.pkg-card:hover .pkg-card-media img { transform: scale(1.1); }
.pkg-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8, 24, 47, .35));
}

.pkg-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #2a1c02;
    font-size: .7rem;
    font-weight: 800;
    padding: .3rem .8rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: .3rem;
}
.pkg-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    background: rgba(255, 255, 255, .92);
    color: var(--navy);
    font-size: .78rem;
    font-weight: 700;
    padding: .35rem .85rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.pkg-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.pkg-dest { color: var(--text-muted); font-size: .86rem; margin-bottom: .35rem; display: flex; align-items: center; gap: .35rem; }
.pkg-dest i { color: var(--accent-dark); }
.pkg-card-title { font-size: 1.35rem; margin-bottom: 1.2rem; }
.pkg-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    flex-wrap: wrap;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}
.pkg-price { display: flex; flex-direction: column; line-height: 1.1; }
.pkg-from { font-size: .74rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.pkg-amount {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.45rem;
    color: var(--accent-dark);
}
/* ------------------------------------------------------------------
   WHY CARDS
------------------------------------------------------------------ */
.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.3rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(245, 166, 35, .14), rgba(245, 166, 35, .3));
    color: var(--accent-dark);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.why-card:hover .why-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #2a1c02; transform: rotate(-6deg); }
.why-title { font-size: 1.25rem; margin-bottom: .6rem; }
.why-desc { color: var(--text-muted); font-size: .95rem; margin: 0; }

/* ------------------------------------------------------------------
   STATS
------------------------------------------------------------------ */
.stats {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}
.stats::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .18), transparent 70%);
}
.stats::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -5%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 70%);
}
.stats-row { position: relative; z-index: 2; }
.stat { text-align: center; padding: 1rem 0; }
.stat-number {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: var(--accent);
    line-height: 1.1;
}
.stat-label {
    color: rgba(255, 255, 255, .85);
    font-size: .95rem;
    font-weight: 500;
    letter-spacing: .3px;
}

/* ------------------------------------------------------------------
   ABOUT
------------------------------------------------------------------ */
.about { background: var(--gray-100); }
.about-media { position: relative; }
.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.about-img-card {
    position: absolute;
    bottom: -2.2rem;
    right: 1.5rem;
    width: 210px;
    height: 150px;
    border: 6px solid var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    display: none;
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
    position: absolute;
    top: 2rem;
    left: -1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 1.1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: .9rem;
}
.about-badge-num {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.4rem;
    color: var(--accent-dark);
    line-height: 1;
}
.about-badge-label {
    font-size: .82rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.3;
}
.about-text { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 1.2rem; }
.about-list { margin: 1.8rem 0 2.2rem; }
.about-list li {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-weight: 600;
    color: var(--text);
    padding: .45rem 0;
}
.about-list i { color: var(--accent-dark); font-size: 1.15rem; }
/* ------------------------------------------------------------------
   REVIEWS
------------------------------------------------------------------ */
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}
.review-card::before {
    content: "\201C";
    position: absolute;
    top: 1.4rem;
    right: 1.8rem;
    font-family: var(--font-display);
    font-size: 4rem;
    color: rgba(245, 166, 35, .18);
    line-height: 1;
}
.review-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--accent); margin-bottom: 1.1rem; display: flex; gap: .15rem; }
.review-stars i { font-size: 1rem; }
.review-text {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.6rem;
    flex: 1;
    position: relative;
    z-index: 1;
}
.review-author { display: flex; align-items: center; gap: .9rem; }
.review-author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.review-author div { display: flex; flex-direction: column; }
.review-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.review-role { font-size: .82rem; color: var(--text-muted); }

/* ------------------------------------------------------------------
   CTA
------------------------------------------------------------------ */
.cta {
    position: relative;
    color: var(--white);
    overflow: hidden;
    padding: 6.5rem 0;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.cta-content { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 1.2rem;
}
.cta-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}
.cta-text { color: rgba(255, 255, 255, .9); font-size: 1.15rem; margin-bottom: 2.2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
/* ------------------------------------------------------------------
   FOOTER
------------------------------------------------------------------ */
.tgo-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .8);
    padding: 5rem 0 0;
}
.footer-top { padding-bottom: 3rem; }
.footer-logo { color: var(--white); margin-bottom: 1.2rem; display: inline-flex; }
.footer-logo:hover { color: var(--white); }
.footer-tagline { color: rgba(255, 255, 255, .75); margin-bottom: 1.4rem; max-width: 260px; }
.footer-social { display: flex; gap: .7rem; }
.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: var(--transition);
}
.social-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #2a1c02;
    transform: translateY(-4px);
}
.footer-title {
    color: var(--white);
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.footer-links li, .footer-contact li { margin-bottom: .7rem; }
.footer-links a {
    color: rgba(255, 255, 255, .75);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
}
.footer-links a::before { content: "\F285"; font-family: "bootstrap-icons"; font-size: .7rem; color: var(--accent); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li { display: flex; gap: .8rem; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: .25rem; }
.footer-contact a { color: rgba(255, 255, 255, .75); transition: var(--transition); }
.footer-contact a:hover { color: var(--accent); }
.footer-note { color: rgba(255, 255, 255, .65); font-size: .9rem; margin-bottom: 1.1rem; }
.footer-newsletter .form-control {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--white);
    border-radius: 50px 0 0 50px;
    height: 48px;
}
.footer-newsletter .form-control::placeholder { color: rgba(255, 255, 255, .5); }
.footer-newsletter .form-control:focus { background: rgba(255, 255, 255, .12); box-shadow: none; border-color: var(--accent); }
.footer-newsletter .btn {
    border-radius: 0 50px 50px 0;
    height: 48px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 1.4rem 0;
    text-align: center;
    font-size: .88rem;
    color: rgba(255, 255, 255, .55);
}
.footer-bottom p { margin: 0; }
/* ------------------------------------------------------------------
   FLOATING WHATSAPP
------------------------------------------------------------------ */
.whatsapp-float {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    box-shadow: 0 12px 30px rgba(37, 211, 102, .5);
    z-index: 1000;
    transition: var(--transition);
}
.whatsapp-float:hover { color: #fff; transform: scale(1.1) translateY(-2px); }
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: var(--white);
    font-size: .82rem;
    font-weight: 600;
    padding: .45rem .85rem;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; right: calc(100% + 14px); }

/* ------------------------------------------------------------------
   BACK TO TOP
------------------------------------------------------------------ */
.back-to-top {
    position: fixed;
    bottom: 1.6rem;
    left: 1.6rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: none;
    background: var(--navy);
    color: var(--white);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-md);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent-dark); color: #2a1c02; }
/* ------------------------------------------------------------------
   REVEAL ANIMATION
------------------------------------------------------------------ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ------------------------------------------------------------------
   RESPONSIVE
------------------------------------------------------------------ */
@media (max-width: 991.98px) {
    .section { padding: 4.5rem 0; }
    .about-img-main { height: 420px; }
    .about-badge { left: 1rem; top: 1rem; }
}

@media (max-width: 767.98px) {
    .hero { min-height: 92vh; }
    .hero-content { padding: 6.5rem 0 4rem; }
    .hero-trust { gap: .5rem; }
    .hero-actions { flex-direction: column; align-items: stretch; width: 100%; max-width: 340px; margin: 0 auto; }
    .section-title { font-size: 2rem; }
    .dest-card-media { height: 250px; }
    .about-img-main { height: 340px; }
    .about-img-card { width: 160px; height: 120px; bottom: -1.5rem; right: .5rem; }
    .whatsapp-float { width: 54px; height: 54px; font-size: 1.7rem; }
}

@media (max-width: 575.98px) {
    .section { padding: 3.5rem 0; }
    .hero-trust { flex-direction: column; gap: .35rem; }
    .hero-trust .dot { display: none; }
    .cta-actions, .hero-actions { flex-direction: column; align-items: stretch; }
    .about-badge { padding: .8rem 1rem; }
    .about-badge-num { font-size: 1.8rem; }
}