/* ===== VIBRANT GOA PALETTE – Updated CSS ===== */
:root {
    --gold: #f5b342;
    --gold-dark: #d99c2a;
    --gold-light: #fce8b3;
    --sand: #fbf3e8;
    --cream: #faf9f6;
    --ocean: #1f7a8c;
    --ocean-dark: #155a6b;
    --ocean-light: #3cc6d8;
    --coral: #ff7e67;
    --navy: #1e2b37;
    --charcoal: #2d3e50;
    --muted: #6b7280;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(31, 122, 140, 0.12);
    --shadow-hover: 0 24px 50px rgba(31, 122, 140, 0.20);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px;
}

body {
    margin: 0;
    font-family: 'Outfit', sans-serif;
    background: var(--sand);
    color: var(--charcoal);
    overflow-x: hidden;
}
/* =========================
   TRENDY NAVBAR
========================= */

#mainNavbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Navbar on scroll */
#mainNavbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 4px 0;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand img {
    width: 105px;
    height: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.04);
}

/* Navigation */
.navbar-nav {
    gap: 6px;
}

.navbar-nav .nav-link {
    position: relative;
    color: #222 !important;
    font-size: 15px;
    font-weight: 600;
    padding: 11px 17px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: #e8752a;
    transform: translateY(-1px);
}

/* Active */
.navbar-nav .nav-link.active {
    color: #ffffff !important;
    background: #e8752a;
}

/* Dropdown arrow */
.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border-top: 5px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* =========================
   DROPDOWN
========================= */

.navbar .dropdown-menu {
    min-width: 240px;
    margin-top: 14px;
    padding: 10px;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.13);
    animation: dropdownAnimation 0.25s ease;
}

@keyframes dropdownAnimation {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.navbar .dropdown-item {
    padding: 12px 15px;
    border-radius: 10px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.25s ease;
}

.navbar .dropdown-item:hover {
    background: #fff1e8;
    color: #e8752a;
    padding-left: 20px;
}

/* =========================
   CONTACT BUTTON
========================= */

.navbar-nav .nav-item:last-child .nav-link {
    background: #e8752a;
    color: #fff !important;
    padding: 11px 22px !important;
    margin-left: 8px;
    box-shadow: 0 7px 18px rgba(232, 117, 42, 0.25);
}

.navbar-nav .nav-item:last-child .nav-link:hover {
    background: #d9631b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 117, 42, 0.35);
}
@media (max-width: 991.98px) {
  .navbar-nav .dropdown-menu {
    position: static !important;
    float: none;
    box-shadow: none;
  }
}

/* =========================
   MOBILE TOGGLER
========================= */

.navbar-toggler {
    border: 0;
    padding: 8px 10px;
    border-radius: 12px;
    background: #fff1e8;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(232, 117, 42, 0.15) !important;
}

.navbar-toggler-icon {
    width: 23px;
    height: 23px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

    #mainNavbar {
        padding: 7px 0;
    }

    .navbar-brand img {
        width: 90px;
    }

    .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 3px;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        border-radius: 12px;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        transform: none;
    }

    .navbar .dropdown-menu {
        margin-top: 4px;
        padding: 6px;
        border-radius: 14px;
        box-shadow: none;
        background: #fff8f4;
    }

    .navbar .dropdown-item {
        padding: 11px 14px;
    }

    .navbar-nav .nav-item:last-child .nav-link {
        margin-left: 0;
        margin-top: 6px;
        text-align: center;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 575px) {

    .navbar-brand img {
        width: 82px;
    }

    .navbar {
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-collapse {
        margin-left: 5px;
        margin-right: 5px;
    }
}
img {
    max-width: 100%;
}

h1,
h2,
h3,
.navbar-brand,
.cinematic-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

section {
    padding: 90px 0;
}

/* ===== NAVBAR – Light & Airy ===== */
.navbar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    transition: all 0.35s ease;
    border-bottom: 2px solid rgba(245, 179, 66, 0.25);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(31, 122, 140, 0.10);
}

.navbar-brand {
    font-size: clamp(1.18rem, 2.2vw, 1.8rem);
    letter-spacing: 0.5px;
    color: var(--ocean) !important;
    text-shadow: none;
    white-space: nowrap;
}

.navbar-toggler {
    border: 0;
    background: var(--gold);
    box-shadow: none !important;
}

.nav-link {
    color: var(--charcoal) !important;
    font-weight: 500;
    margin: 0 0.35rem;
    transition: 0.3s;
    position: relative;
    border-radius: 30px;
    padding: 0.5rem 1.2rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link:focus::after {
    width: 60%;
}

.nav-link:hover,
.nav-link.active {
    background: var(--gold-light);
    color: var(--ocean) !important;
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    padding: 0.75rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.8rem;
    font-weight: 500;
    transition: 0.2s;
    color: var(--charcoal);
}

.dropdown-item:hover {
    background: var(--gold-light);
    color: var(--ocean);
}

/* ===== HERO CAROUSEL – Bright & Inviting ===== */
#heroCarousel,
.carousel-item {
    height: 100vh;
}

.carousel-item {
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(31, 122, 140, 0.20) 0%, rgba(0, 0, 0, 0.10) 80%);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
    max-width: 620px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    padding: 2.5rem 3rem;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(31, 122, 140, 0.14);
    border-left: 8px solid var(--gold);
}

.carousel-caption h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--ocean);
    text-shadow: none;
}

.carousel-caption p {
    font-size: 1.2rem;
    color: var(--charcoal);
    opacity: 0.9;
    text-shadow: none;
}

@media (max-width: 768px) {
    #heroCarousel,
    .carousel-item {
        height: 80vh;
    }
    .carousel-caption {
        left: 5%;
        right: 5%;
        padding: 1.8rem;
    }
    .carousel-caption h1 {
        font-size: 2.2rem;
    }
    .carousel-caption p {
        font-size: 1rem;
    }
}

/* ===== BUTTONS ===== */
.btn-gold {
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(245, 179, 66, 0.35);
}

.btn-gold:hover {
    background: var(--gold-dark);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(245, 179, 66, 0.45);
}

/* ===== SECTION TITLES ===== */
.section-kicker {
    color: var(--coral);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}

.section-title {
    font-size: clamp(2.15rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    color: var(--ocean);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 68%;
    height: 4px;
    background: var(--gold);
    bottom: -12px;
    left: 0;
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
    width: 62%;
}

/* ===== ABOUT ===== */
.about-image {
height: 100%;   
    width: 100%;
    object-fit: cover;
    border-radius: 40px 40px 40px 0;
    box-shadow: var(--shadow-hover);
    border: 6px solid var(--white);
    transition: 0.4s;
}

.about-image:hover {
    transform: scale(1.01);
}

.about-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--charcoal);
    font-weight: 600;
    background: var(--gold-light);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
}

/* ===== SERVICES – Warm & Welcoming ===== */
.services-section {
    position: relative;
    background: var(--white);
    overflow: hidden;
}

.service-card-new {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 30px;
    background: var(--white);
    border: 1px solid rgba(245, 179, 66, 0.15);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--gold);
}

.service-media {
    position: relative;
    height: 245px;
    overflow: hidden;
    background: #e8ddd0;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.service-card-new:hover .service-media img {
    transform: scale(1.06);
}

.service-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(31, 122, 140, 0.30), transparent 52%);
}

.service-icon {
    position: absolute;
    left: 20px;
    bottom: -27px;
    z-index: 3;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 1.35rem;
    border: 5px solid var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.service-content {
    padding: 42px 22px 23px;
    display: flex;
    flex-direction: column;
    min-height: 245px;
}

.service-content h3 {
    font-size: 1.45rem;
    color: var(--ocean);
    margin-bottom: 10px;
}

.service-content p {
    color: var(--muted);
    line-height: 1.65;
    flex-grow: 1;
    margin-bottom: 20px;
}

.service-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.service-actions a {
    text-decoration: none;
    text-align: center;
    padding: 11px 12px;
    border-radius: 40px;
    font-weight: 700;
    transition: 0.25s ease;
}

.service-book {
    background: var(--ocean);
    color: var(--white);
}

.service-book:hover {
    background: var(--ocean-dark);
    color: var(--white);
}

.service-call {
    background: var(--gold-light);
    color: var(--charcoal);
}

.service-call:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* ===== FLEET ===== */
.vehicle-card {
    border: none;
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: var(--white);
    box-shadow: var(--shadow);
    height: 100%;
    border: 1px solid rgba(60, 198, 216, 0.12);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--ocean-light);
}

.vehicle-card img {
    height: 230px;
    width: 100%;
    object-fit: cover;
    transition: 0.5s ease;
    border-bottom: 4px solid var(--gold);
}

.vehicle-card:hover img {
    transform: scale(1.05);
}

.vehicle-card h4 {
    color: var(--ocean);
    font-weight: 700;
}

.fleet-badge {
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.82rem;
}

/* ===== PLACES SLIDER – Ocean Themed ===== */
.places-section {
    background: var(--ocean);
    color: var(--white);
    padding: 90px 0;
    overflow: hidden;
}

.places-section .section-title {
    color: var(--white);
}

.places-section .section-kicker {
    color: var(--gold-light);
}

.card-slider {
    position: relative;
    width: 100%;
    padding: 0 64px;
}

.card-slider-window {
    width: 100%;
    overflow: hidden;
}

.card-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.55s ease;
    will-change: transform;
}

.slider-card {
    position: relative;
    flex: 0 0 calc((100% - 40px) / 3);
    height: 430px;
    overflow: hidden;
    border-radius: 30px;
    background: var(--charcoal);
    border: 3px solid rgba(255, 255, 255, 0.25);
    transition: 0.3s;
}

.slider-card:hover {
    transform: scale(1.02);
    border-color: var(--gold);
}

.slider-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.slider-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 40, 60, 0.75), transparent 65%);
}

.slider-overlay {
    position: absolute;
    left: 25px;
    right: 20px;
    bottom: 25px;
    z-index: 2;
    color: var(--white);
}

.slider-overlay span {
    display: block;
    margin-bottom: 7px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(0, 0, 0, 0.3);
    padding: 0.1rem 1rem;
    border-radius: 30px;
    display: inline-block;
}

.slider-overlay h3 {
    margin: 8px 0 0;
    font-size: 25px;
    line-height: 1.2;
    color: var(--white);
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: none;
    border-radius: 50%;
    background: var(--gold);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.06);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 991px) {
    .slider-card {
        flex: 0 0 calc((100% - 20px) / 2);
        height: 380px;
    }
    .card-slider {
        padding: 0 55px;
    }
}

@media (max-width: 767px) {
    .slider-card {
        flex: 0 0 100%;
        height: 350px;
    }
    .card-slider {
        padding: 0 44px;
    }
    .slider-overlay h3 {
        font-size: 21px;
    }
    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: 30px;
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow);
    transition: 0.3s;
    border-left: 8px solid var(--gold);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

/* ===== FAQ ===== */
.faq-item {
    background: var(--white);
    border-radius: 20px !important;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(245, 179, 66, 0.12) !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--ocean);
    padding: 1.2rem 1.8rem;
    border-radius: 20px !important;
}

.accordion-button:not(.collapsed) {
    background: var(--gold-light);
    color: var(--charcoal);
    font-weight: 700;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* ===== CONTACT – Ocean Background ===== */
#contact {
    background: var(--ocean) !important;
}

.contact-card {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    transition: 0.25s;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.20);
    transform: scale(1.02);
}

/* ===== FOOTER – Dark but Warm ===== */
.footer {
    background: var(--navy);
    color: #e6edf2;
    padding: 70px 0 0;
    font-family: 'Outfit', sans-serif;
}

.footer .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-box h2,
.footer-box h3 {
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-box p {
    color: #d1d5db;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 12px;
}

.footer-box ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-box p a {
    color: #d1d5db;
    text-decoration: none;
}

.footer-box p a:hover {
    color: var(--gold);
}

.footer-box i {
    color: var(--gold);
    margin-right: 10px;
}

.social-icons {
    margin-top: 25px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-right: 10px;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-5px);
}

.footer-bottom {
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    text-align: center;
    padding: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #bdbdbd;
    font-size: 15px;
}

@media (max-width: 768px) {
    .footer {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .footer-grid {
        gap: 30px;
        text-align: start;
    }
}

/* ===== FIXED ICONS ===== */
.fix-icon {
    display: inline-block;
    position: fixed;
    bottom: 90px;
    left: 10px;
    z-index: 999999;
}

.fix-icon-item {
    animation: bounce 1s infinite alternate;
    animation-duration: 1s;
    -webkit-animation: bounce 1s infinite alternate;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.fix-icon-item img {
    width: 55px !important;
    height: 55px !important;
    background: var(--coral);
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 6px 20px rgba(255, 126, 103, 0.4);
}

.fix-icon-whataap {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 999999;
    transition: all 0.5s ease-in-out;
    width: 55px !important;
    height: 55px !important;
}

.fix-icon-whataap-item img {
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: box-shadow 0.2s;
    cursor: pointer;
    overflow: hidden;
    width: 55px !important;
    height: 55px !important;
    background: #25d366 !important;
    padding: 10px;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-8px);
    }
}

/* ================================================================
   PAGE-SPECIFIC STYLES (About, Service Pages)
   ================================================================ */

/* ABOUT BREADCRUMB */
.about-breadcrumb {
    margin-top: 105px;
    padding: 75px 0;
    background: linear-gradient(rgba(31, 122, 140, 0.65), rgba(31, 122, 140, 0.65)), url("images/about-goa.jpg") center/cover no-repeat;
    color: #fff;
}

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

.breadcrumb-content span {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(35px, 5vw, 55px);
    margin-bottom: 12px;
}

.breadcrumb {
    justify-content: center;
    margin: 0;
}

.breadcrumb-item,
.breadcrumb-item.active {
    color: #eee;
}

.breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ddd;
}

/* WHY CHOOSE US */
.why-choose-us {
    padding: 80px 0;
    background: var(--sand);
}

.why-choose-us .section-subtitle {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.why-choose-us h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 46px);
    margin: 10px 0 15px;
}

.why-choose-us>.container>.text-center>p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--muted);
}

.why-card {
    height: 100%;
    background: var(--white);
    padding: 35px 28px;
    text-align: center;
    border-radius: 24px;
    border: 1px solid rgba(245, 179, 66, 0.12);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-card i {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 25px;
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--ocean);
}

.why-card p {
    color: var(--muted);
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

/* WHO WE ARE */
.about-info {
    padding: 90px 0;
    background: var(--white);
}

.about-info .row {
    row-gap: 40px;
}

.about-info img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-hover);
}

.about-text {
    padding-left: 35px;
}

.about-text .section-subtitle {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.2;
    margin: 10px 0 20px;
    color: var(--ocean);
}

.about-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal);
    font-weight: 500;
    margin-bottom: 12px;
}

.about-list li i {
    color: var(--gold);
    font-size: 17px;
}

/* ABOUT CTA */
.about-cta {
    position: relative;
    padding: 90px 20px;
    color: #fff;
    text-align: center;
    background: linear-gradient(rgba(31, 122, 140, 0.70), rgba(31, 122, 140, 0.70)), url("images/goa-road.jpg") center/cover no-repeat;
}

.about-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 15px;
}

.about-cta p {
    max-width: 650px;
    margin: 0 auto 28px;
    color: #eee;
    font-size: 16px;
    line-height: 1.7;
}

.about-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--gold);
    color: var(--charcoal);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.about-cta .btn:hover {
    background: var(--gold-dark);
    color: var(--charcoal);
    transform: translateY(-2px);
}

/* SERVICE PAGE HERO */
.service-page-hero {
    margin-top: 95px;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(31, 122, 140, 0.60), rgba(31, 122, 140, 0.60)), url("images/airport-transfer.jpg") center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.service-page-hero-content {
    width: 100%;
}

.service-page-hero span {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.service-page-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(38px, 5vw, 58px);
    margin: 12px 0;
}

.service-page-hero p {
    max-width: 700px;
    margin: 0 auto 20px;
    color: #eee;
    line-height: 1.7;
}

.service-page-hero .breadcrumb {
    justify-content: center;
    margin: 0;
}

.service-page-hero .breadcrumb-item {
    color: #ddd;
}

.service-page-hero .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
}

.service-page-hero .breadcrumb-item+.breadcrumb-item::before {
    color: #ddd;
}

/* SINGLE SERVICE */
.single-service {
    padding: 90px 0;
    background: var(--white);
}

.single-service-image {
    height: 470px;
    overflow: hidden;
    border-radius: 30px;
}

.single-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding-left: 25px;
}

.service-label {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.service-content h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 45px);
    color: var(--ocean);
    margin: 10px 0 18px;
}

.service-content p {
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--charcoal);
}

.service-features i {
    color: var(--gold);
    font-size: 17px;
}

.service-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 25px;
    border-radius: 50px;
    text-decoration: none;
    background: var(--ocean);
    color: var(--white);
    font-weight: 700;
    transition: 0.3s;
}

.service-btn:hover {
    background: var(--ocean-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.service-btn.whatsapp {
    background: #25D366;
}

.service-btn.whatsapp:hover {
    background: #1da851;
}

/* FEATURES GRID */
.airport-features {
    padding: 80px 0;
    background: var(--sand);
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}

.section-heading span {
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 44px);
    margin: 10px 0;
    color: var(--ocean);
}

.section-heading p {
    color: var(--muted);
    line-height: 1.7;
}

.feature-box {
    height: 100%;
    background: var(--white);
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(245, 179, 66, 0.12);
    border-radius: 24px;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--gold-light);
    color: var(--gold-dark);
    font-size: 24px;
}

.feature-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    margin-bottom: 10px;
    color: var(--ocean);
}

.feature-box p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* BOOKING PROCESS */
.booking-process {
    padding: 90px 0;
    background: var(--white);
}

.process-box {
    text-align: center;
    padding: 20px;
    position: relative;
}

.process-number {
    width: 55px;
    height: 55px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
    font-size: 20px;
}

.process-box h3 {
    font-family: "Playfair Display", serif;
    font-size: 21px;
    color: var(--ocean);
}

.process-box p {
    color: var(--muted);
    line-height: 1.7;
}

/* SERVICE FAQ */
.service-faq {
    padding: 80px 0;
    background: var(--sand);
}

.service-faq .accordion-item {
    border: 1px solid rgba(245, 179, 66, 0.12);
    margin-bottom: 12px;
    border-radius: 20px;
    overflow: hidden;
}

.service-faq .accordion-button {
    font-weight: 600;
    padding: 18px 20px;
    color: var(--ocean);
}

.service-faq .accordion-button:not(.collapsed) {
    background: var(--gold-light);
    color: var(--charcoal);
    box-shadow: none;
}

.service-faq .accordion-body {
    color: var(--muted);
    line-height: 1.8;
}

/* SERVICE CTA */
.service-cta {
    padding: 85px 20px;
    background: linear-gradient(rgba(31, 122, 140, 0.70), rgba(31, 122, 140, 0.70)), url("images/airport-transfer.jpg") center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.service-cta h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 45px);
    margin-bottom: 12px;
}

.service-cta p {
    max-width: 650px;
    margin: 0 auto 25px;
    color: #eee;
    line-height: 1.7;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        margin-top: 12px;
        padding: 14px;
        border-radius: 14px;
        box-shadow: var(--shadow);
    }
    .nav-link {
        margin: 0;
        padding: 10px 4px;
    }
    .service-content {
        padding-left: 0;
      padding: 10px;
    }
    .single-service-image {
        height: 380px;
    }
    .about-text {
        padding-left: 0;
    }
    .about-info img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    section,
    .places-section {
        padding: 70px 0;
    }
    .about-breadcrumb {
        margin-top: 85px;
        padding: 55px 0;
    }
    .breadcrumb-content h1 {
        font-size: 38px;
    }
    .why-choose-us {
        padding: 60px 0;
    }
    .why-card {
        padding: 30px 22px;
    }
    .about-info {
        padding: 60px 0;
    }
    .about-info img {
        height: 300px;
    }
    .about-text h2 {
        font-size: 34px;
    }
    .about-cta {
        padding: 65px 20px;
    }
    .about-cta h2 {
        font-size: 35px;
    }
    .service-page-hero {
        margin-top: 80px;
        min-height: 350px;
    }
    .single-service {
        padding: 60px 15px;
    }
    .single-service-image {
        height: 270px;
        margin-bottom: 30px;
    }
    .airport-features,
    .booking-process,
    .service-faq {
        padding: 60px 15px;
    }
    .service-buttons {
        flex-direction: column;
    }
    .service-btn {
        justify-content: center;
    }
    .service-actions {
        grid-template-columns: 1fr;
    }
}
/* =====================================
   CHOOSE YOUR CAR
===================================== */

.car-section {
    padding: 100px 0;
    background: #f7f8fa;
    overflow: hidden;
}

.car-container {
    width: min(1180px, 92%);
    margin: auto;
}


/* HEADING */

.car-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 45px;
}

.car-eyebrow {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 50px;
    background: #fff0e8;
    color: #e66b22;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.car-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.1;
    font-weight: 800;
    color: #171717;
}

.car-heading h2 span {
    color: #e66b22;
}

.car-heading p {
    margin: 16px auto 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* =====================================
   PACKAGE FILTER
===================================== */

.package-filter {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.package-btn {
    border: 1px solid #e5e5e5;
    background: #fff;
    color: #555;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
}

.package-btn i {
    margin-right: 6px;
}

.package-btn:hover,
.package-btn.active {
    background: #171717;
    color: #fff;
    border-color: #171717;
    transform: translateY(-2px);
}


/* =====================================
   CAR GRID
===================================== */

.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* =====================================
   CAR CARD
===================================== */

.car-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #ededed;
    transition: all .35s ease;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}


/* IMAGE */

.car-image {
    height: 220px;
    background:
        radial-gradient(circle at 50% 40%,
        #ffffff 0,
        #f5f5f5 45%,
        #eeeeee 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.06);
}


/* BADGE */

.car-badge {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    background: #e66b22;
    color: #fff;
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.car-badge.family {
    background: #2478c9;
}

.car-badge.premium {
    background: #222;
}

.car-badge.group {
    background: #6a4bc3;
}


/* =====================================
   CONTENT
===================================== */

.car-content {
    padding: 22px;
}

.car-title-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.car-title-row h3 {
    margin: 0;
    color: #191919;
    font-size: 21px;
    font-weight: 800;
}

.car-type {
    display: block;
    color: #888;
    font-size: 12px;
    margin-top: 5px;
}

.car-price {
    white-space: nowrap;
    color: #e66b22;
    font-size: 13px;
}

.car-price strong {
    font-size: 25px;
    font-weight: 800;
}

.car-price small {
    color: #999;
}


/* =====================================
   SELECTED PACKAGE
===================================== */

.selected-package {
    margin-top: 20px;
    padding: 13px 14px;
    border-radius: 13px;
    background: #fff5ef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.selected-package span {
    color: #555;
    font-size: 12px;
    font-weight: 600;
}

.selected-package i {
    color: #e66b22;
    margin-right: 5px;
}

.package-price {
    color: #e66b22;
    font-size: 15px;
}


/* =====================================
   FEATURES
===================================== */

.car-features {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.car-features span {
    padding: 7px 9px;
    background: #f6f6f6;
    border-radius: 8px;
    font-size: 10px;
    color: #666;
}

.car-features i {
    color: #e66b22;
    margin-right: 3px;
}


/* =====================================
   PACKAGE INFO
===================================== */

.package-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.package-info div {
    padding: 12px;
    border: 1px solid #eeeeee;
    border-radius: 12px;
}

.package-info span {
    display: block;
    font-size: 10px;
    color: #999;
    margin-bottom: 4px;
}

.package-info strong {
    font-size: 13px;
    color: #333;
}


/* =====================================
   BUTTONS
===================================== */

.car-actions {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

.call-btn,
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 12px;
    height: 45px;
    transition: all .3s ease;
}

.call-btn {
    flex: 1;
    background: #171717;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.call-btn i {
    margin-right: 7px;
}

.call-btn:hover {
    background: #e66b22;
    color: #fff;
}

.whatsapp-btn {
    width: 48px;
    background: #eaf8ef;
    color: #25a244;
    font-size: 20px;
}

.whatsapp-btn:hover {
    background: #25a244;
    color: #fff;
    transform: translateY(-2px);
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 1000px) {

    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 650px) {

    .car-section {
        padding: 70px 0;
    }

    .car-container {
        width: 92%;
    }

    .car-heading {
        margin-bottom: 30px;
    }

    .car-heading h2 {
        font-size: 34px;
    }

    .car-heading p {
        font-size: 14px;
    }

    .package-filter {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin-bottom: 30px;
    }

    .package-btn {
        flex: 0 0 auto;
        font-size: 12px;
        padding: 10px 15px;
    }

    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .car-card {
        border-radius: 20px;
    }

    .car-image {
        height: 210px;
    }

    .car-content {
        padding: 18px;
    }

    .car-title-row h3 {
        font-size: 19px;
    }

}


/* SMALL PHONE */

@media (max-width: 380px) {

    .car-title-row {
        flex-direction: column;
        gap: 8px;
    }

    .car-price {
        align-self: flex-start;
    }

}