* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
}

:root {
    --primary-green: #2E8B57;
    --dark-green: #1E5631;
    --light-green: #A3D9A5;
    --white: #ffffff;
    --black: #333;
    color-scheme: light only !important;
    forced-color-adjust: none !important;
}

/* Force Light Mode */
html,
body {
    background-color: var(--white) !important;
    color: var(--black) !important;
    color-scheme: light only !important;
}

/* Force light mode for all elements */
* {
    color-scheme: light only !important;
    forced-color-adjust: none !important;
}

/* Override dark mode for form elements */
input,
select,
textarea,
button {
    background-color: var(--white) !important;
    color: var(--black) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Override system dark mode */
@media (prefers-color-scheme: dark) {


    input,
    select,
    textarea,
    button {
        background-color: var(--white) !important;
        color: var(--black) !important;
    }
}

/* Fixed Navigation Bar */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #2E8B57;
    padding: 15px 20px;
    z-index: 1000;
}



.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 60px;
}

.nav-banner {
    color: var(--white);
}

.nav-banner h2 {
    color: var(--white);
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto;
    /* Push buttons to the right */
}

.nav-btn {
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.book-btn {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.call-icon-btn {
    background-color: var(--white);
    color: var(--primary-green);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-btn:hover,
.call-icon-btn:hover {
    background-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.call-btn-mobile {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 10px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn-mobile i {
    background-color: var(--white);
    color: var(--primary-green);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.call-btn-mobile span {
    display: inline;
    font-weight: bold;
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-only {
        display: none;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .book-btn {
        display: none;
    }

    .nav-logo {
        display: none;
    }

    .nav-banner h2 {
        font-size: 20px;
        margin: 0;
    }

    .desktop-only {
        display: flex !important;
    }

    .call-btn-mobile {
        width: 65px;
        height: 65px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }

    .call-btn-mobile span {
        display: none;
    }

    .call-btn-mobile i {
        width: auto;
        height: auto;
        font-size: 20px;
    }

    .fixed-nav {
        padding: 20px 0 !important;
        height: 90px !important;
    }

    .nav-container {
        height: 100% !important;
        padding: 0 15px;
        display: flex;
        align-items: center;
    }

    .nav-banner h2 {
        font-size: 1.7rem !important;
        line-height: 80px !important;
    }

    main {
        margin-top: 80px !important;
    }

    /* Reduce spacing between heading and form */
    .mobile-hero-image {
        margin-bottom: 0 !important;
    }

    .mobile-overlay {
        padding: .5rem .5rem !important;
    }

    /* Adjust heading margins */
    .mobile-hero-image h1 {
        margin-bottom: 0.5rem !important;
        font-size: 2rem !important;
    }

    .mobile-hero-image p {
        margin-bottom: 0.5rem !important;
        font-size: 0.9rem !important;
    }

    /* Form container spacing */
    .mobile-booking {
        padding: 0.5rem 0 !important;
    }

    /* Container spacing */
    .container-fluid.my-5 {
        margin-top: 0.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    .py-5 {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    /* Banner text spacing */
    .banner-text {
        padding: 0.25rem 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

.hero-section {
    position: relative;
    min-height: 70vh;
    background: none;
    margin-top: 90px;
}

/* Desktop Hero */
.desktop-hero {
    position: relative;
    height: 85vh;
    background-image: url('img/header-bg-new.jpg');
    background-size: cover;
    background-position: top center;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    /* Added subtle shadow */
}

/* Hero Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.4) 30%,
            /* Darkened the overlay slightly */
            rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: center;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.15);
    /* Added inner shadow */
}

/* Hero Content */
.hero-content {
    padding: 3rem 2rem 3rem 0;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Features List */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1rem;
}

.feature-item span {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

/* Booking Form Container */
.booking-form-container {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    position: relative;
    margin-left: auto;
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
    font-size: 14px;
    /* Base font size reduction */
}

/* Form Grid Layout */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-group.full-width {
    grid-column: span 2;
}

/* Form Controls */
.form-control {
    height: 50px;
    padding: 0.8rem 1.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: .7rem;
    width: 100%;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(52, 195, 99, 0.15);
    outline: none;
}

/* Submit Button */
.btn-get-quote {
    width: 100%;
    padding: 12px 0 !important;
    margin-bottom: 15px !important;
    background-color: var(--dark-green) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.2);
    font-size: 14px !important;
    padding: 10px 20px !important;
}

.btn-get-quote:hover {
    background-color: var(--primary-green) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 86, 49, 0.3);
}

/* Mobile specific button adjustments */
@media (max-width: 768px) {
    .btn-get-quote {
        padding: 8px 16px !important;
        margin-bottom: 12px !important;
        font-size: 13px !important;
    }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .booking-form-container {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .desktop-hero {
        display: none !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .feature-item span {
        font-size: 0.9rem;
    }

    .form-control {
        height: 45px;
        font-size: 0.9rem;
    }
}

/* Column Adjustments */
.col-lg-6 {
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .col-lg-6:last-child {
        justify-content: flex-end;
    }
}

/* Mobile Hero Section */
@media (max-width: 991.98px) {

    .desktop-hero,
    .d-none.d-lg-block {
        display: none !important;
    }

    .mobile-hero {
        display: block;
    }
}

/* Utility Classes */
.d-none {
    display: none !important;
}

.d-lg-block {
    display: none;
}

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

/* Mobile Hero Image */
.mobile-hero-image {
    position: relative;
    height: 35vh;
    background-image: url('img/header-bg-new.jpg');
    background-size: cover;
    background-position: top center;
    display: none;
    /* Hidden by default */
}

/* Mobile Booking Section */
.mobile-booking {
    display: none;
    /* Hidden by default */
}

.mobile-booking .info {
    color: red !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    display: block !important;
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    /* Hidden by default */
}

/* Utility Classes for Responsive Display */
@media (max-width: 991.98px) {
    .d-lg-none {
        display: block !important;
        /* Show on mobile */
    }

    .mobile-hero,
    .mobile-hero-image,
    .mobile-booking,
    .mobile-overlay {
        display: block;
        /* Show on mobile */
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important;
        /* Hide on desktop */
    }

    .d-lg-block {
        display: block !important;
        /* Show on desktop */
    }
}

/* Form Controls - Unified Placeholder Styling */
.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control:-ms-input-placeholder,
.form-control::-ms-input-placeholder,
.form-control select option:first-of-type,
.form-control select option[disabled],
.form-control select option[value=""],
select.form-control option[disabled]:first-child {
    color: #495057 !important;
    opacity: 1 !important;
}

/* Select Element Styling */
select.form-control,
select.form-control option:first-child,
select.form-control:invalid,
#frmContact select.form-control option[disabled][selected],
#frmContactMobile select.form-control option[disabled][selected] {
    color: #495057 !important;
}

/* Ensure consistent color when selecting options */
.form-control option {
    color: #333333 !important;
}

/* Input Autofill Background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: #495057 !important;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Focus state placeholder color */
.form-control:focus::placeholder {
    opacity: 0.8 !important;
    color: #495057 !important;
}

/* Date and Time Input Styling */
input[type="date"].form-control,
input[type="time"].form-control {
    color: #495057 !important;
    padding-right: 10px;
}

/* Ensure date/time inputs show placeholder color when empty */
input[type="date"]:invalid,
input[type="time"]:invalid {
    color: #495057 !important;
}

/* Style for filled date/time inputs */
input[type="date"]:valid,
input[type="time"]:valid {
    color: #495057 !important;
}

/* Ensure consistent color in all states */
input[type="date"]:focus,
input[type="time"]:focus {
    color: #495057 !important;
}

/* Calendar icon color */
input[type="date"]::-webkit-calendar-picker-indicator,
input[type="time"]::-webkit-calendar-picker-indicator {
    filter: invert(0.5);
}

/* Mobile Form Specific Styles */
@media (max-width: 768px) {
    #frmContactMobile {
        padding: 1rem !important;
        margin: 0 !important;
        /* Removed horizontal margins */
        border-radius: 0;
        /* Removed border radius */
        width: 100% !important;
        /* Full width */
    }

    .mobile-booking {
        padding: 0 !important;
        /* Removed padding */
        width: 100% !important;
        /* Full width */
    }

    .container.py-3 {
        padding: 0 !important;
        /* Removed padding */
        width: 100% !important;
        /* Full width */
        max-width: 100% !important;
        /* Override Bootstrap max-width */
    }

    .booking-card {
        width: 100% !important;
        /* Full width */
        margin: 0 !important;
        /* Removed margins */
        border-radius: 0 !important;
        /* Removed border radius */
    }

    /* Form controls at full width */
    #frmContactMobile .form-control {
        height: 50px !important;
        padding: 0.4rem 0.6rem !important;
        font-size: 1rem !important;
        width: 100% !important;
    }

    /* Grid gap adjustment */
    #frmContactMobile .form-grid {
        gap: 0.5rem !important;
        width: 100% !important;
    }

    /* Submit button full width */
    #frmContactMobile .btn-get-quote {
        height: 50px !important;
        font-size: 1.1rem !important;
        margin-top: 0.4rem !important;
        width: 100% !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    #frmContactMobile {
        padding: 0.5rem !important;
    }

    .container.py-3,
    .mobile-booking,
    .booking-card {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }
}

/* Call to Action Container */
.container-xxl.py-5 {
    background: rgba(245, 245, 245, 0.1) !important;
    margin: 10px auto !important;
    padding: 15px !important;
    border-radius: 8px;
    max-width: 800px !important;
    width: 90% !important;
    text-align: center !important;
    /* Center container content */
}

/* Call to Action Text */
.container-xxl.py-5 h1 {
    color: var(--black) !important;
    font-size: 1.8rem !important;
    line-height: 1.3 !important;
    margin: 0 auto !important;
    /* Center margins */
    font-weight: 400 !important;
    text-align: center !important;
    /* Center text */
    font-family: var(--font-primary) !important;
    display: inline-block !important;
    /* Help with centering */
}

/* Phone Number Link */
.container-xxl.py-5 h1 a {
    color: var(--primary-green) !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
    /* Maintain center alignment */
}

.container-xxl.py-5 h1 a:hover {
    color: var(--dark-green) !important;
}

/* Strong Text */
.container-xxl.py-5 h1 strong {
    font-weight: 500 !important;
    display: inline !important;
}

/* Remove quotes */
.container-xxl.py-5 h1::before,
.container-xxl.py-5 h1::after {
    content: none !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container-xxl.py-5 {
        width: 95% !important;
        margin: 5px auto !important;
        padding: 10px !important;
    }

    .container-xxl.py-5 h1 {
        font-size: 1.3rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
        /* Ensure center alignment on mobile */
    }

    .container-xxl.py-5 h1 br {
        display: none !important;
    }
}

/* Main Content Section */
.container-fluid.my-5.mt-0 {
    margin: 10px 0 !important;
    /* Reduced margin */
    padding: 15px 0 !important;
    /* Reduced padding */
}

/* Inner Content Spacing */
.col-lg-6 .py-5 {
    padding: 15px !important;
    /* Reduced padding */
}

.h-100.d-flex {
    padding: 20px !important;
    /* Reduced from p-5 */
}

/* Text Spacing */
.text-dark.mb-4 {
    margin-bottom: 15px !important;
    /* Reduced margin */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container-xxl.py-5 {
        margin: 5px auto !important;
        padding: 10px !important;
    }

    .container-fluid.my-5.mt-0 {
        margin: 5px 0 !important;
        padding: 10px 0 !important;
    }

    .col-lg-6 .py-5 {
        padding: 10px !important;
    }

    .h-100.d-flex {
        padding: 15px !important;
    }

    .text-dark.mb-4 {
        margin-bottom: 10px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .container-xxl.py-5,
    .container-fluid.py-5 {
        padding: 8px 0 !important;
        margin: 8px auto !important;
    }
}

/* Fleet Gallery Section */
.fleet-gallery {
    padding: 40px 0;
    background-color: #fff;
    overflow: hidden;
}

.fleet-gallery h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1rem;
}

.fleet-gallery p {
    color: #666;
    font-size: 1.1rem;
}

.fleet-slider {
    position: relative;
}

.fleet-card {
    width: 100%;
}

.fleet-card img {
    width: 100% !important;
    height: auto !important;
    max-height: 600px !important;
    object-fit: contain !important;
    display: block !important;
}

.fleet-info {
    padding: 15px 0;
    text-align: center;
}

.fleet-info h4 {
    font-size: 1.2rem;
    color: var(--black);
    margin-bottom: 5px;
    font-weight: 600;
}

.fleet-info p {
    color: #666;
    margin: 0;
}

/* Navigation Arrows */
.fleet-slider .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5) !important;
    color: #fff !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    line-height: 40px !important;
    margin: 0 10px !important;
    transition: all 0.3s ease;
}

.fleet-slider .owl-nav button:hover {
    background: var(--primary-green) !important;
}

.fleet-slider .owl-prev {
    left: 0;
}

.fleet-slider .owl-next {
    right: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fleet-card img {
        max-height: 400px !important;
    }

    .fleet-slider .owl-nav button {
        width: 35px;
        height: 35px;
        font-size: 20px !important;
    }
}

/* Fleet Slider Container */
#fleetSlider {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Image Styling */
#fleetSlider .carousel-item {
    background: #f8f8f8;
}

#fleetSlider .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Navigation Arrows */
.carousel-control-prev,
.carousel-control-next {
    width: 45px !important;
    height: 45px !important;
    background-color: rgba(52, 195, 99, 0.8) !important;
    border-radius: 50% !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    opacity: 1 !important;
    margin: 0 20px !important;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(52, 195, 99, 1) !important;
    transform: translateY(-50%) scale(1.1) !important;
}

/* Arrow Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px !important;
    height: 25px !important;
    background-size: 100% !important;
    filter: brightness(0) invert(1) !important;
}

/* Position Adjustments */
.carousel-control-prev {
    left: 0 !important;
}

.carousel-control-next {
    right: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    .carousel-control-prev,
    .carousel-control-next {
        width: 35px !important;
        height: 35px !important;
        margin: 0 10px !important;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Caption Styling */
.carousel-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 15px 20px;
    text-align: center;
}

.carousel-caption h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #fleetSlider .carousel-item img {
        height: 350px;
    }

    .carousel-caption h4 {
        font-size: 1.2rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
}

/* Call to Action Section */
.container-xxl.py-5 {
    margin: 10px auto !important;
    /* Reduced from 40px */
    padding: 15px !important;
    /* Reduced padding */
}

/* Fleet Gallery Section */
.container-fluid.py-5 {
    padding: 15px 0 !important;
    /* Reduced padding */
}

.text-center.mb-4 {
    margin-bottom: 15px !important;
    /* Reduced margin */
}

#fleetSlider {
    margin-bottom: 15px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {

    /* Call to Action Section */
    .container-xxl.py-5 {
        margin: 10px auto !important;
        padding: 1rem !important;
    }

    /* Fleet Gallery Section */
    .container-fluid.py-5 {
        padding: 10px 0 !important;
    }

    .text-center.mb-4 {
        margin-bottom: 10px !important;
    }

    #fleetSlider {
        margin-bottom: 10px !important;
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .container-xxl.py-5,
    .container-fluid.py-5 {
        padding: 8px 0 !important;
        margin: 8px auto !important;
    }
}

/* Testimonial Section Styling */
.testimonial-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.testimonial-item {
    padding: 20px;
}

.testimonial-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-icon {
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
    min-height: 80px;
}

.testimonial-stars {
    color: #34c363;
    margin-bottom: 15px;
}

.testimonial-stars i {
    margin: 0 2px;
}

.testimonial-author h5 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Title Styling */
.display-4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.text-success {
    color: #34c363 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .testimonial-section {
        padding: 20px 0;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    .testimonial-content {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }
}

/* Testimonial Slider */
#testimonialSlider {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
    /* Added padding for navigation buttons */
}

.testimonial-card {
    background: white;
    padding: 30px 40px;
    /* Increased horizontal padding */
    margin: 20px 30px;
    /* Increased horizontal margin */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card i {
    font-size: 24px;
    margin-bottom: 20px;
    color: #34c363;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #666;
    margin: 20px 0;
    line-height: 1.6;
}

.testimonial-stars {
    color: #34c363;
    font-size: 20px;
    margin: 15px 0;
}

.testimonial-author {
    color: #333;
    font-weight: 600;
    margin: 0;
}

/* Navigation Arrows */
#testimonialSlider .carousel-control-prev,
#testimonialSlider .carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(52, 195, 99, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 15px;
    /* Added margin */
}

#testimonialSlider .carousel-control-prev {
    left: -30px;
    /* Adjusted position */
}

#testimonialSlider .carousel-control-next {
    right: -30px;
    /* Adjusted position */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #testimonialSlider {
        padding: 0 40px;
        /* Reduced padding for mobile */
    }

    .testimonial-card {
        padding: 20px;
        margin: 15px;
        /* Reduced margin for mobile */
    }

    #testimonialSlider .carousel-control-prev,
    #testimonialSlider .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 10px;
        /* Reduced margin for mobile */
    }

    #testimonialSlider .carousel-control-prev {
        left: -20px;
    }

    #testimonialSlider .carousel-control-next {
        right: -20px;
    }
}

/* Services Section */
.services-section {
    background: #fff;
}

.services-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-img {
    position: relative;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-content {
    padding: 20px;
    text-align: center;
}

.service-content h4 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-section h2 {
        font-size: 1.8rem;
    }

    .service-img img {
        height: 180px;
    }

    .service-content {
        padding: 15px;
    }

    .service-content h4 {
        font-size: 1.2rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

/* Footer Styling */
.footer {
    background-color: #1E5631 !important;
}

.footer h4 {
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.contact-info p,
.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.contact-info a:hover {
    color: #2E8B57;
    text-decoration: none;
}

.footer-links p,
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links p:hover,
.footer-links a:hover {
    color: #2E8B57;
    padding-left: 5px;
    text-decoration: none;
}

.footer i {
    color: #2E8B57;
    margin-right: 8px;
}

/* Copyright Section */
.bg-dark {
    margin-bottom: 0 !important;
    padding-bottom: 15px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-bottom: 0;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    left: 30px !important;
    /* Changed from right to left */
    bottom: 30px;
    z-index: 99;
    background-color: #34c363 !important;
    border: none !important;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px !important;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #1E5631 !important;
    transform: translateY(-3px);
}

.back-to-top i {
    color: white;
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        left: 15px !important;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Payment Methods Section Styling */
.payment-section {
    padding: 20px;
    border-radius: 10px;
}

.payment-methods-container {
    background-color: var(--primary-green);
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    justify-items: center;
    align-items: center;
}

.payment-icon {
    width: 60px;
    height: auto;
    transition: all 0.3s ease;
    filter: grayscale(0.2);
}

.payment-icon:hover {
    transform: translateY(-3px);
    filter: grayscale(0);
    filter: brightness(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .payment-icon {
        width: 50px;
    }

    .payment-section {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .payment-methods {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .payment-icon {
        width: 45px;
    }
}

/* Form Styling with Reduced Font Sizes */
.booking-form-container {
    font-size: 14px;
    /* Base font size reduction */
}

.booking-form-container input,
.booking-form-container select,
.booking-form-container textarea {
    font-size: 13px !important;
    padding: 8px 12px !important;
}

.booking-form-container ::placeholder {
    font-size: 13px !important;
}

.booking-form-container .form-control {
    height: auto !important;
    padding: 8px 12px !important;
}

.booking-form-container .form-group {
    margin-bottom: 12px;
}

/* Info text size */
.booking-form-container .info {
    font-size: 12px;
    color: red !important;

}

/* Button size adjustment */
.btn-get-quote {
    font-size: 14px !important;
    padding: 10px 20px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .booking-form-container {
        font-size: 16px;
        /* Increased from 14px */
    }

    .booking-form-container input,
    .booking-form-container select,
    .booking-form-container textarea {
        font-size: 16px !important;
        /* Increased from 13px */
        padding: 12px 15px !important;
        /* Increased padding */
        height: 50px !important;
        /* Added explicit height */
    }

    .booking-form-container ::placeholder {
        font-size: 15px !important;
        /* Increased from 13px */
    }

    .booking-form-container .form-control {
        height: 50px !important;
        /* Increased height */
        padding: 12px 15px !important;
        /* Increased padding */
        margin-bottom: 15px !important;
        /* Added more spacing between fields */
    }

    .booking-form-container .form-group {
        margin-bottom: 15px;
        /* Increased spacing */
    }

    /* Info text size */
    .booking-form-container .info {
        font-size: 14px;
        /* Increased from 12px */
        margin-bottom: 5px;
        /* Added spacing below error messages */
    }

    /* Button size adjustment */
    .btn-get-quote {
        font-size: 18px !important;
        /* Increased from 14px */
        padding: 15px 30px !important;
        /* Increased padding */
        height: 55px !important;
        /* Added explicit height */
    }

    /* Form container spacing */
    .mobile-booking {
        padding: 1rem !important;
        /* Increased padding */
    }

    /* Form heading */
    .booking-card h3 {
        font-size: 1.5rem !important;
        /* Increased heading size */
        margin-bottom: 1rem !important;
        /* Added more space below heading */
    }

    /* Select dropdowns specific styling */
    .booking-form-container select {
        height: 50px !important;
        background-position: right 15px center !important;
        /* Adjust dropdown arrow position */
    }
}

/* Extra small devices */
@media (max-width: 480px) {

    .booking-form-container input,
    .booking-form-container select,
    .booking-form-container textarea {
        font-size: 15px !important;
    }

    .btn-get-quote {
        width: 100% !important;
        /* Make button full width */
    }
}

/* Referral Banner Styling */
.referral-banner {
    position: fixed;
    left: 70px !important;
    bottom: 30px;
    z-index: 99;
    background-color: var(--dark-green);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    max-width: 420px;
}

.referral-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.referral-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.referral-icon {
    background-color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.referral-icon i {
    color: var(--dark-green);
    font-size: 1.2rem;
}

.referral-text {
    flex-grow: 1;
}

.referral-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 2px;
    line-height: 1.2;
}

.referral-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.2;
}

/* Share Button Styling */
.share-button {
    background-color: var(--white);
    color: var(--dark-green);
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.share-button:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.share-button.success {
    background-color: #28a745;
    color: var(--white);
}

.share-button.error {
    background-color: #dc3545;
    color: var(--white);
}

/* Toast Notification */
.toast-notification {
    visibility: hidden;
    background-color: var(--dark-green);
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 12px 20px;
    position: fixed;
    z-index: 10000;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.toast-notification i {
    color: #fff;
}

.toast-notification.show {
    visibility: visible;
    animation: fadeInOut 2s ease;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    80% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .referral-banner {
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 20px;
        padding: 12px 15px;
        width: 90%;
        max-width: 300px;
    }

    .referral-banner:hover {
        transform: translateX(-50%) translateY(-3px);
    }

    .referral-icon {
        width: 35px;
        height: 35px;
    }

    .referral-icon i {
        font-size: 1rem;
    }

    .referral-title {
        font-size: 0.9rem;
    }

    .referral-subtitle {
        font-size: 0.75rem;
    }

    .share-button {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .toast-notification {
        bottom: 80px;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .referral-banner {
        padding: 10px;
        bottom: 15px;
    }

    .referral-content {
        gap: 10px;
    }

    .referral-icon {
        width: 30px;
        height: 30px;
    }

    .share-button {
        padding: 5px 10px;
    }
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.processing-message {
    background: #1E5631;
    padding: 20px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    color: #34c363;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Spinner Animation */
.spinner {
    width: 50px !important;
    height: 50px !important;
    border: 5px solid #f3f3f3 !important;
    border-top: 5px solid var(--primary-green) !important;
    border-radius: 50% !important;
    margin: 0 auto !important;
    animation: spin 1s linear infinite !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .processing-content {
        padding: 20px !important;
        width: 90% !important;
        max-width: 300px !important;
    }

    .processing-content p {
        font-size: 1rem !important;
    }

    .spinner {
        width: 40px !important;
        height: 40px !important;
        border-width: 4px !important;
    }
}

.booking-form-container .info.error {
    color: red !important;
    font-weight: bold;
}

.booking-form-container .form-control.error {
    border-color: red !important;
    box-shadow: 0 0 0 2px rgba(255,0,0,0.1) !important;
}

/* Form validation error styles */
.form-control.error {
    border: 1px solid #dc3545 !important;
    background-color: #fff8f8 !important;
}

.info.error {
    color: #dc3545 !important;
    font-size: 0.875rem !important;
    margin-top: 0.25rem !important;
    display: block !important;
}

/* Override any dark mode styles for error states */
@media (prefers-color-scheme: dark) {
    .form-control.error {
        border: 1px solid #dc3545 !important;
        background-color: #fff8f8 !important;
    }

    .info.error {
        color: #dc3545 !important;
    }
}