/* ── Pricing Page Styles ──────────────────────────────────────────────────────
   Loaded only on page-pricing.php via is_page_template() conditional.
   ─────────────────────────────────────────────────────────────────────────── */

/* ── Shared inner-page utilities ────────────────────────────────────────────── */
.pill-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--gold-pale);
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 14px;
}
.pill-label::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}
.section-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.section-sub {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin: 0;
}

/* ── Page Hero ──────────────────────────────────────────────────────────────── */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 65%, var(--navy-mid) 100%);
    padding: 72px 0 72px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
}
.page-hero-glow {
    position: absolute;
    top: -120px; right: -120px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.14) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero-inner { position: relative; }
.page-hero .pill-label { background: rgba(212,175,55,0.12); border-color: rgba(212,175,55,0.25); }
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 5vw, 54px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin: 16px 0 20px;
}
.page-hero-sub {
    font-family: var(--font-body);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    max-width: 600px;
    margin: 0 auto 28px;
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }

/* ── Philosophy Strip ───────────────────────────────────────────────────────── */
.pricing-philosophy {
    background: var(--navy-dark);
    padding: 40px 0;
    border-bottom: 3px solid var(--gold);
}
.philosophy-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.philosophy-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.philosophy-item:last-child { border-right: none; }
.philosophy-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}
.philosophy-text-label {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.03em;
    margin-bottom: 2px;
}
.philosophy-text-sub {
    font-family: var(--font-ui);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}

/* ── Brand Table (shared across all pricing tables) ─────────────────────────── */
.brand-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 4px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.brand-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}
.brand-table thead tr {
    background: var(--navy-dark);
}
.brand-table th {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
    white-space: nowrap;
}
.brand-table th:first-child {
    border-left: 3px solid var(--gold);
}
.brand-table td {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-body);
    padding: 13px 20px;
    border-bottom: 1px solid var(--border);
    vertical-align: middle;
}
.brand-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    border-left: 3px solid var(--gold);
}
.brand-table tbody tr:last-child td { border-bottom: none; }
.brand-table tbody tr:nth-child(even) { background: var(--off-white); }
.brand-table tbody tr:hover { background: rgba(212,175,55,0.04); }
.brand-table .price-cell {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    white-space: nowrap;
}
.brand-table .highlight-row td {
    background: rgba(212,175,55,0.07);
    font-weight: 600;
}

/* ── Section layout ─────────────────────────────────────────────────────────── */
.pricing-section {
    padding: 80px 0 96px;
}
.pricing-section.bg-white  { background: var(--white); }
.pricing-section.bg-offwhite { background: var(--off-white); }
.pricing-section.bg-navy { background: var(--navy-dark); }

.pricing-section-header {
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

/* ── Airport Transfer Tabs ──────────────────────────────────────────────────── */
.pricing-tabs-wrap {
    max-width: 860px;
    margin: 0 auto;
}
.pricing-tab-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-bottom: none;
}
.pricing-tab-list::-webkit-scrollbar { display: none; }
.pricing-tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 10px 12px;
    background: #f7f8fa;
    border: 1.5px solid rgba(26,58,82,0.14);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.18s ease;
    text-align: center;
    flex-shrink: 0;
}
.pricing-tab-btn svg {
    stroke: rgba(26,58,82,0.45);
    flex-shrink: 0;
    transition: stroke 0.18s;
    width: 44px;
    height: 22px;
}
.ptab-name {
    font-family: var(--font-ui);
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(26,58,82,0.6);
    transition: color 0.18s;
    line-height: 1.2;
    white-space: nowrap;
}
.ptab-sub {
    font-family: var(--font-body);
    font-size: 10px;
    color: rgba(26,58,82,0.38);
    transition: color 0.18s;
    white-space: nowrap;
}
.pricing-tab-btn:hover {
    border-color: rgba(212,175,55,0.45);
    background: rgba(212,175,55,0.05);
}
.pricing-tab-btn:hover svg { stroke: #D4AF37; }
.pricing-tab-btn:hover .ptab-name { color: var(--navy); }
.pricing-tab-btn.active {
    border-color: #D4AF37;
    background: rgba(212,175,55,0.07);
}
.pricing-tab-btn.active svg { stroke: #D4AF37; }
.pricing-tab-btn.active .ptab-name { color: var(--navy); font-weight: 800; }
.pricing-tab-btn.active .ptab-sub  { color: rgba(212,175,55,0.8); }
.pricing-tab-panel { display: none; }
.pricing-tab-panel.active { display: block; }
.pricing-tab-panel .brand-table-wrap {
    border-radius: 4px;
}
.tab-note {
    font-family: var(--font-ui);
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 14px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}
.tab-note svg { flex-shrink: 0; color: var(--gold); margin-top: 1px; }

/* ── Hourly table ───────────────────────────────────────────────────────────── */
.hourly-table-wrap { max-width: 900px; margin: 0 auto; }

/* ── Wine Tour Cards ────────────────────────────────────────────────────────── */
.wine-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
}
.wine-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.wine-card-header {
    background: var(--navy-dark);
    border-bottom: 3px solid var(--gold);
    padding: 24px 28px;
}
.wine-card-region {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
}
.wine-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 4px;
}
.wine-card-duration {
    font-family: var(--font-ui);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.wine-card-body { padding: 24px 28px; flex: 1; }
.wine-card-from {
    font-family: var(--font-ui);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 2px;
}
.wine-card-price {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}
.wine-card-price span {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}
.wine-inclusions {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.wine-inclusions li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
}
.wine-inclusions li svg { color: var(--gold); flex-shrink: 0; }
.wine-vehicles {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.wine-vehicles-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.wine-vehicle-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-body);
    padding: 6px 0;
    border-bottom: 1px solid var(--border);
}
.wine-vehicle-row:last-child { border-bottom: none; }
.wine-vehicle-row span:last-child {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}

/* ── Surcharges & Cancellations ─────────────────────────────────────────────── */
.two-col-tables {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: start;
}
.table-block-title {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 12px;
}
.surcharge-badge {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 100px;
    background: rgba(212,175,55,0.12);
    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.3);
    white-space: nowrap;
}
.cancel-pill {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 100px;
    white-space: nowrap;
}
.cancel-green  { background: rgba(46,158,91,0.12);  color: #2e9e5b; border: 1px solid rgba(46,158,91,0.25); }
.cancel-amber  { background: rgba(212,175,55,0.12); color: #a07820; border: 1px solid rgba(212,175,55,0.25); }
.cancel-red    { background: rgba(192,57,43,0.1);   color: #c0392b; border: 1px solid rgba(192,57,43,0.2); }

/* ── Corporate Programs ─────────────────────────────────────────────────────── */
.corporate-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.corp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
}
.corp-card-header {
    background: var(--navy);
    padding: 22px 28px;
    border-bottom: 3px solid var(--gold);
}
.corp-card-eyebrow {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
}
.corp-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}
.corp-card-body { padding: 24px 28px; }
.corp-tier-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    gap: 8px;
}
.corp-tier-row:last-child { border-bottom: none; }
.corp-tier-row:nth-child(even) { background: var(--off-white); }
.corp-tier-name {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.tier-bronze { color: #b08d57; }
.tier-silver { color: #8a9ba8; }
.tier-gold   { color: var(--gold); }
.corp-tier-spend {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
}
.corp-tier-discount {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-align: right;
}
.corp-loyalty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}
.corp-loyalty-row:last-child { border-bottom: none; }
.corp-loyalty-row > div:first-child {
    flex: 1;
    min-width: 0;
}
.corp-loyalty-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}
.corp-loyalty-value {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
    text-align: right;
    max-width: 52%;
}
.corp-loyalty-sub {
    font-family: var(--font-ui);
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}
.corp-cta {
    margin-top: 20px;
    padding: 12px 22px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: background 0.2s, transform 0.15s;
}
.corp-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ── CTA Band ───────────────────────────────────────────────────────────────── */
.pricing-cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.pricing-cta-band::before {
    content: '';
    position: absolute;
    top: -180px; left: 50%; transform: translateX(-50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%);
    pointer-events: none;
}
.pricing-cta-band .section-heading { color: var(--white); position: relative; }
.pricing-cta-band .section-sub { color: rgba(255,255,255,0.55); position: relative; margin-bottom: 36px; }
.cta-btn-gold {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 48px;
    background: var(--gold);
    color: var(--navy-dark);
    font-family: var(--font-ui);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(212,175,55,0.4);
}
.cta-trust {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.cta-trust-item svg { color: var(--gold); }

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .two-col-tables { grid-template-columns: 1fr; }
    .corporate-grid { grid-template-columns: 1fr; max-width: 520px; }
}
@media (max-width: 900px) {
    .wine-tour-grid { grid-template-columns: 1fr; max-width: 520px; }
    .philosophy-items { gap: 20px; justify-content: flex-start; padding: 0 20px; }
    .philosophy-item { border-right: none; padding: 0; }
}
@media (max-width: 768px) {
    .page-hero { padding: 48px 0 48px; }
    .pricing-section { padding: 60px 0; }
    .pricing-tab-list { grid-template-columns: repeat(2, 1fr); }
    .pricing-tab-btn { padding: 10px 8px; }
    .ptab-sub { display: none; }
    .brand-table th, .brand-table td { padding: 11px 14px; }
    .wine-card-price { font-size: 26px; }
}
@media (max-width: 480px) {
    .corp-tier-row { grid-template-columns: 1fr 1fr; }
    .corp-tier-spend { display: none; }
}
