/*
Theme Name: Enroma Theme
Theme URI: https://enromatransfers.com
Author: Enroma Transfers
Description: Custom Astra child theme for Enroma Transfers.
Template: astra
Version: 3.0.0
Text Domain: enroma-theme
*/

/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
    --orange: #ee682a;
    --orange-dark: #d45a20;
    --orange-glow: rgba(238, 104, 42, .15);
    --green: #2dba7d;
    --dark: #0f172a;
    --dark-2: #1e293b;
    --body: #475569;
    --muted: #94a3b8;
    --light: #f8fafc;
    --lighter: #f1f5f9;
    --border: #e2e8f0;
    --white: #fff;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --max: 1140px;
    --narrow: 720px;
    --r: 16px;
    --r-sm: 10px;
    --r-xs: 6px;
    --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -2px rgba(0,0,0,.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -4px rgba(0,0,0,.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.08), 0 8px 10px -6px rgba(0,0,0,.04);
    --ease: cubic-bezier(.215, .61, .355, 1);
    --duration: .35s;
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--body);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
    color: var(--dark);
    line-height: 1.15;
    font-weight: 700;
    text-wrap: balance;
}

p { text-wrap: pretty; }

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: var(--narrow);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.anim {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.anim[data-anim="fade-right"] { transform: translateX(-40px); }
.anim[data-anim="fade-left"] { transform: translateX(40px); }

.anim[data-delay="1"] { transition-delay: .1s; }
.anim[data-delay="2"] { transition-delay: .2s; }
.anim[data-delay="3"] { transition-delay: .3s; }
.anim[data-delay="4"] { transition-delay: .4s; }
.anim[data-delay="5"] { transition-delay: .5s; }

.anim.is-visible {
    opacity: 1;
    transform: translate(0);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.site-header.scrolled {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,.04);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 12px;
}

.site-logo {
    margin-right: auto;
    flex-shrink: 0;
}

.site-logo img {
    height: 34px;
    width: auto;
    transition: opacity var(--duration), filter var(--duration);
    filter: brightness(0) invert(1);
}

.site-header.scrolled .site-logo img {
    filter: none;
}

.site-logo:hover img { opacity: .8; }

.site-logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: -.02em;
    transition: color var(--duration);
}

.site-header.scrolled .site-logo-text {
    color: var(--dark);
}

/* Nav */
.main-nav {
    display: none;
    align-items: center;
}

.main-nav .nav-list {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav-list li a {
    display: block;
    padding: 7px 13px;
    font-size: .84rem;
    font-weight: 500;
    color: rgba(255,255,255,.85);
    border-radius: var(--r-xs);
    transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
    letter-spacing: -.01em;
    white-space: nowrap;
}

.main-nav .nav-list li a:hover {
    color: var(--white);
    background: rgba(255,255,255,.1);
}

/* Scrolled state: dark links */
.site-header.scrolled .main-nav .nav-list li a {
    color: var(--body);
}

.site-header.scrolled .main-nav .nav-list li a:hover {
    color: var(--dark);
    background: var(--lighter);
}

.main-nav .nav-list li.current-menu-item a,
.main-nav .nav-list li.current_page_item a {
    color: var(--white);
    background: rgba(255,255,255,.15);
}

.site-header.scrolled .main-nav .nav-list li.current-menu-item a,
.site-header.scrolled .main-nav .nav-list li.current_page_item a {
    color: var(--orange);
    background: var(--orange-glow);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.header-phone {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.8);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%;
    transition: all var(--duration) var(--ease);
}

.header-phone:hover {
    color: var(--white);
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.1);
}

.site-header.scrolled .header-phone {
    color: var(--body);
    border-color: var(--border);
}

.site-header.scrolled .header-phone:hover {
    color: var(--orange);
    border-color: var(--orange);
    background: var(--orange-glow);
}

.header-cta {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    font-size: .84rem;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    border-radius: 50px;
    transition: all var(--duration) var(--ease);
    letter-spacing: -.01em;
    white-space: nowrap;
}

.header-cta svg {
    transition: transform var(--duration) var(--ease);
}

.header-cta:hover {
    background: var(--orange-dark);
    box-shadow: 0 4px 16px var(--orange-glow);
    transform: translateY(-1px);
}

.header-cta:hover svg {
    transform: translateX(3px);
}

/* Hamburger */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: var(--r-xs);
    cursor: pointer;
    padding: 10px;
    transition: all var(--duration) var(--ease);
    flex-shrink: 0;
}

.menu-toggle:hover {
    border-color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.1);
}

.site-header.scrolled .menu-toggle {
    border-color: var(--border);
}

.site-header.scrolled .menu-toggle:hover {
    border-color: var(--muted);
    background: var(--light);
}

.menu-toggle span {
    display: block;
    height: 1.5px;
    background: var(--white);
    border-radius: 2px;
    transition: transform var(--duration) var(--ease), opacity var(--duration), background var(--duration);
    transform-origin: center;
}

.site-header.scrolled .menu-toggle span {
    background: var(--dark);
}

/* When menu is open, force scrolled look but NO backdrop-filter
   (backdrop-filter creates a containing block that traps the nav's position:fixed) */
body.nav-open .site-header {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--border);
}
body.nav-open .site-logo img { filter: none; }
body.nav-open .site-logo-text { color: var(--dark); }
body.nav-open .menu-toggle span { background: var(--dark); }
body.nav-open .menu-toggle { border-color: var(--muted); }

.menu-toggle.is-active { border-color: var(--muted); }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
body.nav-open { overflow: hidden; }

.main-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 8px 24px 24px;
    overflow-y: auto;
    animation: nav-in .3s var(--ease);
}

@keyframes nav-in {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.main-nav.is-open .nav-list {
    flex-direction: column;
    gap: 0;
}

.main-nav.is-open .nav-list li a {
    padding: 15px 0;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    color: var(--dark);
}

.main-nav.is-open .nav-list li a:hover {
    background: none;
    color: var(--orange);
}

/* Mobile nav CTA at bottom */
.main-nav.is-open::after {
    content: '';
    flex: 1;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    border-radius: 50px;
    transition: all var(--duration) var(--ease);
    box-shadow: 0 2px 8px var(--orange-glow);
    letter-spacing: -.01em;
}

.btn-primary:hover {
    background: var(--orange-dark);
    box-shadow: 0 8px 24px rgba(238,104,42,.3);
    transform: translateY(-2px);
}

.btn-primary .btn-arrow {
    transition: transform var(--duration) var(--ease);
    display: inline-block;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all var(--duration) var(--ease);
    letter-spacing: -.01em;
}

.btn-ghost:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.4);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--orange);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.btn-white:hover {
    background: var(--white);
    color: var(--orange-dark);
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* ==========================================================================
   SECTION TITLES
   ========================================================================== */
.sec-tag {
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--orange);
    margin-bottom: 12px;
}

.sec-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -.025em;
}

.sec-sub {
    text-align: center;
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 56px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        165deg,
        rgba(15,23,42,.7) 0%,
        rgba(15,23,42,.5) 40%,
        rgba(15,23,42,.65) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px; /* offset for fixed header */
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 760px;
    width: 100%;
}

.hero-tag {
    display: inline-block;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: 18px;
    line-height: 1.1;
}

.hero-sub {
    color: rgba(255,255,255,.75);
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 28px;
    font-weight: 400;
    letter-spacing: .02em;
}

/* Hero reviews pill */
.hero-reviews {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,.18);
    margin-bottom: 32px;
    color: var(--white);
    text-decoration: none;
    transition: all var(--duration) var(--ease);
}

.hero-reviews:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.3);
    transform: translateY(-2px);
}

.hero-reviews-score {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.hero-reviews-stars {
    color: #f5a623;
    font-size: .95rem;
    letter-spacing: 1px;
    line-height: 1;
}

.hero-reviews-text {
    font-size: .8rem;
    color: rgba(255,255,255,.65);
    font-weight: 500;
}

.hero-reviews-arrow {
    font-size: .85rem;
    opacity: .5;
    transition: transform var(--duration) var(--ease), opacity var(--duration);
}

.hero-reviews:hover .hero-reviews-arrow {
    transform: translateX(3px);
    opacity: .8;
}

.hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.s-pricing {
    padding: 100px 0;
    background: var(--white);
}

.s-pricing .sec-tag { color: var(--green); }

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    background: var(--dark);
    border-radius: var(--r);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
    color: inherit;
    position: relative;
}

.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(15, 23, 42, .4);
    transform: translateY(-4px);
}

.pricing-card-img {
    height: 200px;
    overflow: hidden;
}

.pricing-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}

.pricing-card:hover .pricing-card-img img {
    transform: scale(1.05);
}

.pricing-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: rgba(15, 23, 42, .78);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-top: 1px solid rgba(255,255,255,.1);
    position: relative;
}

.pricing-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

.pricing-card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -.02em;
    color: var(--white);
}

.pricing-route {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 20px;
    display: block;
}

.pricing-tiers {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    flex: 1;
}

.tier {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255,255,255,.06);
    border-radius: var(--r-xs);
    border: 1px solid rgba(255,255,255,.06);
    transition: background var(--duration) var(--ease);
}

.pricing-card:hover .tier {
    background: rgba(255,255,255,.1);
}

.tier-pax {
    font-size: .82rem;
    color: rgba(255,255,255,.6);
    font-weight: 500;
}

.tier-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -.02em;
}

.card-link {
    font-weight: 600;
    color: var(--green);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color var(--duration) var(--ease);
}

.pricing-card:hover .card-link {
    color: var(--white);
}

.link-arrow {
    transition: transform var(--duration) var(--ease);
    display: inline-block;
}

.pricing-card:hover .link-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   USPs
   ========================================================================== */
.s-usps {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.s-usps .sec-tag { color: var(--green); }
.s-usps .sec-title { color: var(--white); margin-bottom: 48px; }

.usps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.usp {
    padding: 28px 24px;
    border-radius: var(--r);
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.06);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.usp:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    transform: translateY(-2px);
}

.usp-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 186, 125, .12);
    border-radius: 12px;
    color: var(--green);
    margin-bottom: 16px;
}

.usp h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -.01em;
    color: var(--white);
}

.usp p {
    font-size: .875rem;
    color: rgba(255,255,255,.5);
    line-height: 1.6;
}

/* ==========================================================================
   TRUST
   ========================================================================== */
.s-trust {
    padding: 100px 0;
    background: var(--white);
    color: var(--dark);
    overflow: hidden;
}

.trust-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.trust-text .sec-tag { text-align: left; color: var(--green); }

.trust-text h2 {
    color: var(--dark);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 20px;
    letter-spacing: -.025em;
}

.trust-text p {
    color: var(--body);
    line-height: 1.75;
    margin-bottom: 12px;
    font-size: .95rem;
}

.trust-stats {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.stat {
    padding: 16px 24px;
    background: rgba(15, 23, 42, .04);
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    text-align: center;
}

.stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: -.03em;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: .72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin-top: 6px;
    display: block;
}

.trust-img {
    border-radius: var(--r);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
}

.trust-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
    transition: transform .6s var(--ease);
}

.trust-img:hover img {
    transform: scale(1.03);
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.s-testimonials {
    padding: 100px 0;
    background: var(--dark-2);
    color: var(--white);
}

.s-testimonials .sec-tag { color: var(--green); }
.s-testimonials .sec-title { color: var(--white); }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.testimonial {
    padding: 28px;
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r);
    transition: all var(--duration) var(--ease);
    position: relative;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.12), transparent);
}

.testimonial:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.12);
    transform: translateY(-2px);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: .85rem;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial blockquote {
    font-size: .9rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(45, 186, 125, .15);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .82rem;
}

.testimonial-author strong {
    display: block;
    font-size: .88rem;
    color: var(--white);
}

.testimonial-author span {
    font-size: .78rem;
    color: rgba(255,255,255,.4);
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.s-features {
    padding: 80px 0;
    background: var(--light);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature {
    padding: 28px 24px;
    border-radius: var(--r);
    background: var(--white);
    border: 1px solid var(--border);
    transition: all var(--duration) var(--ease);
}

.feature:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 14px;
}

.feature h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.feature p {
    font-size: .85rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ==========================================================================
   BOOKING
   ========================================================================== */
.s-booking {
    padding: 100px 0 80px;
    background: var(--white);
}

.s-booking .sec-tag { color: var(--green); }

.booking-widget {
    max-width: 720px;
    margin: 0 auto;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.s-cta {
    padding: 100px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.s-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(45, 186, 125, .06) 0%, transparent 70%);
    pointer-events: none;
}

.s-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(238, 104, 42, .06) 0%, transparent 70%);
    pointer-events: none;
}

.s-cta-inner {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.s-cta h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 12px;
    letter-spacing: -.025em;
}

.s-cta p {
    color: rgba(255,255,255,.6);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,.6);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top left, rgba(45, 186, 125, .05) 0%, transparent 60%);
    pointer-events: none;
}

/* Footer CTA banner */
.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 48px 32px;
    margin: 0;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r);
    margin-top: 48px;
    position: relative;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
}

.footer-cta-text h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -.025em;
}

.footer-cta-text p {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
}

/* Footer main grid */
.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 0 48px;
    position: relative;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    max-height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .9;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity var(--duration);
}

.footer-logo-link:hover { opacity: .7; }

.footer-tagline {
    font-size: .85rem;
    line-height: 1.6;
    color: rgba(255,255,255,.45);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.5);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50%;
    transition: all var(--duration) var(--ease);
}

.footer-social a:hover {
    color: var(--green);
    background: rgba(45, 186, 125, .1);
    border-color: rgba(45, 186, 125, .25);
    transform: translateY(-2px);
}

/* Footer link columns */
.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 36px;
}

.footer-col h4 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--green);
    margin-bottom: 16px;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li:last-child {
    margin-bottom: 0;
}

.footer-col ul li a,
.footer-contact-item {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    transition: color var(--duration) var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.footer-contact-item svg {
    color: rgba(255,255,255,.3);
    flex-shrink: 0;
}

.footer-col ul li a:hover {
    color: var(--white);
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 24px 0;
    font-size: .78rem;
    color: rgba(255,255,255,.25);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.footer-bottom p { margin: 0; }

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,.25);
    transition: color var(--duration);
}

.footer-bottom-links a:hover {
    color: var(--green);
}

/* ==========================================================================
   MOBILE CTA
   ========================================================================== */
.mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    background: var(--orange);
    text-align: center;
    padding: 14px 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,.1);
}

.mobile-cta a {
    color: var(--white);
    font-weight: 700;
    font-size: .95rem;
    display: block;
    letter-spacing: -.01em;
}

.btn-cta { display: inline-block; }

/* ==========================================================================
   SERVICE PAGES
   ========================================================================== */

/* Services grid (10 cards) */
.s-services-grid {
    padding: 100px 0;
    background: var(--white);
}

.s-services-grid .sec-tag { color: var(--green); }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.svc-card {
    padding: 24px 20px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: all var(--duration) var(--ease);
}

.svc-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.svc-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    background: rgba(45, 186, 125, .08);
    border-radius: 10px;
    margin-bottom: 14px;
}

.svc-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.svc-card p {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Meeting point */
.s-meeting {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
}

.meeting-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.s-meeting .sec-tag { color: var(--green); }

.meeting-img {
    border-radius: var(--r);
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4/3;
}

.meeting-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--r);
    transition: transform .6s var(--ease);
}

.meeting-img:hover img {
    transform: scale(1.03);
}

.meeting-text h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 16px;
    letter-spacing: -.025em;
}

.meeting-text > p {
    color: rgba(255,255,255,.6);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: .95rem;
}

.meeting-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.meeting-detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--r-sm);
}

.meeting-detail svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
}

.meeting-detail strong {
    display: block;
    color: var(--white);
    font-size: .9rem;
    margin-bottom: 2px;
}

.meeting-detail span {
    font-size: .82rem;
    color: rgba(255,255,255,.5);
    line-height: 1.5;
}

/* FAQ */
.s-faq {
    padding: 100px 0;
    background: var(--dark-2);
    color: var(--white);
}

.s-faq .sec-tag { color: var(--green); }
.s-faq .sec-title { color: var(--white); }

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-card {
    background: rgba(255,255,255,.04);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: var(--r-sm);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.faq-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.1);
}

.faq-card summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    font-size: .92rem;
    color: var(--white);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.faq-card summary svg {
    color: var(--green);
    flex-shrink: 0;
    transition: transform var(--duration) var(--ease);
}

.faq-card[open] summary svg {
    transform: rotate(45deg);
}

.faq-card-answer {
    padding: 0 24px 20px;
    font-size: .88rem;
    color: rgba(255,255,255,.55);
    line-height: 1.7;
}

/* Content block (SEO text) */
.s-content-block {
    padding: 80px 0;
    background: var(--light);
}

.content-block h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 16px;
    color: var(--dark);
}

.content-block p {
    color: var(--body);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: .95rem;
}

.content-block strong {
    color: var(--dark);
}

/* Hide redundant Gutenberg cover blocks inside content-block */
.content-block .wp-block-cover { display: none; }

/* Gutenberg groups inside content-block: reset spacing */
.content-block .wp-block-group {
    padding: 0 !important;
    background: none !important;
    margin-bottom: 32px;
}

/* Gutenberg columns → match theme card grid */
.content-block .wp-block-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px !important;
}
@media (min-width: 768px) {
    .content-block .wp-block-columns {
        grid-template-columns: repeat(2, 1fr);
    }
}
.content-block .wp-block-column {
    background: var(--white) !important;
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 24px !important;
    transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.content-block .wp-block-column:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
}
.content-block .wp-block-column h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -.015em;
}
.content-block .wp-block-column p {
    font-size: .88rem;
    color: var(--body);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Gutenberg headings inside content-block */
.content-block .wp-block-heading {
    text-align: center;
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: 24px;
    color: var(--dark);
}

/* Hide redundant Gutenberg form sections (template has its own) */
.content-block .wp-block-group:last-child:has(.fluentform) { display: none; }

/* Dark booking variant */
.s-booking-dark { background: var(--dark); }

/* Grupos page: 2-column split (services + form) */
.grupos-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media (min-width: 992px) {
    .grupos-split {
        flex-direction: row;
        gap: 48px;
        align-items: flex-end;
    }
    .grupos-split-info { flex: 1; }
    .grupos-split-form { flex: 0 0 400px; }
}
.grupos-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.grupos-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--r);
    padding: 20px;
    transition: background var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.grupos-card:hover {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.2);
}
.grupos-card-img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--r-sm);
    overflow: hidden;
}
.grupos-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grupos-card h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.grupos-card p {
    font-size: .85rem;
    color: rgba(255,255,255,.6);
    line-height: 1.6;
    margin: 0;
}
.grupos-form-box {
    background: var(--white);
    border-radius: var(--r);
    padding: 32px 28px;
    box-shadow: var(--shadow-xl);
}


/* ==========================================================================
   REVIEWS PAGE
   ========================================================================== */
.hero-short .hero-inner { padding: 60px 0 40px; }

.s-reviews-summary {
    padding: 60px 0;
    background: var(--white);
}
.reviews-summary-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: var(--light);
    border-radius: var(--r);
    padding: 40px 32px;
    border: 1px solid var(--border);
}
.reviews-summary-box .glsr-summary-stars {
    font-size: 2rem;
}
.reviews-summary-box .glsr-summary-rating {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.03em;
}

.s-reviews-list {
    padding: 80px 0;
    background: var(--light);
}
.s-reviews-list .container { max-width: var(--max); }
.reviews-list .glsr-reviews {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
@media (min-width: 600px) {
    .reviews-list .glsr-reviews { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .reviews-list .glsr-reviews { grid-template-columns: repeat(3, 1fr); }
}
.reviews-list .glsr-review {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 24px;
    margin-bottom: 0;
    transition: box-shadow var(--duration) var(--ease);
}
.reviews-list .glsr-review:hover {
    box-shadow: var(--shadow-md);
}
.reviews-list .glsr-review-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}
.reviews-list .glsr-review-content p {
    color: var(--body);
    line-height: 1.7;
    font-size: .92rem;
}
.reviews-list .glsr-review-author {
    font-weight: 600;
    color: var(--dark);
}

/* Reviews: hide pagination, use load-more button instead */
.s-reviews-list .glsr-pagination { display: none !important; }

.reviews-load-more {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    grid-column: 1 / -1;
}
.reviews-load-more button {
    padding: 14px 40px;
    font-size: .95rem;
    font-weight: 600;
    color: var(--white);
    background: var(--orange);
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background var(--duration) var(--ease);
}
.reviews-load-more button:hover { background: var(--orange-dark); }
.reviews-load-more button:disabled {
    opacity: .5;
    cursor: default;
}

.reviews-form-box {
    background: var(--white);
    border-radius: var(--r);
    padding: 32px 28px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-xl);
}

/* Form step indicator */
.ff-step-indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}
.ff-step-dot {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    border-bottom: 2px solid var(--border);
    transition: color var(--duration), border-color var(--duration);
}
.ff-step-dot-active {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* Form step nav buttons */
.ff-step-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 16px;
    padding: 10px 20px;
    font-size: .9rem;
    font-weight: 600;
    border: none;
    border-radius: var(--r-sm);
    cursor: pointer;
    transition: background var(--duration), color var(--duration);
}
.ff-step-next {
    background: var(--orange);
    color: var(--white);
    width: 100%;
    justify-content: center;
}
.ff-step-next:hover { background: var(--orange-dark); }
.ff-step-prev {
    background: var(--lighter);
    color: var(--body);
    margin-bottom: 12px;
    padding: 8px 16px;
    font-size: .85rem;
}
.ff-step-prev:hover { background: var(--border); }

/* Meeting reverse (Ciampino) */
.meeting-reverse {
    flex-direction: column;
}

.meeting-text h3 {
    color: var(--green);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -.01em;
}

/* FAQ answer paragraphs */
.faq-card-answer p {
    margin-bottom: 10px;
    line-height: 1.7;
}

.faq-card-answer p:last-child {
    margin-bottom: 0;
}

.faq-card-answer a {
    color: var(--green);
    text-decoration: underline;
}

.faq-card-answer strong {
    color: var(--white);
}

/* Service content (WP editor) */
.service-content { padding: 80px 0; background: var(--light); }
.service-content .wp-block-cover { display: none; }
.service-content #booking { display: none; }
.service-content h2 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 12px; }
.service-content h3 { font-size: 1.15rem; margin-top: 24px; margin-bottom: 8px; color: var(--green); }
.service-content p { margin-bottom: 12px; line-height: 1.8; }
.service-content img { border-radius: var(--r); margin: 16px 0; }
.service-content a { color: var(--green); text-decoration: underline; }
.service-content .wp-block-columns { display: flex; flex-wrap: wrap; gap: 24px; margin-bottom: 16px; }
.service-content .wp-block-column { flex: 1; min-width: 260px; }

/* Other templates */
.destinations { padding: 64px 0; }

.destination-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
    overflow: hidden; transition: all var(--duration) var(--ease);
}

.destination-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }

.destination-image { height: 200px; overflow: hidden; }
.destination-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.destination-card:hover .destination-image img { transform: scale(1.05); }
.destination-card h3 { font-size: 1.05rem; padding: 16px 16px 4px; }
.destination-card p { font-size: .85rem; color: var(--muted); padding: 0 16px 16px; }

.service-cards { padding: 64px 0; }

.service-card {
    padding: 28px; border: 1px solid var(--border); border-radius: var(--r);
    transition: all var(--duration) var(--ease);
}

.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: .88rem; color: var(--muted); }

.form-section { padding: 64px 0; background: var(--light); }
.form-section h2 { text-align: center; margin-bottom: 8px; }
.form-section > .container-narrow > p { text-align: center; color: var(--muted); margin-bottom: 28px; }

.legal-content {
    max-width: var(--narrow); margin: 0 auto; padding: 40px 24px 60px; line-height: 1.8;
}

.legal-content h2 { margin-top: 28px; margin-bottom: 10px; }
.legal-content p { margin-bottom: 12px; }

.page-content { padding: 40px 0 60px; }
.page-content p { margin-bottom: 14px; line-height: 1.8; }

.blog-archive { padding: 40px 0 60px; }

.blog-card {
    border: 1px solid var(--border); border-radius: var(--r);
    overflow: hidden; transition: all var(--duration) var(--ease);
}

.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.blog-card-image { height: 200px; overflow: hidden; display: block; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-content { padding: 20px; }
.blog-card-content h2 { font-size: 1.05rem; margin-bottom: 6px; }
.blog-card-content h2 a { color: var(--dark); transition: color var(--duration); }
.blog-card-content h2 a:hover { color: var(--orange); }
.blog-card-date { font-size: .78rem; color: var(--muted); margin-bottom: 8px; }

.blog-single .blog-content { padding: 40px 0 60px; }
.blog-single .blog-featured-image { margin-bottom: 28px; border-radius: var(--r); overflow: hidden; }
.blog-single .blog-content p { margin-bottom: 14px; line-height: 1.8; }
.blog-nav { padding: 20px 0 40px; display: flex; justify-content: space-between; }
.blog-nav a { color: var(--orange); font-weight: 600; }

/* Page header (simple pages: contact, FAQ, legal, blog) */
.page-header-simple {
    padding: 120px 0 48px;
    background: var(--dark);
    text-align: center;
}

.page-header-simple h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    letter-spacing: -.03em;
}

.page-header-simple .sec-tag {
    color: var(--orange);
}

.page-header-simple .sec-sub {
    color: rgba(255,255,255,.5);
    margin-top: 10px;
}

/* Contact page */
.s-contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info-col h2,
.contact-form-col h2 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    background: var(--orange-glow);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
}

.contact-item strong {
    display: block;
    font-size: .85rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-item p {
    font-size: .9rem;
    color: var(--body);
}

.contact-item a {
    color: var(--orange);
    transition: opacity var(--duration);
}

.contact-item a:hover { opacity: .75; }

.contact-image img {
    border-radius: var(--r);
}

/* FAQ page */
.s-faq-page {
    background: var(--dark);
    padding: 64px 0 80px;
}

.faq-section-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 16px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.faq-section-title:first-child,
.s-faq-page .faq-list + .faq-section-title {
    margin-top: 0;
}

.s-faq-page .faq-list + .faq-section-title {
    margin-top: 40px;
}

/* Destinations section (Italia page) */
.s-destinations {
    padding: 80px 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Form section (modern version for Italia/Grupos) */
.s-form {
    padding: 80px 0;
    background: var(--light);
}

.s-form .sec-title { margin-bottom: 8px; }
.s-form .sec-sub { margin-bottom: 32px; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 20px; }
.grid-5 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }

.section-heading {
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    text-align: center; margin-bottom: 36px; letter-spacing: -.02em;
}

/* ==========================================================================
   TABLET (768px)
   ========================================================================== */
@media (min-width: 768px) {
    .main-nav { display: flex; }
    .menu-toggle { display: none; }
    .header-cta { display: inline-flex; }
    .header-phone { display: flex; }

    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
    .usps-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    .trust-inner { flex-direction: row; gap: 64px; }
    .trust-text { flex: 1; }
    .trust-img { flex: 0 0 360px; }

    /* Footer responsive */
    .footer-cta {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        padding: 40px 40px;
    }

    .footer-main {
        grid-template-columns: 240px 1fr;
        align-items: start;
        gap: 64px;
    }

    .footer-links { grid-template-columns: repeat(3, 1fr); }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }

    /* Contact page */
    .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }

    /* Destinations */
    .destinations-grid { grid-template-columns: repeat(2, 1fr); }

    /* Service pages */
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .meeting-inner { flex-direction: row; gap: 64px; align-items: center; }
    .meeting-reverse { flex-direction: row-reverse; }
    .meeting-img { flex: 0 0 400px; }
    .meeting-text { flex: 1; }
}

/* ==========================================================================
   DESKTOP (1024px)
   ========================================================================== */
@media (min-width: 1024px) {
    .usps-grid { grid-template-columns: repeat(3, 1fr); }
    .usps-grid-4 { grid-template-columns: repeat(4, 1fr); }
    .features-grid { grid-template-columns: repeat(4, 1fr); }
    .grid-5 { grid-template-columns: repeat(5, 1fr); }
    .mobile-cta { display: none; }

    .pricing-card-img { height: 220px; }
    .destination-image { height: 220px; }

    /* Destinations */
    .destinations-grid { grid-template-columns: repeat(3, 1fr); }

    /* Service pages */
    .services-grid { grid-template-columns: repeat(5, 1fr); }
    .meeting-img { flex: 0 0 480px; }
}

/* ==========================================================================
   BLOG — APPLE NEWSROOM STYLE
   ========================================================================== */

/* Featured post */
.nr-featured { margin-top: -64px; /* behind fixed header */ }
.nr-featured-link {
    display: block;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
}
.nr-featured-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.nr-featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.1) 60%);
    display: flex;
    align-items: flex-end;
    padding: 0 0 60px;
    z-index: 1;
}
.nr-featured-link, .nr-featured-link:hover,
.nr-featured-link *, .nr-featured-link:hover * {
    color: var(--white);
}
.nr-featured-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 12px;
}
.nr-cat {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--orange);
    margin-bottom: 12px;
}
.nr-date {
    display: block;
    font-size: .85rem;
    color: rgba(255,255,255,.6);
}
.nr-featured-link .nr-date { color: rgba(255,255,255,.6); }

/* Grid */
.nr-grid-section {
    padding: 60px 0 80px;
    background: var(--white);
}
.nr-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
@media (min-width: 600px) {
    .nr-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .nr-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Cards */
.nr-card {
    display: block;
    text-decoration: none;
    color: var(--dark);
    border-radius: var(--r);
    overflow: hidden;
    transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.nr-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.nr-card-img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.nr-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.nr-card:hover .nr-card-img img { transform: scale(1.04); }
.nr-card-body { padding: 20px 4px; }
.nr-card-body .nr-cat { color: var(--orange); margin-bottom: 8px; }
.nr-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.35;
    margin-bottom: 8px;
}
.nr-card-body .nr-date { color: var(--muted); }

/* Single post */
.nr-single-hero { margin-top: -64px; }
.nr-single-hero-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
}
.nr-single-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.nr-single-header {
    text-align: center;
    padding: 48px 0 32px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}
.nr-single-header .nr-cat { margin-bottom: 4px; }
.nr-single-header .nr-date {
    color: var(--muted);
    margin-bottom: 16px;
}
.nr-single-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 0;
}
.nr-single-content {
    padding-bottom: 60px;
}
.nr-single-content p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--body);
    margin-bottom: 20px;
}
.nr-single-content h2,
.nr-single-content h3 {
    color: var(--dark);
    margin-top: 40px;
    margin-bottom: 16px;
}
.nr-single-content img {
    border-radius: var(--r-sm);
    margin: 24px 0;
}
.nr-single-content a {
    color: var(--orange);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.nr-single-content a:hover {
    color: var(--orange-dark);
}

/* Related posts */
.nr-related {
    padding: 60px 0 80px;
    background: var(--light);
}
.nr-related-heading {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -.025em;
    color: var(--dark);
    margin-bottom: 32px;
}

/* ==========================================================================
   BOOKING MODAL
   ========================================================================== */
.booking-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
}
.booking-modal.is-open { display: flex; align-items: center; justify-content: center; }
.booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(4px);
}
.booking-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--r);
    width: 92%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0,0,0,.3);
    animation: modal-in .3s var(--ease);
}
@keyframes modal-in {
    from { opacity: 0; transform: translateY(20px) scale(.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--lighter);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--body);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--duration);
    z-index: 1;
}
.booking-modal-close:hover { background: var(--border); }
.booking-modal-header {
    padding: 32px 32px 0;
    text-align: center;
}
.booking-modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -.02em;
    margin-bottom: 4px;
}
.booking-modal-sub {
    font-size: .85rem;
    color: var(--muted);
}
.booking-modal-body {
    padding: 24px 32px 32px;
}


/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
    .site-header, .site-footer, .mobile-cta, .menu-toggle, .s-booking, .booking-section, .s-cta, .final-cta {
        display: none;
    }
    body { color: #000; background: #fff; }
}
