/* ==========================================================================
   Tepuy Tours 119 - Corporate Luxury CSS Design System
   Brand: Forest Green (#1A3A2A), Champagne Gold (#C9A84C), Warm Ivory (#F8F5EE)
   Typography: Cormorant Garamond (Serif, Luxury) & Outfit (Sans-Serif, UI)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Color Variables & Styling Tokens */
:root {
    --g: #1A3A2A;          /* Primary: Forest Green */
    --gmd: #2B5A40;        /* Forest Green Medium */
    --glt: #3D7A57;        /* Forest Green Light */
    --gold: #C9A84C;       /* Secondary: Champagne Gold */
    --goldh: #E0B755;      /* Gold Hover */
    --red: #8B3A2A;        /* Highlight Red */
    --bg: #F8F5EE;         /* Background: Ivory Cream */
    --white: #ffffff;      /* White */
    --dark: #0E1A12;       /* Very Dark Green */
    --gray: #55665A;       /* Text Muted / Grey */
    --bdr: #E0E0D8;        /* Border Grey */
    --success: #2D7A45;    /* Success Green */
    
    /* Typography */
    --ff-d: 'Cormorant Garamond', serif;
    --ff-b: 'Outfit', sans-serif;
    
    /* Visual Effects */
    --shadow: 0 10px 30px rgba(14, 26, 18, 0.08);
    --shadow-deep: 0 18px 50px rgba(14, 26, 18, 0.15);
    --border-gold-soft: 1px solid rgba(201, 168, 76, 0.18);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(14, 26, 18, 0.95);
    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--ff-b);
    background: var(--bg);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.5;
    min-height: 100%;
    /* Safety space for fixed navigation in mobile PWA views */
    padding-bottom: env(safe-area-inset-bottom, 20px);
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Custom Scrollbar for Luxury Aesthetics */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg);
}
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--goldh);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Buttons */
.btn {
    cursor: pointer;
    border: none;
    font-family: var(--ff-b);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    transition: var(--transition);
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-size: .78rem;
    outline: none;
}

.btn-primary {
    background: var(--g);
    color: var(--gold);
    padding: .75rem 1.6rem;
    border: 1px solid rgba(201, 168, 76, 0.3);
}
.btn-primary:hover {
    background: var(--gmd);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,58,42,0.25);
}
.btn-primary:disabled {
    background: #999;
    color: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: .75rem 1.6rem;
    border: 1px solid var(--gold);
}
.btn-gold:hover {
    background: var(--goldh);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--white);
    color: var(--white);
    padding: .6rem 1.4rem;
}
.btn-outline:hover {
    background: var(--white);
    color: var(--g);
    transform: translateY(-2px);
}

/* Fixed Top Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--glass-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: var(--border-gold-soft);
    padding: env(safe-area-inset-top, 0px) 0 0;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: .6rem 0;
}
.logo-area {
    display: flex;
    align-items: center;
    gap: .75rem;
    text-decoration: none;
}
.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    text-align: left;
}
.logo-main {
    font-family: var(--ff-d);
    color: var(--gold);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.logo-sub {
    font-size: .52rem;
    color: rgba(245,239,224,.55);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 500;
}
.nav-right {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.btn-admin-nav {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .35);
    color: var(--gold);
    padding: .35rem .95rem;
    border-radius: 20px;
    font-size: .7rem;
    cursor: pointer;
    font-family: var(--ff-b);
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.btn-admin-nav:hover {
    background: var(--gold);
    color: var(--dark);
}
.cart-btn-nav {
    position: relative;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 168, 76, .25);
    color: rgba(245, 239, 224, .8);
    padding: .35rem .85rem;
    border-radius: 20px;
    font-size: .85rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.cart-btn-nav:hover {
    border-color: var(--gold);
    color: var(--gold);
}
.cart-badge-element {
    background: var(--gold);
    color: var(--dark);
    font-size: .6rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    margin-left: 2px;
}
.cart-badge-element.visible {
    display: flex;
}

/* Announcement Banner */
#ann-banner {
    display: none;
    text-align: center;
    padding: .45rem 1rem;
    font-size: .8rem;
    font-weight: 600;
    position: fixed;
    top: 54px; /* Under navbar */
    left: 0;
    right: 0;
    z-index: 199;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
#ann-banner.show {
    display: block;
    background: var(--gold);
    color: var(--dark);
}
#ann-banner.show.red {
    background: var(--red);
    color: var(--white);
}
#ann-banner.show.green {
    background: var(--success);
    color: var(--white);
}

/* Hero Section */
#hero {
    position: relative;
    height: 72vh;
    min-height: 480px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
    color: #fff;
    text-align: center;
    margin-top: 54px; /* Offset fixed header */
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?q=80&w=2021&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(14,26,18,.45) 0%, rgba(14,26,18,.9) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hero-eyebrow {
    font-size: .7rem;
    letter-spacing: .35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    font-weight: 700;
}
.hero-eyebrow::before, .hero-eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--gold);
    opacity: .45;
}
.hero-title {
    font-family: var(--ff-d);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}
.hero-title span {
    color: var(--gold);
    font-style: italic;
}
.hero-sub {
    font-size: .98rem;
    opacity: .85;
    margin-bottom: 2rem;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* Flight Search Widget Wrapper */
.search-wrap {
    position: relative;
    z-index: 10;
    margin-top: -65px;
    padding-bottom: 1rem;
}
.search-box {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-deep);
    padding: 1.75rem;
    max-width: 1100px;
    margin: 0 auto;
    border: 1px solid rgba(201,168,76,0.15);
}
.search-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 1px solid var(--bdr);
    margin-bottom: 1.5rem;
}
.s-tab {
    padding: .6rem 1.25rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
    transition: var(--transition);
}
.s-tab.active {
    color: var(--g);
    border-bottom-color: var(--gold);
}
.search-grid {
    display: grid;
    grid-template-columns: 1fr 38px 1fr 1fr 1fr;
    gap: 12px;
    align-items: end;
    text-align: left;
}
.input-group {
    position: relative;
}
.input-label {
    display: block;
    font-size: .65rem;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 700;
    letter-spacing: .1em;
    margin-bottom: 5px;
}
.input-field {
    width: 100%;
    padding: 11px 12px;
    border: 1px solid var(--bdr);
    border-radius: 6px;
    font-family: var(--ff-b);
    font-size: .9rem;
    color: var(--g);
    outline: none;
    transition: var(--transition);
    background: var(--white);
}
.input-field:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.iata-display {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--g);
    line-height: 1;
}
.city-display {
    font-size: .72rem;
    color: var(--gray);
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 500;
}
.swap-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f3f0;
    border: 1px solid var(--bdr);
    color: var(--g);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    align-self: center;
    margin-bottom: 2px;
}
.swap-btn:hover {
    background: #e5e8e3;
    border-color: var(--gold);
    transform: rotate(180deg);
}

/* Autocomplete Dropdown lists */
.ac-list {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow-deep);
    z-index: 300;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    margin-top: 6px;
    border: 1px solid var(--bdr);
}
.ac-list.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}
.ac-item {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f7f7f4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
    transition: var(--transition);
    text-align: left;
}
.ac-item:hover {
    background: rgba(201,168,76,0.08);
}
.ac-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.ac-code {
    font-weight: 800;
    color: var(--g);
    background: rgba(201,168,76,.15);
    padding: 3px 6px;
    border-radius: 4px;
    font-size: .78rem;
}
.ac-city {
    color: var(--dark);
    font-weight: 600;
}
.ac-airport {
    font-size: .7rem;
    color: var(--gray);
}
.ac-country {
    font-size: .72rem;
    color: #a5b0a8;
}

/* Passenger adjustment counters */
.pax-controls {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 8px 12px;
    border: 1px solid var(--bdr);
    border-radius: 6px;
    min-height: 38px;
    background: var(--white);
}
.pax-btn {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--bdr);
    background: none;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--g);
    transition: var(--transition);
    font-weight: 700;
}
.pax-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}
.pax-num {
    font-size: .9rem;
    font-weight: 700;
    min-width: 16px;
    text-align: center;
}

/* Promotion Cards Slide Carousel (Tarifas Flash) */
#promos {
    background: var(--dark);
    padding: 4rem 0 3.5rem;
    border-bottom: 2px solid var(--gold);
}
.promos-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    text-align: left;
}
.sec-eyebrow {
    font-size: .68rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
    font-weight: 700;
}
.sec-title {
    font-family: var(--ff-d);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.15;
}
.sec-title em {
    font-style: italic;
    color: var(--gold);
}
.car-nav {
    display: flex;
    gap: .6rem;
}
.car-nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.35);
    background: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.car-nav-btn:hover {
    background: rgba(201,168,76,.15);
    border-color: var(--gold);
    transform: scale(1.05);
}
.car-track {
    display: flex;
    gap: 1.25rem;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
}
.promo-card {
    flex: 0 0 280px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
}
.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(201, 168, 76, 0.3);
}
.pc-img {
    height: 165px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
    background-color: #1a2a20;
    background-size: cover;
    background-position: center;
    font-size: 4rem;
    justify-content: center;
}
.pc-flash {
    position: absolute;
    top: .9rem;
    right: .9rem;
    background: var(--gold);
    color: var(--dark);
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .2rem .6rem;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.pc-ico {
    position: absolute;
    top: .9rem;
    left: .9rem;
    font-size: 2.2rem;
    z-index: 2;
}
.pc-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,26,18,0.92) 0%, transparent 60%);
}
.pc-dest {
    position: relative;
    z-index: 1;
    text-align: left;
    width: 100%;
}
.pc-dest-name {
    font-family: var(--ff-d);
    font-size: 1.25rem;
    font-weight: 600;
    color: #F5EFE0;
    line-height: 1.2;
}
.pc-dest-iata {
    font-size: .68rem;
    color: var(--gold);
    font-weight: 800;
    letter-spacing: .1em;
    margin-top: 3px;
    text-transform: uppercase;
}
.pc-body {
    background: #15241b;
    padding: 1.1rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}
.pc-timer {
    display: flex;
    align-items: center;
    gap: .38rem;
    font-size: .7rem;
    color: #889f8e;
    margin-bottom: .5rem;
    font-weight: 500;
}
.pc-timer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F44;
    animation: pulse 1.2s ease infinite;
}
.pc-ptitle {
    font-size: .82rem;
    font-weight: 500;
    color: #e5efe8;
    margin-bottom: .6rem;
    line-height: 1.4;
    min-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc-prices {
    display: flex;
    align-items: baseline;
    gap: .5rem;
    margin-bottom: .5rem;
}
.pc-old {
    font-size: .82rem;
    color: #6a7c70;
    text-decoration: line-through;
}
.pc-new {
    font-family: var(--ff-d);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}
.pc-pp {
    font-size: .65rem;
    color: #6a7c70;
}
.pc-inc {
    font-size: .7rem;
    color: #8A9A8E;
    line-height: 1.4;
    margin-bottom: 1rem;
    flex-grow: 1;
}
.pc-cta {
    width: 100%;
    padding: .65rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.pc-cta:hover {
    background: var(--goldh);
}
.car-dots {
    display: flex;
    justify-content: center;
    gap: .4rem;
    margin-top: 1.5rem;
}
.cdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(201,168,76,.25);
    cursor: pointer;
    transition: var(--transition);
}
.cdot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
}

/* Stats Bar */
.stats-bar {
    background: var(--g);
    padding: 1.75rem 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stat-item {
    text-align: center;
    padding: .5rem 1rem;
    border-right: 1px solid rgba(201,168,76,.15);
}
.stat-item:last-child {
    border-right: none;
}
.stat-num {
    font-family: var(--ff-d);
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.stat-lbl {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(245,239,224,.52);
    margin-top: .4rem;
    font-weight: 500;
}

/* Flight Results Table */
#flight-results {
    display: none;
    padding: 3rem 0;
    background: #f1f3f0;
    border-bottom: 1px solid var(--bdr);
    text-align: left;
}
.results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--bdr);
    padding-bottom: 1.25rem;
}
.results-route {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.res-ep {
    text-align: center;
}
.res-iata {
    font-family: var(--ff-d);
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--g);
    line-height: 1;
}
.res-city {
    font-size: .75rem;
    color: var(--gray);
    margin-top: 4px;
    font-weight: 600;
}
.res-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gold);
    font-size: 1.2rem;
    font-weight: bold;
}
.res-arrow small {
    font-size: .62rem;
    color: var(--gray);
    letter-spacing: .05em;
    margin-top: 2px;
}
.results-meta {
    font-size: .8rem;
    color: var(--g);
    background: rgba(26,58,42,.07);
    padding: .45rem 1.1rem;
    border-radius: 20px;
    font-weight: 600;
    border: 1px solid rgba(26, 58, 42, 0.15);
}
.filter-row {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.f-chip {
    padding: .35rem .95rem;
    border: 1px solid rgba(26,58,42,.22);
    border-radius: 20px;
    font-size: .72rem;
    cursor: pointer;
    background: none;
    color: var(--gray);
    transition: var(--transition);
    font-family: var(--ff-b);
    font-weight: 600;
}
.f-chip.active, .f-chip:hover {
    background: var(--g);
    color: var(--gold);
    border-color: var(--g);
}

/* Individual Flight Card */
.fc {
    border: 1px solid #dbdbd3;
    border-radius: 8px;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
    transition: var(--transition);
}
.fc:hover {
    box-shadow: var(--shadow);
    border-color: rgba(201,168,76,.55);
}
.fc.best {
    border-left: 4px solid var(--gold);
}
.fc-inner {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
}
.fc-airline {
    text-align: center;
}
.fc-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.fc-al-name {
    font-size: .7rem;
    color: var(--gray);
    line-height: 1.3;
    font-weight: 600;
}
.fc-al-num {
    font-size: .62rem;
    color: #aaa;
    margin-top: 1px;
}
.fc-route {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.fc-ep {
    text-align: center;
    min-width: 90px;
}
.fc-time {
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.fc-ep-iata {
    font-size: .85rem;
    font-weight: 700;
    color: var(--g);
    margin-top: 3px;
}
.fc-ep-city {
    font-size: .68rem;
    color: var(--gray);
    margin-top: 1px;
    font-weight: 500;
}
.fc-ep-ap {
    font-size: .6rem;
    color: #bbb;
    max-width: 110px;
    line-height: 1.25;
    margin: 2px auto 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.fc-mid {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 0 0.5rem;
}
.fc-dur {
    font-size: .74rem;
    font-weight: 700;
    color: var(--gmd);
}
.fc-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(26,58,42,.15), rgba(201,168,76,.55), rgba(26,58,42,.15));
    position: relative;
}
.fc-line::after {
    content: "✈";
    position: absolute;
    top: -7.5px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 0 4px;
    font-size: .78rem;
    color: var(--gold);
}
.fc-stops {
    font-size: .68rem;
    color: var(--gray);
    font-weight: 500;
}
.fc-stops.direct {
    color: var(--success);
    font-weight: 700;
}
.fc-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    min-width: 120px;
}
.fc-badge {
    font-size: .6rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.fc-badge.best-b {
    background: var(--gold);
    color: var(--dark);
}
.fc-badge.dir-b {
    background: var(--glt);
    color: #fff;
}
.fc-price-lbl {
    font-size: .62rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}
.fc-price {
    font-family: var(--ff-d);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--g);
    line-height: 1;
}
.fc-pp {
    font-size: .65rem;
    color: var(--gray);
}
.btn-sel {
    padding: .55rem 1.25rem;
    background: var(--g);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}
.btn-sel:hover {
    background: var(--gmd);
    color: var(--white);
}
.fr-note {
    font-size: .75rem;
    color: var(--gray);
    text-align: center;
    margin-top: 1.5rem;
    line-height: 1.6;
}
.fr-note strong {
    color: var(--glt);
}

/* Agent Assigned Callout Banner */
#agent-banner {
    display: none;
    background: linear-gradient(135deg, var(--g), #060e0a);
    border-top: 2px solid var(--gold);
    padding: 2.2rem 0;
    text-align: left;
}
#agent-banner.show {
    display: block;
    animation: fadeIn 0.4s ease-out;
}
.ab-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.5rem;
    align-items: center;
}
.ab-route {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-bottom: .8rem;
}
.ab-iata {
    font-family: var(--ff-d);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}
.ab-arrow {
    font-size: 1.3rem;
    color: rgba(201, 168, 76, 0.4);
    font-weight: bold;
}
.ab-details {
    font-size: .83rem;
    color: rgba(245,239,224,.75);
    line-height: 1.8;
}
.ab-details strong {
    color: var(--gold);
    font-weight: 600;
}
.ab-agent-box {
    background: rgba(201, 168, 76, .07);
    border: 1px solid rgba(201, 168, 76, .25);
    border-radius: 8px;
    padding: 1.4rem 1.6rem;
    text-align: center;
    min-width: 200px;
}
.ab-av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--g);
    font-family: var(--ff-d);
    font-size: 1.45rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .6rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}
.ab-albl {
    font-size: .63rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(201,168,76,.6);
    margin-bottom: .3rem;
    font-weight: 600;
}
.ab-aname {
    font-family: var(--ff-d);
    font-size: 1.05rem;
    font-weight: 700;
    color: #F5EFE0;
}
.ab-astat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .38rem;
    font-size: .7rem;
    color: rgba(245,239,224,.5);
    margin-top: .4rem;
    font-weight: 500;
}
.ab-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4CAF50;
    animation: pulse 1.5s ease infinite;
}
.ab-hint {
    text-align: center;
    font-size: .75rem;
    color: rgba(201,168,76,.55);
    margin-top: 1rem;
    letter-spacing: .08em;
    font-weight: 500;
}

/* Destinations Popular Grid */
#destinations {
    padding: 4rem 0;
    background: var(--white);
}
.sec-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.sec-head h2 {
    font-family: var(--ff-d);
    color: var(--g);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
}
.sec-head h2 em {
    font-style: italic;
    color: var(--red);
}
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}
.dest-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--bdr);
}
.dest-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-deep);
}
.dest-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.25, 1, 0.5, 1);
}
.dest-card:hover .dest-img {
    transform: scale(1.06);
}
.dest-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,26,18,0.92) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
    color: #fff;
    text-align: left;
}
.dest-name {
    font-family: var(--ff-d);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.25;
}
.dest-price {
    font-size: .95rem;
    color: var(--gold);
    margin-top: 4px;
    font-weight: 600;
}

/* Services Showcase Grid */
#servicios {
    padding: 4.5rem 0;
    background: var(--bg);
}
.srv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--bdr);
    border: 1.5px solid var(--bdr);
}
.srv-card {
    background: var(--bg);
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    text-align: left;
}
.srv-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2.5px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.srv-card:hover {
    background: #fff;
}
.srv-card:hover::before {
    transform: scaleX(1);
}
.srv-n {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-family: var(--ff-d);
    font-size: 2.8rem;
    font-weight: 300;
    color: rgba(26,58,42,.06);
    line-height: 1;
}
.srv-ico {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--glt);
}
.srv-card h3 {
    font-family: var(--ff-d);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--g);
    margin-bottom: .6rem;
}
.srv-card p {
    font-size: .83rem;
    line-height: 1.8;
    color: var(--gray);
}
.srv-tag {
    display: inline-block;
    margin-top: 1rem;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--gold);
    padding: .2rem .6rem;
    border: 1px solid rgba(201,168,76,.28);
    border-radius: 2px;
}

/* Contact and Quote Forms */
#contacto {
    padding: 4.5rem 0;
    background: var(--bg);
    border-top: 1px solid var(--bdr);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 3.5rem;
    align-items: start;
}
.contact-info {
    text-align: left;
}
.contact-info h2 {
    font-family: var(--ff-d);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--g);
    margin-bottom: .9rem;
}
.contact-info h2 em {
    font-style: italic;
    color: var(--gold);
}
.contact-info p {
    font-size: .9rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.8rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}
.c-row {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .85rem;
    color: var(--gmd);
    font-weight: 500;
}
.c-icon {
    width: 2rem;
    height: 2rem;
    background: var(--g);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    border-radius: 3px;
    flex-shrink: 0;
}
.c-row a {
    color: var(--gmd);
    text-decoration: none;
    transition: var(--transition);
}
.c-row a:hover {
    color: var(--gold);
}

/* Quote Flight Summary Block */
.flight-summary {
    display: none;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #f0f7f3, #e6f3ec);
    border: 1.5px solid rgba(26, 58, 42, 0.18);
    border-radius: 6px;
    padding: 1rem 1.2rem;
    text-align: left;
}
.flight-summary.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}
.fs-lbl {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gmd);
    margin-bottom: .6rem;
}
.fs-route-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: .5rem;
}
.fs-iata {
    font-family: var(--ff-d);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--g);
    line-height: 1;
}
.fs-city {
    font-size: .72rem;
    color: #4a6652;
    font-weight: 600;
}
.fs-arr {
    color: var(--gold);
    font-size: 1rem;
    font-weight: bold;
}
.fs-meta {
    font-size: .76rem;
    color: #4a6652;
    line-height: 1.7;
}
.fs-meta strong {
    color: var(--g);
    font-weight: 600;
}
.fs-agent {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-top: .65rem;
    padding: .5rem .75rem;
    background: rgba(26,58,42,.07);
    border-radius: 4px;
    font-size: .75rem;
    color: var(--gmd);
    font-weight: 500;
}

/* Contact / Quote Form box styling */
.contact-form {
    background: var(--white);
    border: 1px solid var(--bdr);
    border-radius: 8px;
    padding: 2.2rem;
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-family: var(--ff-d);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--g);
    margin-bottom: 1.25rem;
    text-align: left;
}
.frow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: .4rem;
}
.fg {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .9rem;
    text-align: left;
}
.fg label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gray);
}
.fg input, .fg select, .fg textarea {
    padding: .65rem .9rem;
    border: 1px solid var(--bdr);
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .88rem;
    color: var(--dark);
    background: var(--bg);
    outline: none;
    transition: var(--transition);
    width: 100%;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201,168,76,0.06);
}
.fg textarea {
    min-height: 75px;
    resize: vertical;
}

/* Sliding Shopping Cart Drawer */
#cart-drawer {
    position: fixed;
    top: 0;
    right: -110%;
    width: min(400px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 400;
    box-shadow: -8px 0 35px rgba(14,26,18,.15);
    transition: right .32s cubic-bezier(.4, 0, .2, 1);
    display: flex;
    flex-direction: column;
    text-align: left;
}
#cart-drawer.open {
    right: 0;
}
.cart-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: var(--g);
    color: #F5EFE0;
    border-bottom: 2px solid var(--gold);
    padding-top: env(safe-area-inset-top, 1.2rem);
}
.cart-hd h3 {
    font-family: var(--ff-d);
    font-size: 1.25rem;
    font-weight: 600;
}
.cart-close {
    background: none;
    border: none;
    color: #F5EFE0;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: .8;
    line-height: 1;
}
.cart-close:hover {
    opacity: 1;
}
.cart-body-wrap {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
}
.cart-empty {
    text-align: center;
    padding: 3.5rem 1rem;
    color: var(--gray);
}
.cart-empty-ico {
    font-size: 3rem;
    margin-bottom: .8rem;
}
.cart-item {
    display: flex;
    gap: .9rem;
    padding: .95rem 0;
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.ci-thumb {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    background: #eef1ed;
    border: 1px solid var(--bdr);
}
.ci-info {
    flex: 1;
}
.ci-name {
    font-size: .85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .2rem;
}
.ci-desc {
    font-size: .72rem;
    color: var(--gray);
    line-height: 1.45;
}
.ci-price {
    font-family: var(--ff-d);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--g);
    margin-top: .25rem;
}
.ci-del {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
    align-self: flex-start;
    padding: 0 4px;
}
.ci-del:hover {
    color: var(--red);
}
.cart-ft {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.08);
    background: #fafaf8;
    padding-bottom: env(safe-area-inset-bottom, 1.25rem);
}
.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.cart-total-lbl {
    font-size: .82rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cart-total-val {
    font-family: var(--ff-d);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--g);
}
.btn-checkout {
    width: 100%;
    padding: .85rem;
    background: var(--gold);
    color: var(--dark);
    border: none;
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.btn-checkout:hover {
    background: var(--goldh);
}

/* Checkout Dialog Modal */
#chk-modal {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
#chk-modal.open {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}
.chk-box {
    background: #fff;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-deep);
    border: 1px solid var(--gold);
}
.chk-hd {
    background: var(--g);
    padding: 1.2rem 1.6rem;
    border-bottom: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.chk-hd h3 {
    font-family: var(--ff-d);
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5EFE0;
}
.chk-hd-close {
    background: none;
    border: none;
    color: rgba(245,239,224,.8);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}
.chk-hd-close:hover {
    color: #fff;
}
.chk-body {
    padding: 1.6rem;
    text-align: left;
}
.chk-summary {
    background: linear-gradient(135deg, #f0f7f3, #e6f3ec);
    border: 1px solid rgba(26,58,42,.15);
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1.25rem;
}
.chk-sum-lbl {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gmd);
    margin-bottom: .6rem;
}
.chk-sum-row {
    display: flex;
    justify-content: space-between;
    font-size: .83rem;
    margin-bottom: .3rem;
    color: var(--gray);
}
.chk-sum-row strong {
    color: var(--g);
}
.chk-sum-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(26,58,42,.2);
    margin-top: .6rem;
    padding-top: .6rem;
}
.chk-sum-total-lbl {
    font-size: .8rem;
    font-weight: 700;
    color: var(--g);
}
.chk-sum-total-val {
    font-family: var(--ff-d);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--g);
}
.pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    margin: 1.25rem 0;
}
.pay-opt {
    border: 1.5px solid var(--bdr);
    border-radius: 6px;
    padding: .65rem;
    cursor: pointer;
    text-align: center;
    transition: var(--transition);
    background: #fff;
}
.pay-opt:hover {
    border-color: var(--gold);
}
.pay-opt.sel {
    border-color: var(--gold);
    background: rgba(201,168,76,.08);
}
.pay-opt.disabled {
    opacity: .45;
    cursor: not-allowed;
    filter: grayscale(60%);
}
.pay-opt.disabled:hover {
    border-color: var(--bdr);
}
.pay-opt-ico {
    font-size: 1.3rem;
    margin-bottom: .22rem;
}
.pay-opt-name {
    font-size: .72rem;
    font-weight: 600;
    color: var(--dark);
}
.pay-info {
    background: rgba(201,168,76,.06);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 6px;
    padding: 1rem;
    font-size: .78rem;
    color: #4a5a4e;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    display: none;
}
.pay-info.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}
.pay-info strong {
    color: var(--g);
}

/* Sliding Administration Control Panel */
#admin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 350;
    display: none;
    backdrop-filter: blur(3px);
}
#admin-overlay.show {
    display: block;
}
#admin-panel {
    position: fixed;
    top: 0;
    right: -510px;
    width: min(480px, 100%);
    height: 100vh;
    background: #fff;
    z-index: 360;
    transition: right .32s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
}
#admin-panel.open {
    right: 0;
}
.ap-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.4rem;
    background: var(--g);
    color: #F5EFE0;
    border-bottom: 2px solid var(--gold);
    padding-top: env(safe-area-inset-top, 1.1rem);
}
.ap-hd h3 {
    font-family: var(--ff-d);
    font-size: 1.2rem;
    font-weight: 600;
}
.ap-hd-close {
    background: none;
    border: none;
    color: rgba(245,239,224,.8);
    font-size: 1.4rem;
    cursor: pointer;
}
.ap-tabs {
    display: flex;
    background: rgba(0,0,0,.03);
    border-bottom: 1px solid var(--bdr);
    overflow-x: auto;
}
.ap-tab {
    padding: .6rem 1.1rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--gray);
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2.5px solid transparent;
    white-space: nowrap;
    transition: var(--transition);
}
.ap-tab.active {
    color: var(--g);
    border-bottom-color: var(--gold);
}
.ap-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.4rem;
}
.ap-sec {
    display: none;
}
.ap-sec.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}
.ap-sec-title {
    font-family: var(--ff-d);
    font-size: 1.25rem;
    color: var(--g);
    margin-bottom: .25rem;
    font-weight: 700;
}
.ap-sec-sub {
    font-size: .76rem;
    color: var(--gray);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}
.ap-card {
    background: #fbfbfa;
    border: 1px solid var(--bdr);
    border-radius: 6px;
    padding: 1.2rem;
    margin-bottom: 1rem;
}
.af {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    margin-bottom: .95rem;
}
.af label {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--gray);
}
.af input, .af select, .af textarea {
    padding: .6rem .85rem;
    border: 1px solid var(--bdr);
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .85rem;
    color: var(--dark);
    outline: none;
    transition: var(--transition);
    width: 100%;
    background: #fff;
}
.af input:focus, .af select:focus, .af textarea:focus {
    border-color: var(--gold);
}
.af textarea {
    min-height: 68px;
    resize: vertical;
}
.afrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}
.ap-save-row {
    display: flex;
    gap: .75rem;
    align-items: center;
    margin-top: .5rem;
}
.ap-suc {
    font-size: .75rem;
    color: var(--success);
    display: none;
    font-weight: 700;
}
.ap-suc.show {
    display: inline;
    animation: fadeIn 0.2s;
}
.ap-btn {
    padding: .6rem 1.4rem;
    background: var(--g);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}
.ap-btn:hover {
    background: var(--gmd);
    color: #fff;
}
.ap-btn-del {
    padding: .5rem 1rem;
    background: rgba(204,51,51,.08);
    color: #CC3333;
    border: 1px solid rgba(204,51,51,.25);
    border-radius: 4px;
    font-family: var(--ff-b);
    font-size: .7rem;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.ap-btn-del:hover {
    background: rgba(204,51,51,.18);
}
.promo-admin-row {
    background: #fbfbfa;
    border: 1px solid var(--bdr);
    border-radius: 6px;
    padding: .9rem 1rem;
    margin-bottom: .8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.par-info {
    text-align: left;
}
.par-info h4 {
    font-size: .88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .15rem;
}
.par-info p {
    font-size: .72rem;
    color: var(--gray);
}
.dest-admin-row {
    background: #fbfbfa;
    border: 1px solid var(--bdr);
    border-radius: 5px;
    padding: .8rem 1rem;
    margin-bottom: .6rem;
    text-align: left;
}
.dest-admin-row h5 {
    font-size: .82rem;
    font-weight: 700;
    color: var(--g);
    margin-bottom: .5rem;
}

/* Chat Advisor Dialog Hub (Modal) */
#chatHubModal .modal-content {
    background: var(--bg);
    border: 1px solid var(--gold);
    border-radius: 12px;
}
.chat-layout {
    display: flex;
    flex-direction: column;
    height: 72vh;
    max-height: 600px;
}
.advisor-selector-row {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    padding-bottom: .75rem;
    border-bottom: 1px solid var(--bdr);
    margin-bottom: .75rem;
}
.advisor-selector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .6rem .8rem;
    border-radius: 8px;
    border: 1.5px solid var(--bdr);
    background: #fff;
    cursor: pointer;
    min-width: 108px;
    flex-shrink: 0;
    transition: var(--transition);
}
.advisor-selector-card.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}
.adv-avatar {
    font-size: 1.8rem;
    margin-bottom: .25rem;
}
.adv-avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    margin-bottom: .25rem;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}
.advisor-selector-card:hover .adv-avatar-img,
.advisor-selector-card.active .adv-avatar-img {
    border-color: var(--g);
    transform: scale(1.08);
    box-shadow: 0 3px 12px rgba(26,58,42,.25);
}
.adv-name {
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 90px;
}
.adv-role {
    font-size: .62rem;
    color: var(--gray);
    font-weight: 500;
}
.chat-messages {
    flex-grow: 1;
    overflow-y: auto;
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    background: #fbfbf8;
    border-radius: 8px;
    border: 1px solid var(--bdr);
    margin-bottom: .75rem;
}
.chat-input-row {
    display: flex;
    gap: .5rem;
}
.chat-input-field {
    flex-grow: 1;
    padding: .75rem .95rem;
    border: 1px solid var(--bdr);
    border-radius: 6px;
    font-size: .9rem;
    outline: none;
    font-family: var(--ff-b);
}
.chat-input-field:focus {
    border-color: var(--gold);
}
.chat-send-btn {
    background: var(--g);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 6px;
    padding: .75rem 1.4rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-family: var(--ff-b);
    font-size: .75rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}
.chat-send-btn:hover {
    background: var(--gmd);
    color: #fff;
}
.quick-chips-row {
    display: flex;
    gap: .4rem;
    overflow-x: auto;
    padding: .25rem 0 .5rem;
    margin-bottom: .25rem;
}
.quick-chip {
    background: #e9ece6;
    color: var(--gmd);
    font-size: .7rem;
    padding: .35rem .85rem;
    border-radius: 20px;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 600;
    border: 1px solid var(--bdr);
    transition: var(--transition);
}
.quick-chip:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
}

/* Modals General Wrapper */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.modal.active {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}
.modal-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.6rem;
    max-width: 485px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-deep);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--bdr);
    padding-bottom: .75rem;
}
.modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--g);
    font-family: var(--ff-d);
}
.close-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #a0aec0;
    padding: 0.1rem;
    line-height: 1;
}

/* Footer Section styling */
footer {
    background: var(--dark);
    color: #fff;
    padding: 3.5rem 0 1.5rem;
    border-top: 2px solid var(--gold);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}
.footer-brand .logo-main {
    color: var(--gold);
    font-size: 1.65rem;
}
.footer-brand p {
    font-size: .83rem;
    opacity: .55;
    margin-top: .6rem;
    font-family: var(--ff-d);
    font-style: italic;
    line-height: 1.6;
}
.footer-col h5 {
    font-size: .63rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.footer-col a {
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-size: .8rem;
    transition: var(--transition);
}
.footer-col a:hover {
    color: var(--gold);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy {
    font-size: .72rem;
    opacity: .35;
    letter-spacing: .03em;
}
.footer-copy strong {
    color: rgba(201,168,76,.6);
}
.footer-socials {
    display: flex;
    gap: .65rem;
}
.soc-btn {
    width: 1.85rem;
    height: 1.85rem;
    border: 1px solid rgba(201,168,76,.22);
    color: rgba(201,168,76,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    text-decoration: none;
    font-size: .72rem;
    transition: var(--transition);
}
.soc-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* Floating FAB Action Buttons */
#wa-fab {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    z-index: 250;
    width: 50px;
    height: 50px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37,211,102,.45);
    transition: var(--transition);
}
#wa-fab:hover {
    transform: scale(1.1);
}
#wa-fab svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}
#cart-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 250;
    width: 50px;
    height: 50px;
    background: var(--g);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(26,58,42,.4);
    border: 1px solid rgba(201,168,76,.3);
    transition: var(--transition);
}
#cart-fab:hover {
    transform: scale(1.08);
}
#cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: var(--dark);
    font-size: .6rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
#cart-count.vis {
    display: flex;
}
#overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 380;
    display: none;
    backdrop-filter: blur(3px);
}
#overlay.show {
    display: block;
}

/* Toast Messages */
#toast {
    position: fixed;
    bottom: 5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--g);
    color: #F5EFE0;
    padding: .65rem 1.6rem;
    border-radius: 30px;
    font-size: .8rem;
    box-shadow: 0 5px 20px rgba(26,58,42,.45);
    border: 1px solid rgba(201,168,76,.35);
    z-index: 700;
    opacity: 0;
    transition: opacity .28s, transform .28s;
    pointer-events: none;
    white-space: nowrap;
    font-weight: 600;
    transform: translate(-50%, 10px);
}
#toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

/* Responsive Breakpoints */
@media (max-width: 960px) {
    nav { padding: .2rem 0; }
    .search-grid {
        grid-template-columns: 1fr 34px 1fr;
    }
    .search-grid .input-group:nth-child(4), 
    .search-grid .input-group:nth-child(5) {
        grid-column: span 3;
    }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .srv-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .frow { grid-template-columns: 1fr; }
    .fc-inner { grid-template-columns: 75px 1fr; }
    .fc-right { grid-column: span 2; align-items: flex-start; text-align: left; }
    .ab-inner { grid-template-columns: 1fr; }
    .afrow { grid-template-columns: 1fr; }
    .car-track { overflow-x: auto; }
}

/* ==========================================================================
   SOCIAL MEDIA SHOWCASE
   ========================================================================== */
#social-showcase {
    padding: 3.5rem 0 2rem;
    background: var(--bg);
    border-bottom: 1px solid var(--bdr);
}
.social-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
.social-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    min-height: 340px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(201, 168, 76, 0.4);
}
.soc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-card:hover .soc-img {
    transform: scale(1.06);
}
.soc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,26,18,0.9) 0%, rgba(14,26,18,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: var(--white);
    transition: var(--transition);
}
.soc-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.ig-card .soc-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.tk-card .soc-icon { background: #000; color: #fff; border: 1px solid #00f2fe; }

.soc-text {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
    transform: translateY(8px);
    opacity: 0.9;
    transition: var(--transition);
}
.social-card:hover .soc-text {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 900px) {
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ig-card {
        grid-column: span 2;
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    .ig-card {
        grid-column: span 1;
    }
    .social-card {
        min-height: 240px;
    }
}

/* ==========================================================================
   SOCIAL MEDIA SHOWCASE
   ========================================================================== */
#social-showcase {
    padding: 3.5rem 0 2rem;
    background: var(--bg);
    border-bottom: 1px solid var(--bdr);
}
.social-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}
.social-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    min-height: 340px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}
.social-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(201, 168, 76, 0.4);
}
.soc-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.social-card:hover .soc-img {
    transform: scale(1.06);
}
.soc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(14,26,18,0.9) 0%, rgba(14,26,18,0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.75rem;
    color: var(--white);
    transition: var(--transition);
}
.soc-icon {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.ig-card .soc-icon { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.tk-card .soc-icon { background: #000; color: #fff; border: 1px solid #00f2fe; }

.soc-text {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.35;
    transform: translateY(8px);
    opacity: 0.9;
    transition: var(--transition);
}
.social-card:hover .soc-text {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 900px) {
    .social-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ig-card {
        grid-column: span 2;
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
    .ig-card {
        grid-column: span 1;
    }
    .social-card {
        min-height: 240px;
    }
}

/* --- MOBILE MENU & HERO RESPONSIVE --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.2rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    margin-right: 1rem;
}

@media (max-width: 960px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none !important;
        position: absolute;
        top: 54px;
        left: 0;
        width: 250px;
        background: var(--dark);
        border-right: 1px solid rgba(201,168,76,.25);
        border-bottom: 1px solid rgba(201,168,76,.25);
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 1.5rem;
        box-shadow: 4px 4px 15px rgba(0,0,0,0.5);
        border-radius: 0 0 8px 0;
        z-index: 1000;
        margin-right: 0;
    }
    
    .nav-links.active-menu {
        display: flex !important;
    }

    .nav-links a {
        padding: 0.8rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        text-align: left;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    #hero {
        height: auto !important;
        min-height: 350px !important;
        padding: 3.5rem 1rem 2.5rem 1rem !important;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.5rem) !important;
    }
    
    .hero-sub {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem !important;
    }
}

/* ============================================================
   Google Translate: ocultar su UI nativa (banner superior, iframe,
   resaltado de texto) para que no rompa el diseño del sitio.
   El selector propio (#lang-selector) sigue funcionando vía i18n.js.
   ============================================================ */
.goog-te-banner-frame.skiptranslate,
.goog-te-gadget-icon,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
    display: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
body {
    top: 0px !important;
    position: static !important;
}
#google_translate_element {
    display: none !important;
}
