:root {
    --primary: #015B97;
    --navy: #01253D;
    --orange: #F65F2A;
    --gold: #F89234;
    --white: #FFFFFF;
    --light: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-700: #334155;
    --text: #0F172A;
    --text-muted: #64748B;
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 40px;
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(1, 37, 61, 0.15);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--light);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* BUSINESS SWITCHER */
.business-switcher {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;

    padding: 1rem 2rem;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    transition: all 0.3s ease;
}

.business-switcher ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.business-switcher ul a {
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.business-switcher ul a.active {
    font-weight: 600;
}

.business-switcher.theme-daytrip {
    background: rgba(1, 37, 61, 0.6);
    backdrop-filter: blur(10px);
}

.business-switcher.theme-daytrip a {
    color: #ffffff;
}

.business-switcher.theme-daytrip a:hover,
.business-switcher.theme-daytrip a.active {
    color: #87ceeb;
}

.business-switcher.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

/* NAVIGATION */
header {
    background: rgba(1, 37, 61, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
    background: rgba(1, 20, 38, 0.97);
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
    border-bottom-color: rgba(248, 146, 52, 0.15);
}

header.scrolled .navbar {
    padding-top: 8px;
    padding-bottom: 8px;
}

header.scrolled .logo img {
    height: 38px;
}

header.scrolled .logo-text .brand-day {
    font-size: 1.2rem;
}

header.scrolled .logo-text .brand-rest {
    font-size: 0.7rem;
}

.navbar {
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 14px 32px;
    gap: 24px;
    transition: padding 0.4s ease;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: start;
}

.logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: height 0.4s ease;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text .brand-day {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.55rem;
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1;
    transition: font-size 0.4s ease;
}

.logo-text .brand-rest {
    font-family: 'Times New Roman', Times, serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-top: 3px;
    white-space: nowrap;
    transition: font-size 0.4s ease;
}

.navbar>.book-btn {
    justify-self: end;
}

.navbar>.menu-toggle {
    justify-self: end;
}

@media (max-width: 480px) {
    .logo img {
        height: 38px;
    }

    .logo-text .brand-day {
        font-size: 1.2rem;
    }

    .logo-text .brand-rest {
        font-size: 0.7rem;
    }
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
    justify-self: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active::after {
    width: 100%;
    background: var(--gold);
}

.book-btn {
    background: linear-gradient(135deg, var(--orange), #E04F1A);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(246, 95, 42, 0.35);
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 95, 42, 0.45);
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 28px;
    cursor: pointer;
    user-select: none;
}

/* HERO SECTION */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(rgba(1, 20, 33, 0.78), rgba(1, 37, 61, 0.72));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 90px 24px 80px 24px;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 44px;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #E04F1A);
    color: white;
    padding: 18px 38px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(246, 95, 42, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(246, 95, 42, 0.5);
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 700;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: white;
    color: var(--navy);
    transform: translateY(-3px);
    border-color: white;
}

/* SECTION CONTAINER */
section {
    padding: 120px 24px;
}

.container {
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    color: var(--navy);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 5px;
    background: var(--orange);
    border-radius: 10px;
}

.section-subtitle {
    display: block;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 1.05rem;
    font-weight: 500;
}

/* SECTION BACKGROUND ALTERNATION (hero untouched) */
#tour {
    background: #FFFFFF;
}

.testimonials-section {
    background: #0f172a;
}

#fleet {
    background: #F1F5F9;
}

.about {
    background: #0f172a;
}

.terms-section {
    background: #F0F7FF;
}

.contact-section {
    background: linear-gradient(145deg, var(--navy), #001524);
}

.map-section {
    background: #0f172a;
}

/* TOUR PACKAGE CARDS */
.tour-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tour-package-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tour-package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(248, 146, 52, 0.3);
}

.tour-package-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--navy);
}

.tour-package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.tour-package-card:hover .tour-package-image img {
    transform: scale(1.05);
}

.tour-package-body {
    padding: 26px 26px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tour-package-body h3 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.tour-package-meta {
    color: var(--primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
}

.tour-package-blurb {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.tour-package-toggle {
    margin-top: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: rgba(1, 91, 151, 0.06);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    transition: var(--transition);
}

.tour-package-toggle:hover {
    background: rgba(1, 91, 151, 0.12);
}

.tour-package-toggle i {
    transition: transform 0.25s ease;
}

.tour-package-card.is-open .tour-package-toggle {
    background: var(--primary);
    color: var(--white);
}

.tour-package-card.is-open .tour-package-toggle i {
    transform: rotate(180deg);
}

.tour-package-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin 0.35s ease;
}

.tour-package-card.is-open .tour-package-details {
    margin-top: 18px;
}

.tour-package-details ul {
    padding-left: 20px;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--slate-700);
}

.tour-package-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--slate-200);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.tour-package-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--orange);
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
}

.tour-package-link:hover {
    text-decoration: underline;
}

/* LIGHTBOX */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    animation: lightbox-in 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.active {
    display: flex;
}

@keyframes lightbox-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.lightbox-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 92vw;
    max-height: 90vh;
}

.lightbox-inner img {
    max-width: 88vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    animation: lightbox-img-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes lightbox-img-in {
    from {
        opacity: 0;
        transform: scale(0.93);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: fixed;
    top: 22px;
    right: 26px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(246, 95, 42, 0.7);
    border-color: transparent;
}

.lightbox-caption {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.45);
    padding: 8px 22px;
    border-radius: 30px;
    white-space: nowrap;
    backdrop-filter: blur(6px);
    pointer-events: none;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 10000;
}

.lightbox-nav:hover {
    background: rgba(248, 146, 52, 0.6);
    border-color: transparent;
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

@media (max-width: 600px) {
    .lightbox-nav {
        display: none;
    }
}

/* TESTIMONIALS */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(4px);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(248, 146, 52, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.testimonial-photo {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--navy);
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.testimonial-card:hover .testimonial-photo img {
    transform: scale(1.05);
}

.testimonial-body {
    padding: 32px 30px 34px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-body p {
    color: #f0f4f8;
    font-size: 1rem;
    line-height: 1.65;
    flex: 1;
}

.testimonial-tag {
    display: inline-block;
    margin-top: 20px;
    background: rgba(248, 146, 52, 0.2);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    align-self: flex-start;
}

/* FLEET */
.fleet-category {
    margin-bottom: 64px;
}

.fleet-category:last-child {
    margin-bottom: 0;
}

.fleet-category-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--slate-200);
}

.fleet-category-header h3 {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin: 0;
    letter-spacing: -0.02em;
}

.fleet-unit-badge {
    background: var(--navy);
    color: white;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}

.fleet-trans-badge {
    background: rgba(248, 146, 52, 0.12);
    color: var(--orange);
    border: 1px solid rgba(248, 146, 52, 0.3);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 30px;
    white-space: nowrap;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0 0 24px 0;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.vehicle-photo {
    width: 100%;
    height: 185px;
    overflow: hidden;
    background: var(--navy);
}

.vehicle-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-photo img {
    transform: scale(1.06);
}

.vehicle-card-body {
    padding: 20px 22px 0 22px;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.vehicle-card:hover::before {
    transform: scaleX(1);
    background: var(--gold);
}

.vehicle-card h3 {
    font-size: 1.05rem;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.vehicle-color-dot {
    display: inline-block;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.vehicle-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.vehicle-meta-tag {
    display: inline-flex;
    align-items: center;
    background: var(--slate-100);
    color: var(--slate-700);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
}

.vehicle-color-tag {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--slate-600);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    border: 1px solid var(--slate-200);
}

/* ABOUT – New Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.02);
}

.about-tiles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.feature-tile {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
    backdrop-filter: blur(4px);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-tile:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.feature-tile .feature-pill-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 146, 52, 0.15);
    color: var(--gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.feature-tile:hover .feature-pill-icon {
    background: var(--gold);
    color: #0f172a;
}

.feature-tile h4 {
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.feature-tile p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* TERMS */
.terms-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: start;
}

.terms-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.terms-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.terms-card[open] {
    box-shadow: var(--shadow-md);
}

.terms-card summary {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terms-card summary::-webkit-details-marker {
    display: none;
}

.terms-card summary::after {
    content: '\002B';
    font-size: 1.4rem;
    color: var(--orange);
    font-weight: 400;
    transition: var(--transition);
}

.terms-card[open] summary::after {
    content: '\2212';
}

.terms-lead {
    margin-top: 16px;
    font-weight: 600;
    color: var(--text);
}

.terms-list {
    margin-top: 14px;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.97rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-list strong {
    color: var(--text);
}

.terms-list.checklist {
    padding-left: 0;
    list-style: none;
}

.terms-list.checklist li {
    position: relative;
    padding-left: 28px;
}

.terms-list.checklist li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--gold);
    font-weight: 700;
}

.terms-note {
    margin-top: 16px;
    font-size: 0.92rem;
    color: var(--text-muted);
    background: var(--slate-100);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

.rate-card,
.form-reference-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    padding: 30px 32px;
    box-shadow: var(--shadow-sm);
}

.rate-card h3,
.form-reference-card h3 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 22px;
}

.rate-table:last-child {
    margin-bottom: 0;
}

.rate-table th {
    text-align: left;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    padding: 0 0 10px 0;
    border-bottom: 2px solid var(--slate-200);
}

.rate-table th:last-child {
    text-align: right;
}

.rate-table td {
    padding: 12px 0;
    border-bottom: 1px solid var(--slate-200);
    color: var(--text);
    font-weight: 600;
}

.rate-table td:last-child {
    text-align: right;
    color: var(--primary);
}

.form-reference-card {
    margin-top: 26px;
}

@media (max-width: 992px) {
    .terms-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT & MAP */
.contact-section {
    background: linear-gradient(145deg, var(--navy), #001524);
    color: white;
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.map-embed-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
}

.map-embed-wrapper iframe {
    display: block;
    width: 100%;
    height: 480px;
    border: none;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
    background: linear-gradient(135deg, var(--orange), #E04F1A);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(246, 95, 42, 0.35);
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 95, 42, 0.5);
    color: white;
}

.site-footer {
    background: #000B12;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 40px 24px;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-box h3 {
    font-size: 1.8rem;
    margin-bottom: 35px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.contact-box p {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-box p i {
    color: var(--gold);
    font-size: 1.3rem;
}

.contact-box strong {
    color: var(--white);
}

.contact-box a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--gold);
}

.booking-card-wrapper {
    background: rgba(255, 255, 255, 0.04);
    padding: 50px 40px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
}

.booking-card-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    font-weight: 700;
}

form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

input,
textarea,
select {
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

select option {
    background: #011D30;
    color: white;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: 0 0 0 4px rgba(248, 146, 52, 0.25);
}

button[type="submit"] {
    background: linear-gradient(135deg, var(--orange), #E04F1A);
    color: white;
    border: none;
    padding: 18px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(246, 95, 42, 0.3);
    margin-top: 6px;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(246, 95, 42, 0.45);
}

/* FORM FEEDBACK MESSAGE */
#formFeedback {
    font-size: 0.95rem;
    min-height: 24px;
    transition: color 0.3s;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-tiles-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .navbar {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: #011D30;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 3px solid var(--orange);
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .navbar {
        grid-template-columns: 1fr auto;
    }

    .navbar>.book-btn {
        display: none;
    }

    .form-group-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    section {
        padding: 80px 20px;
    }

    .about-tiles-grid {
        grid-template-columns: 1fr;
    }
}

/* DARK SECTION TEXT OVERRIDES */
.testimonials-section .section-title h2,
.about .section-title h2 {
    color: #ffffff;
}

.testimonials-section .section-subtitle,
.about .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}