/* ============================================================
   Port Austin Watersports — design system
   Vivid brand blue + navy, yellow reserved for Book Now CTAs.
   Display: Oswald (condensed, all-caps energy) · Body: Inter
   ============================================================ */

:root {
    --blue: #008BE8;
    --blue-dark: #0470b8;
    --navy: #04253D;
    --ink: #0b1b29;
    --yellow: #F1EA09;
    --yellow-dark: #d9d208;
    --sand: #f4f9fd;
    --white: #ffffff;
    --text: #22323f;
    --muted: #5b6b78;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(4, 37, 61, 0.12);
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--white);
    padding-bottom: 0;
}

h1, h2, h3, .display-font {
    font-family: 'Oswald', 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 700;
    color: var(--navy);
}

.section-eyebrow {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 0.75rem; }
.section-lead { color: var(--muted); max-width: 640px; margin: 0 auto 1rem; }

section { padding: 4.5rem 0; }
@media (max-width: 767px) { section { padding: 3rem 0; } }

/* ---------- Top bar + navbar ---------- */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    padding: 0.35rem 0;
}

.paw-navbar {
    background: var(--blue);
    padding: 0.5rem 0;
    box-shadow: 0 2px 14px rgba(4, 37, 61, 0.25);
}
.paw-navbar .nav-link {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 0.9rem;
}
.paw-navbar .nav-link:hover { color: #fff; }
.paw-navbar .nav-link.active {
    color: #fff;
    box-shadow: inset 0 -3px 0 var(--yellow);
}
.paw-navbar .navbar-toggler {
    border: none;
    color: #fff;
    font-size: 1.3rem;
}
.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-right: 0.5rem;
    white-space: nowrap;
}
.nav-phone:hover { color: var(--yellow); }

/* The one hot accent: Book Now */
.btn-book {
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.55rem 1.3rem;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-book:hover {
    background: var(--yellow-dark);
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(241, 234, 9, 0.4);
}
.btn-outline-light-paw {
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.5rem 1.3rem;
}
.btn-outline-light-paw:hover { background: rgba(255, 255, 255, 0.15); color: #fff; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    color: #fff;
    background: linear-gradient(rgba(4, 37, 61, 0.55), rgba(4, 37, 61, 0.35)), url('/assets/images/hero-home.jpg') center 65% / cover no-repeat;
    padding: 6rem 0 7rem;
}
.hero-eyebrow {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 500;
    color: var(--yellow);
    margin-bottom: 0.75rem;
}
.hero h1 {
    color: #fff;
    font-size: clamp(2.4rem, 6.5vw, 4.4rem);
    line-height: 1.05;
    text-shadow: 0 3px 24px rgba(4, 37, 61, 0.5);
    margin-bottom: 1rem;
}
.hero .lead {
    max-width: 560px;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1.75rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-ctas .btn-book { font-size: 1.05rem; padding: 0.8rem 2rem; }
.hero-ctas .btn-outline-light-paw { font-size: 1.05rem; padding: 0.75rem 1.6rem; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hero-chip {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    padding: 0.35rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
}
.hero-chip i { color: var(--yellow); margin-right: 0.4rem; }

/* Wave divider */
.wave-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    line-height: 0;
}
.wave-divider svg { width: 100%; height: 70px; display: block; }
.wave-divider.top { top: -1px; bottom: auto; transform: rotate(180deg); }

/* ---------- Trust strip ---------- */
.trust-strip {
    background: var(--navy);
    color: #fff;
    padding: 1.4rem 0;
}
.trust-strip .row { align-items: center; }
.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.5rem 0;
    font-size: 0.92rem;
    font-weight: 600;
}
.trust-item i { color: var(--yellow); font-size: 1.3rem; }
.trust-stars { color: var(--yellow); letter-spacing: 0.1em; }

/* ---------- Fleet cards ---------- */
.fleet-card {
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    background: #fff;
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(4, 37, 61, 0.18); }
.fleet-card-img {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}
.fleet-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fleet-card:hover .fleet-card-img img { transform: scale(1.05); }
.fleet-price-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(4, 37, 61, 0.25);
}
.fleet-price-badge small { font-size: 0.7rem; font-weight: 500; }
.fleet-card-body { padding: 1.4rem; display: flex; flex-direction: column; flex: 1; }
.fleet-card-body h3 { font-size: 1.4rem; margin-bottom: 0.15rem; }
.fleet-tagline { color: var(--blue); font-weight: 600; font-size: 0.88rem; margin-bottom: 0.6rem; }
.fleet-desc { color: var(--muted); font-size: 0.9rem; margin-bottom: 0.9rem; }
.fleet-features { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1.1rem; }
.fleet-feature {
    background: var(--sand);
    color: var(--navy);
    border-radius: 100px;
    padding: 0.22rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 600;
}
.fleet-feature i { color: var(--blue); margin-right: 0.3rem; }
.fleet-card-body .btn-book { margin-top: auto; width: 100%; text-align: center; }
.fleet-capacity { color: var(--muted); font-size: 0.82rem; margin-bottom: 0.5rem; }
.fleet-capacity i { color: var(--blue); margin-right: 0.35rem; }

/* ---------- Benefits row ---------- */
.benefits { background: var(--sand); }
.benefit {
    text-align: center;
    padding: 1rem 0.5rem;
}
.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 0.8rem;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 139, 232, 0.35);
}
.benefit h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.benefit p { color: var(--muted); font-size: 0.82rem; margin: 0; }

/* ---------- Destination cards ---------- */
.dest-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 3 / 4;
    display: block;
    color: #fff;
}
.dest-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 37, 61, 0) 35%, rgba(4, 37, 61, 0.88) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
}
.dest-card h3 { color: #fff; font-size: 1.35rem; margin-bottom: 0.3rem; }
.dest-card p { color: rgba(255, 255, 255, 0.85); font-size: 0.85rem; margin: 0; }
.dest-card:hover { color: #fff; }

/* ---------- Rates & hours band ---------- */
.rates-band {
    background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
    color: #fff;
}
.rates-band h2, .rates-band h3 { color: #fff; }
.rates-table {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    overflow: hidden;
}
.rates-table .rate-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.rates-table .rate-row:last-child { border-bottom: none; }
.rate-name { font-family: 'Oswald', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.rate-detail { font-size: 0.82rem; color: rgba(255, 255, 255, 0.75); }
.rate-price { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 1.4rem; color: var(--yellow); white-space: nowrap; }
.rate-price small { font-size: 0.7rem; font-weight: 500; color: rgba(255, 255, 255, 0.75); }
.urgency-note { color: var(--yellow); font-weight: 600; }

/* ---------- Reviews ---------- */
.review-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.8rem;
    height: 100%;
}
.review-stars { color: #f5b301; margin-bottom: 0.8rem; letter-spacing: 0.12em; }
.review-text { font-size: 0.95rem; color: var(--text); }
.review-author { font-weight: 700; color: var(--navy); }
.review-source { color: var(--muted); font-size: 0.8rem; }
.google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #fff;
    border-radius: 100px;
    box-shadow: var(--shadow);
    padding: 0.5rem 1.2rem;
    font-weight: 700;
    color: var(--navy);
}
.google-badge .stars { color: #f5b301; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1rem; }
.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    position: relative;
    box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.gallery-filter {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
    border-radius: 100px;
    padding: 0.35rem 1.1rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.15s ease;
}
.gallery-filter.active, .gallery-filter:hover { background: var(--blue); color: #fff; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(4, 37, 61, 0.94);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
    line-height: 1;
}

/* ---------- Know before you ride ---------- */
.know-tile {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: 100%;
}
.know-tile i { color: var(--blue); font-size: 1.6rem; margin-bottom: 0.7rem; }
.know-tile h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.know-tile p { color: var(--muted); font-size: 0.85rem; margin: 0; }

/* ---------- Location ---------- */
.map-embed {
    border: 0;
    width: 100%;
    height: 380px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.location-list { list-style: none; padding: 0; margin: 0; }
.location-list li { display: flex; gap: 0.9rem; margin-bottom: 1.1rem; }
.location-list i {
    color: var(--blue);
    font-size: 1.15rem;
    width: 34px;
    height: 34px;
    background: var(--sand);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.location-list strong { display: block; color: var(--navy); font-size: 0.92rem; }
.location-list span { color: var(--muted); font-size: 0.86rem; }

/* ---------- FAQ ---------- */
.faq-accordion .accordion-item {
    border: none;
    border-radius: 12px !important;
    margin-bottom: 0.7rem;
    box-shadow: 0 4px 16px rgba(4, 37, 61, 0.08);
    overflow: hidden;
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    padding: 1.1rem 1.3rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--blue);
    color: #fff;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed)::after { filter: brightness(10); }
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-body { color: var(--muted); font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band {
    position: relative;
    background: linear-gradient(rgba(4, 37, 61, 0.75), rgba(4, 37, 61, 0.75)), url('/assets/images/cta-band.jpg') center / cover no-repeat;
    color: #fff;
    text-align: center;
    padding: 5.5rem 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4.5vw, 3rem); }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 520px; margin: 0.5rem auto 1.6rem; }

/* ---------- Footer ---------- */
.paw-footer { background: var(--ink); color: rgba(255, 255, 255, 0.75); }
.paw-footer h6 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 1rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; font-size: 0.88rem; }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer-links a:hover { color: var(--yellow); }
.footer-links i { color: var(--blue); }
.paw-footer .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); }
.paw-footer .footer-bottom a { color: rgba(255, 255, 255, 0.75); }
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    text-decoration: none;
}
.social-link:hover { background: var(--yellow); color: var(--navy); }

/* ---------- Mobile sticky action bar ---------- */
.mobile-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    display: flex;
    box-shadow: 0 -4px 18px rgba(4, 37, 61, 0.25);
}
.mobile-action-bar a {
    flex: 1;
    text-align: center;
    padding: 0.9rem 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
}
.mab-call { background: var(--navy); color: #fff; }
.mab-call:hover { color: var(--yellow); }
.mab-book { background: var(--yellow); color: var(--navy); }
.mab-book:hover { color: var(--navy); background: var(--yellow-dark); }
@media (max-width: 767px) {
    body { padding-bottom: 52px; }
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
    background: linear-gradient(rgba(4, 37, 61, 0.6), rgba(4, 37, 61, 0.6)), var(--page-hero-img, url('/assets/images/hero-home.jpg')) center / cover no-repeat;
    color: #fff;
    padding: 5rem 0 4rem;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); }
.page-hero p { color: rgba(255, 255, 255, 0.88); max-width: 620px; margin: 0.5rem auto 0; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .fleet-card, .fleet-card img, .dest-card img, .gallery-item img { transition: none; }
}

/* ---------- Forms ---------- */
.contact-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
}
.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 139, 232, 0.2);
}
.btn-primary-paw {
    background: var(--blue);
    border: none;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1.8rem;
}
.btn-primary-paw:hover { background: var(--blue-dark); color: #fff; }
