@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap'); :root {
    --primary-green: #748d5c;
    --complementary: #9a4b43;
    /* --complementary: #d73c2b; */
    --primary-green-rgb: 116, 141, 92;
    --deep-green: #163220;
    --deep-green-rgb: 22, 50, 32;
    /* --accent-gold: #e6a15c; */
    --accent-gold: #bae293;
    --accent-gold-hover: hsl(90 58% 63% / 1);
    --accent-primary: 90;
    --text-dark: #2b2b2b;
    --text-light: #6c757d;
    --bg-light: #fcfcfc;
    --bg-soft-gray: #f4f6f5;
    --white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 2px 8px rgba(22, 50, 32, 0.05);
    --shadow-md: 0 8px 24px rgba(22, 50, 32, 0.08);
    --shadow-lg: 0 16px 40px rgba(22, 50, 32, 0.12);
    --fw-normal: 450;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.6;
    /* width: 100%; */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--deep-green);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.fw-bold {
    font-weight: 500!important;
}

/* Premium Buttons */
.btn-custom-primary {
    background-color: var(--accent-gold);
    color: var(--deep-green);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.btn-custom-primary:hover {
    background-color: var(--accent-gold-hover);
    border-color: var(--accent-gold-hover);
    color: var(--deep-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-custom-accent {
    background-color: var(--accent-gold);
    color: var(--deep-green);
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: var(--fw-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 4px 15px hsl(var(--accent-primary, 30deg) 73.4% 63.14% / 30%);
    transition: var( --transition);
    white-space: nowrap;
}

.btn-custom-accent:hover {
    background-color: var(--accent-gold-hover);
    color: var(--deep-green);
    transform: translateY(-3px) scale(1.02);
    /* box-shadow: 0 6px 20px hsl(30deg 73.4% 63.14% / 40%); */
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--white);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.btn-custom-outline:hover {
    background-color: var(--white);
    color: var(--deep-green);
    transform: translateY(-2px);
}

/* Section Styling */
.section-padding {
    padding: 90px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary-green);
    border-radius: 2px;
}

.section-title.text-start::after {
    left: 0;
    transform: none;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* Sticky Navbar */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 12px 0;
}

.navbar-custom.scrolled {
    padding: 8px 0;
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
    /* height: 60px; */
    object-fit: contain;
    transition: var(--transition);
    /* width: 100%; */
    max-width: 270px;
}

.navbar-custom.scrolled .navbar-brand img {
}

.nav-link-custom {
    color: var(--deep-green) !important;
    font-weight: var(--fw-normal);
    font-size: 1.05rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 3px;
    background-color: var(--primary-green);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link-custom:hover::after, .nav-link-custom.active::after {
    transform: scaleX(1);
}

.nav-link-custom:hover, .nav-link-custom.active {
    color: var(--primary-green) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 95vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px 0;
    z-index: 1;
    min-height: 750px;
    /* text-align: center; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(22, 50, 32, 0.85) 0%, rgba(22, 50, 32, 0.4) 50%, rgba(116, 141, 92, 0.3) 100%);
    z-index: -1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    letter-spacing: 0.45px;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 700px;
}

/* Trust Badges Floating Row */
.trust-badges-wrapper {
    margin-top: 3rem;
}

.trust-badge-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.trust-badge-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
}

.trust-badge-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

/* Vehicles Card Styling */
.vehicle-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.vehicle-img-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-soft-gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.vehicle-model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--deep-green);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
}

.vehicle-tag {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: var(--accent-gold);
    color: var(--deep-green);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}

.vehicle-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.vehicle-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vehicle-features {
    list-style: none;
    margin-bottom: 20px;
    padding-top: 12px;
    border-top: 1px solid var(--bg-soft-gray);
}

.vehicle-features li {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicle-features li i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Services Section */
.service-card {
    background-color: var(--bg-soft-gray);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
    border-bottom-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(116, 141, 92, 0.12);
    color: var(--deep-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--deep-green);
    color: var(--white);
    transform: rotateY(360deg);
    transition: transform 0.8s ease, background-color 0.3s ease;
}

/* Why Choose Us Section */
.choose-us-section {
    background-color: var(--deep-green);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.choose-us-section h2 {
    color: var(--white);
}

.choose-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 16px;
    transition: var(--transition);
    height: 100%;
}

.choose-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    border-color: var(--primary-green);
}

.choose-icon {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

/* Booking Enquiry Form */
.booking-section {
    background-color: var(--bg-soft-gray);
    position: relative;
}

.booking-card {
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-control-custom {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-control-custom:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(116, 141, 92, 0.15);
    outline: none;
    background-color: var(--white);
}

.form-label-custom {
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

/* FAQ Accordion Styling */
.accordion-custom .accordion-item {
    border: none;
    margin-bottom: 16px;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--white);
}

.accordion-custom .accordion-button {
    font-weight: 450;
    font-size: 1.15rem;
    color: var(--deep-green);
    padding: 20px 24px;
    background-color: var(--white);
    box-shadow: none !important;
    transition: var(--transition);
}

.accordion-custom .accordion-button:not(.collapsed) {
    background-color: rgba(116, 141, 92, 0.08);
    color: var(--deep-green);
}

.accordion-custom .accordion-button::after {
    transition: var(--transition);
}

.accordion-custom .accordion-body {
    padding: 20px 24px 20px 24px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    background-color: rgba(116, 141, 92, 0.02);
}

/* Footer Section */
.footer-custom {
    background-color: var(--deep-green);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
}

.footer-title {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'FontAwesome';
    font-weight: 900;
    font-size: 0.8rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    color: var(--accent-gold);
}

.footer-contact-info li {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 4px;
    font-size: 1.05rem;
}

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

.social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    color: #303030;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    font-size: 21px;
}

.social-icon-btn:hover {
    background-color: var(--accent-gold);
    color: #f4f4f4;
    transform: translateY(-3px);
    background-color: var(--complementary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.95rem;
}

/* Custom AOS Observer Styles */
.custom-aos {
    opacity: 0;
    transition-property: opacity, transform;
    transition-duration: 0.8s;
    transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-aos[data-aos="fade-up"] {
    transform: translateY(40px);
}

.custom-aos[data-aos="fade-left"] {
    transform: translateX(40px);
}

.custom-aos[data-aos="fade-right"] {
    transform: translateX(-40px);
}

.custom-aos[data-aos="zoom-in"] {
    transform: scale(0.92);
}

.custom-aos.aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Responsive Enhancements */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .booking-card {
        padding: 30px;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 20px;
        border-radius: 16px;
        box-shadow: var(--shadow-md);
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.0rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .trust-badges-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .trust-badge-item {
        justify-content: center;
        padding: 7px 10px;
        font-size: 0.75rem;
    }
}

/* Inner Page Header Banner */
.inner-banner {
    background-color: var(--deep-green);
    padding: 140px 0 60px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(22, 50, 32, 0.95), rgba(22, 50, 32, 0.85));
}

.inner-banner-content {
    position: relative;
    z-index: 2;
}

.breadcrumb-custom {
    justify-content: center;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
}

.breadcrumb-custom li {
    font-weight: 500;
}

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

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

.footer__text, .footer-links li a {
    color: #D4D4D4
}

.footer-links li a:hover {
    color: var(--accent-gold)
}

.why__subtext, .why__text {
    color: #d4d4d4;
}

.why__text {
    font-size: 1.025rem;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-5px);
    color: #fff;
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 767px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .navbar-brand img {
        /* height: 37px; */
    }

    .navbar-custom.scrolled .navbar-brand img {
        max-width: 200px;
    }

    .navbar-custom.scrolled {
        padding: 1px 0;
    }
}

@media (max-width: 567px) {
    .hero-section {
        height: 95vh;
        padding: 90px 0 80px 0;
        min-height: 750px;
        /* text-align: center; */
    }

    .navbar-custom {
        padding: 1px 0;
    }
}

@media (max-width: 567px) {
    .navbar-brand img {
        max-width: 210px;
    }
}
