/* Wheelers Complete Auto Care - Main Stylesheet */

/* Prevent horizontal overflow on mobile */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100% !important;
    position: relative;
}

/* Prevent any element from causing horizontal scroll */
* {
    max-width: 100vw !important;
    box-sizing: border-box !important;
}

body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    background-color: #000;
    border-bottom: 2px solid #e30613;
    position: sticky;
    top: 0;
    z-index: 999999 !important; /* FORCE above ALL overlays */
    transition: padding 0.3s ease, height 0.3s ease;
    padding: 15px 0;
}

.header.scrolled {
    padding: 8px 0;
}

.header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: flex-direction 0.3s ease;
}

.header.scrolled .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header .top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header.scrolled .top-row {
    justify-content: space-between;
}

.header .logo img {
    max-width: 200px;
    height: auto;
    transition: max-width 0.3s ease;
}

.header.scrolled .logo img {
    max-width: 150px;
}

.header .right-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .contact-details {
    transition: margin 0.3s ease;
}

.header.scrolled .contact-details {
    margin: 0;
}

.header .call-now {
    display: inline-flex;
    align-items: center;
    background-color: #e30613;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, padding 0.3s ease, font-size 0.3s ease, height 0.3s ease;
    height: 40px;
    line-height: 20px;
}

.header.scrolled .call-now {
    padding: 8px 16px;
    font-size: 0.9rem;
    height: 40px;
}

.header .call-now i {
    margin-right: 8px;
}

.header .call-now:hover {
    background-color: #b5050f;
    color: #fff;
}

/* Navigation Styles - BULLETPROOF TOUCH EVENTS */
/* MOBILE MENU - HIDDEN ON DESKTOP */
@media (min-width: 992px) {
    .mobile-menu-btn,
    .mobile-side-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-menu-btn:hover {
    background-color: #b5050f;
    transform: scale(1.05);
}

.hamburger-line {
    display: none !important;
}

/* SIMPLE MOBILE MENU */
.mobile-side-menu {
    position: fixed !important;
    top: 0 !important;
    right: -320px !important; /* Move further off-screen */
    width: 300px !important;
    height: 100vh !important;
    background: #333 !important;
    z-index: 999998 !important;
    transition: right 0.1s ease, visibility 0.1s ease, opacity 0.1s ease !important; /* Super fast fade */
    overflow-y: auto !important;
    visibility: hidden !important;
    opacity: 0 !important; /* Add opacity for complete fade */
    /* Hide scrollbars but keep scrolling */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* IE/Edge */
}

.mobile-side-menu.open {
    right: 0 !important; /* Slide in from right */
    visibility: visible !important;
    opacity: 1 !important; /* Fully visible when open */
}

/* Hide scrollbars in mobile menu for all browsers */
.mobile-side-menu::-webkit-scrollbar {
    display: none !important; /* Chrome, Safari, Edge */
}

.mobile-menu-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 25px 20px !important;
    border-bottom: 2px solid #444 !important;
    background: linear-gradient(135deg, #e30613 0%, #b5050f 100%) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.mobile-menu-header h3 {
    color: white !important;
    margin: 0 !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
    padding: 20px 0;
}

.mobile-nav-link {
    display: block !important;
    padding: 18px 25px !important;
    color: #f0f0f0 !important;
    text-decoration: none !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #444 !important;
    transition: all 0.4s ease !important;
    position: relative !important;
}

.mobile-nav-link:before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
    width: 4px !important;
    background-color: #e30613 !important;
    transform: scaleY(0) !important;
    transition: transform 0.3s ease !important;
}

.mobile-nav-link:hover {
    background-color: rgba(227, 6, 19, 0.1) !important;
    color: white !important;
    padding-left: 35px !important;
    transform: translateX(5px) !important;
}

.mobile-nav-link:hover:before {
    transform: scaleY(1) !important;
}

.mobile-nav-link.call-link {
    background: linear-gradient(135deg, #e30613 0%, #b5050f 100%) !important;
    margin: 25px 20px !important;
    border-radius: 12px !important;
    text-align: center !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3) !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.mobile-nav-link.call-link:hover {
    background: linear-gradient(135deg, #b5050f 0%, #8a0409 100%) !important;
    padding-left: 25px !important;
    transform: translateX(0) scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4) !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.1s ease; /* Super fast transition */
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.navbar-toggler:hover,
.navbar-toggler:focus,
.navbar-toggler:active {
    background-color: #b5050f;
    outline: none;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
    transform: scale(1.05); /* Slight scale on interaction */
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    display: block;
}

.navbar-collapse {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 250px;
    background-color: #1a1a1a;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 9998; /* High z-index for mobile menu */
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(10px);
}

.navbar-collapse.show {
    transform: translateX(0);
}

.navbar-close {
    background-color: #e30613;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    align-self: flex-end;
    transition: background-color 0.3s ease;
}

.navbar-close:hover {
    background-color: #b5050f;
}

.navbar-nav {
    width: 100%;
    margin-top: 20px;
}

.navbar-nav .nav-item {
    margin: 10px 0;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    text-align: left;
    text-decoration: none;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #e30613;
    color: #fff;
}

.desktop-nav {
    display: none;
}

.desktop-nav .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 15px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    background-color: #e30613;
}

.scrolled-nav {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.header.scrolled .scrolled-nav {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scrolled-nav .nav-link {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 15px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.scrolled-nav .nav-link:hover {
    background-color: #b5050f;
}

/* Hero Section */
.hero-section {
    position: relative;
    z-index: 1; /* Ensure hero section is below header */
    width: 100%;
    max-width: 100vw; /* Prevent viewport overflow */
    overflow-x: hidden; /* Clip horizontal overflow */
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    z-index: 1; /* Keep hero below header */
    width: 100%;
    max-width: 100vw; /* Prevent viewport overflow */
}

.hero-slideshow {
    position: relative;
    height: 100vh;
    width: 100%;
    max-width: 100vw; /* Prevent viewport overflow */
    overflow: hidden; /* Clip any overflow */
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100vw; /* Prevent viewport overflow */
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 5s ease-in-out;
    transform-origin: center center;
    overflow: hidden; /* Clip any overflow */
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Video Hero Styles */
.hero-slide.video-slide::before {
    background: rgba(0, 0, 0, 0.4); /* Lighter overlay for videos */
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    max-width: none; /* Allow video to scale properly */
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-video img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 3.15rem; /* 10% smaller than 3.5rem */
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.35rem; /* 10% smaller than 1.5rem */
    font-weight: 600;
    color: #ffffff; /* Changed to white for better visibility */
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8); /* Stronger shadow for contrast */
}

.hero-description {
    font-size: 0.99rem; /* 10% smaller than 1.1rem */
    font-weight: 500; /* Slightly bolder for better visibility */
    color: #ffffff !important; /* Force white color */
    margin-bottom: 25px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9); /* Stronger shadow for better contrast */
    opacity: 1; /* Full opacity for maximum visibility */
}

/* FORCE ALL HERO TEXT TO BE WHITE */
.hero-content p,
.hero-content span,
.hero-content div {
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
    opacity: 1 !important;
}

/* Ensure ALL text in hero content is white and visible */
.hero-content p {
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9) !important;
    opacity: 1 !important;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-shadow: none;
}

.btn-hero.primary {
    background-color: #e30613;
    color: #fff;
    border-color: #e30613;
}

.btn-hero.primary:hover {
    background-color: #b5050f;
    border-color: #b5050f;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 6, 19, 0.4);
}

.btn-hero.secondary {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-hero.secondary:hover {
    background-color: #fff;
    color: #e30613;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* General Section Styles */
.section {
    padding: 80px 0;
    position: relative;
    z-index: 2; /* Ensure sections are above hero */
    background: #fff; /* Ensure sections have background */
    margin: 0; /* Remove any default margins */
    clear: both; /* Clear any floats */
}

/* Ensure first section after hero has proper spacing */
.hero-section + .section {
    margin-top: 0;
    padding-top: 80px;
}

/* Testimonials Section - Reduced spacing */
.section.testimonials {
    padding: 60px 0 40px 0;
}

/* Page Banner Styles */
.page-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0; /* No space between banner and navigation */
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    width: 100%;
}

.page-banner h1 {
    color: #fff;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner .lead {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Legacy page-header styles for backward compatibility */
.page-header {
    background-color: #f8f9fa;
    padding: 60px 0 40px;
    margin-top: 70px;
}

.page-header h1 {
    color: #e30613;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

h2 {
    color: #e30613;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Service Cards */
.service-card {
    background-color: #fff;
    border: 1px solid #e30613;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

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

.service-card i {
    font-size: 4rem;
    color: #e30613;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    line-height: 1;
}

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

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Special Cards - Steel Finish with Animated Shine */
.special-card {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #adb5bd 100%);
    border: 2px solid #6c757d;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    margin-bottom: 30px;
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.special-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: transform 0.6s ease;
    z-index: 1;
}

.special-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.special-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.15),
        0 6px 12px rgba(227, 6, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-color: #e30613;
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f4 25%, #e3e7ea 50%, #d6dce1 75%, #c1c9d0 100%);
}

.special-card * {
    position: relative;
    z-index: 2;
}

.special-card h4 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.special-card:hover h4 {
    color: #e30613;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
}

.special-card p {
    color: #495057;
    font-weight: 500;
    margin-bottom: 20px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

.special-card ul {
    list-style: none;
    padding: 0;
    color: #6c757d;
    font-size: 1rem;
    margin-bottom: 25px;
}

.special-card ul li {
    margin: 10px 0;
    padding: 8px 0 8px 35px;
    border-bottom: 1px solid rgba(108, 117, 125, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.special-card ul li:last-child {
    border-bottom: none;
}

.special-card ul li::before {
    content: '✓';
    position: absolute;
    left: 10px;
    color: #28a745;
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.special-card:hover ul li {
    color: #495057;
    transform: translateX(5px);
}

.special-card .cta {
    background: linear-gradient(135deg, #e30613 0%, #b5050f 100%);
    border: 2px solid #e30613;
    box-shadow:
        0 2px 4px rgba(227, 6, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.special-card .cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.special-card .cta:hover::before {
    left: 100%;
}

.special-card .cta:hover {
    background: linear-gradient(135deg, #b5050f 0%, #8b0409 100%);
    box-shadow:
        0 4px 8px rgba(227, 6, 19, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* CTA Button */
.cta {
    background-color: #e30613;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.cta:hover {
    background-color: #b5050f;
    color: #fff;
}

.finance-note {
    color: #e30613;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 10px 0;
}

/* Enhanced Testimonial Cards with Mobile Animations */
.testimonial-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.testimonial-card .stars {
    font-size: 1.2rem;
}

.testimonial-card .review-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 15px;
}

.testimonial-card .customer-name {
    color: #e30613;
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* Enhanced Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-inner {
    position: relative;
}

.testimonials-slide {
    transition: transform 0.6s ease-in-out;
}

.testimonials-row {
    margin: 0 -10px;
}

.testimonial-col {
    padding: 0 10px;
    margin-bottom: 20px;
}

/* Enhanced Card Animation */
.enhanced-card {
    opacity: 0;
    transform: translateX(50px);
    animation: slideInFromRight 0.6s ease-out forwards;
}

.carousel-item.active .enhanced-card {
    animation-delay: calc(var(--slide-delay, 0) * 1ms);
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Controls Enhancement */
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(227, 6, 19, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-control-prev {
    left: -25px;
}

.testimonials-carousel .carousel-control-next {
    right: -25px;
}

.testimonials-carousel .carousel-control-prev:hover,
.testimonials-carousel .carousel-control-next:hover {
    background-color: rgba(227, 6, 19, 1);
    transform: translateY(-50%) scale(1.1);
}

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

/* Enhanced Carousel Indicators */
.testimonials-carousel .carousel-indicators {
    bottom: -40px;
    margin-bottom: 0;
}

.testimonials-carousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.testimonials-carousel .carousel-indicators button.active {
    background-color: #e30613;
    transform: scale(1.2);
}

/* Contact Info */
.contact-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
}

/* Contact Form Styles */
.form-control {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #e30613;
    box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.25);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.form-check-input:checked {
    background-color: #e30613;
    border-color: #e30613;
}

.form-check-input:focus {
    border-color: #e30613;
    box-shadow: 0 0 0 0.25rem rgba(227, 6, 19, 0.25);
}

/* Contact Form Messages */
.contact-message {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

.contact-message.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border-left: 4px solid #155724;
}

.contact-message.alert-danger {
    background: linear-gradient(135deg, #dc3545, #e30613);
    color: white;
    border-left: 4px solid #721c24;
}

.contact-message .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.contact-message .btn-close:hover {
    opacity: 1;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form Loading State */
#contactForm button[type="submit"]:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Service Page Styles */
.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(227, 6, 19, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

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

.hero-badge {
    transform: translateY(-20px);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(-20px); }
    50% { transform: translateY(-30px); }
}

.process-step {
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-10px);
}

.step-number {
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

.feature-box {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-includes .include-item {
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 8px;
}

.service-includes .include-item:hover {
    background-color: #f8f9fa;
    transform: translateX(10px);
}

.service-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.service-image-container img {
    transition: transform 0.3s ease;
}

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

.related-service {
    transition: all 0.3s ease;
}

.related-service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(227, 6, 19, 0.2);
    background-color: #f8f9fa;
}

.cta-buttons .btn {
    transition: all 0.3s ease;
}

.cta-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

/* Responsive adjustments for service pages */
@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0;
    }

    .service-hero .display-4 {
        font-size: 2rem;
    }

    .hero-badge {
        margin-top: 30px;
        transform: none;
        animation: none;
    }

    .process-step {
        margin-bottom: 40px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Financing Section Styles */
.financing-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    z-index: 3;
    clear: both; /* Clear any floats */
}

.financing-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.financing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #e30613;
}

.financing-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.financing-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.financing-logo {
    max-height: 80px;
    max-width: 300px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.financing-logo:hover {
    transform: scale(1.05);
    opacity: 0.8;
}

.financing-card h4 {
    color: #e30613;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.financing-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.financing-benefits {
    background: rgba(227, 6, 19, 0.05);
    border-radius: 15px;
    padding: 40px 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px 15px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #e30613;
    margin-bottom: 15px;
}

.benefit-item h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.financing-section .lead {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.7;
}

.financing-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 2.5rem;
}

/* Footer Styles */
.footer {
    background-color: #000;
    padding: 50px 0;
    border-top: 2px solid #e30613;
    color: #ccc;
}

.footer h5 {
    color: #e30613;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
    border-bottom: 4px solid #e30613;
    padding-bottom: 5px;
    display: inline-block;
}

.footer p {
    color: #ccc;
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    align-items: center;
}

.footer .contact-us p:not(:last-child) {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer .contact-us p.address-border,
.footer .contact-us p.phone-border {
    border-bottom: 1px solid #666;
}

.footer p i {
    margin-right: 15px;
    color: #e30613;
    font-size: 1.5rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #e30613;
}

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

.footer ul li {
    margin: 8px 0;
}

.footer .container {
    max-width: 1200px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

/* Electric Design by XK Link */
.design-by-link {
    position: relative;
    display: inline-block;
    margin-top: 5px;
    padding: 8px 16px;
    background: #000;
    border: 1px solid #333;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.design-by-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.electric-sparks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.spark {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow:
        0 0 4px #00ffff,
        0 0 8px #00ffff,
        0 0 12px #00ffff;
}

.spark-1 {
    top: 20%;
    left: 15%;
    animation: spark-flicker 0.8s infinite alternate;
}

.spark-2 {
    top: 60%;
    left: 25%;
    animation: spark-flicker 1.2s infinite alternate;
    animation-delay: 0.2s;
}

.spark-3 {
    top: 30%;
    right: 20%;
    animation: spark-flicker 0.9s infinite alternate;
    animation-delay: 0.4s;
}

.spark-4 {
    bottom: 25%;
    right: 15%;
    animation: spark-flicker 1.1s infinite alternate;
    animation-delay: 0.6s;
}

.spark-5 {
    top: 45%;
    left: 50%;
    animation: spark-flicker 0.7s infinite alternate;
    animation-delay: 0.3s;
}

.spark-6 {
    bottom: 40%;
    left: 35%;
    animation: spark-flicker 1.3s infinite alternate;
    animation-delay: 0.5s;
}

@keyframes spark-flicker {
    0% {
        opacity: 0;
        transform: scale(0.5);
        box-shadow:
            0 0 2px #00ffff,
            0 0 4px #00ffff,
            0 0 6px #00ffff;
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
        box-shadow:
            0 0 6px #00ffff,
            0 0 12px #00ffff,
            0 0 18px #00ffff,
            0 0 24px #0088ff;
    }
    100% {
        opacity: 0.8;
        transform: scale(1);
        box-shadow:
            0 0 4px #00ffff,
            0 0 8px #00ffff,
            0 0 12px #00ffff;
    }
}

/* Hover Effects */
.design-by-link:hover {
    background: #111;
    border-color: #00ffff;
    color: #00ffff;
    text-shadow: 0 0 8px #00ffff;
    box-shadow:
        0 0 15px rgba(0, 255, 255, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.design-by-link:hover .electric-sparks {
    opacity: 1;
}

.design-by-link:hover .design-by-text {
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff;
}

/* Add electric border animation on hover */
.design-by-link:hover::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
        transparent,
        #00ffff,
        transparent,
        #0088ff,
        transparent,
        #00ffff,
        transparent);
    background-size: 400% 400%;
    border-radius: 8px;
    z-index: -1;
    animation: electric-border 2s linear infinite;
}

@keyframes electric-border {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Legacy support for old design-by class */
.footer-bottom .design-by {
    margin-top: 5px;
    font-size: 0.7rem;
}



.footer .areas-service {
    display: flex;
    justify-content: space-between;
}

.footer .areas-service ul {
    flex: 1;
    margin: 0 10px;
}

/* Footer Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-nav a:hover {
    color: #e30613;
}

.footer-nav i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

/* Desktop Styles */
@media (min-width: 769px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .header .top-row {
        flex: 1;
    }
    .navbar-toggler, .navbar-collapse, .scrolled-nav {
        display: none;
    }
    .desktop-nav {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .header .right-section {
        gap: 10px;
    }
    .header .contact-details {
        margin-left: auto;
    }
}

/* Enhanced Mobile Styles with Better Padding */
@media (max-width: 768px) {
    /* Header Mobile Improvements */
    .header {
        height: 60px;
        padding: 0 15px 0 15px;
        display: flex;
        z-index: 9999999 !important; /* FORCE above ALL overlays on mobile */
        align-items: center;
    }
    .header.scrolled {
        height: 60px;
        padding: 0 15px 0 15px;
    }
    .header .right-section {
        padding-right: 60px; /* Make room for fixed mobile menu button */
    }
    .header .logo img {
        max-width: 125px !important; /* 75% smaller than original 500px logo */
    }
    .header.scrolled .logo img {
        max-width: 125px !important; /* Keep same size when scrolled on mobile */
    }
    .header .call-now {
        font-size: 0.9rem;
        padding: 4px 10px;
        height: 32px;
        line-height: 24px;
        margin-right: 10px;
    }
    .header.scrolled .call-now {
        padding: 4px 10px;
        height: 32px;
    }
    /* SHOW MOBILE MENU BUTTON */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        position: fixed !important;
        top: calc(15px - 2vh) !important; /* 2% upwards offset */
        right: 15px !important;
        z-index: 999999 !important;
        background-color: #e30613 !important;
        border: none !important;
        padding: 10px !important;
        border-radius: 6px !important;
        width: 45px !important;
        height: 45px !important;
    }

    .mobile-menu-btn:hover {
        background-color: #b5050f !important;
        transform: scale(1.05) !important;
    }

    .hamburger-line {
        width: 25px !important;
        height: 3px !important;
        background-color: white !important;
        margin: 3px 0 !important;
        transition: 0.3s !important;
        border-radius: 2px !important;
        display: block !important;
    }

    /* Mobile Side Menu Styling */
    .mobile-side-menu {
        position: fixed !important;
        top: 0 !important;
        right: -320px !important;
        width: 320px !important;
        height: 100vh !important;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
        z-index: 999998 !important;
        transition: right 0.1s ease, visibility 0.1s ease, opacity 0.1s ease !important;
        overflow-y: auto !important;
        visibility: hidden !important;
        opacity: 0 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
        border-left: 3px solid #e30613 !important;
        /* Hide scrollbars on mobile */
        scrollbar-width: none !important; /* Firefox */
        -ms-overflow-style: none !important; /* IE/Edge */
    }

    .mobile-side-menu.open {
        right: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-menu-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 25px 20px !important;
        border-bottom: 2px solid #444 !important;
        background: linear-gradient(135deg, #e30613 0%, #b5050f 100%) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-menu-header h3 {
        color: white !important;
        margin: 0 !important;
        font-size: 1.4rem !important;
        font-weight: 600 !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3) !important;
    }

    .mobile-menu-close {
        background: none !important;
        border: none !important;
        color: white !important;
        font-size: 1.5rem !important;
        cursor: pointer !important;
        padding: 5px !important;
        border-radius: 4px !important;
        transition: background-color 0.3s ease !important;
    }

    .mobile-menu-close:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
    }

    .mobile-menu-nav {
        padding: 20px 0 !important;
    }

    .mobile-nav-link {
        display: block !important;
        padding: 18px 25px !important;
        color: #f0f0f0 !important;
        text-decoration: none !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
        border-bottom: 1px solid #444 !important;
        transition: all 0.4s ease !important;
        position: relative !important;
    }

    .mobile-nav-link:hover {
        background-color: rgba(227, 6, 19, 0.1) !important;
        color: white !important;
        padding-left: 35px !important;
        transform: translateX(5px) !important;
    }

    .mobile-nav-link.call-link {
        background: linear-gradient(135deg, #e30613 0%, #b5050f 100%) !important;
        margin: 25px 20px !important;
        border-radius: 12px !important;
        text-align: center !important;
        border: none !important;
        box-shadow: 0 4px 15px rgba(227, 6, 19, 0.3) !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
    }

    .mobile-nav-link.call-link:hover {
        background: linear-gradient(135deg, #b5050f 0%, #8a0409 100%) !important;
        transform: scale(1.02) !important;
        box-shadow: 0 6px 20px rgba(227, 6, 19, 0.4) !important;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-color: rgba(0, 0, 0, 0.5) !important;
        z-index: 999997 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
    }

    .mobile-menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Hide Desktop Navigation on Mobile */
    .desktop-nav {
        display: none !important;
    }
    .header.scrolled .scrolled-nav {
        display: none;
    }
    .navbar .nav-link {
        padding: 12px 15px;
        font-size: 0.9rem;
        margin: 5px 0;
    }
    .desktop-nav {
        display: none;
    }

    /* Hero Section Mobile */
    .hero-section,
    .hero,
    .hero-slideshow {
        height: 46vh !important; /* 15% shorter again (was 54vh) */
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .hero {
        height: 60vh !important;
        min-height: 60vh !important;
        max-height: 60vh !important;
        padding: 0 !important;
        margin-top: 0 !important;
    }

    .hero-slide {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .hero-video {
        width: 100% !important;
        max-width: 100vw !important;
        object-fit: cover !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    .hero-content {
        padding: 0 20px;
    }
    .hero-content h1 {
        font-size: 1.38rem; /* 15% smaller again (was 1.62rem) */
        margin-bottom: 15px;
    }
    .hero-subtitle {
        font-size: 0.76rem; /* 15% smaller again (was 0.89rem) */
        margin-bottom: 12px;
    }
    .hero-description {
        font-size: 0.62rem; /* 15% smaller again (was 0.73rem) */
        margin-bottom: 25px;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .btn-hero {
        padding: 12px 25px;
        font-size: 0.9rem;
        min-width: 200px;
        text-align: center;
    }

    /* MOBILE ONLY - BULLETPROOF HAMBURGER MENU */
    .navbar-toggler {
        position: relative !important;
        z-index: 99999 !important;
        pointer-events: auto !important;
        display: flex !important;
        touch-action: manipulation !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -webkit-touch-callout: none !important;
        -webkit-tap-highlight-color: rgba(227, 6, 19, 0.8) !important;
        cursor: pointer !important;
        min-width: 60px !important;
        min-height: 60px !important;
        padding: 15px !important;
        background-color: #e30613 !important;
        border: 3px solid #fff !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5) !important;
    }

    .navbar-toggler:active,
    .navbar-toggler:focus,
    .navbar-toggler:hover {
        background-color: #b5050f !important;
        transform: scale(1.1) !important;
        border-color: #fff !important;
    }

    .navbar-toggler-icon {
        width: 30px !important;
        height: 30px !important;
        display: block !important;
        pointer-events: none !important;
        background-size: 100% 100% !important;
    }
        padding: 12px 16px !important;
        background-color: #e30613 !important;
        border: none !important;
        border-radius: 5px !important;
    }

    .navbar-toggler:hover,
    .navbar-toggler:focus,
    .navbar-toggler:active {
        background-color: #b5050f !important;
        transform: scale(1.05) !important;
    }

    /* Force hamburger icon visibility */
    .navbar-toggler-icon {
        width: 24px !important;
        height: 24px !important;
        display: block !important;
        pointer-events: none !important;
    }

    /* MOBILE: Force ALL overlays UNDER header/hamburger */
    .hero-section,
    .hero-slide,
    .hero-slide::before,
    .hero-overlay,
    .page-banner-overlay,
    .service-hero::before {
        z-index: 1 !important; /* Keep ALL overlays and hero section below header */
    }

    /* Section Padding Improvements */
    .section {
        padding: 50px 0;
    }
    .section .container {
        padding: 0 20px;
    }
    .section.testimonials {
        padding: 40px 0 60px 0;
    }
    .section.testimonials .container {
        padding: 0 15px;
    }

    /* Page Headers Mobile */
    .page-header {
        padding: 50px 0 30px;
        margin-top: 60px;
    }
    .page-header .container {
        padding: 0 20px;
    }
    .page-header h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    .page-banner {
        height: 200px;
        margin-top: 0;
        padding: 0 20px;
    }
    .page-banner h1 {
        font-size: 2rem;
    }
    .page-banner .lead {
        font-size: 1.1rem;
    }

    /* Cards Mobile Improvements */
    .service-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    .service-card h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    .special-card {
        padding: 25px;
        margin-bottom: 30px;
    }
    .special-card h4 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    .special-card ul {
        font-size: 0.95rem;
    }
    .special-card ul li {
        padding: 10px 0 10px 35px;
        margin-bottom: 5px;
    }
    .special-card ul li::before {
        left: 10px;
        font-size: 1rem;
    }

    /* Enhanced Mobile Testimonials */
    .testimonials-carousel {
        margin: 0 -10px;
        padding: 0 10px;
    }
    .testimonials-carousel .carousel-control-prev,
    .testimonials-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
        background-color: rgba(227, 6, 19, 0.9);
    }
    .testimonials-carousel .carousel-control-prev {
        left: -5px;
    }
    .testimonials-carousel .carousel-control-next {
        right: -5px;
    }
    .testimonials-carousel .carousel-control-prev-icon,
    .testimonials-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    .testimonial-card {
        padding: 20px;
        margin-bottom: 15px;
        min-height: 250px;
    }
    .testimonial-card .stars {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    .testimonial-card .review-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    .testimonial-card .customer-name {
        font-size: 0.95rem;
        margin-top: 10px;
    }

    /* Mobile Carousel Animation Enhancement */
    .enhanced-card {
        animation-duration: 0.8s;
        animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .testimonial-col {
        padding: 0 8px;
        margin-bottom: 15px;
    }

    /* Mobile Column Stacking */
    .testimonial-col {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .testimonials-row {
        margin: 0 -8px;
        flex-wrap: nowrap;
        overflow-x: hidden;
    }

    /* Mobile Swipe Indicators */
    .testimonials-carousel .carousel-indicators {
        bottom: -50px;
        padding: 0 20px;
    }
    .testimonials-carousel .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
    }
    .cta {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    .finance-note {
        font-size: 0.9rem;
    }
    .footer {
        padding: 30px 0;
    }
    .footer h5 {
        font-size: 1rem;
        margin-top: 20px;
    }
    .footer p, .footer a {
        font-size: 0.8rem;
    }
    .footer .areas-service {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .footer .areas-service ul {
        margin: 0 5px;
        flex: 1;
    }

}
