/* =====================================================
   PADANGBAI TRAVEL HUB — Main Stylesheet
   Converted from global.css + Tailwind utility classes
   ===================================================== */

/* -------------------------------------------------------
   CSS Variables (from global.css :root)
------------------------------------------------------- */
:root {
    --ocean:          #0C5E8A;
    --ocean-light:    #1A7FB5;
    --turquoise:      #2EC4B6;
    --turquoise-light:#A8E6CF;
    --sunset:         #E8642C;
    --sunset-light:   #F4A261;
    --sand:           #F5E6D3;
    --sand-light:     #FDF8F3;
    --dark-navy:      #0C2E44;
    --white:          #FFFFFF;

    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    --radius-sm:  6px;
    --radius-md:  10px;
    --radius-lg:  14px;
    --radius-xl:  18px;
    --radius-2xl: 22px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 40px rgba(12,94,138,0.15);
}

/* -------------------------------------------------------
   Reset & Base
------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--gray-900);
    background: #fff;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

ul {
    list-style: none;
}

/* -------------------------------------------------------
   Utility Classes
------------------------------------------------------- */
.text-center  { text-align: center; }
.bg-white     { background: var(--white); }
.bg-sand      { background: var(--sand-light); }
.mt-4         { margin-top: 1rem; }
.mt-6         { margin-top: 1.5rem; }
.mt-10        { margin-top: 2.5rem; }
.mb-3         { margin-bottom: 0.75rem; }

/* Card hover effect (from global.css .card-hover) */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Image fade gradient overlay */
.img-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
    pointer-events: none;
}

/* -------------------------------------------------------
   Buttons
------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn-lg   { padding: 0.875rem 2rem; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-orange {
    background: var(--sunset);
    color: #fff;
    box-shadow: 0 8px 20px rgba(232,100,44,0.25);
}
.btn-orange:hover {
    background: #d4561f;
    box-shadow: 0 10px 24px rgba(232,100,44,0.35);
    color: #fff;
}

.btn-outline-ocean {
    background: transparent;
    color: var(--ocean);
    border-color: var(--ocean);
}
.btn-outline-ocean:hover {
    background: var(--ocean);
    color: #fff;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline-white:hover {
    background: #fff;
    color: var(--ocean);
}

/* -------------------------------------------------------
   Layout Helpers
------------------------------------------------------- */
.section {
    padding: 5rem 0;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3.5rem;
    flex-wrap: wrap;
}

/* Section Labels */
.section-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-label.orange    { color: var(--sunset); }
.section-label.turquoise { color: var(--turquoise); }
.section-label.ocean     { color: var(--ocean); }

.section-label-sm {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-500);
    max-width: 40rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* -------------------------------------------------------
   Navbar
------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: all 0.5s;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(12,94,138,0.08);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.nav-logo-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s;
    flex-shrink: 0;
}
.navbar.scrolled .nav-logo-icon {
    background: var(--ocean);
}

.nav-logo-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s;
}
.nav-logo-sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--sunset-light);
    margin-left: 0.25rem;
    transition: color 0.3s;
}
.navbar.scrolled .nav-logo-text { color: var(--ocean); }
.navbar.scrolled .nav-logo-sub  { color: var(--turquoise); }

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    transition: all 0.2s;
}
.nav-link:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-link {
    color: var(--gray-600);
}
.navbar.scrolled .nav-link:hover {
    color: var(--ocean);
    background: rgba(12,94,138,0.06);
}

.nav-book-btn {
    margin-left: 0.75rem;
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
}

.hamburger-line {
    display: block;
    width: 24px; height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: background 0.3s;
}
.navbar.scrolled .hamburger-line {
    background: var(--ocean);
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    background: #fff;
    border-top: 1px solid var(--gray-100);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 1rem;
}
.nav-mobile.open { display: block; }

.nav-mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    font-weight: 500;
    transition: all 0.2s;
}
.nav-mobile-link:hover {
    color: var(--ocean);
    background: rgba(12,94,138,0.05);
}
.nav-mobile-book {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
}

@media (max-width: 768px) {
    .nav-links  { display: none; }
    .nav-toggle { display: flex; }
}

/* -------------------------------------------------------
   Hero Section
------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

/* From global.css .hero-gradient */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(12,94,138,0.85) 0%,
        rgba(46,196,182,0.6) 50%,
        rgba(232,100,44,0.4) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.hero-text { color: #fff; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
}

.hero-badge-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--turquoise);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.5; }
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.hero-title-accent {
    display: block;
    color: var(--sunset-light);
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 32rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.hero-stat-num   { font-size: 1.75rem; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
   Booking Widget (from global.css .booking-widget)
------------------------------------------------------- */
.booking-widget {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

.booking-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ocean);
    margin-bottom: 1.25rem;
}

.booking-tabs {
    display: flex;
    background: rgba(245,230,211,0.5);
    border-radius: var(--radius-xl);
    padding: 4px;
    margin-bottom: 1.5rem;
}

.booking-tab {
    flex: 1;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s;
}
.booking-tab.active {
    background: var(--ocean);
    color: #fff;
}

.booking-section-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ocean);
    margin-bottom: 0.5rem;
}

.booking-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
    position: relative;
}

.booking-select,
.booking-input {
    width: 100%;
    height: 3rem;
    padding: 0 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--gray-700);
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    appearance: auto;
}
.booking-select:focus,
.booking-input:focus {
    border-color: var(--ocean);
}

/* date/time inputs shrink correctly inside CSS grid columns on mobile */
.booking-input[type="date"],
.booking-input[type="time"] {
    min-width: 0;
}

.booking-search-btn {
    height: 3rem;
    width: 100%;
}

/* Passenger Selector */
.passenger-wrapper {
    position: relative;
}

.passenger-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    height: 3rem;
    padding: 0 0.875rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    cursor: pointer;
    background: #fff;
    color: var(--gray-700);
    font-family: inherit;
    text-align: left;
}

.passenger-popover {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 50;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    width: 18rem;
}

.pax-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}
.pax-row:last-child { border-bottom: none; }

.pax-label { font-size: 0.875rem; font-weight: 500; }
.pax-sub   { font-size: 0.75rem; color: var(--gray-400); }

.pax-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pax-btn {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gray-200);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: background 0.15s;
    line-height: 1;
}
.pax-btn:hover { background: var(--gray-100); }

@media (max-width: 640px) {
    .booking-row { grid-template-columns: 1fr; }

    /* iOS Safari enforces its own minimum width for date/time inputs —
       max-width + 16px font-size override this and prevent auto-zoom. */
    .booking-input[type="date"],
    .booking-input[type="time"],
    .bw-input[type="date"],
    .bw-input[type="time"] {
        max-width: 100%;
        font-size: 16px;
    }
}

/* -------------------------------------------------------
   Page Hero (inner pages)
------------------------------------------------------- */
.page-hero {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}
.page-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12,94,138,0.9), rgba(12,94,138,0.6));
}

.page-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 5rem;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 32rem;
}

/* -------------------------------------------------------
   Popular Routes Grid
------------------------------------------------------- */
.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .routes-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .routes-grid { grid-template-columns: 1fr; } }

.route-card {
    display: block;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-100);
}

.route-card-img {
    position: relative;
    height: 208px;
    overflow: hidden;
}
.route-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.route-card:hover .route-card-img img {
    transform: scale(1.05);
}

.route-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--sunset);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}

.route-card-body  { padding: 1.25rem; }
.route-card-title { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.route-card-meta  { display: flex; align-items: center; justify-content: space-between; }
.route-card-link  { margin-top: 1rem; color: var(--ocean); font-size: 0.875rem; font-weight: 600; }
.meta-item        { font-size: 0.875rem; color: var(--gray-500); }
.price-text       { color: var(--sunset); font-weight: 700; font-size: 0.875rem; }

/* Route Detail Cards (FastBoat page) */
.route-detail-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    margin-bottom: 1.5rem;
}

.route-detail-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.route-detail-img {
    position: relative;
    min-height: 200px;
    overflow: hidden;
}
.route-detail-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.route-detail-body   { padding: 2rem; }

.route-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.route-detail-title { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); }
.route-detail-meta  { display: flex; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.route-detail-price { text-align: right; }
.price-from         { font-size: 0.8rem; color: var(--gray-400); }
.price-big          { font-size: 1.75rem; font-weight: 800; color: var(--sunset); }
.price-per          { font-size: 0.75rem; color: var(--gray-400); }
.route-detail-desc  { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 1rem; line-height: 1.7; }

.route-more-btn {
    background: none;
    border: none;
    color: var(--ocean);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0;
    margin-bottom: 1rem;
    cursor: pointer;
}

.route-details-expand { margin-bottom: 1rem; }
.route-details-label  { font-size: 0.875rem; font-weight: 700; color: var(--gray-700); margin-bottom: 0.5rem; }

.operators-list,
.departures-list  { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }

.operator-badge {
    font-size: 0.75rem;
    background: rgba(12,94,138,0.07);
    color: var(--ocean);
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}

.departure-time {
    font-size: 0.8rem;
    background: var(--sand-light);
    color: var(--gray-600);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 500;
}

@media (max-width: 768px) {
    .route-detail-grid { grid-template-columns: 1fr; }
}

/* -------------------------------------------------------
   Features / Why Choose Us
------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .features-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
}
.feature-icon  { font-size: 1.75rem; margin-bottom: 1.25rem; }
.feature-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.feature-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; }

/* -------------------------------------------------------
   Transport Preview
------------------------------------------------------- */
.transport-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .transport-preview-grid { grid-template-columns: 1fr; }
}

.transport-preview-img {
    border-radius: var(--radius-2xl);
    width: 100%;
    height: 224px;
    object-fit: cover;
    margin-top: 1.5rem;
}

.transport-list { display: flex; flex-direction: column; }

.transport-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: var(--sand-light);
    border-radius: var(--radius-2xl);
    margin-bottom: 0.75rem;
    transition: background 0.2s;
    text-decoration: none;
}
.transport-row:hover { background: var(--sand); }

.transport-row-left  { display: flex; align-items: center; gap: 1rem; }
.transport-icon      {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: rgba(12,94,138,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.transport-name      { font-size: 0.9rem; font-weight: 600; color: var(--gray-900); }
.transport-time      { font-size: 0.8rem; color: var(--gray-400); }
.transport-row-right { display: flex; align-items: center; gap: 0.75rem; }
.arrow-icon          { color: var(--gray-300); font-size: 1rem; transition: color 0.2s; }
.transport-row:hover .arrow-icon { color: var(--ocean); }

/* Transport Page Cards */
.transport-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.transport-card-header    { padding: 1.5rem 2rem 1rem; }
.transport-card-title-row { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.transport-icon-lg        { font-size: 1.5rem; }
.transport-card-title     { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); }
.transport-card-meta      { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.transport-price-meta     { font-weight: 700; color: var(--sunset); }
.transport-card-desc      { padding: 0 2rem 1.25rem; font-size: 0.9rem; color: var(--gray-500); line-height: 1.6; }

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding: 0 2rem 1.5rem;
}
@media (max-width: 768px) { .vehicle-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .vehicle-grid { grid-template-columns: 1fr; } }

.vehicle-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 1rem;
}
.vehicle-type { font-size: 0.875rem; font-weight: 500; color: var(--gray-800); }

.transport-card-footer {
    padding: 0 2rem 1.5rem;
    display: flex;
    justify-content: flex-end;
}

/* -------------------------------------------------------
   Experiences Preview
------------------------------------------------------- */
.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .exp-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .exp-grid { grid-template-columns: 1fr; } }

.exp-card {
    display: block;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-100);
}
.exp-card-img {
    position: relative;
    height: 256px;
    overflow: hidden;
}
.exp-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.exp-card:hover .exp-card-img img { transform: scale(1.05); }
.exp-card-overlay {
    position: absolute;
    bottom: 1rem; left: 1rem; right: 1rem;
}
.exp-location { font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.exp-title    { font-size: 1.1rem; font-weight: 700; color: #fff; }
.exp-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.exp-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Experiences Full Page */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 4px;
    box-shadow: var(--shadow-sm);
    width: fit-content;
    margin: 0 auto 2.5rem;
}

.filter-tab {
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s;
    cursor: pointer;
}
.filter-tab.active {
    background: var(--ocean);
    color: #fff;
}

@media (max-width: 640px) {
    .filter-tabs {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        width: 100%;
    }
    .filter-tab {
        text-align: center;
    }
}

.exp-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .exp-full-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .exp-full-grid { grid-template-columns: 1fr; } }

.exp-full-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    display: flex;
    flex-direction: column;
}
.exp-full-img {
    position: relative;
    height: 208px;
    overflow: hidden;
}
.exp-full-img img { width: 100%; height: 100%; object-fit: cover; }

.exp-location-badge {
    position: absolute;
    bottom: 1rem; left: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
}
.exp-price-badge {
    position: absolute;
    top: 1rem; right: 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--sunset);
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}

.exp-full-body  { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.exp-full-body .btn { margin-top: auto; }
.exp-full-title { font-size: 1.05rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.exp-full-desc  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1rem; }

.exp-included     { margin-bottom: 1rem; }
.exp-included li  { font-size: 0.875rem; color: var(--gray-600); padding: 0.2rem 0; }
.exp-included-more{ font-size: 0.75rem; color: var(--gray-400); }

/* -------------------------------------------------------
   Reviews
------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .reviews-grid { grid-template-columns: 1fr; } }

.review-card {
    background: var(--sand-light);
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    border: 1px solid rgba(245,230,211,0.5);
}
.review-quote   { font-size: 2.5rem; color: rgba(232,100,44,0.2); line-height: 1; margin-bottom: 1rem; }
.review-text    { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1.25rem; }
.review-stars   { font-size: 0.875rem; margin-bottom: 1rem; }
.review-footer  { display: flex; align-items: center; justify-content: space-between; }
.review-name    { font-size: 0.875rem; font-weight: 600; color: var(--gray-900); }
.review-country { font-size: 0.75rem; color: var(--gray-400); }
.review-service {
    font-size: 0.75rem;
    background: rgba(12,94,138,0.1);
    color: var(--ocean);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-weight: 500;
}

/* -------------------------------------------------------
   CTA Banner
------------------------------------------------------- */
.cta-section {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(12,94,138,0.9), rgba(46,196,182,0.7));
}
.cta-content  { position: relative; z-index: 10; color: #fff; }
.cta-title    { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1.25rem; }
.cta-desc     { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 38rem; margin: 0 auto 2rem; }
.cta-buttons  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------
   FAQ
------------------------------------------------------- */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
    background: var(--sand-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    gap: 1rem;
    cursor: pointer;
    font-family: inherit;
}

.faq-chevron {
    font-size: 0.75rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}
.faq-answer.open { display: block; }
.faq-answer p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.7;
}

/* -------------------------------------------------------
   Partners
------------------------------------------------------- */
.partners-section { border-top: 1px solid var(--sand); }
.partners-title   { font-size: 1.15rem; font-weight: 700; color: var(--gray-900); }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
@media (max-width: 768px) { .partners-grid { grid-template-columns: repeat(2,1fr); } }

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 1rem;
    border: 1px solid var(--gray-100);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

/* -------------------------------------------------------
   About Page
------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 1024px) { .about-grid { grid-template-columns: 1fr; } }

.about-text p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.about-stat-num   { font-size: 2rem; font-weight: 800; color: var(--ocean); }
.about-stat-label { font-size: 0.875rem; color: var(--gray-400); }

.about-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.about-img           { border-radius: var(--radius-2xl); width: 100%; height: 256px; object-fit: cover; }
.about-img-offset    { margin-top: 2rem; }
.about-img-neg       { margin-top: -1rem; }
.about-img-sm-offset { margin-top: 1rem; }
.about-founder-name  { font-size: 1rem; font-weight: 600; color: var(--gray-700); margin-top: 0.5rem; }

/* -------------------------------------------------------
   Blog Page
------------------------------------------------------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    cursor: pointer;
    display: block;
}
.blog-card-img {
    position: relative;
    height: 208px;
    overflow: hidden;
}
.blog-card-img img {
    display: block;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-cat-badge {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--sunset);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
}

.blog-card-body    { padding: 1.5rem; }
.blog-card-meta    { display: flex; gap: 0.75rem; font-size: 0.75rem; color: var(--gray-400); margin-bottom: 0.75rem; }
.blog-card-title   { font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; line-height: 1.4; }
.blog-card:hover .blog-card-title { color: var(--ocean); }
.blog-card-excerpt {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-read-more { font-size: 0.875rem; font-weight: 600; color: var(--sunset); }

/* -------------------------------------------------------
   Contact Page
------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2.5rem;
}
@media (max-width: 1024px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info-col { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 1.75rem;
    border: 1px solid var(--gray-100);
}
.contact-info-title { font-weight: 700; font-size: 1.05rem; color: var(--gray-900); margin-bottom: 1.25rem; }
.contact-info-list  { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-item  { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon  {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
}
.contact-info-icon.ocean     { background: rgba(12,94,138,0.1); }
.contact-info-icon.turquoise { background: rgba(46,196,182,0.1); }
.contact-info-icon.amber     { background: rgba(244,162,97,0.1); }
.contact-info-icon.orange    { background: rgba(232,100,44,0.1); }
.contact-info-label { font-size: 0.875rem; font-weight: 500; color: var(--gray-900); }
.contact-info-value { font-size: 0.875rem; color: var(--gray-500); }

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    border-radius: var(--radius-2xl);
    padding: 1.25rem;
    transition: background 0.2s;
    text-decoration: none;
}
.whatsapp-btn:hover { background: #20BD5A; }
.whatsapp-icon  { font-size: 1.5rem; }
.whatsapp-title { font-weight: 700; font-size: 0.95rem; }
.whatsapp-sub   { font-size: 0.8rem; color: rgba(255,255,255,0.8); }

.contact-map {
    background: #fff;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    height: 256px;
}

.contact-form-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid var(--gray-100);
}
.contact-form-title { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.contact-form-sub   { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.5rem; }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}
@media (max-width: 640px) { .form-row-2 { grid-template-columns: 1fr; } }

.form-group   { margin-bottom: 1rem; }
.form-label   { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.375rem; }

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--gray-700);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--ocean); }
.form-textarea { min-height: 160px; resize: vertical; }

.form-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.form-error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* -------------------------------------------------------
   404 Page
------------------------------------------------------- */
.not-found-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.not-found-icon {
    font-size: 2.5rem;
    background: rgba(12,94,138,0.1);
    width: 80px; height: 80px;
    border-radius: var(--radius-2xl);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
}
.not-found-code  { font-size: 5rem; font-weight: 800; color: var(--ocean); line-height: 1; margin-bottom: 0.75rem; }
.not-found-title { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.not-found-desc  { color: var(--gray-500); max-width: 28rem; margin-bottom: 2rem; }

/* -------------------------------------------------------
   Footer
------------------------------------------------------- */
.site-footer     { background: var(--dark-navy); color: #fff; }
.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1.25rem;
}
.footer-logo-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-md);
    background: var(--turquoise);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.footer-logo-text { font-size: 1.1rem; font-weight: 700; }
.footer-logo-sub  { font-size: 1.1rem; font-weight: 300; color: var(--sunset-light); margin-left: 0.25rem; }
.footer-desc      { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 1.5rem; }

.footer-badges    { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.footer-badge     {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 0.375rem 0.75rem;
}

.footer-heading { font-weight: 600; margin-bottom: 1.25rem; color: #fff; font-size: 0.95rem; }

.footer-links    { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links li a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-links li a:hover { color: var(--turquoise); }

.footer-routes { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-routes li { font-size: 0.875rem; color: rgba(255,255,255,0.5); }

.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact li {
    display: flex;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    align-items: flex-start;
}
.footer-contact-icon { color: var(--turquoise); flex-shrink: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.35); }

.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* -------------------------------------------------------
   Generic Page Content
------------------------------------------------------- */
.page-content {
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--gray-600);
}
.page-content p  { margin-bottom: 1rem; }
.page-content h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin: 2rem 0 1rem; }
.page-content h3 { font-size: 1.2rem; font-weight: 700; color: var(--gray-900); margin: 1.5rem 0 0.75rem; }
.page-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content a  { color: var(--ocean); text-decoration: underline; }

/* -------------------------------------------------------
   WooCommerce Single Product — Custom Styling
------------------------------------------------------- */

/* -------------------------------------------------------
   Single Product — Booking card overflow fix
   The card's overflow:hidden clips the booking form when
   the right column grows taller than the image column.
   Fix: switch overflow to visible on the booking card and
   apply border-radius directly to the image column instead.
------------------------------------------------------- */
.route-detail-card--booking {
    overflow: visible;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}
.route-detail-card--booking .route-detail-grid {
    flex: 1;
    min-height: 0;
    overflow: hidden;
}
.route-detail-card--booking .route-detail-img {
    border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
    overflow: hidden;
}
.route-detail-card--booking .route-detail-body {
    padding-bottom: 2rem;
    overflow-y: auto;
}
@media (max-width: 768px) {
    .route-detail-card--booking {
        max-height: none;
    }
    .route-detail-card--booking .route-detail-img {
        border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    }
}

/* Route tag: push slightly inward so it clears the rounded corner */
.route-detail-card--booking .route-tag {
    top: 1.25rem;
    left: 1.25rem;
}

/* Price labels: slightly larger and more legible */
.route-detail-card--booking .price-from,
.route-detail-card--booking .price-per {
    font-size: 0.82rem;
    color: var(--gray-500);
}

/* -------------------------------------------------------
   Single Product — Unified Booking Form
   All fields (Passenger Type, Operator, Departure, Date,
   Quantity + Add to Cart) use one consistent vertical stack.
   Scoped to .route-detail-body to avoid affecting other pages.
------------------------------------------------------- */

/* Reset variations_form top margin */
.route-detail-body .variations_form { margin-top: 0; }

/* Convert the .variations <table> into a stacked block —
   makes Passenger Type match the layout of the custom fields */
.route-detail-body .variations table,
.route-detail-body .variations tbody { display: block; width: 100%; }
.route-detail-body .variations tr    { display: block; margin-bottom: 1.25rem; }
.route-detail-body .variations th    {
    display: block;
    width: 100%;
    padding: 0 0 0.375rem 0;
    border: none;
    text-align: left;
}
.route-detail-body .variations td    { display: block; width: 100%; padding: 0; border: none; }

/* Unified label style for every field in the form */
.route-detail-body .form-label,
.route-detail-body .variations label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

/* Unified field style — same height, border, radius for all inputs/selects */
.route-detail-body .booking-select,
.route-detail-body .booking-input,
.route-detail-body .variations select {
    width: 100%;
    height: 3rem;
    padding: 0 0.875rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    color: var(--gray-800);
    background: #fff;
    font-family: inherit;
    appearance: auto;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.route-detail-body .booking-select:focus,
.route-detail-body .booking-input:focus,
.route-detail-body .variations select:focus {
    border-color: var(--ocean);
    box-shadow: 0 0 0 3px rgba(12,94,138,0.1);
}
.route-detail-body .booking-select:disabled { opacity: 0.5; cursor: not-allowed; }

/* Consistent spacing between every field group */
.route-detail-body .form-group { margin-bottom: 1.5rem; }

/* 2-column grid for Departure + Date fields side by side */
.route-detail-body .booking-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 1rem;
}
.route-detail-body .booking-fields-grid .booking-field-full {
    grid-column: 1 / -1;
}
@media (max-width: 640px) {
    .route-detail-body .booking-fields-grid {
        grid-template-columns: 1fr;
    }
}

/* Remove the utility top margins — spacing now comes from mb on each group */
.route-detail-body .mt-6,
.route-detail-body .mt-4 { margin-top: 0; }

/* Variations row spacing to match */
.route-detail-body .variations tr { margin-bottom: 1.5rem; }

/* Hide the "Clear" reset link — optional, keeps form clean */
.route-detail-body .reset_variations { display: none; }

/* Hide the dynamic variation price — already shown in the header */
.route-detail-body .woocommerce-variation-price { display: none; }

/* Quantity + Add to Cart — flex row, more predictable than grid
   (WooCommerce appends hidden inputs after the button which would
    break a strict 2-column grid by spilling into a third cell) */
.route-detail-body .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
}

/* Quantity wrapper — fixed width column with label above */
.route-detail-body .quantity {
    flex: 0 0 6rem;
    display: flex;
    flex-direction: column;
    margin-right: 0;
}
.route-detail-body .quantity::before {
    content: 'Qty';
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}
.route-detail-body .quantity .qty {
    width: 100%;
    height: 3rem;
    padding: 0 0.5rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--gray-800);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.route-detail-body .quantity .qty:focus { border-color: var(--ocean); }

/* Add to Cart button — fills remaining flex space */
.single_add_to_cart_button {
    flex: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 3rem !important;
    padding: 0 1.5rem !important;
    background: var(--sunset) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    font-family: inherit !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: background 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 14px rgba(232,100,44,0.3) !important;
    text-decoration: none !important;
}
.single_add_to_cart_button:hover {
    background: #d4561f !important;
    box-shadow: 0 6px 18px rgba(232,100,44,0.4) !important;
    color: #fff !important;
}

/* Simple product add-to-cart (experience, transport) inside the booking card.
   Exclude .variations_form — that class is also on the fast-boat variable form
   and must NOT become a flex row. */
.route-detail-body .cart:not(.variations_form) {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Price display (outside .route-detail-body — e.g. cart, other contexts) */
.woocommerce-Price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sunset);
}

/* -------------------------------------------------------
   Cart Page Layout — Full Width Fix
------------------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
    width: 100%;
}
@media (max-width: 1024px) {
    .cart-layout { grid-template-columns: 1fr; }
}

.cart-items-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;
    gap: 1.25rem;
    align-items: start;
    background: #fff;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    padding: 1.5rem;
    width: 100%;
}
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 70px 1fr;
    }
    .cart-item-subtotal {
        grid-column: 1 / -1;
        text-align: right;
    }
}
@media (max-width: 480px) {
    .cart-item { grid-template-columns: 1fr; }
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
}
.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}
.cart-item-title a {
    color: inherit;
    text-decoration: none;
}
.cart-item-title a:hover { color: var(--ocean); }

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.cart-meta-item {
    font-size: 0.8rem;
    background: var(--sand-light);
    color: var(--gray-600);
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-md);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.cart-qty-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.cart-qty-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}
.cart-qty-input {
    width: 64px;
    height: 2.25rem;
    padding: 0 0.5rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    text-align: center;
    font-family: inherit;
    outline: none;
}
.cart-qty-input:focus { border-color: var(--ocean); }

.cart-remove-btn {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
}
.cart-remove-btn:hover { color: #ef4444; }

.cart-item-subtotal {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sunset);
    white-space: nowrap;
    padding-top: 0.25rem;
    text-align: right;
}

/* Cart Summary Sidebar */
.cart-summary-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    padding: 1.75rem;
    position: sticky;
    top: 90px;
}

.cart-summary-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    font-size: 0.9rem;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.cart-discount { color: #16a34a; }

.cart-total-row {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    border-bottom: none;
    padding-top: 1rem;
}

.cart-security {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    flex-wrap: wrap;
}
.cart-security span {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Cart empty state */
.cart-empty { padding: 3rem 0; }

/* Cart Icon in Navbar */
.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.2s;
    text-decoration: none;
    margin-left: 0.5rem;
}
.nav-cart-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}
.navbar.scrolled .nav-cart-btn {
    color: var(--gray-600);
}
.navbar.scrolled .nav-cart-btn:hover {
    color: var(--ocean);
    background: rgba(12,94,138,0.06);
}

.nav-cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--sunset);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* -------------------------------------------------------
   Cart Empty State
------------------------------------------------------- */
.cart-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
}

.cart-empty-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.cart-empty-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.cart-empty-desc {
    font-size: 0.95rem;
    color: var(--gray-500);
    max-width: 28rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* -------------------------------------------------------
   Checkout Page
------------------------------------------------------- */
.pth-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .pth-checkout-grid { grid-template-columns: 1fr; }
}

.pth-checkout-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.pth-checkout-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

/* Billing fields */
.woocommerce-billing-fields .form-row {
    margin-bottom: 1rem;
}

.woocommerce-billing-fields label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.woocommerce-billing-fields input,
.woocommerce-billing-fields select,
.woocommerce-billing-fields textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--gray-700);
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}

.woocommerce-billing-fields input:focus,
.woocommerce-billing-fields select:focus {
    border-color: var(--ocean);
}

/* Payment methods */
.pth-payment-methods {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pth-payment-method {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: border-color 0.2s;
}

.pth-payment-method:has(input:checked) {
    border-color: var(--ocean);
}

.pth-payment-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.pth-payment-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--ocean);
    flex-shrink: 0;
}

.pth-payment-title { flex: 1; }

.pth-payment-icon img {
    height: 24px;
    width: auto;
}

.pth-payment-box {
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--gray-100);
    background: var(--sand-light);
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Place order button */
.pth-place-order {
    width: 100%;
    margin-top: 0.5rem;
}

.pth-no-payment {
    font-size: 0.9rem;
    color: var(--gray-500);
    padding: 1rem;
    background: var(--sand-light);
    border-radius: var(--radius-xl);
}

/* Order summary table */
.pth-order-summary {
    position: sticky;
    top: 90px;
}

.pth-order-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.pth-order-table thead th {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.pth-order-table tbody tr {
    border-bottom: 1px solid var(--gray-100);
}

.pth-order-table tbody td {
    padding: 1rem 0;
    vertical-align: top;
}

.pth-order-product-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.pth-order-qty {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 400;
    margin-left: 0.375rem;
}

.pth-order-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
}

.pth-order-subtotal {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--sunset);
    white-space: nowrap;
}

.pth-order-total-row th,
.pth-order-total-row td {
    padding-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
}

.text-right { text-align: right; }

/* -------------------------------------------------------
   Thank You / Order Received Page
------------------------------------------------------- */
.thankyou-banner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-2xl);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.thankyou-banner-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.thankyou-banner-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 0.25rem;
}

.thankyou-banner-desc {
    font-size: 0.875rem;
    color: #047857;
}

.thankyou-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}
@media (max-width: 1024px) {
    .thankyou-grid { grid-template-columns: 1fr; }
}

.thankyou-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.thankyou-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.875rem;
}

.thankyou-info-row:last-child {
    border-bottom: none;
}

.thankyou-info-label {
    color: var(--gray-500);
    font-weight: 500;
}

.thankyou-info-value {
    color: var(--gray-900);
    font-weight: 600;
    text-align: right;
}

.thankyou-status {
    background: #ecfdf5;
    color: #065f46;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
}

/* -------------------------------------------------------
   Page Hero — gradient fallback (no image required)
   Used by archive.php and search.php
------------------------------------------------------- */
.page-hero {
    background: var(--dark-navy);
}

/* -------------------------------------------------------
   Post Hero (single.php)
------------------------------------------------------- */
.post-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    background: var(--dark-navy);
    padding-bottom: 2.5rem;
}

.post-hero-bg {
    position: absolute;
    inset: 0;
}
.post-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(12,46,68,0.4) 0%, rgba(12,46,68,0.85) 100%);
}

.post-hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 5rem;
}

.post-cat-link {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--turquoise-light);
    margin-bottom: 0.75rem;
    border: 1px solid rgba(46,196,182,0.4);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
}
.post-cat-link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

.post-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    max-width: 42rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
}
.post-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}
.post-meta-author { font-weight: 600; color: rgba(255,255,255,0.9); }
.post-meta-sep    { opacity: 0.4; }

/* -------------------------------------------------------
   Post Content Wrap
------------------------------------------------------- */
.post-content-wrap {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* -------------------------------------------------------
   Post Content — prose typography
------------------------------------------------------- */
.post-content {
    font-size: 1.075rem;
    line-height: 1.8;
    color: var(--gray-800);
    margin-bottom: 2.5rem;
}
.post-content h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 2rem 0 0.75rem;
}
.post-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 1.75rem 0 0.6rem;
}
.post-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 1.5rem 0 0.5rem;
}
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul,
.post-content ol { margin: 0 0 1.25rem 1.5rem; }
.post-content li { margin-bottom: 0.4rem; }
.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }
.post-content blockquote {
    border-left: 4px solid var(--turquoise);
    background: var(--sand);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--gray-700);
}
.post-content blockquote p { margin: 0; }
.post-content a {
    color: var(--ocean-light);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.post-content a:hover { color: var(--ocean); }
.post-content strong { font-weight: 700; color: var(--gray-900); }
.post-content em     { font-style: italic; }
.post-content code {
    background: var(--gray-100);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: monospace;
}
.post-content pre {
    background: var(--gray-800);
    color: #e5e7eb;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    overflow-x: auto;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}
.post-content pre code { background: none; padding: 0; color: inherit; }
.post-content img {
    border-radius: var(--radius-lg);
    margin: 1.5rem auto;
    box-shadow: var(--shadow-md);
}
.post-content hr {
    border: none;
    border-top: 2px solid var(--gray-200);
    margin: 2.5rem 0;
}
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.post-content th,
.post-content td {
    padding: 0.6rem 1rem;
    border: 1px solid var(--gray-200);
    text-align: left;
}
.post-content th {
    background: var(--sand);
    font-weight: 700;
    color: var(--dark-navy);
}

/* -------------------------------------------------------
   Post Tags
------------------------------------------------------- */
.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}
.post-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ocean);
    background: rgba(12,94,138,0.08);
    border: 1px solid rgba(12,94,138,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    transition: background 0.2s;
}
.post-tag:hover { background: rgba(12,94,138,0.15); }

/* -------------------------------------------------------
   Post Share
------------------------------------------------------- */
.post-share {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 2.5rem;
}
.post-share-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9rem;
}
.post-share-btn {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}
.post-share-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.post-share-wa   { background: #25D366; color: #fff; }
.post-share-fb   { background: #1877F2; color: #fff; }
.post-share-copy { background: var(--gray-100); color: var(--gray-700); }

/* -------------------------------------------------------
   Post Navigation
------------------------------------------------------- */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}
.post-nav-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 1rem 1.25rem;
    background: var(--sand-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: background 0.2s, border-color 0.2s;
}
.post-nav-item:hover {
    background: var(--sand);
    border-color: var(--turquoise);
}
.post-nav-next { text-align: right; }
.post-nav-dir  { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--turquoise); }
.post-nav-name { font-size: 0.95rem; font-weight: 600; color: var(--dark-navy); line-height: 1.3; }
@media (max-width: 640px) {
    .post-nav { grid-template-columns: 1fr; }
    .post-nav-next { text-align: left; }
}

/* -------------------------------------------------------
   Post CTA Strip
------------------------------------------------------- */
.post-cta-strip {
    background: linear-gradient(135deg, var(--ocean) 0%, var(--dark-navy) 100%);
    padding: 2.5rem 0;
}
.post-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.post-cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--turquoise-light);
    margin-bottom: 0.3rem;
}
.post-cta-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
}

/* -------------------------------------------------------
   Comments
------------------------------------------------------- */
.comments-wrap {
    padding: 3rem 0;
    background: #fff;
}

.comments-area { margin-top: 0; }

.comments-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gray-200);
}

.comment-list { list-style: none; margin: 0 0 2rem; padding: 0; }

.comment-body {
    background: var(--sand-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1rem;
}
.comment-author b { font-weight: 700; color: var(--dark-navy); }
.comment-author .url { color: var(--ocean-light); }
.comment-meta,
.comment-metadata { font-size: 0.82rem; color: var(--gray-500); margin: 0.25rem 0 0.75rem; }
.comment-content p { margin-bottom: 0.5rem; color: var(--gray-800); line-height: 1.7; }
.reply { margin-top: 0.75rem; }
.reply a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ocean);
    border: 1px solid var(--gray-200);
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
}
.reply a:hover { background: var(--sand); }

/* Nested comments */
.children { margin-left: 2rem; }

/* Comment form */
.comment-respond {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}
.comment-reply-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.25rem;
}
.comment-reply-title small a { font-size: 0.8rem; color: var(--ocean); margin-left: 0.75rem; }
.comment-form label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: #fff;
    transition: border-color 0.2s;
    margin-bottom: 1.25rem;
}
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}
.comment-form textarea { min-height: 140px; resize: vertical; }
.form-submit { margin-top: 0.5rem; }
.form-submit .submit {
    background: var(--ocean);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}
.form-submit .submit:hover { background: var(--ocean-light); transform: translateY(-1px); }

/* No comments yet */
.no-comments { color: var(--gray-500); font-style: italic; margin-bottom: 1.5rem; }

/* -------------------------------------------------------
   Pagination
------------------------------------------------------- */
.pagination-wrap {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}
.pagination-wrap ul {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}
.pagination-wrap .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    background: #fff;
    border: 1.5px solid var(--gray-200);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.pagination-wrap .page-numbers:hover {
    background: var(--sand);
    border-color: var(--turquoise);
    color: var(--ocean);
}
.pagination-wrap .page-numbers.current {
    background: var(--ocean);
    border-color: var(--ocean);
    color: #fff;
}
.pagination-wrap .page-numbers.dots {
    border: none;
    background: none;
    color: var(--gray-400);
    min-width: auto;
    padding: 0 0.25rem;
}

/* -------------------------------------------------------
   Archive Filter Bar
------------------------------------------------------- */
.archive-filter-bar {
    background: #fff;
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
}

/* -------------------------------------------------------
   No Posts / Empty State
------------------------------------------------------- */
.no-posts { padding: 4rem 0; }
.no-posts-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.no-posts-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

/* -------------------------------------------------------
   Blog Card — no featured image fallback
------------------------------------------------------- */
.blog-card-no-img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--ocean) 0%, var(--turquoise) 100%);
}

/* -------------------------------------------------------
   Search Page
------------------------------------------------------- */
.search-bar-wrap {
    margin-bottom: 2rem;
}
.search-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}
.search-field {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    color: var(--gray-900);
    background: #fff;
    transition: border-color 0.2s;
}
.search-field:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}
.search-submit,
.btn-ocean {
    background: var(--ocean);
    color: #fff;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    transition: background 0.2s;
    white-space: nowrap;
}
.search-submit:hover,
.btn-ocean:hover { background: var(--ocean-light); }

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.search-result-item {
    display: flex;
    gap: 1.25rem;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    align-items: flex-start;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.search-result-item:hover {
    border-color: var(--turquoise);
    box-shadow: var(--shadow-md);
}
.search-result-img {
    flex-shrink: 0;
    width: 100px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.search-result-img img { width: 100%; height: 100%; object-fit: cover; }
.search-result-body    { flex: 1; min-width: 0; }
.search-result-type {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--turquoise);
    margin-bottom: 0.3rem;
}
.search-result-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}
.search-result-excerpt {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}
@media (max-width: 480px) {
    .search-result-item { flex-direction: column; }
    .search-result-img  { width: 100%; height: 160px; }
    .search-form        { flex-direction: column; }
    .search-field       { width: 100%; }
}

/* -------------------------------------------------------
   WooCommerce — Product Gallery
------------------------------------------------------- */
.woocommerce-product-gallery {
    position: relative;
    margin-bottom: 1.5rem;
}
.woocommerce-product-gallery__image {
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
}
/* Zoom icon */
.woocommerce-product-gallery__trigger {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: background 0.2s;
}
.woocommerce-product-gallery__trigger:hover { background: #fff; }
/* Thumbnail strip */
.flex-control-thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    list-style: none;
    flex-wrap: wrap;
}
.flex-control-thumbs li { flex-shrink: 0; }
.flex-control-thumbs img {
    width: 72px;
    height: 56px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}
.flex-control-thumbs .flex-active img,
.flex-control-thumbs img:hover {
    border-color: var(--turquoise);
}

/* -------------------------------------------------------
   WooCommerce — Product Tabs
------------------------------------------------------- */
.woocommerce-tabs {
    margin-top: 2.5rem;
}
.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 0;
    list-style: none;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 0;
    padding: 0;
    flex-wrap: wrap;
}
.woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
}
.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-500);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s, border-color 0.2s;
}
.woocommerce-tabs ul.tabs li a:hover {
    color: var(--ocean);
}
.woocommerce-tabs ul.tabs li.active a {
    color: var(--ocean);
    border-bottom-color: var(--ocean);
}
/* Tab panels */
.woocommerce-tabs .panel {
    padding: 2rem 0 1rem;
}
/* Description panel typography */
.woocommerce-tabs #tab-description h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}
.woocommerce-tabs #tab-description p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.woocommerce-tabs #tab-description ul {
    list-style: disc;
    margin: 0 0 1rem 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* -------------------------------------------------------
   WooCommerce — Reviews & Star Ratings
------------------------------------------------------- */
.woocommerce-Reviews {}

/* Review count heading */
#reviews #comments h2,
.woocommerce-Reviews-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

/* Individual review */
.woocommerce-Reviews .commentlist {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}
.woocommerce-Reviews .comment {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.woocommerce-Reviews .comment_container {
    display: flex;
    gap: 1rem;
    width: 100%;
}
.woocommerce-Reviews .comment-text {
    flex: 1;
    background: var(--sand-light);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
}
.woocommerce-Reviews .meta {
    margin-bottom: 0.75rem;
}
.woocommerce-Reviews .woocommerce-review__author {
    font-weight: 700;
    color: var(--dark-navy);
}
.woocommerce-Reviews .woocommerce-review__dash { margin: 0 0.3rem; color: var(--gray-300); }
.woocommerce-Reviews .woocommerce-review__published-date {
    font-size: 0.82rem;
    color: var(--gray-500);
}
.woocommerce-Reviews .description p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Star ratings */
.star-rating {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    position: relative;
    height: 1em;
    font-size: 1em;
    font-family: inherit;
    color: var(--sunset-light);
}
.star-rating::before {
    content: "★★★★★";
    color: var(--gray-200);
    float: left;
}
.star-rating span {
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.star-rating span::before {
    content: "★★★★★";
    color: var(--sunset-light);
    top: 0;
    position: absolute;
    left: 0;
}
/* Rating summary */
.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.woocommerce-product-rating .woocommerce-review-link {
    font-size: 0.85rem;
    color: var(--ocean-light);
}

/* =======================================================
   BOOKING WIDGET — 3-step flow (Transport & Experiences)
   ======================================================= */

/* Step indicator */
.bw-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2.5rem;
}
.bw-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-500);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}
.bw-step--active {
    background: var(--ocean);
    color: #fff;
}
.bw-step--done {
    background: var(--turquoise);
    color: #fff;
}
.bw-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}
.bw-step--active .bw-step-num,
.bw-step--done .bw-step-num  { background: rgba(255,255,255,0.3); }
.bw-step-sep {
    width: 2.5rem;
    height: 2px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* Panel (each step is a panel) */
.bw-panel {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.bw-panel-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.75rem;
}

/* Back button */
.bw-back-row {
    margin-bottom: 1.25rem;
}
.bw-back-btn {
    background: none;
    border: none;
    color: var(--ocean);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    transition: color 0.2s;
}
.bw-back-btn:hover { color: var(--dark-navy); }

/* Form grid */
.bw-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}
.bw-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.bw-field--full { grid-column: 1 / -1; }
.bw-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
}
.bw-input {
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.bw-input:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}

/* date/time inputs shrink correctly inside CSS grid columns on mobile */
.bw-input[type="date"],
.bw-input[type="time"] {
    min-width: 0;
}
.bw-input--fixed {
    background: var(--gray-100);
    color: var(--gray-600);
    border-color: var(--gray-200);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.bw-select {
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}
.bw-select:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}

/* Counter */
.bw-counter {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 2.75rem;
}
.bw-counter-btn {
    background: var(--gray-100);
    border: none;
    width: 2.5rem;
    height: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
    font-family: inherit;
}
.bw-counter-btn:hover { background: var(--gray-200); color: var(--dark-navy); }
.bw-counter-val {
    flex: 1;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
}

/* Phone row */
.bw-phone-wrap {
    display: flex;
    gap: 0.5rem;
}
.bw-phone-prefix {
    flex-shrink: 0;
    width: 9rem;
}
.bw-phone-number { flex: 1; }

/* Checkboxes */
.bw-checks {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}
.bw-check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--gray-700);
    cursor: pointer;
    line-height: 1.5;
}
.bw-check-label input[type="checkbox"] {
    margin-top: 0.2rem;
    flex-shrink: 0;
    accent-color: var(--ocean);
    width: 1rem;
    height: 1rem;
}
.bw-check-label a {
    color: var(--ocean);
    text-decoration: underline;
}

/* Error message */
.bw-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Actions row */
.bw-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Step 3 two-column layout: summary + form */
.bw-s3-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}
.bw-summary {
    background: var(--sand);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    position: sticky;
    top: 5rem;
}
.bw-summary-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}
.bw-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}
.bw-summary-row span:first-child {
    color: var(--gray-500);
    font-weight: 500;
    flex-shrink: 0;
}
.bw-summary-row span:last-child {
    color: var(--dark-navy);
    font-weight: 600;
    text-align: right;
}
.bw-summary-divider {
    height: 1px;
    background: var(--gray-200);
    margin: 0.75rem 0;
}
.bw-summary-total span:last-child {
    color: var(--sunset);
    font-size: 1.1rem;
    font-weight: 700;
}
.bw-form-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.25rem;
}
.bw-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .bw-steps {
        gap: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        justify-content: flex-start;
    }
    .bw-step-label { display: none; }
    .bw-step       { padding: 0.5rem 0.75rem; }
    .bw-form-grid  { grid-template-columns: 1fr; }
    .bw-field--full { grid-column: 1; }
    .bw-s3-grid    { grid-template-columns: 1fr; }
    .bw-summary    { position: static; order: 2; }
    .bw-form-row   { grid-template-columns: 1fr; }
    .bw-phone-prefix { width: 8rem; }
    .bw-panel      { padding: 1.25rem; }
}

/* Review form */
#review_form_wrapper { margin-top: 2rem; }
#review_form h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.25rem;
}
#respond .comment-form-rating {
    margin-bottom: 1.25rem;
}
#respond .comment-form-rating label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
/* Clickable star rating selector */
#respond .stars a {
    font-size: 1.4rem;
    color: var(--gray-300);
    transition: color 0.15s;
}
#respond .stars a:hover,
#respond .stars a.active { color: var(--sunset-light); }
#respond .comment-form-author,
#respond .comment-form-email {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
#respond .comment-form-author label,
#respond .comment-form-email label {
    display: none;
}
#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-900);
    background: #fff;
    transition: border-color 0.2s;
    margin-bottom: 1rem;
}
#respond input:focus,
#respond textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 0 0 3px rgba(46,196,182,0.15);
}
#respond textarea { min-height: 120px; resize: vertical; }
#respond .form-submit input[type="submit"] {
    background: var(--ocean);
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: background 0.2s;
}
#respond .form-submit input[type="submit"]:hover { background: var(--ocean-light); }

/* No reviews yet */
.woocommerce-Reviews #comments .woocommerce-noreviews {
    color: var(--gray-500);
    font-style: italic;
    padding: 1rem 0;
}

/* -------------------------------------------------------
   WooCommerce — Archive / Shop Pagination
------------------------------------------------------- */
.woocommerce-pagination {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}
.woocommerce-pagination ul {
    display: flex;
    gap: 0.4rem;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
}
.woocommerce-pagination ul .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
    background: #fff;
    border: 1.5px solid var(--gray-200);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.woocommerce-pagination ul .page-numbers:hover {
    background: var(--sand);
    border-color: var(--turquoise);
    color: var(--ocean);
}
.woocommerce-pagination ul .page-numbers.current {
    background: var(--ocean);
    border-color: var(--ocean);
    color: #fff;
}
.woocommerce-pagination ul .page-numbers.dots {
    border: none;
    background: none;
    color: var(--gray-400);
    min-width: auto;
}

/* -------------------------------------------------------
   WooCommerce — Notices (errors, info, success)
------------------------------------------------------- */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    list-style: none;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.woocommerce-message {
    background: #ecfdf5;
    border-left: 4px solid #10b981;
    color: #065f46;
}
.woocommerce-error {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    color: #991b1b;
}
.woocommerce-info {
    background: #eff6ff;
    border-left: 4px solid var(--ocean-light);
    color: var(--ocean);
}
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
    font-weight: 700;
    text-decoration: underline;
}

/* -------------------------------------------------------
   Single Product — Real-time Price Summary
   Shown below the Add to Cart button once a variation
   (passenger type) has been selected.
------------------------------------------------------- */
.pth-price-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f0f9f8;
    border: 1.5px solid var(--turquoise);
    border-radius: var(--radius-lg);
    padding: 0.875rem 1.25rem;
    margin-top: 1rem;
}
.pth-price-summary-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
}
.pth-price-summary-total {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--sunset);
    letter-spacing: -0.02em;
}

/* -------------------------------------------------------
   Floating WhatsApp Button (all pages)
------------------------------------------------------- */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}
@media (max-width: 640px) {
    .wa-float {
        width: 48px;
        height: 48px;
        bottom: 1rem;
        right: 1rem;
    }
    .wa-float svg {
        width: 26px;
        height: 26px;
    }
}