/* ---------- CSS Variables (Arsha-based) ---------- */
:root {
    /* Core Arsha palette */
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #37517e;
    --accent-color: #C5A15A;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;

    /* Dark background variant */
    --dark-bg: #14243D;
    --dark-surface: #14243D;

    /* Header */
    --header-bg: #3d4d6a;
    --header-scrolled: rgba(40, 58, 90, 0.9);

    /* Extended palette */
    --light-bg: #f5f6f8;
    --border-color: #e2e8f0;
    --text-muted: #848484;
    --text-light: #ffffff;

    /* Fonts */
    --font-body: Cambria, Georgia, serif;
    --font-heading: Cambria, Georgia, serif;
    --font-nav: Cambria, Georgia, serif;

    /* Spacing & effects */
    --radius: 12px;
    --radius-sm: 8px;
    --radius-xs: 4px;
    --transition: 0.35s cubic-bezier(.4, 0, .2, 1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.06);
    --shadow-card: 0 5px 90px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--default-color);
    background: var(--background-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

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

ul {
    list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--heading-color);
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 700;
    text-transform: uppercase;
}

h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
}

p {
    color: var(--default-color);
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 60px 0;
    overflow: clip;
}

/* Section title — Arsha style with underline decoration */
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 160px;
    height: 1px;
    background: color-mix(in srgb, var(--default-color), transparent 60%);
    left: 0;
    right: 0;
    bottom: 1px;
    margin: auto;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #194f9a;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

.accent {
    color: var(--accent-color);
}

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

.light-background {
    background-color: var(--light-bg);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 15px;
    transition: 0.3s;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-color);
    color: #14243D !important;
    font-weight: 600;
}

.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    color: #14243D !important;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 22px;
    font-size: 14px;
}

.btn-full-width {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 997;
    height: 80px;
    background-color: transparent;
    transition: all 0.4s ease;
    box-shadow: none;
    display: flex;
    align-items: center;
}

/* When scrolled past hero: fixed white bar with shadow */
.navbar.scrolled {
    height: 60px;
    background-color: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Slide-down entrance animation */
.navbar.awake {
    animation: navSlideDown 0.35s ease forwards;
}

/* Slide-up hide animation */
.navbar.sleep {
    animation: navSlideUp 0.35s ease forwards;
}

@keyframes navSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes navSlideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }

    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* --- Transparent-at-top state: white links over hero --- */
.navbar:not(.scrolled) .nav-links a {
    color: #ffffff;
}

.navbar:not(.scrolled) .nav-links a:hover,
.navbar:not(.scrolled) .nav-links a.active {
    color: var(--accent-color);
}

.navbar:not(.scrolled) .nav-links .btn {
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.navbar:not(.scrolled) .nav-links .btn:hover {
    background-color: #ffffff !important;
    color: #194f9a !important;
}

.navbar:not(.scrolled) .nav-toggle span {
    background: #ffffff;
}

/* Logo: use brightness filter to make it white on transparent navbar */
.navbar:not(.scrolled) .navbar-logo {
    filter: brightness(0) invert(1);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-logo {
    height: 80px;
    width: auto;
    display: block;
    transition: all 0.5s;
}

.navbar.scrolled .navbar-logo {
    height: 60px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-links a {
    color: var(--default-color);
    font-family: var(--font-nav);
    font-weight: 500;
    font-size: 15px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

.nav-links .btn {
    margin-left: 15px;
    padding: 8px 25px;
    font-family: var(--font-heading);
    background-color: transparent !important;
    color: #194f9a !important;
    border: 2px solid #194f9a !important;
    transition: all 0.3s ease-in-out;
}

.nav-links .btn:hover {
    background-color: #194f9a !important;
    color: #ffffff !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--heading-color);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-close {
    display: none;
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--surface-color);
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 40px 40px;
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        color: var(--default-color);
        padding: 12px 0;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent-color);
    }

    .nav-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: var(--default-color);
        font-size: 1.8rem;
        cursor: pointer;
    }
}

/* ============================================================
   HERO SECTION (dark-background variant like Arsha)
   ============================================================ */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
    background-color: var(--dark-bg);
    background-image: url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 48, 80, 0.5);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--background-color), transparent);
    z-index: 3;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.hero-content h1 {
    margin: 0 0 20px;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: var(--text-light);
}

.hero-content p {
    color: color-mix(in srgb, var(--text-light), transparent 30%);
    margin-bottom: 32px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.hero-stat h3 {
    font-size: 2rem;
    color: var(--accent-color);
}

.hero-stat p {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--text-light), transparent 40%);
}

.hero-booking {
    background: rgba(40, 58, 90, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.hero-booking h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
    color: var(--text-light);
}

.hero-booking h3 svg {
    vertical-align: middle;
    margin-right: 8px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: color-mix(in srgb, var(--text-light), transparent 20%);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all var(--transition);
    outline: none;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 161, 90, 0.2);
    background: rgba(255, 255, 255, 0.12);
}

.form-control option {
    background-color: #14243D;
    color: #ffffff;
    padding: 8px 12px;
}

.form-control option:checked,
.form-control option:hover {
    background-color: #C5A15A !important;
    color: #14243D !important;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-booking .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    margin-top: 8px;
    background: var(--accent-color);
    color: #14243D !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 161, 90, 0.3);
}

.hero-booking .btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: #14243D !important;
    box-shadow: 0 6px 20px rgba(197, 161, 90, 0.45);
    transform: translateY(-2px);
}

/* Form on light background pages */
.inner-content .form-control {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--default-color);
}

.inner-content .form-control::placeholder {
    color: var(--text-muted);
}

.inner-content .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(197, 161, 90, 0.15);
    background: var(--surface-color);
}

/* Animated particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 2;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(197, 161, 90, 0.25);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-10vh) scale(1);
        opacity: 0;
    }
}

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

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-content p {
        font-size: 18px;
        line-height: 24px;
    }
}

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fleet-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all ease-in-out 0.4s;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.fleet-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--light-bg);
}

.fleet-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card-img img {
    transform: scale(1.08);
}

.fleet-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #194f9a;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.fleet-card-body {
    padding: 24px;
}

.fleet-card-body h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.fleet-card-type {
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.fleet-card-features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fleet-card-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.fleet-card-features svg {
    width: 16px;
    height: 16px;
    fill: var(--accent-color);
}

.fleet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.fleet-card-price {
    font-family: var(--font-heading);
}

.fleet-card-price .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

.fleet-card-price .period {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.fleet-card-footer .btn {
    background-color: transparent !important;
    color: #194f9a !important;
    border: 2px solid #194f9a !important;
    transition: all 0.3s ease-in-out;
}

.fleet-card-footer .btn:hover {
    background-color: #194f9a !important;
    color: #ffffff !important;
}

@media (max-width: 992px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.why-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all ease-in-out 0.4s;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.why-card-img {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto 24px;
    transition: transform var(--transition);
}

.why-card:hover .why-card-img {
    transform: scale(1.08) rotate(2deg);
}

.why-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.why-grid-3col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .why-grid-3col {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: all ease-in-out 0.4s;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--default-color);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--heading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--contrast-color);
}

.testimonial-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

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

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

/* ============================================================
   CTA BANNER (dark background variant)
   ============================================================ */
.cta-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 16px;
    color: var(--text-light);
}

.cta-content p {
    margin-bottom: 32px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--text-light), transparent 25%);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.cta-buttons .btn-outline:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: #37517e;
    color: var(--text-light);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    height: 65px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--text-light);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

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

/* ============================================================
   INNER PAGE HERO (dark-background like Arsha page-title)
   ============================================================ */
.inner-hero {
    padding: 140px 0 60px;
    background-color: var(--dark-bg);
    background-image: url('../img/inner-hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(30, 48, 80, 0.55);
    z-index: 0;
}

.inner-hero .container {
    position: relative;
    z-index: 1;
}

.inner-hero h1 {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 36px;
}

.breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: var(--accent-color);
}

.breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   INNER CONTENT
   ============================================================ */
.inner-content {
    padding: 60px 0;
    background: var(--background-color);
}

.inner-content h2 {
    margin-bottom: 16px;
}

.inner-content h3 {
    margin-bottom: 12px;
    color: var(--heading-color);
}

.inner-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

/* Services cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.service-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    box-shadow: var(--shadow-card);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.service-card:hover h3 {
    color: var(--accent-color);
}

.service-card-icon {
    margin-bottom: 10px;
}

.service-card-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--accent-color);
    transition: 0.3s;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    transition: 0.3s;
}

.service-card p {
    font-size: 14px;
    line-height: 24px;
    color: var(--default-color);
    margin: 0;
}

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

/* About grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-stat {
    background: var(--surface-color);
    border-radius: var(--radius-sm);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all ease-in-out 0.4s;
}

.about-stat:hover {
    transform: translateY(-6px);
}

.about-stat h3 {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.about-stat p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* About page feature highlights */
.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-highlight-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-left: 4px solid #194f9a;
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: all ease-in-out 0.3s;
}

.about-highlight-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
}

.about-highlight-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: color-mix(in srgb, #194f9a, transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-highlight-icon svg {
    width: 22px;
    height: 22px;
    fill: #194f9a;
}

.about-highlight-card h4 {
    margin-bottom: 4px;
    font-size: 1rem;
    color: var(--heading-color);
    font-family: var(--font-heading);
}

.about-highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* About values section */
.about-values-heading {
    margin-bottom: 24px;
}

.about-values-grid {
    margin-top: 20px;
}

/* Contact grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-heading {
    margin-bottom: 28px;
}

.contact-info-card {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all ease-in-out 0.4s;
    box-shadow: var(--shadow-card);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.contact-info-card .icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    flex-shrink: 0;
}

.contact-info-card svg {
    width: 22px;
    height: 22px;
    fill: var(--accent-color);
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-form {
    background: var(--surface-color);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-card);
}

.contact-form h3 {
    margin-bottom: 24px;
    font-size: 1.3rem;
    color: var(--heading-color);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

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

/* Premium Split Booking Page Layout */
.booking-split-container {
    display: flex;
    max-width: 1050px;
    margin: 0 auto;
    background: rgba(30, 42, 62, 0.45);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.booking-side-img {
    flex: 1.1;
    position: relative;
    overflow: hidden;
}

.booking-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stippled curved overlay effect replicating reference image */
.booking-side-img::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, transparent 75%, rgba(30, 42, 62, 0.95));
    pointer-events: none;
}

.booking-form-wrap {
    flex: 1.3;
    padding: 50px 45px;
    background: rgba(30, 42, 62, 0.85);
    color: #ffffff;
}

/* Horizontal Grid Layouts for Booking Form */
.form-grid-3 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid-4 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.form-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: flex-end;
}

.booking-form-wrap .submit-group {
    height: 100%;
    display: flex;
    align-items: flex-end;
    margin-bottom: 18px;
}

.booking-form-wrap .submit-group .btn {
    height: 48px;
    padding: 0;
    margin-bottom: 0;
    background: var(--accent-color);
    color: #14243D !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(197, 161, 90, 0.25);
}

.booking-form-wrap .submit-group .btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 10%);
    color: #14243D !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 161, 90, 0.4);
}

@media (max-width: 992px) {
    .booking-split-container {
        flex-direction: column;
    }

    .booking-side-img {
        height: 320px;
    }

    .booking-side-img::after {
        background: linear-gradient(to bottom, transparent 75%, rgba(30, 42, 62, 0.95));
    }

    .form-grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid-3 {
        grid-template-columns: 1fr 1fr;
    }

    .form-grid-2-1 {
        grid-template-columns: 1fr;
    }

    .booking-form-wrap .submit-group {
        align-items: stretch;
    }
}

@media (max-width: 576px) {
    .booking-side-img {
        height: 220px;
    }

    .form-grid-2,
    .form-grid-3,
    .form-grid-4 {
        grid-template-columns: 1fr;
    }

    .booking-form-wrap {
        padding: 35px 20px;
    }
}

.booking-form-wrap h3 {
    margin-bottom: 10px;
    text-align: left;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-intro {
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 1.5;
}

.booking-form-wrap .form-group {
    margin-bottom: 24px;
}

.booking-form-wrap .form-group label {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
    display: block;
}

.booking-form-wrap .form-control {
    background: transparent !important;
    border: none !important;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    font-size: 0.95rem !important;
    transition: all 0.3s;
}

.booking-form-wrap .form-control::placeholder {
    color: #a0aec0 !important;
}

.booking-form-wrap .form-control:focus {
    background: transparent !important;
    border-color: var(--accent-color) !important;
    box-shadow: none !important;
}

.booking-form-wrap select.form-control {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 16px !important;
    padding-right: 24px !important;
    appearance: none;
    -webkit-appearance: none;
}

.booking-form-wrap .form-control option {
    background-color: #14243D;
    color: #ffffff;
    padding: 8px 12px;
}

.booking-form-wrap .form-control option:checked,
.booking-form-wrap .form-control option:hover {
    background-color: #C5A15A !important;
    color: #14243D !important;
}

/* Success screen overrides */
.booking-form-wrap .booking-confirm {
    text-align: center;
}

.booking-form-wrap .booking-confirm h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.booking-form-wrap .booking-confirm p {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: #ffffff;
}

.booking-form-wrap .booking-details {
    text-align: left;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.booking-form-wrap .booking-details p {
    margin-bottom: 12px;
    color: #ffffff;
}

.booking-form-wrap .booking-details p strong {
    color: var(--accent-color);
}

.booking-form-wrap .booking-contact-info {
    color: #ffffff;
}

.booking-form-wrap .btn-back {
    margin-top: 24px;
}

/* Fleet page header & CTA */
.fleet-page-header {
    margin-bottom: 40px;
}

.fleet-page-cta {
    margin-top: 60px;
    text-align: center;
}

.fleet-page-cta h3 {
    margin-bottom: 16px;
}

.fleet-page-cta p {
    max-width: 600px;
    margin: 0 auto 24px;
}

/* Services page CTA */
.services-page-cta {
    margin-top: 60px;
    text-align: center;
}

.services-page-cta h3 {
    margin-bottom: 16px;
}

.services-page-cta p {
    max-width: 500px;
    margin: 0 auto 24px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/* Partners / Clients Section */
.clients {
    padding: 30px 0;
    background: var(--light-bg);
    border-bottom: 1px solid var(--border-color);
}

.clients-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.clients-title {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin: 0;
}

.client-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--heading-color);
    opacity: 0.55;
    transition: opacity 0.3s;
    letter-spacing: 1px;
}

.client-logo:hover {
    opacity: 1;
}

/* Home Page Welcome Section */
.welcome-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.welcome-grid .about-stat h3 {
    color: #194f9a;
}

.welcome-grid .btn-outline {
    border-color: #194f9a;
    color: #194f9a;
}

.welcome-grid .btn-outline:hover {
    background-color: #194f9a;
    color: #ffffff;
}

@media (max-width: 768px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}