/* ==========================================================
   Panoramic Flights - Stylesheet (Heli Guides faithful)
   ========================================================== */
:root {
    /* Heli Guides Panoramic Flights — DARK theme (faithful) */
    --c-dark:        #262a2b;   /* dark gray "section" bg */
    --c-dark-2:      #1a1d22;
    --c-text:        #c8c8c8;   /* body text on dark */
    --c-muted:       #8a8e92;
    --c-bg:          #0c0f16;   /* deepest dark page bg */
    --c-bg-alt:      #1a1d22;   /* slightly lighter dark */
    --c-border:      #3a3e42;
    --c-accent:      #fcc206;   /* signature yellow CTA */
    --c-accent-2:    #fcc206;
    --c-cta-bg:      #252525;   /* very dark CTA bg */
    --c-success:     #16a34a;
    --c-danger:      #dc2626;
    --grad-pink:     linear-gradient(90deg, #fcc206 0%, #f3823c 100%);
    --shadow-md:     0 12px 32px rgba(0,0,0,.45);
    --shadow-lg:     0 24px 48px rgba(0,0,0,.55);
    --font-body:     'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display:  'Barlow Condensed', 'Helvetica Neue', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color: var(--c-dark); text-decoration: none; transition: color .2s; }
a:hover { color: #f3823c; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--c-dark);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}
.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.top-bar-contacts a {
    color: #fff;
    margin-right: 24px;
}
.top-bar-contacts a:hover { color: #ffcc00; }
.top-bar-contacts i { margin-right: 6px; }
.top-bar-right { display: flex; align-items: center; gap: 18px; }
.top-bar-social a { color: #fff; margin: 0 6px; font-size: 14px; }
.top-bar-social a:hover { color: #ffcc00; }
.lang-switch a {
    color: #fff;
    font-weight: 600;
    margin: 0 4px;
    padding: 2px 6px;
    font-size: 12px;
    letter-spacing: .05em;
}
.lang-switch a.active { color: #ffcc00; border-bottom: 2px solid #ffcc00; }

/* ============ HEADER ============ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}
.brand-logo {
    height: 56px;
    width: auto;
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.main-nav a {
    color: var(--c-dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: lowercase;
    letter-spacing: .02em;
    position: relative;
    padding: 8px 0;
}
.main-nav a:hover { color: #f3823c; }
.main-nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-pink);
}
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--c-dark);
}

/* ============ HERO ============ */
.hero-parallax {
    position: relative;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    background: linear-gradient(180deg, #b8e0f5 0%, #e8f3fa 100%);
}
.hero-bg-mountain {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 65%;
    background: url('https://www.panoramic-flights.com/wp-content/uploads/2021/05/Courmayeur-front.png') no-repeat center bottom;
    background-size: cover;
    z-index: 1;
}
.hero-cloud {
    position: absolute;
    z-index: 2;
    opacity: .85;
    pointer-events: none;
    animation: float 20s infinite ease-in-out;
}
.hero-cloud.cloud1 {
    top: 12%; left: -5%;
    width: 280px;
    background: url('https://www.panoramic-flights.com/wp-content/uploads/revslider/mountain-parallax-header/cloud1.png') no-repeat;
    background-size: contain;
    height: 150px;
    animation-delay: 0s;
}
.hero-cloud.cloud2 {
    top: 25%; right: -3%;
    width: 360px;
    background: url('https://www.panoramic-flights.com/wp-content/uploads/revslider/mountain-parallax-header/cloud2.png') no-repeat;
    background-size: contain;
    height: 170px;
    animation-delay: -8s;
}
.hero-cloud.cloud3 {
    top: 50%; left: 20%;
    width: 420px;
    background: url('https://www.panoramic-flights.com/wp-content/uploads/revslider/mountain-parallax-header/cloud3.png') no-repeat;
    background-size: contain;
    height: 250px;
    animation-delay: -14s;
}
@keyframes float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(40px); }
}
.hero-content-parallax {
    position: relative;
    z-index: 3;
    text-align: center;
    padding-top: 14vh;
}
.hero-title-parallax {
    font-family: var(--font-display);
    line-height: 1;
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 12px rgba(255,255,255,0.5);
}
.hero-line-1 {
    display: block;
    font-size: clamp(28px, 4vw, 56px);
    color: var(--c-dark);
    letter-spacing: .04em;
}
.hero-line-2 {
    display: block;
    font-size: clamp(60px, 9vw, 130px);
    line-height: .95;
    margin: 8px 0;
    letter-spacing: .02em;
    font-weight: 800;
}
.hero-line-3 {
    display: block;
    font-size: clamp(28px, 4vw, 56px);
    color: var(--c-dark);
    letter-spacing: .04em;
}
.gradient-text {
    background: var(--grad-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-helicopter {
    position: absolute;
    bottom: -8%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    height: 50%;
    background: url('https://www.panoramic-flights.com/wp-content/uploads/2021/05/elicottero_front.png') no-repeat center bottom;
    background-size: contain;
    z-index: 4;
    animation: chopper-bob 6s ease-in-out infinite;
}
@keyframes chopper-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-12px); }
}

/* ============ INTRO ============ */
.intro-section {
    padding: 110px 0 80px;
    background: var(--c-bg);
}
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}
.intro-eyebrow {
    color: #f3823c;
    font-size: 13px;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: .15em;
    margin: 0 0 12px;
}
.intro-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.15;
    color: var(--c-dark);
    margin: 0;
    font-weight: 700;
}
.intro-right p { font-size: 16px; line-height: 1.8; color: #4a5260; margin-bottom: 20px; }

/* ============ SECTIONS ============ */
.section-eyebrow-block {
    text-align: center;
    margin-bottom: 60px;
}
.section-eyebrow {
    color: #f3823c;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: .2em;
    font-size: 13px;
    margin: 0 0 4px;
}
.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    color: var(--c-dark);
    margin: 0 0 8px;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1;
}
.section-subtitle {
    color: var(--c-muted);
    font-size: 15px;
    margin: 8px 0 0;
}
.text-center { text-align: center; }

/* ============ DESTINAZIONI VOLI ============ */
.dest-section {
    padding: 90px 0;
    background: var(--c-bg-alt);
}
.dest-section-dark {
    background: var(--c-dark);
}
.dest-section-dark .section-h2 { color: #fff; }
.dest-section-dark .section-eyebrow { color: #ffcc00; }
.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.dest-card-flight {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow-md);
    color: var(--c-dark);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.dest-card-flight:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    color: var(--c-dark);
}
.dest-card-img {
    height: 320px;
    background-size: cover;
    background-position: center;
    transition: transform .6s;
}
.dest-card-flight:hover .dest-card-img { transform: scale(1.05); }
.dest-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: #fff;
}
.dest-card-eyebrow {
    font-size: 12px;
    color: #ffcc00;
    text-transform: lowercase;
    letter-spacing: .15em;
    margin: 0 0 6px;
}
.dest-card-title {
    font-family: var(--font-display);
    font-size: 32px;
    margin: 0 0 8px;
    font-weight: 700;
}
.dest-card-cta {
    font-size: 12px;
    text-transform: lowercase;
    letter-spacing: .15em;
    color: #fff;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 2px;
}
.dest-card-info {
    padding: 24px;
    background: #fff;
    color: var(--c-dark);
    border-top: 3px solid;
    border-image: var(--grad-pink) 1;
}
.dest-card-info p { margin: 0 0 4px; font-size: 15px; }
.dest-card-info strong { font-size: 22px; color: #f3823c; }
.dest-card-info small { color: var(--c-muted); font-size: 11px; line-height: 1.4; display: block; }

/* ============ GIFT VOUCHER DESTINAZIONI ============ */
.gift-dest-section {
    padding: 90px 0;
    background: var(--c-bg);
}
.gift-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.gift-dest-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 1;
    color: #fff;
    transition: transform .3s;
    display: block;
}
.gift-dest-card:hover { transform: translateY(-4px); color: #fff; }
.gift-dest-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s;
}
.gift-dest-card:hover .gift-dest-img { transform: scale(1.08); }
.gift-dest-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    z-index: 2;
}
.gift-dest-content h3 {
    font-family: var(--font-display);
    font-size: 26px;
    margin: 0 0 8px;
    font-weight: 700;
}
.gift-dest-cta {
    font-size: 12px;
    text-transform: lowercase;
    letter-spacing: .15em;
    color: #ffcc00;
    align-self: flex-start;
}
.gift-dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(14,28,44,0.95);
    color: #fff;
    padding: 12px 16px;
    font-size: 12px;
    transform: translateY(100%);
    transition: transform .3s;
    z-index: 3;
}
.gift-dest-card:hover .gift-dest-info { transform: translateY(0); }

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 90px 0;
    background: var(--c-bg-alt);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid;
    border-image: var(--grad-pink) 1;
}
.testimonial-card p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
    color: #2a2f3a;
}
.testimonial-card cite {
    color: #f3823c;
    font-weight: 700;
    font-style: normal;
    font-size: 14px;
}

/* ============ ABOUT ============ */
.about-section {
    padding: 100px 0;
    background: var(--c-dark);
    color: #fff;
}
.about-section .section-h2 { color: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}
.about-img img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}
.about-text p { font-size: 16px; line-height: 1.8; color: #c9d1dc; margin-bottom: 16px; }

/* ============ FAQ ============ */
.faq-section {
    padding: 90px 0;
    background: var(--c-bg);
}
.faq-section .section-h2 { margin-bottom: 48px; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--c-border);
    padding: 4px 0;
}
.faq-item summary {
    font-weight: 600;
    font-size: 17px;
    padding: 20px 40px 20px 0;
    cursor: pointer;
    color: var(--c-dark);
    position: relative;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    font-weight: 300;
    color: #f3823c;
    transition: transform .3s;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-body { padding: 0 0 20px; color: #4a5260; line-height: 1.7; }
.faq-body p { margin: 0 0 12px; }

/* ============ NEWSLETTER ============ */
.newsletter-section {
    padding: 60px 0;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
}
.newsletter-box {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}
.newsletter-box h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--c-dark);
    margin: 0 0 8px;
}
.newsletter-box p { color: var(--c-muted); font-size: 14px; margin: 0; }
.newsletter-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.newsletter-form input[type=email],
.newsletter-form input[type=text] {
    padding: 12px 16px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}
.newsletter-form .checkbox-line {
    grid-column: 1 / -1;
    font-size: 13px;
    color: var(--c-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.newsletter-form button {
    grid-column: 1 / -1;
    margin-top: 8px;
}

/* ============ FOOTER ============ */
.site-footer {
    background: var(--c-dark);
    color: #c9d1dc;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr 1fr 1fr;
    gap: 40px;
    padding: 60px 24px 40px;
}
.footer-logo { width: 200px; height: auto; }
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 16px;
}
.footer-col p { font-size: 13px; line-height: 1.7; margin: 0 0 16px; }
.footer-col a {
    color: #c9d1dc;
    font-size: 13px;
    line-height: 2;
}
.footer-col a:hover { color: #ffcc00; }
.footer-col i { margin-right: 6px; }
.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 16px 0;
    font-size: 12px;
    text-align: center;
    color: #6b7891;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .1em;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s;
}
.btn-primary {
    background: var(--grad-pink);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255,85,124,.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255,85,124,.4);
    color: #fff;
}
.btn-outline {
    background: transparent;
    color: var(--c-dark);
    border: 2px solid var(--c-dark);
}
.btn-outline:hover {
    background: var(--c-dark);
    color: #fff;
}
.btn-outline-dark {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline-dark:hover {
    background: #fff;
    color: var(--c-dark);
}
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ============ FLIGHTS LIST PAGE ============ */
.page-header {
    background: var(--c-dark);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    margin: 0 0 12px;
    font-weight: 700;
}
.page-header p { font-size: 16px; color: #c9d1dc; max-width: 700px; margin: 0 auto; }

.flights-list-section { padding: 80px 0; }
.filters-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    padding: 24px;
    background: var(--c-bg-alt);
    border-radius: 8px;
}
.filters-bar select, .filters-bar input {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ============ FLIGHT DETAIL ============ */
.flight-detail-hero {
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}
.flight-detail-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(14,28,44,0.85) 100%);
}
.flight-detail-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 50px;
}
.flight-detail-eyebrow {
    color: #ffcc00;
    text-transform: lowercase;
    letter-spacing: .2em;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 8px;
}
.flight-detail-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 72px);
    margin: 0;
    line-height: 1;
    font-weight: 700;
}
.flight-detail-meta {
    display: flex;
    gap: 32px;
    margin-top: 20px;
    font-size: 15px;
}
.flight-detail-meta i { color: #ffcc00; margin-right: 8px; }

.flight-detail-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 60px;
    padding: 60px 0;
}
.flight-content h2 {
    font-family: var(--font-display);
    color: var(--c-dark);
    margin-top: 32px;
}
.flight-content ul li { margin-bottom: 8px; }

.booking-widget {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
    border-top: 4px solid;
    border-image: var(--grad-pink) 1;
}
.booking-widget .price-large {
    font-family: var(--font-display);
    font-size: 40px;
    color: #f3823c;
    margin: 0 0 4px;
    font-weight: 700;
}
.booking-widget .price-note { font-size: 12px; color: var(--c-muted); margin: 0 0 24px; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    color: var(--c-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* ============ ALERTS ============ */
.alert { padding: 16px 20px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; }
.alert-success { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.alert-warning { background: #fef3c7; color: #92400e; border: 1px solid #fcd34d; }
.alert-info { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ============ PAGINATION ============ */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 40px; }
.pagination a, .pagination span { padding: 8px 14px; border: 1px solid var(--c-border); border-radius: 4px; }
.pagination .active span { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }

/* ============ ADMIN ============ */
.admin-wrap { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: var(--c-bg-alt); }
.admin-sidebar { background: var(--c-dark); color: #fff; padding: 24px 0; }
.admin-sidebar h2 { padding: 0 24px; font-size: 18px; font-family: var(--font-display); margin: 0 0 24px; }
.admin-sidebar nav a {
    display: block;
    padding: 12px 24px;
    color: #c9d1dc;
    font-size: 14px;
    border-left: 3px solid transparent;
}
.admin-sidebar nav a:hover, .admin-sidebar nav a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-left-color: #ffcc00;
}
.admin-main { padding: 32px 40px; }
.admin-card { background: #fff; padding: 24px; border-radius: 8px; box-shadow: var(--shadow-md); margin-bottom: 24px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat { background: #fff; padding: 24px; border-radius: 8px; box-shadow: var(--shadow-md); }
.admin-stat .num { font-family: var(--font-display); font-size: 36px; color: #f3823c; font-weight: 700; }
.admin-stat .label { color: var(--c-muted); font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
table.admin-table { width: 100%; border-collapse: collapse; background: #fff; }
table.admin-table th { background: var(--c-bg-alt); text-align: left; padding: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--c-muted); }
table.admin-table td { padding: 12px; border-top: 1px solid var(--c-border); font-size: 14px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .intro-grid, .about-grid, .newsletter-box { grid-template-columns: 1fr; gap: 40px; }
    .dest-grid, .flight-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .gift-dest-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .admin-wrap { grid-template-columns: 1fr; }
    .admin-sidebar { padding: 16px; }
    .admin-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .top-bar-contacts { font-size: 11px; }
    .top-bar-contacts a { margin-right: 12px; }
    .main-nav { display: none; }
    body.mobile-menu-open .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #fff;
        padding: 80px 32px;
        z-index: 200;
        gap: 16px;
    }
    .mobile-menu-toggle { display: block; }
    .hero-line-2 { font-size: 14vw; }
    .testimonials-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .gift-dest-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .newsletter-form { grid-template-columns: 1fr; }
}

/* ============ PAGE HERO (sub-pages) ============ */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: var(--c-dark);
}
.page-hero.page-hero-compact { min-height: 260px; }
.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.04);
}
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14,28,44,.55) 0%, rgba(14,28,44,.85) 100%);
    z-index: 1;
}
.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px 60px;
    text-align: center;
}
.page-hero-eyebrow {
    color: #ffcc00;
    text-transform: lowercase;
    letter-spacing: .25em;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px;
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6vw, 84px);
    margin: 0 0 14px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .02em;
}
.page-hero-sub {
    font-size: 16px;
    color: #c9d1dc;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============ CONTENT SECTIONS ============ */
.content-section { padding: 80px 0; background: var(--c-bg); }
.section { padding: 80px 0; }
.container.narrow { max-width: 880px; }
.rich-text h2 { font-family: var(--font-display); font-size: 32px; color: var(--c-dark); margin: 32px 0 16px; }
.rich-text h3 { font-family: var(--font-display); font-size: 24px; color: var(--c-dark); margin: 28px 0 12px; }
.rich-text p { font-size: 16px; line-height: 1.85; color: #4a5260; margin: 0 0 18px; }
.rich-text ul, .rich-text ol { margin: 0 0 18px; padding-left: 24px; }
.rich-text li { margin-bottom: 8px; line-height: 1.7; }
.rich-text a { color: #f3823c; border-bottom: 1px solid currentColor; }
.rich-text img { border-radius: 8px; margin: 16px 0; }

/* ============ FILTERS ============ */
.filters-section { padding: 40px 0 0; background: var(--c-bg); }

/* ============ FLIGHT DETAIL GRID ============ */
.flight-detail-section { padding: 80px 0; background: var(--c-bg); }
.flight-detail-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 60px;
    align-items: start;
}
.flight-detail-main .rich-text { margin-bottom: 36px; }

.incl-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
}
.incl-box {
    background: var(--c-bg-alt);
    padding: 24px;
    border-radius: 8px;
    border-top: 4px solid #16a34a;
}
.incl-box.incl-box-out { border-top-color: #dc2626; }
.incl-box h4 {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--c-dark);
}
.incl-box ul { list-style: none; padding: 0; margin: 0; }
.incl-box li { padding: 6px 0; font-size: 14px; color: #2a2f3a; }
.incl-box .check { color: #16a34a; font-weight: 700; margin-right: 8px; }
.incl-box .cross { color: #dc2626; font-weight: 700; margin-right: 8px; }

/* ============ BOOKING ASIDE (sticky) ============ */
.booking-aside {
    position: sticky;
    top: 100px;
    align-self: start;
}
.booking-widget {
    background: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid #f3823c;
}
.booking-widget hr {
    border: none;
    border-top: 1px solid var(--c-border);
    margin: 18px 0;
}
.booking-meta {
    margin: 6px 0;
    font-size: 14px;
    color: #4a5260;
}
.booking-meta strong { color: var(--c-dark); }
.big-price {
    font-family: var(--font-display);
    font-size: 56px;
    color: #f3823c;
    margin: 0;
    font-weight: 800;
    line-height: 1;
}
.big-price-cur { font-size: 28px; vertical-align: top; }
.big-price-sub {
    font-size: 12px;
    color: var(--c-muted);
    margin: 4px 0 24px;
}
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 12px;
}

/* ============ SCHEDULE LIST ============ */
.schedule-list {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 20px;
}
.schedule-list h4 {
    font-family: var(--font-display);
    font-size: 18px;
    margin: 0 0 14px;
    color: var(--c-dark);
}
.schedule-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    margin-bottom: 6px;
    font-size: 13px;
    color: var(--c-dark);
}
.schedule-row:hover { background: var(--c-bg-alt); border-color: #f3823c; }
.schedule-seats { color: #f3823c; font-weight: 700; }

/* ============ FORM CARD ============ */
.form-card {
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}
.form-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--c-dark);
    margin: 28px 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--c-border);
}
.form-card h3:first-child { margin-top: 0; }
.form-card label {
    display: block;
    font-weight: 600;
    font-size: 12px;
    color: var(--c-dark);
    margin: 14px 0 6px;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.form-card input[type="text"],
.form-card input[type="email"],
.form-card input[type="tel"],
.form-card input[type="number"],
.form-card input[type="date"],
.form-card input:not([type]),
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--c-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: none;
    border-color: #f3823c;
    box-shadow: 0 0 0 3px rgba(243,130,60,.15);
}
.form-card textarea { resize: vertical; min-height: 100px; }
.form-card .row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-card .checkbox-row,
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #2a2f3a;
    margin: 12px 0 0;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}
.form-card .radio-row,
.radio-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
    color: #2a2f3a;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
}
.form-card .checkbox-row input,
.form-card .radio-row input { width: auto; }
.checkbox-line {
    display: flex; align-items: flex-start; gap: 8px;
    font-size: 13px; color: #4a5260;
}
.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 18px; }
.mt-4 { margin-top: 24px; }

/* ============ TWO COL LAYOUT (form + aside) ============ */
.two-col {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
    align-items: start;
}
.two-col .booking-aside,
.two-col aside { position: sticky; top: 100px; }

/* ============ INFO / SUCCESS / WARNING BOXES ============ */
.success-box, .info-box, .warning-box {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 5px solid;
    margin-bottom: 24px;
}
.success-box { border-top-color: #16a34a; }
.info-box    { border-top-color: #f3823c; }
.warning-box { border-top-color: #f59e0b; }
.success-box h1, .info-box h1, .warning-box h1 {
    font-family: var(--font-display);
    font-size: 32px;
    margin: 0 0 16px;
    color: var(--c-dark);
}
.success-box p, .info-box p, .warning-box p {
    font-size: 15px;
    color: #4a5260;
    margin: 6px 0;
    line-height: 1.7;
}
.muted { color: var(--c-muted); font-size: 13px; }
.bank-details {
    background: var(--c-bg-alt);
    padding: 18px 20px;
    border-radius: 6px;
    margin: 16px 0;
    font-family: monospace;
}
.bank-details p { margin: 4px 0; font-size: 14px; }

/* ============ INFO BOX ASIDE (contact) ============ */
aside.info-box {
    padding: 32px;
    border-top: 4px solid #f3823c;
}
aside.info-box h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 16px;
    color: var(--c-dark);
}

/* ============ ALERTS ALIASES ============ */
.alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; }
.alert-success { padding: 12px 16px; border-radius: 6px; margin-bottom: 16px; }
.alert ul { margin: 0; padding-left: 20px; }

/* ============ PAYMENT METHODS ============ */
.payment-methods {
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    margin-top: 24px;
}
.payment-methods h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 20px;
    color: var(--c-dark);
}
.btn-paypal {
    background: #ffc439;
    color: #003087;
    box-shadow: 0 8px 20px rgba(0,48,135,.18);
}
.btn-paypal:hover {
    background: #ffb800;
    color: #003087;
    transform: translateY(-2px);
}

/* ============ CARD INFO (booking summary) ============ */
.card-info {
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-left: 4px solid #f3823c;
    margin-bottom: 24px;
}
.card-info h4 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 12px;
    color: var(--c-dark);
}
.card-info p { margin: 6px 0; font-size: 14px; color: #4a5260; }
.card-info p strong { color: var(--c-dark); }

/* ============ VOUCHER BULLETS ============ */
.voucher-bullets {
    list-style: none;
    padding: 0;
    margin: 16px 0 24px;
}
.voucher-bullets li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #4a5260;
    line-height: 1.5;
}
.voucher-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    color: #16a34a;
    font-weight: 700;
}

/* ============ PAGINATION WRAP ============ */
.pagination-wrap {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

/* ============ DESTINATION CARDS GRID-3 fallback ============ */
.grid-3 .card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform .3s, box-shadow .3s;
}
.grid-3 .card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.grid-3 .card .card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}
.grid-3 .card .card-body { padding: 24px; }
.grid-3 .card .card-body h3 {
    font-family: var(--font-display);
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--c-dark);
}
.grid-3 .card .card-body p { color: #4a5260; font-size: 14px; line-height: 1.6; margin: 0 0 16px; }
.card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--c-border);
}
.card-foot .price {
    font-family: var(--font-display);
    font-size: 22px;
    color: #f3823c;
    font-weight: 700;
}

/* ============ RESPONSIVE - second pass ============ */
@media (max-width: 1024px) {
    .flight-detail-grid, .two-col { grid-template-columns: 1fr; gap: 32px; }
    .booking-aside, .two-col aside { position: static; }
}
@media (max-width: 768px) {
    .form-card { padding: 24px; }
    .form-card .row-2, .row-2 { grid-template-columns: 1fr; }
    .incl-grid { grid-template-columns: 1fr; }
    .page-hero-content { padding: 60px 20px 40px; }
    .big-price { font-size: 44px; }
    .success-box, .info-box, .warning-box { padding: 28px; }
}

/* ============================================================
   ADMIN PANEL - Pro design
   ============================================================ */
:root {
    --adm-bg:        #f1f5f9;
    --adm-card:      #ffffff;
    --adm-text:      #1e293b;
    --adm-muted:     #64748b;
    --adm-border:    #e2e8f0;
    --adm-side-bg-1: #0e1c2c;
    --adm-side-bg-2: #122844;
    --adm-side-text: #cbd6e0;
    --adm-side-h:    #ffffff;
    --adm-accent:    #f3823c;
    --adm-grad:      linear-gradient(90deg, #ff557c 0%, #f3823c 100%);
}

body.admin-body {
    background: var(--adm-bg);
    color: var(--adm-text);
    font-family: var(--font-body);
}

.admin-shell {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

/* === SIDEBAR === */
.admin-sidebar {
    background: linear-gradient(180deg, var(--adm-side-bg-1) 0%, var(--adm-side-bg-2) 100%);
    color: var(--adm-side-text);
    padding: 0;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 50;
    box-shadow: 4px 0 24px rgba(14,28,44,.18);
}
.admin-sidebar::-webkit-scrollbar { width: 6px; }
.admin-sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.08); border-radius: 6px; }

.admin-brand {
    padding: 24px 24px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
    display: flex;
    align-items: center;
    gap: 12px;
}
.admin-brand .admin-brand-logo {
    width: 40px; height: 40px;
    border-radius: 8px;
    background: var(--adm-grad);
    display: grid; place-items: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(255,85,124,.35);
}
.admin-brand .admin-brand-name {
    font-family: var(--font-display);
    font-size: 18px;
    color: #fff;
    font-weight: 700;
    line-height: 1.1;
}
.admin-brand .admin-brand-sub {
    font-size: 11px;
    color: var(--adm-side-text);
    text-transform: uppercase;
    letter-spacing: .15em;
}

.admin-nav { padding: 16px 0 80px; }
.admin-nav-section {
    padding: 18px 24px 6px;
    font-size: 11px;
    font-weight: 700;
    color: rgba(203,214,224,.55);
    text-transform: uppercase;
    letter-spacing: .15em;
}
.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    color: var(--adm-side-text);
    font-size: 14px;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
}
.admin-nav a:hover {
    background: rgba(255,255,255,.04);
    color: #fff;
    border-left-color: rgba(243,130,60,.5);
}
.admin-nav a.active {
    background: linear-gradient(90deg, rgba(243,130,60,.15) 0%, transparent 100%);
    color: #fff;
    border-left-color: var(--adm-accent);
    font-weight: 600;
}
.admin-nav a i {
    width: 22px;
    text-align: center;
    color: var(--adm-accent);
    font-size: 14px;
}
.admin-nav a.active i { color: #ffcc00; }
.admin-nav .logout-btn {
    background: transparent;
    border: 0;
    color: var(--adm-side-text);
    width: 100%;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    border-left: 3px solid transparent;
}
.admin-nav .logout-btn:hover { background: rgba(220,38,38,.15); color: #fff; border-left-color: #dc2626; }
.admin-nav .logout-btn i { width: 22px; text-align: center; color: #ef4444; }

/* === MAIN === */
.admin-main {
    background: var(--adm-bg);
    min-width: 0;
    display: flex;
    flex-direction: column;
}

/* Topbar */
.admin-topbar {
    background: #fff;
    border-bottom: 1px solid var(--adm-border);
    padding: 14px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 40;
    box-shadow: 0 1px 3px rgba(15,23,42,.04);
}
.admin-topbar-left { display: flex; align-items: center; gap: 18px; min-width: 0; }
.admin-mobile-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 22px;
    color: var(--adm-text);
    cursor: pointer;
}
.admin-breadcrumbs {
    font-size: 12px;
    color: var(--adm-muted);
    text-transform: uppercase;
    letter-spacing: .1em;
}
.admin-page-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--adm-text);
    font-weight: 700;
    margin: 2px 0 0;
}
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-topbar-right .topbar-icon-btn {
    width: 38px; height: 38px;
    border-radius: 8px;
    background: var(--adm-bg);
    color: var(--adm-text);
    display: grid; place-items: center;
    border: 1px solid var(--adm-border);
}
.admin-topbar-right .topbar-icon-btn:hover { background: #fff; color: var(--adm-accent); border-color: var(--adm-accent); }
.user-chip {
    display: flex; align-items: center; gap: 10px;
    padding: 4px 14px 4px 4px;
    border: 1px solid var(--adm-border);
    border-radius: 999px;
    background: #fff;
}
.user-chip .avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--adm-grad);
    color: #fff;
    display: grid; place-items: center;
    font-weight: 700;
    font-size: 13px;
}
.user-chip .name { font-size: 13px; font-weight: 600; color: var(--adm-text); }
.user-chip .role { font-size: 11px; color: var(--adm-muted); text-transform: uppercase; letter-spacing: .1em; }

/* Content */
.admin-content { padding: 28px 32px 60px; }

/* Toolbar (page header with action) */
.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    gap: 16px;
    flex-wrap: wrap;
}
.admin-toolbar h2 {
    font-family: var(--font-display);
    font-size: 20px;
    margin: 0;
    color: var(--adm-text);
    font-weight: 700;
}
.admin-toolbar .toolbar-actions { display: flex; gap: 10px; align-items: center; }

/* === KPI Cards === */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 28px;
}
.kpi-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(15,23,42,.06);
    border: 1px solid var(--adm-border);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform .2s, box-shadow .2s;
}
.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(15,23,42,.10);
}
.kpi-icon {
    width: 56px; height: 56px;
    border-radius: 12px;
    display: grid; place-items: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}
.kpi-icon.icon-pink   { background: linear-gradient(135deg, #ff557c, #f3823c); }
.kpi-icon.icon-orange { background: linear-gradient(135deg, #f3823c, #fbbf24); }
.kpi-icon.icon-blue   { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.kpi-icon.icon-green  { background: linear-gradient(135deg, #16a34a, #65a30d); }
.kpi-icon.icon-purple { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.kpi-icon.icon-amber  { background: linear-gradient(135deg, #f59e0b, #d97706); }
.kpi-card .kpi-body { min-width: 0; flex: 1; }
.kpi-label {
    font-size: 11px;
    color: var(--adm-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    margin: 0 0 4px;
}
.kpi-value {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--adm-text);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}
.kpi-sub { font-size: 12px; color: var(--adm-muted); margin-top: 2px; }

/* === Cards === */
.adm-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--adm-border);
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
    margin-bottom: 24px;
    overflow: hidden;
}
.adm-card-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--adm-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
}
.adm-card-header h3 {
    font-family: var(--font-display);
    font-size: 17px;
    margin: 0;
    color: var(--adm-text);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}
.adm-card-header h3 i { color: var(--adm-accent); font-size: 14px; }
.adm-card-body { padding: 22px; }
.adm-card-body.no-pad { padding: 0; }

/* === Filters bar === */
.filters,
.filters-bar-adm {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.filters input,
.filters select,
.filters-bar-adm input,
.filters-bar-adm select {
    padding: 9px 14px;
    border: 1px solid var(--adm-border);
    border-radius: 8px;
    background: #fff;
    font-family: inherit;
    font-size: 13px;
    color: var(--adm-text);
    min-width: 180px;
    transition: border-color .2s, box-shadow .2s;
}
.filters input:focus,
.filters select:focus,
.filters-bar-adm input:focus,
.filters-bar-adm select:focus {
    outline: none;
    border-color: var(--adm-accent);
    box-shadow: 0 0 0 3px rgba(243,130,60,.15);
}

/* === Pro tables (.table replacing previous styles) === */
table.table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
}
table.table thead tr {
    background: #f8fafc;
    border-bottom: 2px solid var(--adm-border);
}
table.table th {
    text-align: left;
    padding: 14px 18px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--adm-muted);
    font-weight: 700;
}
table.table td {
    padding: 14px 18px;
    border-top: 1px solid var(--adm-border);
    vertical-align: middle;
    color: var(--adm-text);
}
table.table tbody tr:hover { background: #fafbfc; }
table.table tbody tr:first-child td { border-top: none; }
table.table strong { color: var(--adm-text); font-weight: 700; }
table.table small.muted { color: var(--adm-muted); font-size: 12px; }
table.table code {
    background: var(--adm-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--adm-text);
}

/* === Badges (status pills) === */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    background: var(--adm-bg);
    color: var(--adm-text);
    line-height: 1.6;
}
.badge-confirmed,
.badge-paid,
.badge-active,
.badge-completed,
.badge-open       { background: #dcfce7; color: #166534; }
.badge-pending,
.badge-pending_payment,
.badge-awaiting_bank_transfer,
.badge-draft      { background: #fef3c7; color: #92400e; }
.badge-cancelled,
.badge-failed,
.badge-expired,
.badge-no_show    { background: #fee2e2; color: #991b1b; }
.badge-redeemed   { background: #dbeafe; color: #1e40af; }
.badge-refunded   { background: #fce7f3; color: #9d174d; }

/* === Action buttons inside tables === */
.btn-icon {
    display: inline-grid;
    place-items: center;
    width: 32px; height: 32px;
    border: 1px solid var(--adm-border);
    background: #fff;
    border-radius: 6px;
    color: var(--adm-text);
    font-size: 13px;
    transition: all .15s;
    cursor: pointer;
}
.btn-icon:hover { background: var(--adm-accent); color: #fff; border-color: var(--adm-accent); }
.btn-icon.btn-danger:hover { background: #dc2626; border-color: #dc2626; color: #fff; }
.btn-icon-group { display: inline-flex; gap: 4px; }

/* Buttons - admin overrides for size */
.admin-content .btn { padding: 10px 22px; font-size: 12px; border-radius: 8px; }
.admin-content .btn-sm { padding: 6px 14px; font-size: 11px; }
.admin-content .btn-primary { box-shadow: 0 4px 12px rgba(255,85,124,.25); }

/* === Form card admin === */
.admin-content .form-card {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(15,23,42,.04);
    border: 1px solid var(--adm-border);
    padding: 28px 32px;
}
.admin-content .form-card h3 {
    margin-top: 28px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--adm-border);
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--adm-text);
}
.admin-content .form-card h3:first-child { margin-top: 0; }
.admin-content .form-card label {
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--adm-muted);
    margin-top: 14px;
}

.form-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--adm-border);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* === Pagination admin === */
.admin-content .pagination {
    margin-top: 20px;
    padding: 16px 22px;
    background: #fff;
    border-top: 1px solid var(--adm-border);
}

/* === Two col helpers admin === */
.admin-content .two-col {
    grid-template-columns: 2fr 1fr;
}

/* === Login split === */
body.admin-login-body { background: var(--adm-bg); margin: 0; min-height: 100vh; }
.admin-login-shell {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}
.admin-login-brand {
    background:
      linear-gradient(135deg, rgba(14,28,44,.80) 0%, rgba(243,130,60,.55) 100%),
      url('https://www.panoramic-flights.com/wp-content/uploads/2023/10/foto-1.jpg') center/cover no-repeat;
    color: #fff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.admin-login-brand .login-logo {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,.16);
    backdrop-filter: blur(8px);
    display: grid; place-items: center;
    font-size: 24px;
    color: #fff;
}
.admin-login-brand h1 {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    margin: 0 0 12px;
}
.admin-login-brand p { font-size: 16px; line-height: 1.7; max-width: 460px; opacity: .92; margin: 0; }
.admin-login-brand .login-meta { font-size: 12px; opacity: .8; }

.admin-login-form-side {
    display: grid;
    place-items: center;
    padding: 40px;
}
.admin-login-card {
    width: 100%;
    max-width: 420px;
}
.admin-login-card h2 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--adm-text);
    margin: 0 0 6px;
    font-weight: 700;
}
.admin-login-card p.lead {
    color: var(--adm-muted);
    font-size: 14px;
    margin: 0 0 28px;
}

/* === Detail boxes (dashboard) === */
.adm-list-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    border-bottom: 1px solid var(--adm-border);
    gap: 12px;
}
.adm-list-row:last-child { border-bottom: 0; }
.adm-list-row:hover { background: #fafbfc; }
.adm-list-row .left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.adm-list-row .ref-badge {
    font-family: monospace;
    font-size: 12px;
    color: var(--adm-text);
    background: var(--adm-bg);
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
}
.adm-list-row .who { font-size: 13px; color: var(--adm-text); font-weight: 600; }
.adm-list-row .who small { display: block; color: var(--adm-muted); font-size: 11px; font-weight: 400; }
.adm-list-row .right { font-size: 13px; color: var(--adm-text); font-weight: 700; }

/* === Alerts admin === */
.admin-content .alert {
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 14px;
    margin-bottom: 20px;
    border-left: 4px solid;
}
.admin-content .alert-success { background: #dcfce7; color: #166534; border-left-color: #16a34a; }
.admin-content .alert-danger  { background: #fee2e2; color: #991b1b; border-left-color: #dc2626; }
.admin-content .alert ul { margin: 0; padding-left: 20px; }

/* === Responsive admin === */
@media (max-width: 1100px) {
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-content .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar {
        position: fixed;
        top: 0; left: 0;
        width: 280px;
        transform: translateX(-100%);
        transition: transform .25s;
        z-index: 200;
    }
    .admin-sidebar.is-open { transform: translateX(0); }
    .admin-mobile-toggle { display: block; }
    .admin-login-shell { grid-template-columns: 1fr; }
    .admin-login-brand { padding: 40px 28px; min-height: 280px; }
    .admin-login-form-side { padding: 32px 20px; }
}
@media (max-width: 640px) {
    .kpi-grid { grid-template-columns: 1fr; }
    .admin-content { padding: 20px 16px 60px; }
    .admin-topbar { padding: 12px 16px; }
    table.table thead { display: none; }
    table.table tr { display: block; padding: 10px 0; border-top: 1px solid var(--adm-border); }
    table.table td {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 8px 16px;
        border: 0;
        font-size: 13px;
    }
    table.table td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--adm-muted);
        text-transform: uppercase;
        font-size: 11px;
    }
}

/* ============================================================
   DARK THEME — FAITHFUL OVERRIDES (panoramic-flights.com)
   ============================================================ */
body { background: var(--c-bg); color: var(--c-text); }
a { color: #fff; }
a:hover { color: var(--c-accent); }

/* Headings */
.section-h2, .intro-title, .dest-card-title, .gift-dest-content h3,
.about-section .section-h2, .faq-section .section-h2,
.testimonial-card cite, .newsletter-box h3 {
    font-family: 'Barlow Condensed', var(--font-display);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.section-eyebrow { color: var(--c-accent); }
.gradient-text {
    background: linear-gradient(90deg, var(--c-accent) 0%, #ffd95a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top bar / header */
.top-bar { background: #000; border-bottom: 1px solid #1a1d22; }
.site-header { background: var(--c-bg); border-bottom: 1px solid #1a1d22; box-shadow: none; }
.main-nav a { color: #fff; }
.main-nav a:hover { color: var(--c-accent); }
.main-nav a:hover::after { background: var(--c-accent); }
.mobile-menu-toggle { color: #fff; }

/* Hero homepage — video background */
.hero-parallax { background: #000; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-video-bg, .hero-video-overlay {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
}
.hero-video-bg { z-index: 0; }
.hero-video-overlay {
    z-index: 1;
    background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,.55) 60%, rgba(12,15,22,.95) 100%);
}
.hero-content-parallax {
    position: relative; z-index: 3;
    text-align: center;
    padding-top: 30vh;
    color: #fff;
}
.hero-title-parallax { color: #fff; text-shadow: 0 4px 24px rgba(0,0,0,.6); }
.hero-line-1, .hero-line-3 { color: #fff; }
.hero-line-2 {
    background: none;
    -webkit-text-fill-color: var(--c-accent);
    color: var(--c-accent);
}
.hero-cta-block { margin-top: 36px; }
.hero-cta-block .btn { background: transparent; color: #fff; border: 2px solid #fff; }
.hero-cta-block .btn:hover { background: var(--c-accent); color: #000; border-color: var(--c-accent); }

/* Sections (all dark) */
.intro-section, .gift-dest-section, .faq-section, .about-section,
.testimonials-section, .newsletter-section, .content-section,
.flight-detail-section, .section, .filters-section, .dest-section {
    background: var(--c-dark);
    color: var(--c-text);
}
.intro-section .intro-right p,
.about-text p, .faq-body, .faq-body p,
.testimonial-card p, .newsletter-box p,
.rich-text p, .rich-text li { color: var(--c-text); }

/* Section dark sub-variant */
.dest-section-dark { background: #1a1d22; }

/* Cards (dest, testimonials, gift) all dark */
.dest-card-flight {
    background: #1a1d22;
    color: #fff;
}
.dest-card-flight:hover { color: #fff; }
.dest-card-info {
    background: var(--c-cta-bg);
    color: #fff;
    border-top: 0;
}
.dest-card-info p { color: #c8c8c8; }
.dest-card-info strong { color: var(--c-accent); }
.dest-card-info small { color: #8a8e92; }

.testimonial-card { background: #1a1d22; border-left-color: var(--c-accent); border-image: none; }
.testimonial-card p { color: var(--c-text); }
.testimonial-card cite { color: var(--c-accent); }

.about-section { background: #1a1d22; }
.about-img img { box-shadow: var(--shadow-lg); }

.faq-item { border-bottom-color: #3a3e42; }
.faq-item summary { color: #fff; }
.faq-item summary::after { color: var(--c-accent); }

.newsletter-box {
    background: #1a1d22;
    color: var(--c-text);
}
.newsletter-box h3 { color: #fff; }
.newsletter-box input,
.newsletter-form input,
.filters-bar input, .filters-bar select {
    background: #0c0f16;
    border-color: #3a3e42;
    color: #fff;
}

/* CTAs — dark with yellow text (faithful) */
.btn { font-family: 'Poppins', var(--font-body); font-weight: 600; letter-spacing: .08em; border-radius: 0; padding: 18px 32px; }
.btn-primary {
    background: var(--c-cta-bg);
    color: var(--c-accent);
    box-shadow: 0 6px 20px rgba(0,0,0,.45);
    border: 1px solid var(--c-cta-bg);
}
.btn-primary:hover {
    background: #000;
    color: var(--c-accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.55);
}
.btn-primary::after { content: '  →'; }
.btn-outline {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
}
.btn-outline:hover { background: #fff; color: #000; }
.btn-outline-dark { color: #fff; border-color: var(--c-accent); }
.btn-outline-dark:hover { background: var(--c-accent); color: #000; border-color: var(--c-accent); }

/* Card CTA stripes (dest/gift) */
.dest-card-cta, .gift-dest-cta {
    color: var(--c-accent);
    border-bottom: 0;
    font-weight: 700;
}
.dest-card-cta::after { content: '  →'; }
.gift-dest-content h3 { color: #fff; }
.gift-dest-card .gift-dest-content {
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 100%);
}
.gift-dest-info { background: rgba(0,0,0,.92); }

/* GIFT DESTINATION CARD with central CTA (matches screenshot) */
.gift-dest-cta-card {
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    border-radius: 0;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: transform .3s;
}
.gift-dest-cta-card:hover { transform: translateY(-4px); color: #fff; }
.gift-dest-cta-card .bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform .6s;
}
.gift-dest-cta-card:hover .bg { transform: scale(1.06); }
.gift-dest-cta-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.35) 100%);
    z-index: 1;
}
.gift-dest-cta-card .name {
    position: relative; z-index: 2;
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 24px;
    text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.gift-dest-cta-card .cta {
    position: relative; z-index: 2;
    background: var(--c-cta-bg);
    color: var(--c-accent);
    padding: 18px 38px;
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 8px 22px rgba(0,0,0,.45);
}
.gift-dest-cta-card .cta::after { content: '  →'; }
.gift-dest-caption {
    text-align: center;
    margin-top: 18px;
    font-style: italic;
    font-size: 14px;
    color: var(--c-text);
}

/* Flight detail */
.flight-detail-grid .booking-widget {
    background: #1a1d22;
    color: #fff;
    border-top-color: var(--c-accent);
    border-image: none;
}
.booking-widget hr { border-color: #3a3e42; }
.booking-meta { color: #c8c8c8; }
.booking-meta strong { color: #fff; }
.big-price { color: var(--c-accent); }
.big-price-sub { color: var(--c-muted); }

.incl-box { background: #1a1d22; color: var(--c-text); }
.incl-box h4 { color: #fff; }
.incl-box li { color: var(--c-text); }

.schedule-list { background: #1a1d22; }
.schedule-list h4 { color: #fff; }
.schedule-row { background: var(--c-dark); color: #fff; border-color: #3a3e42; }
.schedule-row:hover { background: #2e3335; border-color: var(--c-accent); }

/* Forms on dark (frontend) */
.form-card {
    background: #1a1d22;
    border: 1px solid #3a3e42;
}
.form-card h3 { color: #fff; border-bottom-color: #3a3e42; }
.form-card label { color: #c8c8c8; }
.form-card input,
.form-card select,
.form-card textarea {
    background: var(--c-bg);
    border-color: #3a3e42;
    color: #fff;
}
.form-card input::placeholder { color: #6b7280; }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(252,194,6,.15);
}

aside.info-box {
    background: #1a1d22;
    border-top-color: var(--c-accent);
}
aside.info-box h4 { color: #fff; }
aside.info-box p { color: var(--c-text); }
aside.info-box a { color: var(--c-accent); }

.success-box, .info-box, .warning-box {
    background: #1a1d22;
    color: var(--c-text);
}
.success-box h1, .info-box h1, .warning-box h1 { color: #fff; }
.bank-details { background: var(--c-bg); }
.card-info { background: #1a1d22; border-left-color: var(--c-accent); }
.card-info h4 { color: #fff; }
.card-info p { color: var(--c-text); }
.card-info p strong { color: #fff; }

/* Page hero (sub-pages) */
.page-hero { background: #000; }
.page-hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(12,15,22,.92) 100%);
}
.page-hero-eyebrow { color: var(--c-accent); }
.page-hero-title { color: #fff; }

/* Footer */
.site-footer { background: #000; color: var(--c-text); border-top: 1px solid #1a1d22; }
.site-footer h4 { color: #fff; font-family: 'Barlow Condensed', var(--font-display); text-transform: uppercase; letter-spacing: .05em; }
.site-footer a { color: var(--c-text); }
.site-footer a:hover { color: var(--c-accent); }
.footer-bottom { background: #000; border-top: 1px solid #1a1d22; color: #6b7280; }

/* Voucher bullets */
.voucher-bullets li { color: var(--c-text); }
.voucher-bullets li::before { color: var(--c-accent); }

/* Top bar lang switch active */
.lang-switch a.active { color: var(--c-accent); border-bottom-color: var(--c-accent); }

/* Filters */
.filters-bar { background: #1a1d22; border: 1px solid #3a3e42; }
.filters-bar input, .filters-bar select {
    background: var(--c-bg);
    color: #fff;
    border-color: #3a3e42;
}

/* Pagination */
.pagination a, .pagination span { background: #1a1d22; color: var(--c-text); border-color: #3a3e42; }
.pagination .active span { background: var(--c-accent); color: #000; border-color: var(--c-accent); }

/* Loading Poppins font for buttons */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ============================================================
   ALTERNATING SECTIONS — faithful to panoramic-flights.com
   Hero(dark) → Intro(LIGHT) → Featured(dark) → Events(LIGHT)
        → Testimonials(dark img) → About(dark) → FAQ(LIGHT)
        → Newsletter(YELLOW) → Footer(black)
   ============================================================ */

/* === LIGHT INTRO SECTION === */
.intro-section {
    background: #ffffff;
    color: #2a2f3a;
    padding: 100px 0;
}
.intro-section .intro-eyebrow { color: #f3823c; }
.intro-section .intro-title { color: #1a1d22; font-family: 'Barlow Condensed', var(--font-display); }
.intro-section .intro-right p { color: #4a5260; }
.intro-section .btn-primary {
    background: #252525;
    color: var(--c-accent);
}
.intro-section .btn-primary:hover { background: #000; color: var(--c-accent); }

/* === FEATURED FLIGHTS (TAKE OFF NOW) — dark like original === */
.dest-section {
    background: #2d2d2d;
    color: #fff;
}
.dest-section .section-h2 { color: #fff; }
.dest-section .section-eyebrow { color: var(--c-accent); }
.dest-section-dark { background: #1a1d22; }

/* === EVENTS / GIFT VOUCHER DESTINATIONS — LIGHT (like original) === */
.gift-dest-section {
    background: #ffffff;
    color: #1a1d22;
    padding: 100px 0;
}
.gift-dest-section .section-h2 { color: #252525; font-family: 'Barlow Condensed', var(--font-display); }
.gift-dest-section .section-subtitle,
.gift-dest-section .section-eyebrow { color: #6b7280; }
.gift-dest-section .gift-dest-caption { color: #4a5260; }

/* Within light gift-dest-section, the cards keep dark image bg with overlay */
.gift-dest-cta-card { background: #000; }
.gift-dest-cta-card .name { color: #fff; }
.gift-dest-cta-card .cta { background: #252525; color: var(--c-accent); }

/* === TESTIMONIALS — keep dark (with optional banner image) === */
.testimonials-section {
    background: #11141b
        url('https://www.panoramic-flights.com/wp-content/uploads/2021/03/banner-elicottero.jpg')
        center/cover no-repeat;
    background-blend-mode: multiply;
    color: #fff;
    padding: 110px 0;
    position: relative;
}
.testimonials-section::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(17,20,27,.65) 0%, rgba(17,20,27,.85) 100%);
    z-index: 0;
}
.testimonials-section > * { position: relative; z-index: 1; }
.testimonials-section .section-h2 { color: #fff; }
.testimonials-section .section-eyebrow { color: var(--c-accent); }
.testimonial-card {
    background: rgba(26,29,34,.85);
    backdrop-filter: blur(6px);
    border-left: 4px solid var(--c-accent);
}
.testimonial-card p { color: #e5e7eb; }
.testimonial-card cite { color: var(--c-accent); }

/* === ABOUT — dark (matches original #11141b) === */
.about-section {
    background: #11141b;
    color: #c8c8c8;
}

/* === FAQ — LIGHT (like original) === */
.faq-section {
    background: #ffffff;
    color: #000;
    padding: 100px 0;
}
.faq-section .section-h2 { color: #000; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-item summary { color: #000; }
.faq-item summary::after { color: var(--c-accent); }
.faq-body, .faq-body p, .faq-body li, .faq-body strong, .faq-body em { color: #000; }

/* === NEWSLETTER — YELLOW (like original) === */
.newsletter-section {
    background: linear-gradient(180deg, #ffc40e 0%, #ffd917 100%);
    color: #1a1d22;
    padding: 80px 0;
    border-top: 0;
}
.newsletter-section .newsletter-box {
    background: rgba(255,255,255,.0);
    box-shadow: none;
    border: 0;
    color: #1a1d22;
}
.newsletter-section .newsletter-box h3 {
    color: #1a1d22;
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 36px;
    text-transform: uppercase;
}
.newsletter-section .newsletter-box p { color: #1a1d22; }
.newsletter-section .checkbox-line { color: #1a1d22; }
.newsletter-section .checkbox-line a { color: #1a1d22; text-decoration: underline; }
.newsletter-section .newsletter-form input {
    background: #fff;
    color: #1a1d22;
    border: 1px solid #1a1d22;
}
.newsletter-section .newsletter-form input::placeholder { color: #6b7280; }
.newsletter-section .btn-primary {
    background: #1a1d22;
    color: #fff;
}
.newsletter-section .btn-primary:hover { background: #000; color: var(--c-accent); }

/* === Footer remains black === */
.site-footer { background: #000; }
.footer-bottom { background: #000; }

/* === HERO content above video — keep dark === */
.hero-parallax { background: #000; }

/* === PAGE HEROES (sub pages) === */
.page-hero { background: #000; }

/* === SUB-PAGES content blocks become LIGHT by default === */
.content-section,
.section,
.flight-detail-section,
.filters-section {
    background: #ffffff;
    color: #1a1d22;
}
.content-section .rich-text p,
.section .rich-text p,
.flight-detail-section .rich-text p { color: #4a5260; }
.flight-detail-section .booking-widget {
    background: #1a1d22;
    color: #fff;
}
.flight-detail-section .incl-box {
    background: #f7f8fb;
    color: #1a1d22;
}
.flight-detail-section .incl-box h4 { color: #1a1d22; }
.flight-detail-section .incl-box li { color: #4a5260; }

/* Sub-pages forms — light card */
.content-section .form-card,
.section .form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
}
.content-section .form-card h3,
.section .form-card h3 { color: #1a1d22; border-bottom-color: #e5e7eb; }
.content-section .form-card label,
.section .form-card label { color: #4a5260; }
.content-section .form-card input,
.content-section .form-card select,
.content-section .form-card textarea,
.section .form-card input,
.section .form-card select,
.section .form-card textarea {
    background: #fff;
    color: #1a1d22;
    border-color: #e5e7eb;
}
.section aside.info-box,
.content-section aside.info-box {
    background: #f7f8fb;
    color: #1a1d22;
    border-top: 4px solid var(--c-accent);
}
.section aside.info-box h4,
.content-section aside.info-box h4 { color: #1a1d22; }
.section aside.info-box p,
.content-section aside.info-box p { color: #4a5260; }

/* Light card-info, success-box, warning-box, info-box on sub-pages */
.section .card-info,
.section .success-box,
.section .info-box,
.section .warning-box,
.content-section .card-info {
    background: #ffffff;
    color: #1a1d22;
    border: 1px solid #e5e7eb;
}
.section .card-info h4,
.section .success-box h1,
.section .info-box h1,
.section .warning-box h1 { color: #1a1d22; }
.section .card-info p,
.section .success-box p,
.section .info-box p,
.section .warning-box p { color: #4a5260; }
.section .bank-details {
    background: #f7f8fb;
    color: #1a1d22;
}
.section .muted, .content-section .muted { color: #6b7280; }
.section .voucher-bullets li { color: #4a5260; }

/* Filters bar light */
.filters-section .filters-bar,
.section .filters-bar {
    background: #f7f8fb;
    border: 1px solid #e5e7eb;
}
.filters-section .filters-bar input,
.filters-section .filters-bar select,
.section .filters-bar input,
.section .filters-bar select {
    background: #fff;
    color: #1a1d22;
    border-color: #e5e7eb;
}

/* Pagination on light pages */
.section .pagination a,
.section .pagination span,
.content-section .pagination a,
.content-section .pagination span {
    background: #fff;
    color: #1a1d22;
    border-color: #e5e7eb;
}

/* Flight detail / dest cards on light bg */
.dest-section.dest-section-light {
    background: #fff;
    color: #1a1d22;
}
.dest-section.dest-section-light .section-h2 { color: #252525; }
.dest-section.dest-section-light .dest-card-flight { background: #f7f8fb; }
.dest-section.dest-section-light .dest-card-info { background: #fff; color: #1a1d22; border-top: 3px solid var(--c-accent); }
.dest-section.dest-section-light .dest-card-info p { color: #4a5260; }
.dest-section.dest-section-light .dest-card-info strong { color: var(--c-accent); }

/* ============ DESTINATIONS GRID (single section, 4×2) ============ */
.gift-dest-section .gift-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 24px;
    align-items: start;
}
.gift-dest-cell {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gift-dest-cell .gift-dest-cta-card { aspect-ratio: 1/1; }
.gift-dest-cell .gift-dest-caption {
    font-style: italic;
    font-size: 14px;
    color: #4a5260;
    text-align: center;
    line-height: 1.55;
    margin: 0;
}
.gift-dest-cell .gift-dest-caption strong { font-weight: 700; color: #1a1d22; font-style: normal; letter-spacing: .02em; }

/* ============ DEPARTURE MODAL (Monte Rosa: Gressoney / Alagna) ============ */
.dep-modal[hidden] { display: none; }
.dep-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.dep-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
    cursor: pointer;
}
.dep-modal-panel {
    position: relative;
    width: 100%;
    max-width: 720px;
    background: #fff;
    border-radius: 4px;
    padding: 64px 64px 56px;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
    animation: depModalIn .25s ease-out;
}
@keyframes depModalIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.dep-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    color: #1a1d22;
    font-size: 22px;
    cursor: pointer;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dep-modal-close:hover { color: var(--c-accent, #ffcc00); }
.dep-modal-title {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: #1a1d22;
    letter-spacing: .04em;
    margin: 0 0 22px;
    text-transform: uppercase;
}
.dep-modal-sub {
    font-family: 'Poppins', var(--font-body);
    font-size: 16px;
    color: #4a5260;
    line-height: 1.6;
    margin: 0 0 36px;
}
.dep-modal-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.dep-modal-btn {
    display: inline-block;
    min-width: 280px;
    padding: 18px 40px;
    background: var(--c-cta-bg, #ffcc00);
    color: #fff;
    font-family: 'Poppins', var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    transition: transform .15s, box-shadow .15s;
}
.dep-modal-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .18);
}
body.dep-modal-open { overflow: hidden; }

@media (max-width: 640px) {
    .dep-modal-panel { padding: 56px 24px 36px; }
    .dep-modal-title { font-size: 24px; }
    .dep-modal-sub { font-size: 15px; margin-bottom: 26px; }
    .dep-modal-btn { min-width: 100%; padding: 16px 24px; }
}

/* Voucher destinations: reuse the dark tier-info-box from /voli/{dest} */
.gift-dest-cell .gift-tier-info-box {
    margin-top: 0;
}
.gift-dest-cell .gift-tier-info-box .tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
}
.gift-dest-cell .gift-tier-info-box .tier-price-from {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(255, 204, 0, .75);
}

@media (max-width: 1024px) {
    .gift-dest-section .gift-dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .gift-dest-section .gift-dest-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Fix 2026 — cubotti destinazioni su mobile
   Il titolo (.gift-dest-cta-card .name) era 38px anche su telefono e
   tagliava i nomi lunghi (es. "Monte Bianco" → "Bianco"). Lo riduciamo
   in base al viewport.
   ============================================================ */
@media (max-width: 1024px) {
    .gift-dest-cta-card .name { font-size: 30px; margin-bottom: 18px; }
}
@media (max-width: 768px) {
    .gift-dest-cta-card .name {
        font-size: 26px;
        line-height: 1.1;
        margin-bottom: 16px;
        padding: 0 12px;
        word-break: keep-all;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .gift-dest-cta-card .cta { padding: 12px 22px; font-size: 13px; }
}
@media (max-width: 480px) {
    .gift-dest-cta-card .name { font-size: 22px; }
}

/* ============================================================
   TOP BAR + HEADER — fedele a panoramic-flights.com
   ============================================================ */

/* Top bar dark con icone gialle */
.top-bar {
    background: #262a2b;
    color: #fff;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 0;
    font-family: 'Poppins', var(--font-body);
    letter-spacing: .02em;
}
.top-bar a { color: #fff; transition: color .2s; }
.top-bar a:hover { color: var(--c-accent); }
.top-bar i { color: var(--c-accent); margin-right: 8px; font-size: 14px; }
.top-bar-inner { gap: 18px; }
.top-bar-contacts a {
    color: #fff;
    margin-right: 28px;
    font-weight: 400;
    letter-spacing: .02em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-bar-contacts a i { margin: 0; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 0;
}
.top-bar-social {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 0 22px;
    border-right: 1px solid rgba(255,255,255,.18);
    height: 22px;
}
.top-bar-social a {
    color: #fff;
    font-size: 13px;
    margin: 0;
}
.top-bar-social a:hover { color: var(--c-accent); }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 0;
    padding-left: 22px;
}
.lang-switch a {
    color: rgba(255,255,255,.7);
    font-weight: 500;
    margin: 0;
    padding: 0 12px;
    font-size: 13px;
    letter-spacing: .04em;
    border: 0;
    text-transform: uppercase;
    transition: color .2s;
}
.lang-switch a:hover { color: var(--c-accent); }
.lang-switch a.active {
    color: #fff;
    border-bottom: 0;
    font-weight: 600;
}

/* ============ HEADER (white, big logo, nav) ============ */
.site-header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    border-bottom: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 32px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo {
    height: 64px;
    width: auto;
    display: block;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}
.main-nav a {
    color: #2a2f3a;
    font-family: 'Poppins', var(--font-body);
    font-weight: 600;
    font-size: 13.5px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 28px 0;
    position: relative;
    line-height: 1;
    transition: color .2s;
}
.main-nav a:hover { color: var(--c-accent); }
.main-nav a:hover::after,
.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 16px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--c-accent);
    border-radius: 2px;
}
.main-nav a.active { color: #2a2f3a; }

.mobile-menu-toggle {
    color: #2a2f3a;
    background: none;
    border: 0;
    font-size: 22px;
    cursor: pointer;
    display: none;
}

@media (max-width: 1024px) {
    .top-bar-contacts a { margin-right: 16px; font-size: 12px; }
    .main-nav { gap: 24px; }
    .main-nav a { font-size: 12px; padding: 20px 0; letter-spacing: .08em; }
    .main-nav a:hover::after,
    .main-nav a.active::after { bottom: 10px; }
}
@media (max-width: 768px) {
    .top-bar-contacts a span,
    .top-bar-contacts a:not(:first-child) { display: none; }
    .top-bar-social { padding: 0 14px; }
    .lang-switch { padding-left: 14px; }
    .lang-switch a { padding: 0 8px; font-size: 12px; }
    .main-nav { display: none; }
    body.mobile-menu-open .main-nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: #fff;
        padding: 80px 32px;
        z-index: 200;
        gap: 24px;
        align-items: center;
    }
    body.mobile-menu-open .main-nav a { padding: 12px 0; font-size: 16px; }
    .mobile-menu-toggle { display: block; }
    .brand-logo { height: 48px; }
}

/* ============================================================
   DESTINATION PAGE — Silver/Bronze/Discovery tier cards
   ============================================================ */
.dest-tiers-section {
    background: #ffffff;
    padding: 80px 0 100px;
    color: #1a1d22;
}
.tier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px 24px;
}
.tier-cell {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.tier-card {
    position: relative;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: transform .3s;
}
.tier-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.18) 0%, rgba(0,0,0,.45) 100%);
    z-index: 1;
}
.tier-card:hover { transform: translateY(-4px); }
.tier-card-overlay {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px 18px;
}
.tier-eyebrow {
    color: #fff;
    font-family: 'Poppins', var(--font-body);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: .35em;
    text-transform: uppercase;
    margin: 0 0 14px;
    opacity: .95;
}
.tier-name {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 22px;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.tier-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 220px;
}
.tier-btn {
    background: #252525;
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 13px 24px;
    text-align: center;
    border: 0;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(0,0,0,.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform .2s, background .2s;
}
.tier-btn:hover {
    background: #000;
    color: var(--c-accent);
    transform: translateY(-1px);
}
.tier-btn i { font-size: 11px; }

.tier-price {
    text-align: center;
    margin: 24px 0 8px;
    font-size: 28px;
    font-weight: 800;
    color: #1a1d22;
    font-family: 'Poppins', var(--font-body);
}
.tier-caption {
    text-align: center;
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: #4a5260;
    line-height: 1.5;
    padding: 0 8px;
}
.tier-availability {
    text-align: center;
    margin: 14px 0 4px;
    font-size: 14px;
    font-style: italic;
    color: #1a1d22;
}
.tier-availability strong { font-weight: 700; }
.tier-dates {
    text-align: center;
    font-size: 12.5px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0 8px;
    font-style: italic;
}

@media (max-width: 1100px) {
    .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tier-grid { grid-template-columns: 1fr; }
    .tier-name { font-size: 28px; }
    .tier-price { font-size: 24px; }
}

/* Page hero — when on destination page, eyebrow is yellow but title white */
.page-hero-title { color: #fff !important; background: none !important; -webkit-text-fill-color: #fff !important; }

/* ============================================================
   DESTINATION DETAIL — named tours (Freney/Dent du Géant/Mont Blanc)
   ============================================================ */
.dest-tour-section {
    padding: 90px 0;
}
.dest-tour-section.tour-light { background: #ffffff; color: #000; }
.dest-tour-section.tour-dark  { background: #11141b; color: #fff; }
.dest-tour-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
/* Dark variant: image goes on the left — use order, not direction:rtl, to avoid horizontal overflow. */
.dest-tour-section.tour-dark .dest-tour-grid > .dest-tour-text  { order: 2; }
.dest-tour-section.tour-dark .dest-tour-grid > .dest-tour-image { order: 1; }

.dest-tour-eyebrow {
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin: 0 0 12px;
}
.dest-tour-title {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.05;
    margin: 0 0 22px;
    text-transform: uppercase;
}
.tour-light .dest-tour-title { color: #1a1d22; }
.tour-dark  .dest-tour-title { color: #fff; }

.dest-tour-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    font-size: 14px;
}
.tour-light .dest-tour-meta { color: #4a5260; }
.tour-dark  .dest-tour-meta { color: #c8c8c8; }
.dest-tour-meta li i { color: var(--c-accent); margin-right: 8px; }

.dest-tour-desc {
    font-size: 16px;
    line-height: 1.85;
    margin: 0 0 28px;
}
.tour-light .dest-tour-desc { color: #4a5260; }
.tour-dark  .dest-tour-desc { color: #c8c8c8; }

.dest-tour-cta-row {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.dest-tour-price {
    font-family: 'Poppins', var(--font-body);
    font-size: 14px;
}
.tour-light .dest-tour-price { color: #4a5260; }
.tour-dark  .dest-tour-price { color: #c8c8c8; }
.dest-tour-price strong {
    font-size: 22px;
    color: var(--c-accent);
    font-weight: 700;
    margin-left: 6px;
}

.dest-tour-image {
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
}

@media (max-width: 900px) {
    .dest-tour-grid { grid-template-columns: 1fr; gap: 32px; }
    /* Mobile: keep image-first order regardless of dark variant. */
    .dest-tour-section.tour-dark .dest-tour-grid > .dest-tour-text  { order: 2; }
    .dest-tour-section.tour-dark .dest-tour-grid > .dest-tour-image { order: 1; }
}

/* ============================================================
   LONG COPY SECTION (A unique experience, What you'll see, etc.)
   ============================================================ */
.dest-copy-section {
    background: #fff;
    color: #000;
    padding: 100px 0;
}
.dest-copy-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}
.dest-copy-grid.mt { margin-top: 70px; padding-top: 50px; border-top: 1px solid #e5e7eb; }
.dest-copy-grid .section-h2 {
    font-family: 'Barlow Condensed', var(--font-display);
    color: #000;
    font-size: clamp(32px, 4vw, 48px);
    text-transform: uppercase;
    margin: 8px 0 0;
}
.dest-copy-section .section-eyebrow { color: var(--c-accent); font-size: 12px; }
.dest-copy-text,
.dest-copy-text p,
.dest-copy-text li,
.dest-copy-text strong,
.dest-copy-text em,
.dest-copy-text a {
    font-size: 16px;
    line-height: 1.85;
    color: #000;
}
.dest-copy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.dest-copy-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #000;
    line-height: 1.55;
}
.dest-copy-list li::before {
    content: '\f062';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--c-accent);
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 13px;
}

@media (max-width: 900px) {
    .dest-copy-grid { grid-template-columns: 1fr; gap: 18px; }
    .dest-copy-grid.mt { margin-top: 40px; padding-top: 30px; }
}

/* Cross-sell section */
.dest-cross-sell .cross-sell-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}
@media (max-width: 700px) {
    .dest-cross-sell .cross-sell-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   DESTINATION BANNER SECTIONS (helicopter image + text)
   ============================================================ */
.dest-banner-section {
    padding: 90px 0;
}
.dest-banner-section.dest-banner-light { background: #ffffff; color: #1a1d22; }
.dest-banner-section.dest-banner-dark  { background: #11141b; color: #c8c8c8; }
.dest-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
/* Avoid grid items overflowing their column (default min-width:auto blows up with long words / no-wrap). */
.dest-banner-grid > * { min-width: 0; }
/* Reverse the visual order with `order` instead of direction:rtl — direction:rtl can shift text outside the viewport with overflow-x:hidden on body. */
.dest-banner-grid.reverse > .dest-banner-image { order: 2; }
.dest-banner-grid.reverse > .dest-banner-text  { order: 1; }
.dest-banner-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.dest-banner-text .section-eyebrow { color: var(--c-accent); }
.dest-banner-text .section-h2 {
    font-family: 'Barlow Condensed', var(--font-display);
    text-transform: uppercase;
    margin: 8px 0 18px;
    font-size: clamp(32px, 4vw, 48px);
}
.dest-banner-light .section-h2 { color: #000; }
.dest-banner-dark  .section-h2 { color: #fff; }
.dest-banner-text p {
    font-size: 16px;
    line-height: 1.85;
}
/* Solid black on light banner, solid white on dark banner — including any nested elements. */
.dest-banner-light .dest-banner-text,
.dest-banner-light .dest-banner-text * { color: #000; }
.dest-banner-dark  .dest-banner-text,
.dest-banner-dark  .dest-banner-text * { color: #fff; }

@media (max-width: 900px) {
    .dest-banner-grid { grid-template-columns: 1fr; gap: 28px; }
    /* On mobile keep image first, text second — undo the order swap. */
    .dest-banner-grid.reverse > .dest-banner-image { order: 1; }
    .dest-banner-grid.reverse > .dest-banner-text  { order: 2; }
}

/* ============================================================
   DESTINATION — Image + destination text rows
   ============================================================ */
.dest-tour-section.dest-tour-content { padding: 90px 0; }
.dest-tour-section.dest-tour-content .dest-tour-text {
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.dest-tour-section.dest-tour-content .dest-tour-eyebrow {
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin: 0;
}
.dest-tour-section.dest-tour-content .dest-tour-title {
    margin: 0 0 4px;
    font-family: 'Barlow Condensed', var(--font-display);
    text-transform: uppercase;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.05;
}
.dest-tour-section.dest-tour-content.tour-light .dest-tour-title { color: #000; }
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-title { color: #fff; }
.dest-tour-section.dest-tour-content .dest-tour-body {
    font-size: 15.5px;
    line-height: 1.75;
}
/* Force solid black/white inside the body — overriding inherited gray. Keep accent-colored bullet ::before untouched. */
.dest-tour-section.dest-tour-content.tour-light .dest-tour-body,
.dest-tour-section.dest-tour-content.tour-light .dest-tour-body p,
.dest-tour-section.dest-tour-content.tour-light .dest-tour-body li,
.dest-tour-section.dest-tour-content.tour-light .dest-tour-body strong,
.dest-tour-section.dest-tour-content.tour-light .dest-tour-body em,
.dest-tour-section.dest-tour-content.tour-light .dest-tour-body a { color: #000; }
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-body,
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-body p,
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-body li,
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-body strong,
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-body em,
.dest-tour-section.dest-tour-content.tour-dark  .dest-tour-body a { color: #fff; }
.dest-tour-section.dest-tour-content .dest-tour-image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 0;
    border-radius: 6px;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
/* Grid items must not exceed their column (default min-width:auto can overflow) */
.dest-tour-section.dest-tour-content .dest-tour-grid > * {
    min-width: 0;
}
.dest-tour-section.dest-tour-content .dest-copy-list {
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}
.dest-tour-section.dest-tour-content .dest-copy-list li {
    position: relative;
    padding: 6px 0 6px 28px;
    line-height: 1.6;
}
.dest-tour-section.dest-tour-content .dest-copy-list li::before {
    content: "↑";
    position: absolute;
    left: 0; top: 6px;
    color: var(--c-accent);
    font-weight: 700;
}
@media (max-width: 900px) {
    .dest-tour-section.dest-tour-content { padding: 56px 0; }
}

/* ============================================================
   DESTINATION — Take-off map (Heli Guides original style: full-width iframe)
   ============================================================ */
.dest-map-section {
    background: #11141b;
    padding: 0;
}
.dest-map-section .dest-map-frame { width: 100%; }
.dest-map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    display: block;
}
@media (max-width: 900px) {
    .dest-map-section iframe { height: 360px; }
}

/* Tour grid reverse (image on left) — using order CSS rather than direction:rtl. */
.dest-tour-grid.reverse > .dest-tour-text  { order: 2; }
.dest-tour-grid.reverse > .dest-tour-image { order: 1; }
@media (max-width: 900px) {
    .dest-tour-grid.reverse > .dest-tour-text  { order: 2; }
    .dest-tour-grid.reverse > .dest-tour-image { order: 1; }
}
/* Avoid grid items overflowing their column. */
.dest-tour-grid > * { min-width: 0; }

/* ============================================================
   ABOUT US — Fly With Us CTA banner
   ============================================================ */
.dest-cta-banner {
    background:
        linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(12,15,22,.85) 100%),
        url('https://www.panoramic-flights.com/wp-content/uploads/2023/10/foto-1.jpg') center/cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}
.dest-cta-banner .section-h2 {
    color: #fff;
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    text-transform: uppercase;
    margin: 0 0 18px;
}
.dest-cta-banner p {
    color: #c8c8c8;
    font-size: 17px;
    max-width: 680px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* ============================================================
   HOME — visual separation between intro & destinations
   ============================================================ */
/* Slight tint on the destinations section so the edge is visible */
.gift-dest-section {
    background: #f7f8fb;
    position: relative;
}

/* Thin gradient bar that visually separates the two white sections */
.gift-dest-section::before {
    content: '';
    display: block;
    height: 4px;
    width: 80px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, var(--c-accent) 0%, #f3823c 100%);
    border-radius: 2px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
}
.gift-dest-section .container { padding-top: 30px; }

/* The intro section gets a tighter bottom for cleaner transition */
.intro-section {
    padding-bottom: 80px;
}

/* ============================================================
   HOME — 9 destinations (3×3 grid)
   ============================================================ */
.gift-dest-section .gift-dest-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 28px;
}
@media (max-width: 900px) {
    .gift-dest-section .gift-dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .gift-dest-section .gift-dest-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ADMIN FOOTER — credit FiloCare
   ============================================================ */
.admin-footer {
    margin-top: auto;
    padding: 18px 32px;
    border-top: 1px solid var(--adm-border);
    background: #fff;
    color: var(--adm-muted);
    font-size: 12.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.admin-footer a {
    color: var(--adm-accent);
    font-weight: 700;
    text-decoration: none;
}
.admin-footer a:hover { text-decoration: underline; }
.admin-footer-credit i { color: var(--adm-accent); margin-right: 4px; }

@media (max-width: 600px) {
    .admin-footer { padding: 14px 16px; flex-direction: column; align-items: flex-start; text-align: left; }
}

/* ============================================================
   SEARCH PAGE — proprietary search bar with tabs (FlyMoove-style)
   ============================================================ */
.search-hero {
    position: relative;
    color: #fff;
    padding: 90px 0 60px;
    overflow: hidden;
}
.search-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.search-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(12,15,22,.92) 100%);
    z-index: 1;
}
.search-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.search-hero-eyebrow {
    color: var(--c-accent);
    text-transform: lowercase;
    letter-spacing: .25em;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 12px;
}
.search-hero-title {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 800;
    text-transform: uppercase;
    margin: 0 0 14px;
    color: #fff;
    letter-spacing: .02em;
}
.search-hero-sub {
    color: #c8c8c8;
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

/* Tabs */
.search-tabs {
    display: inline-flex;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 6px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 4px;
}
.search-tab {
    padding: 11px 24px;
    color: #c8c8c8;
    font-family: 'Poppins', var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    transition: background .2s, color .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.search-tab:hover { color: #fff; }
.search-tab.active {
    background: var(--c-accent);
    color: #1a1d22;
    box-shadow: 0 4px 16px rgba(252,194,6,.4);
}
.search-tab i { font-size: 13px; }

/* Search bar */
.search-bar {
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 14px;
    display: grid;
    grid-template-columns: 2fr 1.2fr 0.9fr 1fr auto;
    gap: 8px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    box-shadow: 0 24px 48px rgba(0,0,0,.45);
}
.search-bar.charter-bar {
    grid-template-columns: 1.5fr 1.5fr 1fr 0.8fr auto;
}
.search-bar.empty-leg-bar {
    background: rgba(0,0,0,.4);
    border: 1px solid rgba(252,194,6,.4);
    text-align: left;
    padding: 18px 24px;
    display: block;
    max-width: 800px;
}
.search-field {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 6px 14px;
    border-right: 1px solid #e5e7eb;
}
.search-field:last-of-type { border-right: 0; }
.search-field label {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.search-field input,
.search-field select {
    border: 0;
    background: transparent;
    padding: 0;
    font-family: 'Poppins', var(--font-body);
    font-size: 14px;
    color: #1a1d22;
    font-weight: 500;
    width: 100%;
    outline: none;
    cursor: pointer;
}
.search-field input::placeholder { color: #9ca3af; }
.search-submit {
    background: var(--c-accent);
    color: #1a1d22;
    border: 0;
    border-radius: 8px;
    padding: 0 30px;
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .12em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(252,194,6,.4);
    transition: transform .2s, box-shadow .2s;
}
.search-submit:hover {
    transform: translateY(-1px);
    background: #ffd43a;
    box-shadow: 0 10px 24px rgba(252,194,6,.5);
}

@media (max-width: 1000px) {
    .search-bar,
    .search-bar.charter-bar { grid-template-columns: 1fr 1fr; }
    .search-field { border-right: 0; border-bottom: 1px solid #e5e7eb; }
    .search-submit { grid-column: 1 / -1; padding: 14px; }
}
@media (max-width: 600px) {
    .search-bar,
    .search-bar.charter-bar { grid-template-columns: 1fr; }
    .search-tabs { width: 100%; flex-direction: column; }
    .search-tab { width: 100%; justify-content: center; }
}

/* Results */
.search-results-section {
    background: #fff;
    padding: 70px 0 90px;
}
.search-results-header {
    text-align: center;
    margin-bottom: 36px;
}
.search-results-header .section-h2 {
    color: #252525;
    font-family: 'Barlow Condensed', var(--font-display);
    text-transform: uppercase;
    margin: 0 0 6px;
    font-size: clamp(32px, 4vw, 48px);
}
.search-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.search-result-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 14px rgba(15,23,42,.06);
    transition: transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.search-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
}
.search-result-img {
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    position: relative;
}
.search-result-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #252525;
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}
.search-result-badge.badge-deal {
    background: var(--c-accent);
    color: #1a1d22;
}
.search-result-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.search-result-eyebrow {
    color: #f3823c;
    font-family: 'Poppins', var(--font-body);
    font-weight: 600;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 6px;
}
.search-result-name {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 24px;
    color: #1a1d22;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.15;
}
.search-result-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13px;
    color: #4a5260;
}
.search-result-meta li i { color: var(--c-accent); margin-right: 6px; }
.search-result-foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
    gap: 12px;
}
.search-result-price {
    font-family: 'Poppins', var(--font-body);
    font-size: 13px;
    color: #4a5260;
}
.search-result-price strong {
    color: var(--c-accent);
    font-size: 22px;
    font-weight: 800;
    margin-left: 6px;
    display: block;
}
.search-result-foot .tier-btn {
    padding: 11px 18px;
    font-size: 11px;
}

@media (max-width: 1000px) {
    .search-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .search-results-grid { grid-template-columns: 1fr; }
}

.search-empty,
.search-hint {
    background: #f7f8fb;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    color: #4a5260;
    font-size: 15px;
}
.search-empty i,
.search-hint i { color: var(--c-accent); margin-right: 8px; }

/* ============================================================
   ADMIN FOOTER
   ============================================================ */
.admin-footer {
    background: #fff;
    border-top: 1px solid var(--adm-border);
    padding: 18px 32px;
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 13px;
    color: var(--adm-muted);
}
.admin-footer-credit a {
    color: var(--adm-accent);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s;
}
.admin-footer-credit a:hover {
    color: #ff557c;
    text-decoration: underline;
}
@media (max-width: 600px) {
    .admin-footer {
        flex-direction: column;
        text-align: center;
        padding: 14px 20px;
    }
}

/* ============================================================
   SEARCH MAP — Leaflet + sidebar + flight detail panel
   ============================================================ */
.search-hero-compact { padding: 60px 0 30px; }
.search-hero-compact .search-hero-title { font-size: clamp(32px, 4vw, 56px); margin-bottom: 14px; }
.search-hero-compact .search-hero-sub { display: none; }

.search-map-section {
    background: #11141b;
    padding: 0;
    position: relative;
}
.search-map-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    height: calc(100vh - 200px);
    min-height: 600px;
}
.search-map {
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Custom helicopter pin */
.heli-pin .heli-pin-inner {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #1a1d22;
    display: grid; place-items: center;
    box-shadow: 0 6px 16px rgba(0,0,0,.4);
    border: 3px solid #fff;
    font-size: 16px;
    transition: transform .2s;
}
.heli-pin:hover .heli-pin-inner { transform: scale(1.15); }

/* Results sidebar */
.search-results-pane {
    background: #1a1d22;
    color: #c8c8c8;
    border-left: 1px solid #3a3e42;
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.search-results-pane-head {
    padding: 22px 24px;
    border-bottom: 1px solid #3a3e42;
    background: #11141b;
}
.search-pane-title {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 4px;
    color: #fff;
    display: flex; align-items: center; gap: 10px;
}
.search-pane-title i { color: var(--c-accent); }
.search-pane-sub {
    margin: 0;
    color: #8a8e92;
    font-size: 13px;
}

.search-results-pane-list {
    overflow-y: auto;
    flex: 1;
    padding: 12px;
}
.search-results-pane-list::-webkit-scrollbar { width: 6px; }
.search-results-pane-list::-webkit-scrollbar-thumb { background: #3a3e42; border-radius: 6px; }

.result-item {
    background: #262a2b;
    border: 1px solid #3a3e42;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    cursor: pointer;
    transition: border-color .2s, transform .2s, box-shadow .2s;
    display: flex;
    flex-direction: column;
}
.result-item:hover,
.result-item.is-active {
    border-color: var(--c-accent);
    box-shadow: 0 8px 24px rgba(252,194,6,.18);
}
.result-item-img {
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    position: relative;
}
.result-item-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: #252525;
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
}
.result-item-body { padding: 14px 16px 16px; }
.result-item-eyebrow {
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 4px;
    font-weight: 600;
}
.result-item-name {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 20px;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.2;
    font-weight: 700;
}
.result-item-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 11px;
    color: #c8c8c8;
}
.result-item-meta i { color: var(--c-accent); margin-right: 4px; }
.result-item-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.result-item-price strong {
    color: var(--c-accent);
    font-size: 20px;
    font-weight: 800;
    font-family: 'Poppins', var(--font-body);
}
.result-item-detail-btn {
    padding: 8px 14px;
    font-size: 10px;
}

/* Flight detail panel (slides in from the right over the map) */
.flight-detail-panel {
    position: absolute;
    top: 20px; right: 20px;
    width: min(540px, calc(100% - 460px));
    background: #1a1d22;
    border: 1px solid var(--c-accent);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(0,0,0,.6);
    z-index: 600;
    overflow: hidden;
    color: #fff;
    max-height: calc(100% - 40px);
    overflow-y: auto;
}
.flight-detail-close {
    position: absolute;
    top: 12px; right: 14px;
    background: rgba(0,0,0,.5);
    color: #fff;
    border: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}
.flight-detail-close:hover { background: var(--c-accent); color: #1a1d22; }

.fdp-image {
    aspect-ratio: 16/8;
    background-size: cover;
    background-position: center;
    position: relative;
}
.fdp-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--c-accent);
    color: #1a1d22;
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}
.fdp-body { padding: 22px 24px 24px; }
.fdp-eyebrow {
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    margin: 0 0 4px;
    font-weight: 600;
}
.fdp-title {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 30px;
    margin: 0 0 12px;
    color: #fff;
    line-height: 1.15;
    font-weight: 700;
}
.fdp-desc {
    font-size: 14px;
    color: #c8c8c8;
    line-height: 1.6;
    margin: 0 0 18px;
    font-style: italic;
}
.fdp-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: #262a2b;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 18px;
}
.fdp-spec span {
    display: block;
    font-size: 10px;
    color: #8a8e92;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 3px;
}
.fdp-spec strong {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
}
.fdp-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #3a3e42;
    flex-wrap: wrap;
}
.fdp-price span {
    display: block;
    font-size: 11px;
    color: #8a8e92;
    text-transform: uppercase;
    letter-spacing: .12em;
}
.fdp-price strong {
    font-family: 'Poppins', var(--font-body);
    font-size: 28px;
    color: var(--c-accent);
    font-weight: 800;
}
.fdp-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.tier-btn-secondary {
    background: transparent;
    border: 1px solid var(--c-accent);
}

/* Responsive */
@media (max-width: 1100px) {
    .search-map-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    .search-map { height: 400px; }
    .search-results-pane { border-left: 0; border-top: 1px solid #3a3e42; }
    .search-results-pane-list { max-height: 600px; }
    .flight-detail-panel {
        position: fixed;
        top: 60px; right: 12px; left: 12px;
        width: auto;
        max-height: 80vh;
    }
}
@media (max-width: 600px) {
    .fdp-specs { grid-template-columns: 1fr; }
}

/* ============================================================
   ADMIN — Translations editor
   ============================================================ */
.translation-table-wrap {
    overflow-x: auto;
    max-height: 70vh;
    overflow-y: auto;
    border-bottom: 1px solid var(--adm-border);
}
.translation-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
}
.translation-table thead th {
    position: sticky;
    top: 0;
    background: #f8fafc;
    border-bottom: 2px solid var(--adm-border);
    padding: 12px 14px;
    text-align: left;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--adm-muted);
    z-index: 5;
}
.translation-table .tr-col-key { min-width: 240px; max-width: 320px; }
.translation-table .tr-col-lang { min-width: 240px; }
.translation-table .tr-col-actions { width: 50px; }
.translation-table .tr-lang-flag {
    display: inline-block;
    background: var(--adm-grad);
    color: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.translation-table tbody tr {
    border-bottom: 1px solid var(--adm-border);
}
.translation-table tbody tr:nth-child(even) td {
    background: #fafbfc;
}
.translation-table tbody td {
    padding: 12px 14px;
    vertical-align: top;
    border-bottom: 1px solid var(--adm-border);
}
.translation-table .tr-key {
    display: block;
    background: var(--adm-bg);
    padding: 6px 10px;
    border-radius: 6px;
    font-family: monospace;
    font-size: 12px;
    color: var(--adm-text);
    word-break: break-all;
    line-height: 1.4;
}
.translation-table .tr-group {
    display: inline-block;
    margin-top: 6px;
    background: #e0e7ff;
    color: #4338ca;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 999px;
}
.translation-table input[type="text"],
.translation-table textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--adm-border);
    border-radius: 6px;
    padding: 8px 10px;
    font-family: inherit;
    font-size: 13px;
    color: var(--adm-text);
    line-height: 1.5;
    resize: vertical;
    min-height: 36px;
    transition: border-color .15s, box-shadow .15s;
}
.translation-table textarea { min-height: 60px; }
.translation-table input[type="text"]:focus,
.translation-table textarea:focus {
    outline: none;
    border-color: var(--adm-accent);
    box-shadow: 0 0 0 3px rgba(243,130,60,.15);
    background: #fff;
}
.translation-table tr:hover td {
    background: #fef3c7 !important;
}

#trSearch, #trGroupFilter {
    padding: 8px 12px;
    border: 1px solid var(--adm-border);
    border-radius: 6px;
    font-size: 13px;
    background: #fff;
}
#trSearch:focus, #trGroupFilter:focus {
    outline: none;
    border-color: var(--adm-accent);
    box-shadow: 0 0 0 3px rgba(243,130,60,.15);
}

@media (max-width: 1100px) {
    .translation-table thead { display: none; }
    .translation-table tbody tr {
        display: block;
        margin-bottom: 16px;
        background: #fff;
        border: 1px solid var(--adm-border);
        border-radius: 8px;
        padding: 12px;
    }
    .translation-table tbody td {
        display: block;
        padding: 6px 0;
        border: 0;
        background: transparent !important;
    }
    .translation-table .tr-col-lang::before {
        content: attr(data-label);
    }
}

/* ============================================================
   FLIGHTS INDEX — destinations grid with filters
   ============================================================ */
.flights-filters-section {
    background: #f7f8fb;
    padding: 28px 0;
    border-bottom: 1px solid #e5e7eb;
}
.flights-filter-bar {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr auto;
    gap: 8px;
    align-items: stretch;
    box-shadow: 0 4px 14px rgba(15,23,42,.04);
}
.flt-field {
    display: flex;
    flex-direction: column;
    padding: 6px 14px;
    border-right: 1px solid #e5e7eb;
}
.flt-field:last-of-type { border-right: 0; }
.flt-field label {
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.flt-field input,
.flt-field select {
    border: 0;
    background: transparent;
    padding: 0;
    font-family: 'Poppins', var(--font-body);
    font-size: 14px;
    color: #1a1d22;
    outline: none;
    width: 100%;
}
.flt-field-grow { grid-column: span 1; }
.flt-field-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    padding: 0 8px;
}
.flt-field-actions .btn {
    padding: 12px 22px;
    font-size: 12px;
    border-radius: 8px;
}

.flights-dest-section {
    padding-top: 70px;
}
.flights-dest-section .gift-dest-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* RESPONSIVE: senza override la pagina /voli restava a 3 colonne anche su
   mobile, e i titoli a 2 righe ("Monte Bianco") venivano tagliati. */
@media (max-width: 1024px) {
    .flights-dest-section .gift-dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .flights-dest-section .gift-dest-grid { grid-template-columns: 1fr; gap: 18px; }
    .flights-dest-section .gift-dest-cell .gift-dest-cta-card { aspect-ratio: 16/9; }
}

@media (max-width: 1000px) {
    .flights-filter-bar {
        grid-template-columns: 1fr 1fr;
    }
    .flt-field { border-right: 0; border-bottom: 1px solid #e5e7eb; }
    .flt-field-actions { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
    .flights-filter-bar { grid-template-columns: 1fr; }
}

/* ============================================================
   TIER INFO BOX — dark bar with icons + price (matches mockup)
   ============================================================ */
.tier-info-box {
    background: #1a1d22;
    color: #fff;
    padding: 18px 20px 14px;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 8px 18px rgba(0,0,0,.18);
}
.tier-meta-bar {
    list-style: none;
    margin: 0 0 10px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    color: #c8c8c8;
    font-size: 13px;
    font-family: 'Poppins', var(--font-body);
    font-weight: 500;
    align-items: center;
}
.tier-meta-bar li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
}
.tier-meta-ico {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--c-accent);
    color: #1a1d22;
    display: inline-grid;
    place-items: center;
    font-size: 11px;
    flex-shrink: 0;
}
.tier-meta-ico i { line-height: 1; }
.tier-info-box .tier-price {
    margin: 4px 0 0;
    text-align: left;
    font-family: 'Poppins', var(--font-body);
    font-size: 32px;
    font-weight: 800;
    color: var(--c-accent);
    letter-spacing: -.01em;
    line-height: 1.05;
}

/* When the info box is below the image, remove the rounded corners on top */
.tier-cell .tier-card { border-radius: 4px 4px 0 0; overflow: hidden; }

/* On a light section the box stays dark, but caption and dates below
   remain in the section's colour scheme. */
.tier-cell .tier-caption {
    margin-top: 14px;
}

@media (max-width: 600px) {
    .tier-info-box { padding: 14px 16px 12px; }
    .tier-meta-bar { gap: 12px; font-size: 12px; }
    .tier-info-box .tier-price { font-size: 26px; }
}

/* ============================================================
   Cubotti voli — stile COMPATTO 2026 (immagine sopra, info sotto)
   Riproduce lo stile .result-item della pagina cerca-e-prenota,
   ma adattato a una griglia di 4 colonne nella pagina destinazione.
   ============================================================ */
.tier-grid-compact { gap: 28px 22px; }

.tier-card-compact {
    display: flex;
    flex-direction: column;
    background: #1c1f24;
    border: 1px solid #2a2e36;
    border-radius: 12px;
    overflow: hidden;
    color: inherit;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tier-card-compact:hover {
    border-color: var(--c-accent);
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(252,194,6,.18);
}
.tier-card-compact-img {
    position: relative;
    aspect-ratio: 4/3;
    background-size: cover;
    background-position: center;
    display: block;
    text-decoration: none;
}
.tier-card-compact-name a {
    color: inherit;
    text-decoration: none;
}
.tier-card-compact-name a:hover {
    color: var(--c-accent);
}
.tier-card-compact-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(25,27,32,.85);
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 10px;
    letter-spacing: .15em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(252,194,6,.4);
}
.tier-card-compact-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tier-card-compact-eyebrow {
    color: var(--c-accent);
    font-family: 'Poppins', var(--font-body);
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
}
.tier-card-compact-name {
    font-family: 'Barlow Condensed', var(--font-display);
    font-size: 22px;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    font-weight: 700;
}
.tier-card-compact-meta {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: #c8c8c8;
}
.tier-card-compact-meta li { display: inline-flex; align-items: center; }
.tier-card-compact-meta i {
    color: var(--c-accent);
    margin-right: 6px;
    font-size: 12px;
}
.tier-card-compact-price {
    margin: 4px 0 0;
    padding-top: 10px;
    border-top: 1px solid #2a2e36;
    display: flex;
    align-items: baseline;
    gap: 6px;
}
.tier-card-compact-price strong {
    color: var(--c-accent);
    font-size: 24px;
    font-weight: 800;
    font-family: 'Poppins', var(--font-body);
}
.tier-card-compact-price-prefix {
    font-size: 10px;
    color: #c8c8c8;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.tier-card-compact-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 6px;
}
.tier-card-compact-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 6px;
    font-family: 'Poppins', var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background .2s, color .2s, transform .2s;
    white-space: nowrap;
}
.tier-card-compact-cta-primary {
    background: var(--c-accent);
    color: #1c1f24;
}
.tier-card-compact-cta-primary:hover {
    background: #ffd84d;
    color: #1c1f24;
    transform: translateY(-1px);
    text-decoration: none;
}
.tier-card-compact-cta-secondary {
    background: transparent;
    color: var(--c-accent);
    border: 1px solid var(--c-accent);
}
.tier-card-compact-cta-secondary:hover {
    background: var(--c-accent);
    color: #1c1f24;
    transform: translateY(-1px);
    text-decoration: none;
}

/* Caption + availability + dates mostrati direttamente sotto la card,
   nella stessa cella della griglia (4 colonne). */
.tier-grid-compact .tier-cell .tier-caption {
    margin-top: 12px;
    font-size: 13px;
    color: #4a4a4a;
    line-height: 1.45;
}
.tier-grid-compact .tier-cell .tier-availability {
    margin-top: 10px;
    font-size: 12px;
    color: #1c1f24;
}
.tier-grid-compact .tier-cell .tier-dates {
    margin-top: 4px;
    font-size: 12px;
    color: #555;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tier-grid-compact { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tier-grid-compact { grid-template-columns: 1fr; gap: 22px; }
    .tier-card-compact-name { font-size: 20px; }
    .tier-card-compact-price strong { font-size: 20px; }
}
