:root {
    --pt-green: #123C2D;
    --pt-green-2: #0D2B22;
    --pt-gold: #C9913B;
    --pt-sand: #F7F1E8;
    --pt-ink: #18221F;
    --pt-muted: #647067;
    --pt-white: #FFFFFF;
    --pt-radius: 24px;
    --pt-shadow: 0 24px 70px rgba(18, 60, 45, .14);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--pt-ink);
    background: #fff;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--pt-gold); }

.navbar-blur {
    background: rgba(255, 255, 255, .82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(18, 60, 45, .08);
    transition: all .25s ease;
}

.navbar-blur.scrolled { box-shadow: 0 12px 30px rgba(0,0,0,.07); }

.brand-mark { display: flex; align-items: center; gap: .65rem; font-weight: 800; color: var(--pt-green); }
.brand-symbol {
    width: 42px; height: 42px; border-radius: 50%; display: inline-grid; place-items: center;
    color: white; background: linear-gradient(135deg, var(--pt-green), var(--pt-gold)); font-size: .8rem;
}
.brand-text { letter-spacing: -.03em; }

.nav-link { font-weight: 600; color: rgba(24,34,31,.78); border-radius: 999px; padding: .6rem .9rem !important; }
.nav-link.active, .nav-link:hover { background: rgba(18, 60, 45, .08); color: var(--pt-green); }

.btn-primary {
    background: var(--pt-green);
    border-color: var(--pt-green);
    box-shadow: 0 14px 30px rgba(18, 60, 45, .18);
}
.btn-primary:hover { background: var(--pt-green-2); border-color: var(--pt-green-2); }
.btn-reserve { padding-inline: 1.25rem; }

.hero-section {
    position: relative;
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(18,60,45,.78), rgba(12,27,23,.45)),
        url('/assets/img/hero-cusco.jpg') center/cover no-repeat;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(201,145,59,.28), transparent 32%);
}
.text-white-75 { color: rgba(255,255,255,.78); }
.eyebrow, .eyebrow-dark {
    display: inline-flex; align-items: center; gap: .5rem;
    font-weight: 800; text-transform: uppercase; letter-spacing: .12em; font-size: .76rem;
    color: rgba(255,255,255,.82); margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--pt-gold); }

.search-card {
    padding: 2rem;
    border-radius: 32px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(18px);
    box-shadow: var(--pt-shadow);
}
.search-card h2 { font-weight: 800; letter-spacing: -.04em; }
.search-card p { color: var(--pt-muted); }
.category-pills { display: flex; flex-wrap: wrap; gap: .65rem; }
.category-pills a, .filter-bar a {
    display: inline-flex; padding: .65rem 1rem; border-radius: 999px;
    background: rgba(18, 60, 45, .08); color: var(--pt-green); font-weight: 700;
}
.category-pills a:hover, .filter-bar a:hover, .filter-bar a.selected { background: var(--pt-green); color: white; }

.section-padding { padding: 6rem 0; }
.section-heading { max-width: 720px; margin-bottom: 3rem; }
.section-heading h2, .trust-section h2 { font-weight: 850; letter-spacing: -.055em; font-size: clamp(2rem, 4vw, 3.2rem); }
.section-heading p, .trust-section p { color: var(--pt-muted); font-size: 1.08rem; }

.tour-card {
    border: 1px solid rgba(18,60,45,.09);
    border-radius: var(--pt-radius);
    overflow: hidden;
    background: white;
    box-shadow: 0 16px 50px rgba(18,60,45,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--pt-shadow); }
.tour-image-link { display: block; overflow: hidden; height: 245px; background: var(--pt-sand); }
.tour-image-link img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.tour-card:hover img { transform: scale(1.05); }
.tour-card-body { padding: 1.35rem; }
.tour-meta { display: flex; justify-content: space-between; gap: 1rem; color: var(--pt-gold); font-size: .78rem; text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.tour-card h3 { font-size: 1.2rem; font-weight: 820; letter-spacing: -.03em; margin: .85rem 0 .55rem; }
.tour-card p { color: var(--pt-muted); min-height: 58px; }
.tour-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border-top: 1px solid rgba(18,60,45,.08); padding-top: 1rem; }
.price { font-weight: 850; color: var(--pt-green); }
.tour-card-footer a { color: var(--pt-gold); font-weight: 800; }

.trust-section { padding: 6rem 0; background: var(--pt-sand); }
.trust-card {
    background: white; padding: 1.45rem; border-radius: 24px; min-height: 145px;
    border: 1px solid rgba(18,60,45,.08); box-shadow: 0 12px 35px rgba(18,60,45,.06);
}
.trust-card strong { display: block; font-size: 1.1rem; margin-bottom: .4rem; }
.trust-card span { color: var(--pt-muted); }

.page-hero {
    position: relative; background: linear-gradient(135deg, var(--pt-green), #1D5A45); color: white;
    padding: 10rem 0 5rem; overflow: hidden;
}
.page-hero.compact::after {
    content: ''; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px; border-radius: 50%;
    background: rgba(201,145,59,.22);
}
.page-hero h1 { font-weight: 850; letter-spacing: -.055em; font-size: clamp(2.4rem, 6vw, 4.6rem); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 1.15rem; max-width: 680px; }

.filter-bar { display: flex; gap: .7rem; flex-wrap: wrap; }
.empty-state { padding: 2rem; border-radius: 24px; background: var(--pt-sand); color: var(--pt-muted); text-align: center; }

.tour-detail-hero { position: relative; min-height: 78vh; display: flex; align-items: end; overflow: hidden; }
.tour-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-detail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(5,20,15,.82)); }
.tour-detail-content { max-width: 850px; padding: 10rem 0 4rem; color: white; }
.tour-detail-content h1 { font-weight: 850; letter-spacing: -.055em; font-size: clamp(2.4rem, 6vw, 5rem); }
.tour-detail-content p { color: rgba(255,255,255,.82); font-size: 1.15rem; }
.tour-quick-data { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.4rem; }
.tour-quick-data span { padding: .7rem 1rem; border-radius: 999px; background: rgba(255,255,255,.14); backdrop-filter: blur(10px); font-weight: 700; }

.content-panel, .booking-card, .form-card, .contact-info-card, .blog-card {
    background: white; border-radius: 28px; padding: 2rem; border: 1px solid rgba(18,60,45,.09); box-shadow: 0 16px 50px rgba(18,60,45,.07);
    margin-bottom: 1.5rem;
}
.content-panel h2 { font-size: 1.45rem; font-weight: 820; letter-spacing: -.03em; color: var(--pt-green); }
.content-panel p { color: #49534e; line-height: 1.75; }
.booking-card { top: 95px; }
.booking-card span { color: var(--pt-muted); font-weight: 700; }
.booking-card strong { display: block; font-size: 2.4rem; color: var(--pt-green); margin: .2rem 0 1rem; }
.booking-card p { color: var(--pt-muted); }

.destination-card {
    min-height: 310px; border-radius: 30px; overflow: hidden; padding: 1.5rem; display: flex; align-items: end;
    background: linear-gradient(135deg, rgba(18,60,45,.88), rgba(18,60,45,.55)), var(--pt-sand); background-size: cover; background-position: center;
    color: white; box-shadow: var(--pt-shadow);
}
.destination-card span, .blog-card span { color: var(--pt-gold); text-transform: uppercase; font-size: .76rem; font-weight: 850; letter-spacing: .12em; }
.destination-card h3, .blog-card h3 { font-weight: 820; letter-spacing: -.04em; }
.destination-card p { color: rgba(255,255,255,.78); }
.blog-card { height: 100%; }
.blog-card p, .contact-info-card p { color: var(--pt-muted); }
.contact-line { padding: .9rem 0; border-bottom: 1px solid rgba(18,60,45,.08); }
.form-control { min-height: 52px; border-radius: 14px; border-color: rgba(18,60,45,.15); }
.form-control:focus { box-shadow: 0 0 0 .25rem rgba(18,60,45,.12); border-color: var(--pt-green); }

.site-footer { background: #0C1D18; color: rgba(255,255,255,.78); padding: 5rem 0 2rem; }
.footer-brand { font-size: 1.5rem; font-weight: 850; color: white; }
.footer-text { color: rgba(255,255,255,.65); }
.site-footer h6 { color: white; font-weight: 800; }
.site-footer a { display: block; color: rgba(255,255,255,.7); margin: .45rem 0; }
.site-footer a:hover { color: var(--pt-gold); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .9rem; }

/* =========================================================
   WHATSAPP FLOAT BUTTON
   ========================================================= */

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 999;
    background: #20B15A;
    color: white;
    border-radius: 999px;
    font-weight: 850;
    box-shadow: 0 18px 38px rgba(32,177,90,.32);
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

.whatsapp-float:hover {
    color: white;
    transform: translateY(-3px) scale(1.04);
    background: #18a84f;
    box-shadow: 0 22px 48px rgba(32,177,90,.38);
}

.whatsapp-float-icon {
    width: 64px;
    height: 64px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float-icon svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float-icon {
        width: 56px;
        height: 56px;
    }

    .whatsapp-float-icon svg {
        width: 30px;
        height: 30px;
    }
}

.whatsapp-float:hover { color: white; transform: translateY(-2px); }

@media (max-width: 991px) {
    .navbar-collapse { padding: 1rem 0; }
    .section-padding { padding: 4rem 0; }
    .hero-section { min-height: auto; padding: 5rem 0 3rem; }
    .min-vh-100 { min-height: auto !important; }
}

/* === Patch v2: landing de conversión y paquetes === */
.bg-soft { background: #F7F1E8; }

.hero-facts {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.hero-facts span {
    display: inline-flex;
    align-items: center;
    padding: .55rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(12px);
    font-size: .86rem;
    font-weight: 750;
}

.step-card {
    position: relative;
    padding: 2rem;
    border-radius: 28px;
    background: white;
    border: 1px solid rgba(18,60,45,.08);
    box-shadow: 0 16px 50px rgba(18,60,45,.06);
    overflow: hidden;
}
.step-card::after {
    content: '';
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(201,145,59,.12);
}
.step-card span {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    background: var(--pt-green);
    color: white;
    font-weight: 850;
    margin-bottom: 1.25rem;
}
.step-card h3 {
    position: relative;
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: -.035em;
    color: var(--pt-green);
}
.step-card p {
    position: relative;
    color: var(--pt-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0C1D18, var(--pt-green));
}
.final-cta.compact-cta { padding-top: 0; background: white; }
.final-cta.compact-cta .final-cta-box { background: var(--pt-sand); color: var(--pt-ink); }
.final-cta.compact-cta .final-cta-box p { color: var(--pt-muted); }
.final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.4rem;
    border-radius: 34px;
    background: rgba(255,255,255,.08);
    color: white;
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 24px 70px rgba(0,0,0,.18);
}
.final-cta-box h2 {
    font-weight: 850;
    letter-spacing: -.055em;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: .6rem;
}
.final-cta-box p {
    color: rgba(255,255,255,.72);
    max-width: 720px;
    margin-bottom: 0;
    font-size: 1.08rem;
}

@media (max-width: 767px) {
    .final-cta-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 1.6rem;
    }
}

.destination-card-link {
    display: flex;
    min-height: 280px;
    text-decoration: none;
    color: inherit;
    transition: transform .25s ease, box-shadow .25s ease;
}

.destination-card-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
    color: inherit;
}

.destination-card-cta {
    display: inline-flex;
    margin-top: 14px;
    font-size: .9rem;
    color: #d49a2a;
}

.destination-detail-hero {
    min-height: 520px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.destination-detail-hero h1 {
    max-width: 850px;
}

.destination-detail-hero p {
    max-width: 780px;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, .86);
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.content-card {
    background: #fff;
    border: 1px solid rgba(15, 43, 33, .1);
    border-radius: 28px;
    padding: 36px;
    box-shadow: 0 20px 70px rgba(15, 43, 33, .08);
}

.content-card h2 {
    color: #123c2d;
    font-weight: 800;
    margin-bottom: 16px;
}

.content-card p {
    color: #56635d;
    line-height: 1.8;
    font-size: 1.05rem;
}

.sticky-card {
    position: sticky;
    top: 110px;
}

/* =========================================================
   DESTINATION CARDS - Overlay oscuro + vidrio para legibilidad
   ========================================================= */

.destination-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #123c2d;
}

/* Capa oscura sobre la imagen */
.destination-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(5, 35, 25, 0.20) 0%,
        rgba(5, 35, 25, 0.55) 45%,
        rgba(5, 35, 25, 0.88) 100%
    );
    z-index: 1;
}

/* Suave viñeta para reforzar contraste */
.destination-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top right,
        rgba(212, 154, 42, 0.16),
        transparent 38%
    );
    z-index: 1;
}

/* Caja de texto tipo vidrio */
.destination-card > div {
    position: relative;
    z-index: 2;
    margin: 22px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

/* Textos legibles encima del vidrio */
.destination-card span {
    color: #d49a2a;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.destination-card h3 {
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.destination-card p {
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.destination-card-cta {
    color: #d49a2a;
    font-weight: 800;
}

/* =========================================================
   BRAND / LOGO
   ========================================================= */

.site-logo {
    height: 54px;
    width: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 768px) {
    .site-logo {
        height: 42px;
    }
}

/* =========================================================
   HOME HERO - Imagen principal con overlay premium
   ========================================================= */

.home-hero,
.hero-section,
.hero {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.92) 0%,
            rgba(5, 35, 25, 0.78) 42%,
            rgba(5, 35, 25, 0.48) 100%
        ),
        url('/assets/img/banners/home-hero-v2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Refuerzo visual dorado suave */
.home-hero::after,
.hero-section::after,
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(212, 154, 42, 0.22),
            transparent 36%
        );
    pointer-events: none;
    z-index: 1;
}

/* Asegura que el contenido quede encima */
.home-hero > *,
.hero-section > *,
.hero > * {
    position: relative;
    z-index: 2;
}

/* =========================================================
   PACKAGES BANNER - Sección visual para paquetes turísticos
   ========================================================= */

.packages-banner {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.92) 0%,
            rgba(5, 35, 25, 0.72) 48%,
            rgba(5, 35, 25, 0.20) 100%
        ),
        url('/assets/img/banners/packages.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 30px 90px rgba(5, 35, 25, 0.18);
}

.packages-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 80% 18%,
        rgba(212, 154, 42, 0.22),
        transparent 38%
    );
    pointer-events: none;
}

/* =========================================================
   PACKAGES PAGE HERO
   ========================================================= */

.packages-hero {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.94) 0%,
            rgba(5, 35, 25, 0.78) 44%,
            rgba(5, 35, 25, 0.30) 100%
        ),
        url('/assets/img/banners/packages.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.packages-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 82% 20%,
        rgba(212, 154, 42, 0.22),
        transparent 38%
    );
    pointer-events: none;
}

.packages-hero .container {
    position: relative;
    z-index: 2;
}

.packages-hero-content {
    max-width: 760px;
    padding: 8rem 0 5rem;
}

.packages-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.065em;
    margin-bottom: 1.35rem;
}

.packages-hero-content p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .packages-hero {
        min-height: auto;
    }

    .packages-hero-content {
        padding: 6rem 0 4rem;
    }
}

.packages-banner-content .eyebrow {
    color: #d49a2a;
}

.packages-banner-content h2 {
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 18px;
}

.packages-banner-content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

@media (max-width: 768px) {
    .packages-banner {
        min-height: auto;
        border-radius: 26px;
    }

    .packages-banner-content {
        padding: 34px 26px;
    }
}

/* =========================================================
   VISUAL PAGE HEROES - Tours / Destinations
   ========================================================= */

.tours-hero,
.destinations-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tours-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.94) 0%,
            rgba(5, 35, 25, 0.76) 46%,
            rgba(5, 35, 25, 0.34) 100%
        ),
        url('/assets/img/banners/planifica-tu-viaje.webp');
}

.destinations-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.94) 0%,
            rgba(5, 35, 25, 0.72) 46%,
            rgba(5, 35, 25, 0.30) 100%
        ),
        url('/assets/img/banners/home-hero.webp');
}

.tours-hero::after,
.destinations-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 82% 20%,
        rgba(212, 154, 42, 0.22),
        transparent 38%
    );
    pointer-events: none;
}

.tours-hero .container,
.destinations-hero .container {
    position: relative;
    z-index: 2;
}

.page-visual-hero-content {
    max-width: 820px;
    padding: 8rem 0 5rem;
}

.page-visual-hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.065em;
    margin-bottom: 1.35rem;
}

.page-visual-hero-content p {
    max-width: 690px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .tours-hero,
    .destinations-hero {
        min-height: auto;
    }

    .page-visual-hero-content {
        padding: 6rem 0 4rem;
    }
}

/* =========================================================
   BLOG PAGE HERO
   ========================================================= */

.blog-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.94) 0%,
            rgba(5, 35, 25, 0.76) 46%,
            rgba(5, 35, 25, 0.34) 100%
        ),
        url('/assets/img/banners/blog-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.blog-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 82% 20%,
        rgba(212, 154, 42, 0.22),
        transparent 38%
    );
    pointer-events: none;
}

.blog-hero .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   BLOG CARDS
   ========================================================= */

.blog-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8f4ed 100%);
}

.blog-card-featured {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    padding: 2rem;
    border-radius: 30px;
    border: 1px solid rgba(18, 60, 45, 0.10);
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 154, 42, 0.16),
            transparent 34%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(247, 241, 232, 0.92) 100%
        );
    box-shadow: 0 18px 55px rgba(18, 60, 45, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card-featured::before {
    content: "";
    position: absolute;
    right: -55px;
    top: -55px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(18, 60, 45, 0.08);
}

.blog-card-featured::after {
    content: "";
    position: absolute;
    left: -40px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(212, 154, 42, 0.10);
}

.blog-card-featured:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 70px rgba(18, 60, 45, 0.14);
}

.blog-card-featured span,
.blog-card-featured h3,
.blog-card-featured p,
.blog-card-featured strong {
    position: relative;
    z-index: 2;
}

.blog-card-featured h3 {
    color: var(--pt-ink);
    font-size: 1.45rem;
    line-height: 1.18;
    margin: 0.75rem 0 1rem;
}

.blog-card-featured p {
    color: var(--pt-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.blog-card-featured strong {
    display: inline-flex;
    color: var(--pt-gold);
    font-size: 0.9rem;
    font-weight: 850;
}

/* =========================================================
   CONTACT PAGE HERO
   ========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 35, 25, 0.94) 0%,
            rgba(5, 35, 25, 0.76) 46%,
            rgba(5, 35, 25, 0.34) 100%
        ),
        url('/assets/img/banners/contact-hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 82% 20%,
        rgba(212, 154, 42, 0.22),
        transparent 38%
    );
    pointer-events: none;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8f4ed 100%);
}

.contact-info-card-premium,
.form-card-premium {
    position: relative;
    overflow: hidden;
}

.contact-info-card-premium::after {
    content: "";
    position: absolute;
    right: -65px;
    top: -65px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(212, 154, 42, 0.12);
    pointer-events: none;
}

.contact-info-card-premium h2,
.form-card-premium h2 {
    color: var(--pt-green);
    font-weight: 850;
    letter-spacing: -0.045em;
}

.contact-info-card-premium p {
    color: var(--pt-muted);
    line-height: 1.7;
}

.contact-line {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(18, 60, 45, 0.08);
}

.contact-line strong {
    color: var(--pt-green);
}

.contact-line span {
    color: var(--pt-muted);
    text-align: right;
}

.contact-mini-note {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(18, 60, 45, 0.06);
    color: var(--pt-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.form-card-premium {
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 154, 42, 0.10),
            transparent 34%
        ),
        #ffffff;
}

.form-card-premium .form-label {
    color: var(--pt-ink);
    font-weight: 700;
}

.form-card-premium .form-control {
    background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 768px) {
    .contact-line {
        flex-direction: column;
        gap: 0.25rem;
    }

    .contact-line span {
        text-align: left;
    }
}