@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #44bd6c;    /* Fresh modern green */
    --dark-green: #339355;       /* Darker shade (20% darker) */
    --light-green: #5cc980;      /* Lighter shade (10% lighter) */
    --extra-light-green: #e8f7ed; /* Very light green for backgrounds */
    --white: #ffffff;
    --off-white: #f8f9fa;        /* Softer white for backgrounds */
    --black: #1a1a1a;
    --gray: #6c757d;             /* Professional gray */
    --light-gray: #e9ecef;       /* Light gray for borders */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color-scheme: light only;
}

/* Apply the font globally */
body {
    font-family: var(--font-primary) !important;
    font-weight: 400;
    line-height: 1.6;
}

.footer {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
    padding: 10px 0 40px !important;  /* Increased padding */
    font-family: var(--font-primary) !important;
}

.footer .container-fluid {
    padding-left: 5% !important;
    padding-right: 5% !important;
}

.footer h4 {
    color: var(--white) !important;    /* Changed to white for better contrast */
    font-size: 18px !important;
    margin-bottom: 30px !important;    /* Increased margin */
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
}

.footer .btn-link {
    color: var(--white) !important;
    text-decoration: none;
    padding: 0 !important;
    margin-bottom: 10px !important;
    display: block !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}

.footer .btn-link:hover {
    color: var(--extra-light-green) !important;
    margin-left: 5px !important;
    opacity: 0.9 !important;
}

.footer ul {
    list-style: none !important;
    padding-left: 0 !important;
}

.footer ul li {
    color: var(--white) !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
    font-weight: 400 !important;
    opacity: 0.9 !important;
}

.footer ul li:hover {
    color: var(--extra-light-green) !important;
    margin-left: 5px !important;
    opacity: 1 !important;
}

.footer-text {
    color: var(--white) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    opacity: 0.9 !important;
}

.footer form input[type="email"] {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
}

.footer form input[type="email"]:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.footer form button {
    background-color: var(--light-green) !important;
    color: var(--white) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.footer form button:hover {
    background-color: var(--dark-green) !important;
    transform: translateY(-2px) !important;
}

.footer .contact-info i {
    color: var(--white) !important;    /* Changed icon color */
    width: 24px !important;            /* Increased icon size */
    margin-right: 12px !important;
    opacity: 0.9 !important;
}

.footer .payment-methods {
    display: flex !important;
    gap: 15px !important;              /* Increased gap */
    flex-wrap: wrap !important;
    justify-content: center !important;
    padding: 15px 0 !important;
}

.footer .payment-icon {
    height: 30px !important;           /* Increased size */
    width: auto !important;
    opacity: 0.9 !important;
    transition: all 0.3s ease !important;
}

.footer .payment-icon:hover {
    opacity: 1 !important;
    transform: translateY(-2px) !important;
}

.footer .fa-angle-right {
    color: var(--white) !important;    /* Changed icon color */
    margin-right: 10px !important;
    font-size: 14px !important;
    opacity: 0.9 !important;
}

.footer a,
.footer a:hover,
.footer a:focus,
.footer a:active {
    text-decoration: none !important;
    outline: none !important;
}

.footer .contact-info a {
    color: var(--white) !important;
    position: relative !important;
    display: inline-block !important;
}

.footer .contact-info a:hover {
    color: var(--extra-light-green) !important;
}

.footer .footer-links a {
    color: var(--white) !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
}

.footer .footer-links a:hover {
    color: var(--extra-light-green) !important;
    transform: translateX(5px) !important;
}

.copyright-section {
    background-color: var(--dark-green) !important;
    padding: 25px 0 !important;        /* Increased padding */
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.copyright-section p {
    font-size: 14px !important;
    opacity: 0.9 !important;
}

.copyright-section a {
    color: var(--white) !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.copyright-section a:hover {
    color: var(--light-gray) !important;
    text-decoration: none !important;
}

/* Additional typography improvements */
.footer .contact-info {
    font-weight: 400 !important;
}

.footer .contact-info a {
    font-weight: 500 !important;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 85vh;
    background: none;
    margin-top: 90px;
}

/* Desktop Hero */
.desktop-hero {
    position: relative;
    height: 85vh;
    background-size: cover;
    background-position: top center;
}

/* Add new class for lazy loading */
.desktop-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)), url('/img/image.jpg');
    background-size: cover;
    background-position: top center;
    z-index: -1;
    will-change: transform; /* Optimization for performance */
    loading: lazy; /* Modern browsers will respect this */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Features List */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.feature-item span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Booking Form */
.booking-form-container {
    padding: 1rem;
    margin-top: 100px;
    margin-bottom: -20px;
    position: relative;
    z-index: 3;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
    display: flex;
    justify-content: center;
}

/* Form Control Styling */
.form-control {
    height: 36px;
    padding: 0.4rem 0.6rem;
    margin-top: 0.15rem;
}

/* Info Text Spacing */
.info {
    margin-top: 0.1rem;
    font-size: 0.7rem;
    line-height: 1;
}

/* Submit Button Spacing */
.btn-get-quote {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-green);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 195, 99, 0.2);
}

.btn-get-quote:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 195, 99, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-grid {
        gap: 0.4rem;
    }
    
    .form-group {
        margin-bottom: 0.4rem;
    }
    
    .form-control {
        height: 34px;
    }

    .btn-get-quote {
        width: 80%;
        min-width: 180px;
    }
}

/* Form Group Labels */
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form Validation States */
.form-control.is-valid {
    border-color: var(--primary-green);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2344bd6c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Mobile Hero */
@media (max-width: 991.98px) {
    .mobile-hero-image {
        height: 35vh;
        position: relative;
        background-size: cover;
        background-position: top center;
    }

    /* Add lazy loading for mobile hero */
    .mobile-hero-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65)), url('/img/image.jpg');
        background-size: cover;
        background-position: top center;
        z-index: -1;
        will-change: transform; /* Optimization for performance */
        loading: lazy; /* Modern browsers will respect this */
    }

    .mobile-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 2rem 1.5rem;
        background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    }

    .mobile-booking {
        background: #f8f9fa;
        padding: 2rem 0;
    }
}

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

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

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

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

/* Testimonial Section Spacing */
.testimonial-section {
    padding: 2rem 0;
}

/* Form Container */
.php-email-form {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 2rem auto;
    max-width: 1200px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Form Controls */
.form-control {
    height: 45px;
    padding: 0.6rem 1.25rem;
    font-size: 0.95rem;
    border: 2px solid #eef0f3;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
    color: #333 !important;
    background-color: #f8f9fa !important;
}

/* Placeholder Styling */
.form-control::placeholder {
    color: #666 !important;
    font-size: 14px;
    opacity: 0.8;
}

/* Select Styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    color: #666 !important;
}

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

/* Focus States */
.form-control:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(52, 195, 99, 0.1);
    background-color: #fff !important;
    outline: none;
}

/* Submit Button */
.btn-get-quote {
    height: 45px;
    background: var(--primary-green);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    padding: 0 32px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-get-quote:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 195, 99, 0.2);
}

/* Error Messages */
.info {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .php-email-form {
        padding: 1.25rem;
        margin: 1rem;
    }
    
    .form-control {
        height: 40px;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn-get-quote {
        height: 45px;
        margin-top: 0.5rem;
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .form-grid {
        gap: 0.5rem;
    }

    .form-control {
        height: 38px;
        font-size: 0.85rem;
    }
}

/* Features Section */
.feature-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-green) !important;
    box-shadow: 0 8px 24px rgba(68, 189, 108, 0.15) !important;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-green) !important;
    margin-bottom: 1.5rem;
}

/* Services Section */
.section-title {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 2rem;
}

/* Booking Section */
.booking-section {
    background-color: var(--off-white);
}

.booking-features .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.booking-features i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

/* Animation Classes */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

/* Column Spacing */
.footer .col-lg-4 {
    padding: 0 25px !important;        /* Added horizontal padding */
}

/* Quick Links Section */
.quick-links-section {
    margin-top: 40px !important;       /* Increased margin */
    padding-top: 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Payment Methods Section */
.payment-section {
    background-color: rgba(255, 255, 255, 0.1) !important;  /* Semi-transparent background */
    padding: 25px !important;
    border-radius: 8px !important;
    margin-top: 20px !important;
}

/* Update accent colors */
.accent-color {
    color: var(--primary-green) !important;
}

/* Update form focus states */
.form-control:focus {
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 0 15px rgba(68, 189, 108, 0.1);
    border-color: var(--primary-green);
}

/* Update progress bars */
.progress-bar {
    background-color: var(--primary-green) !important;
}

/* Update selection color */
::selection {
    background-color: var(--primary-green) !important;
    color: var(--white) !important;
}

/* Update borders */
.border-primary {
    border-color: var(--primary-green) !important;
}

/* Update badges */
.badge-primary {
    background-color: var(--primary-green) !important;
}

/* Update navigation active states */
.nav-link.active {
    color: var(--primary-green) !important;
}

/* Call to action section */
.cta-section {
    background-color: var(--extra-light-green) !important;
}

/* Testimonial cards */
.testimonial-card {
    border-left: 4px solid var(--primary-green) !important;
}

/* Price cards */
.price-card.featured {
    border-color: var(--primary-green) !important;
}

/* Footer social icons */
.social-icons a:hover {
    background-color: var(--light-green) !important;
}

/* Newsletter form */
.newsletter-form .btn {
    background-color: var(--dark-green) !important;
    border-color: var(--dark-green) !important;
}

.newsletter-form .btn:hover {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
}

/* Scroll to top button */
.scroll-top {
    background-color: var(--primary-green) !important;
}

.scroll-top:hover {
    background-color: var(--dark-green) !important;
}

/* Timeline */
.timeline-dot {
    background-color: var(--primary-green) !important;
}

/* Tabs */
.nav-tabs .nav-link.active {
    border-bottom: 2px solid var(--primary-green) !important;
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: var(--extra-light-green) !important;
    color: var(--primary-green) !important;
}

/* List group */
.list-group-item.active {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
}

/* Testimonial Section Styles */
.testimonial-section h1 {
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

.testimonial-section .text-success {
    color: var(--primary-green) !important;
}

.testimonial-carousel .testimonial-item {
    padding: 30px !important;
}

/* Testimonial Item Fixed Height */
.testimonial-item {
    padding: 1.5rem;
    height: 100%;
}

.testimonial-content {
    background: #fff;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 350px; /* Fixed height for all testimonials */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-icon {
    margin-bottom: 1.5rem;
}

.testimonial-icon i {
    font-size: 2rem;
}

.testimonial-text {
    flex-grow: 1;
    overflow-y: auto; /* Allow scrolling for longer text */
    margin-bottom: 1rem;
    /* Hide scrollbar for Chrome, Safari and Opera */
    &::-webkit-scrollbar {
        display: none;
    }
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-stars {
    margin-bottom: 1rem;
}

.testimonial-author h5 {
    margin-bottom: 0;
    font-weight: 600;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        height: 300px; /* Slightly shorter on mobile */
        padding: 1.5rem;
    }

    .testimonial-text p {
        font-size: 0.95rem;
    }

    .testimonial-icon i {
        font-size: 1.75rem;
    }
}

/* Owl Carousel Custom Navigation */
.owl-nav {
    text-align: center !important;
}

.owl-prev,
.owl-next {
    width: 45px !important;
    height: 45px !important;
    background: var(--white) !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 10px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.owl-prev:hover,
.owl-next:hover {
    background: var(--primary-green) !important;
    color: var(--white) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-section h1 {
        font-size: 2rem !important;
    }

    .testimonial-content {
        height: 300px; /* Slightly smaller height for mobile */
    }
    
    .testimonial-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Form Enhancement Styles */
.form-control, 
.time-input-group select {
    height: 50px;
    background: rgba(245, 245, 245, 0.1) !important;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus,
.time-input-group select:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(68, 189, 108, 0.1);
    background: rgba(255, 255, 255, 0.9) !important;
}

/* Time Input Group Specific */
.time-input-group {
    display: flex;
    gap: 10px;
}

.time-input-group select {
    flex: 1;
}

/* Submit Button */
#sub {
    background: var(--primary-green);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#sub:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(68, 189, 108, 0.2);
}

/* Info Text */
.info {
    color: #dc3545;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 1.25rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-control, 
    .time-input-group select {
        height: 45px;
        font-size: 0.85rem;
    }
    
    .borderslot1 {
        padding: 1.5rem !important;
        margin: 1rem !important;
    }
}

/* Form Section Specific Styles */
.borderslot1 {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Fixed Navigation Styles */
.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    box-shadow: 0 2px 15px rgba(68, 189, 108, 0.2);
    z-index: 1000;
    padding: 15px 0; /* Consistent padding */
    transition: all 0.3s ease; /* Smooth transition */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Changed from space-between */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0; /* Remove any gap */
}

/* Logo Styles */
.nav-logo {
    margin-right: 0; /* Remove right margin if any */
    padding-right: 0; /* Remove right padding if any */
}

.logo-img {
    height: 100%;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Navigation Buttons */
.nav-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-btn {
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.book-btn {
    background: white;
    color: var(--primary-green);
}

.book-btn:hover {
    background: var(--extra-light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Updated Call Button Styles */
.call-btn {
    background: transparent; /* Removed background */
    color: white; /* White text */
    display: flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255, 255, 255, 0.9); /* Added white border */
}

.call-btn:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Mobile Call Button */
.call-btn-mobile {
    background: white;
    color: var(--primary-green);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.call-btn-mobile:hover {
    background: var(--extra-light-green);
    transform: translateY(-2px);
}

/* Mobile Styles */
.mobile-only {
    display: none;
}

.call-btn-mobile {
    width: 60px; /* Increased size */
    height: 60px; /* Increased size */
    font-size: 28px; /* Increased icon size */
}

.call-btn-mobile:hover {
    background: var(--extra-light-green);
    transform: translateY(-2px);
}

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

    .mobile-only {
        display: block;
    }

    .nav-logo {
        display: none !important;
    }

    .fixed-nav {
        padding: 15px 0; /* Increased mobile padding */
    }

    .nav-container {
        padding: 0 15px;
    }
}

/* Add margin to main content to account for fixed nav */
main {
    margin-top: 105px; /* Increased to account for taller navbar */
}

/* Mobile Form Styles */
#frmContactMobile {
    background: var(--white);
    border-radius: 12px;
    padding: 1rem;
    margin: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Form Grid Layout with Reduced Margins */
#frmContactMobile .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

/* Form Controls */
#frmContactMobile .form-control {
    height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 6px;
}

/* Full Width Items */
#frmContactMobile .form-group.full-width {
    grid-column: span 2;
}

/* Select Boxes */
#frmContactMobile select.form-control {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 0.8em;
    padding-right: 2.5rem;
}

/* Form Info Text */
#frmContactMobile .info {
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #666;
}

/* Submit Button */
#frmContactMobile .btn-get-quote {
    width: 100%;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

#frmContactMobile .btn-get-quote:hover {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 195, 99, 0.2);
}

/* Focus States */
#frmContactMobile .form-control:focus {
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(52, 195, 99, 0.15);
    outline: none;
}

/* Extra Small Devices */
@media (max-width: 480px) {
    #frmContactMobile {
        padding: 1rem;
        margin: 0.5rem;
    }

    #frmContactMobile .form-grid {
        gap: 0.5rem;
    }

    #frmContactMobile .form-control {
        height: 38px;
        font-size: 0.85rem;
    }

    #frmContactMobile .btn-get-quote {
        height: 42px;
        font-size: 0.9rem;
    }
}

/* Force Light Mode */
#frmContactMobile,
#frmContactMobile * {
    color-scheme: light only !important;
}

/* Input Autofill Background */
#frmContactMobile input:-webkit-autofill,
#frmContactMobile input:-webkit-autofill:hover,
#frmContactMobile input:-webkit-autofill:focus {
    -webkit-text-fill-color: #333333;
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
}

/* Form Controls with Consistent Placeholder Color */
#frmContactMobile .form-control {
    height: 40px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    background-color: #ffffff !important;
    color: #333333 !important;
    border: 1.5px solid #e0e0e0 !important;
    border-radius: 6px;
}

/* Placeholder Styles - covering all browser variants */
#frmContactMobile .form-control::placeholder,
#frmContactMobile .form-control::-webkit-input-placeholder,
#frmContactMobile .form-control::-moz-placeholder,
#frmContactMobile .form-control:-ms-input-placeholder,
#frmContactMobile .form-control::-ms-input-placeholder {
    color: #333333 !important;
    opacity: 0.8;
}

/* Select Placeholder Color */
#frmContactMobile select.form-control option[value=""][disabled] {
    color: #333333 !important;
}

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

/* Maintain color during focus */
#frmContactMobile .form-control:focus::placeholder {
    opacity: 0.6;
}

/* Fleet Section Styles */
.fleet-carousel {
    padding: 0 50px;
}

.fleet-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.fleet-item img {
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    height: 600px; /* Increased from 250px */
    object-fit: cover;
    width: 100%;
    object-position: center; /* Ensures image is centered */
}

.fleet-item h4 {
    color: var(--black);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.fleet-item p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Carousel Navigation */
.fleet-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}

.fleet-carousel .owl-prev,
.fleet-carousel .owl-next {
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--primary-green) !important;
    color: var(--white) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fleet-carousel .owl-prev {
    left: -20px;
}

.fleet-carousel .owl-next {
    right: -20px;
}

.fleet-carousel .owl-prev:hover,
.fleet-carousel .owl-next:hover {
    background: var(--dark-green) !important;
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .fleet-item img {
        height: 350px;
    }
}

@media (max-width: 992px) {
    .fleet-item img {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .fleet-carousel {
        padding: 0 30px;
    }
    
    .fleet-item img {
        height: 250px;
    }
    
    .fleet-item h4 {
        font-size: 1.1rem;
    }
    
    .fleet-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .fleet-carousel {
        padding: 0 20px;
    }
    
    .fleet-item img {
        height: 200px;
    }
}

/* Service Section Styles */
.service {
    padding: 0;
    background: rgba(52, 195, 99, 0.05);
}

/* Navigation Pills */
.nav-pills .nav-link {
    background: #ffffff;
    border: 1px solid rgba(52, 195, 99, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background: var(--primary-green);
    color: white;
}

.nav-pills .nav-link.active h4,
.nav-pills .nav-link.active i {
    color: white;
}

.nav-pills .nav-link i {
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.nav-pills .nav-link h4 {
    color: var(--black);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.nav-pills .nav-link:hover h4,
.nav-pills .nav-link:hover i {
    color: white;
}

/* Content Area */
.tab-content {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    padding: 1.5rem;
}

/* Book Ride Button */
.btn-book-ride {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--primary-green);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-book-ride:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 195, 99, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service {
        padding: 0;
    }
    
    .nav-pills .nav-link {
        padding: 1rem;
    }
    
    .nav-pills .nav-link h4 {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .service {
        padding:  0;
    }
    
    .tab-pane {
        padding: 1rem;
    }
    
    .nav-pills .nav-link {
        margin-bottom: 0.5rem;
    }
}

/* Call to Action Section Enhanced Spacing */
.container-xxl.py-5 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
    margin-top: 0rem;
    margin-bottom: 0rem;
}

.container-xxl.py-5 h1 {
    font-size: 2rem;
    line-height: 1.5;
    margin: 0;
}

.container-xxl.py-5 a {
    text-decoration: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-xxl.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
        margin-top: 0rem;
    }

    .container-xxl.py-5 h1 {
        font-size: 1.5rem;
        margin: 0;
    }
}

/* Booking Section Adjustments */
.container-fluid.my-5 {
    margin-top: 0rem !important;
    margin-bottom: 3rem !important;
    padding-top: 1rem;
}

.container-fluid.my-5 .py-5 {
    padding-top: 0rem !important;
    padding-bottom: 2rem !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container-xxl.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
        margin-top: 0rem;
    }

    .container-xxl.py-5 h1 {
        font-size: 1.5rem;
    }

    .container-fluid.my-5 .py-5 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
}

/* Heading Margin */
.display-4.text-uppercase.text-center.mb-5 {
    margin-bottom: 0rem !important;
}

/* Form Container Spacing */
#frmContactMobile {
    padding: 1rem;
    margin: 0.75rem;
}

/* Form Group Spacing */
.form-group {
    margin-bottom: 0.75rem;
}

/* Form Controls - Unified Placeholder and Select Colors */
.form-control::placeholder,
.form-control option:first-child,
select.form-control {
    color: #495057 !important;
    opacity: 1 !important;
}

/* Style for select elements when showing placeholder */
select.form-control:invalid {
    color: #495057 !important;
}

/* Remove the duplicate placeholder in passenger dropdown */
#passenger1_mobile option[value=""] {
    display: none;
}

/* Reduce Section Margins */
.container-fluid.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.container-xxl.py-5 {
    padding-top: 0rem !important;
    padding-bottom: 2.5rem !important;
   
}

.container-fluid.my-5 {

}

/* Reduce spacing between headings and content */
.text-center.mb-5 {
   
}

.mb-5 {
    margin-bottom: 2rem !important;
}

/* Service Section Specific */
.service.py-7 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* Testimonial Section Specific */
.testimonial-section.py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

/* Fleet Section Specific */
.fleet-carousel {
    margin-top: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container-fluid.py-5,
    .container-xxl.py-5,
    .service.py-7,
    .testimonial-section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

   

    .text-center.mb-5,
    .mb-5 {
       
    }
}

/* Banner Text Styling */
.banner-text {
    padding: 0.5rem 0;
    margin-bottom: 1rem !important;
}

.banner-text h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-green) !important;
   
}

.banner-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .banner-text h2 {
        font-size: 1.5rem;
    }
}

/* Book A Ride Button Styling */
.btn-get-quote.py-3 {
    min-width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-green);
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(52, 195, 99, 0.2);
}

.btn-get-quote.py-3:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 195, 99, 0.3);
}

.btn-get-quote.py-3 i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-get-quote.py-3:hover i {
    transform: translateX(5px);
}

/* Mobile-specific margin reductions */
@media (max-width: 768px) {
    /* Call to Action Section */
    .container-xxl.py-5 {
        padding: .7rem 0 !important;
    }
    
    .container-xxl.py-5 h1 {
        font-size: 1.5rem !important;
        margin: 0 !important;
        line-height: 1.4 !important;
    }
    
    /* Booking Section */
    .container-fluid.my-5.mt-0 {
        margin: 0.5rem 0 !important;
    }
    
    .col-lg-6.py-5 {
        padding: .75rem 0 !important;
    }
    
    .col-lg-6 .py-5 {
        padding: 1rem !important;
    }
    
    /* Booking Form Container */
    .h-100.d-flex {
        padding: 1rem !important;
        margin-top: 0 !important;
    }
    
    .row.g-3 {
        gap: 0.75rem !important;
    }
    
    /* Text Adjustments */
    .col-lg-6 h2.mb-4 {
       
        font-size: 1.5rem !important;
    }
}

/* Nav Banner Styling */
.nav-banner {
    flex: 1;
    justify-content: flex-start; /* Align text to start instead of center */
    margin-left: 0; /* Remove left margin */
    padding-left: 10px; /* Small padding for minimal spacing */
}

.nav-banner h2 {
    font-size: 1.8rem !important; /* Increased from 1.5rem */
    font-weight: 700 !important;
    margin: 0;
    color: #ffffff !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .nav-banner h2 {
        font-size: 1.7rem !important; /* Increased from 1.2rem */
    }
    
    .nav-container {
        padding: 0 10px;
    }
}

/* Existing nav styles */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Push buttons to the right */
.nav-buttons.desktop-only,
.mobile-only {
    margin-left: auto; /* Push to right */
}

/* Mobile Testimonial Height Adjustment */
@media (max-width: 768px) {
    .testimonial-item {
        height: 450px !important; /* Increased fixed height for mobile */
    }
    
    .testimonial-content {
        height: 100% !important; /* Make content fill the container */
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
}

/* Mobile Logo Size Adjustment */
@media (max-width: 768px) {
    .nav-logo img {
        max-height: 40px !important; /* Reduced from default */
        width: auto !important;
    }
}

/* Hide Logo on Mobile */
@media (max-width: 768px) {
    .nav-logo {
        display: none !important;
    }
    
    /* Adjust banner position since logo is hidden */
    .nav-banner {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

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

.container,
.container-fluid,
.container-xxl {
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important;
}

/* Prevent any horizontal scrolling */
* {
    box-sizing: border-box !important;
}

/* Processing Overlay Styles */
.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: white;
    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);
}

/* Back to Top Button Styling */
.back-to-top {
    position: fixed;
    left: 30px;  /* Changed from right to left */
    bottom: 30px;
    z-index: 99;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .back-to-top {
        left: 15px;  /* Adjusted for mobile */
        bottom: 15px;
    }
}
.back-to-top:focus {
    outline: none;
    background: var(--dark-green) !important;
    color: var(--white) !important;
}
.back-to-top:active,
.mobile-menu-item:focus,
.back-to-top:focus {
    outline: none;
    background: var(--dark-green) !important;
    color: var(--white) !important;
}

/* Scroll to Top Button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 99;
    background: var(--black) !important;
    color: var(--white) !important;
    width: 45px;
    height: 45px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

.back-to-top:hover {
    background: var(--black) !important;
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 1;
}

.back-to-top:active,
.back-to-top:focus {
    background: var(--black) !important;
    color: var(--white) !important;
    opacity: 1;
    outline: none;
}


/* Referral Banner Styling */
.referral-banner {
    position: fixed;
    left: 40px !important;
    bottom: 50px;
    z-index: 99;
    background-color: var(--dark-green);
    padding: 15px 40px;
    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;
}
