/*
 * ========================================
 * House Care Of Canada - Main Stylesheet
 * Version: 2.0
 * Author: House Care Of Canada
 * ========================================
 */

/* ========================================
   Google Fonts - Poppins (Offline)
======================================== */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/poppins-300.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/poppins-400.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/poppins-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/poppins-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/poppins-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('../fonts/poppins-800.woff2') format('woff2');
}

/* ========================================
   CSS Variables & Root Styles
======================================== */
:root {
    --primary-red: #FF131D;
    --primary-red-dark: #D90E17;
    --primary-red-light: #FF4049;
    --secondary-blue: #2070BF;
    --secondary-blue-dark: #1A5A9E;
    --secondary-blue-light: #3A8AD4;
    --dark-gray: #2D2D2D;
    --medium-gray: #555555;
    --light-gray: #F5F5F5;
    --lighter-gray: #FAFAFA;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --transition-fast: all 0.2s ease;
    --border-radius: 8px;
    --border-radius-lg: 12px;
}

/* ========================================
   Base Styles
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--medium-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Heading Base Styles - Applied via classes for flexibility */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

/* Heading Size Classes - Use these for styling flexibility */
.heading-1,
.h1 {
    font-size: 3rem;
}

.heading-2,
.h2 {
    font-size: 2.5rem;
}

.heading-3,
.h3 {
    font-size: 1.75rem;
}

.heading-4,
.h4 {
    font-size: 1.25rem;
}

.heading-5,
.h5 {
    font-size: 1.1rem;
}

.heading-6,
.h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

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

a:hover {
    color: var(--primary-red);
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ========================================
   Utility Classes
======================================== */
.section-padding {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-title span {
    color: var(--primary-red);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 60px;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

.bg-light-gray {
    background-color: var(--light-gray);
}

.bg-lighter-gray {
    background-color: var(--lighter-gray);
}

.bg-dark {
    background-color: var(--dark-gray);
}

.text-primary-red {
    color: var(--primary-red) !important;
}

.text-secondary-blue {
    color: var(--secondary-blue) !important;
}

/* ========================================
   Buttons
======================================== */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--primary-red-dark);
    border-color: var(--primary-red-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 19, 29, 0.3);
}

.btn-secondary {
    background-color: var(--secondary-blue);
    color: var(--white);
    border-color: var(--secondary-blue);
}

.btn-secondary:hover {
    background-color: var(--secondary-blue-dark);
    border-color: var(--secondary-blue-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(32, 112, 191, 0.3);
}

.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-outline-primary:hover {
    background-color: var(--primary-red);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-red);
    border-color: var(--white);
}

.btn-white:hover {
    background-color: var(--light-gray);
    border-color: var(--light-gray);
    color: var(--primary-red);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ========================================
   Top Header Bar
======================================== */
.top-header {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 12px 0;
    font-size: 0.875rem;
}

.top-header a {
    color: var(--white);
}

.top-header a:hover {
    color: var(--primary-red);
}

.top-header .contact-item {
    display: inline-flex;
    align-items: center;
    margin-right: 30px;
}

.top-header .contact-item i {
    color: var(--primary-red);
    margin-right: 10px;
    font-size: 1rem;
}

.top-header .social-links a {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-left: 8px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.top-header .social-links a:hover {
    background-color: var(--primary-red);
    transform: translateY(-3px);
}

/* ========================================
   Navigation Bar
======================================== */
.main-navbar {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    padding: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1000;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    animation: slideDown 0.3s ease;
    box-shadow: var(--shadow-md);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--dark-gray) !important;
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 120px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    background-color: var(--primary-red);
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-brand span {
    color: var(--primary-red);
}

.navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--dark-gray) !important;
    padding: 28px 20px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 0;
    height: 3px;
    background-color: var(--primary-red);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

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

.nav-quote-btn {
    background-color: var(--primary-red);
    color: #ffffff !important;
    padding: 15px 35px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.2rem;
    border: none;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-quote-btn:hover {
    background-color: var(--primary-red-dark);
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 19, 29, 0.3);
}

.nav-quote-btn i {
    margin-right: 8px;
}

.navbar-quote-wrapper {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: 2px solid var(--primary-red);
    padding: 8px 12px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.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='%23FF131D' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========================================
   Page Banner / Hero Section
======================================== */
.page-banner {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9) 0%, rgba(255, 19, 29, 0.85) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
}

.page-banner h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-banner .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
}

.page-banner .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item a {
    color: var(--white);
}

.page-banner .breadcrumb-item a:hover {
    color: var(--primary-red-light);
}

.page-banner .breadcrumb-item.active {
    color: var(--white);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "â€º";
    font-size: 1.2rem;
}

/* Hero Section - Homepage */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.95) 0%, rgba(45, 50, 60, 0.9) 50%, rgba(32, 112, 191, 0.85) 100%),
        url('../images/bg1.jpg') center/cover no-repeat;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
}

/* ========================================
   Hero Carousel Section - Professional
======================================== */
.hero-carousel-section {
    position: relative;
    overflow: hidden;
}

#heroCarousel {
    position: relative;
}

#heroCarousel .carousel-inner {
    overflow: visible;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1000px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.92) 0%, rgba(45, 50, 60, 0.88) 50%, rgba(32, 112, 191, 0.8) 100%);
    z-index: 1;
}

.hero-overlay.overlay-blue {
    background: linear-gradient(135deg, rgba(32, 112, 191, 0.92) 0%, rgba(26, 90, 158, 0.88) 50%, rgba(45, 45, 45, 0.85) 100%);
}

.hero-overlay.overlay-dark {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(30, 30, 35, 0.9) 50%, rgba(255, 19, 29, 0.7) 100%);
}

.hero-overlay.overlay-gradient {
    background: linear-gradient(135deg, rgba(255, 19, 29, 0.85) 0%, rgba(217, 14, 23, 0.8) 50%, rgba(45, 45, 45, 0.9) 100%);
}

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

.hero-slide-content {
    max-width: 800px;
    padding: 60px 0;
}

/* Carousel Fade Animation Enhancement */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    opacity: 0;
}

/* Hero Content Animations */
.animate-fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fadeInUp.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.animate-fadeInUp.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.animate-fadeInUp.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Reset animations on slide change */
.carousel-item .animate-fadeInDown,
.carousel-item .animate-fadeInUp {
    opacity: 0;
}

.carousel-item.active .animate-fadeInDown {
    animation: fadeInDown 0.8s ease forwards;
}

.carousel-item.active .animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

.carousel-item.active .animate-fadeInUp.delay-1 {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.carousel-item.active .animate-fadeInUp.delay-2 {
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.carousel-item.active .animate-fadeInUp.delay-3 {
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

/* Hero Carousel Indicators */
.hero-indicators {
    bottom: 140px;
    margin-bottom: 0;
    z-index: 10;
}

.hero-indicators button {
    width: 50px;
    height: 5px;
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    margin: 0 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-indicators button::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: var(--primary-red);
    transition: width 6s linear;
}

.hero-indicators button.active {
    background-color: rgba(255, 255, 255, 0.6);
    transform: scaleY(1.3);
}

.hero-indicators button.active::before {
    width: 100%;
}

/* Hero Carousel Controls */
.hero-control {
    width: 70px;
    height: 70px;
    background: transparent;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

.hero-carousel-section:hover .hero-control {
    opacity: 1;
}

.hero-control.carousel-control-prev {
    left: 30px;
}

.hero-control.carousel-control-next {
    right: 30px;
}

.hero-control-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.hero-control:hover .hero-control-icon {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.1);
}

/* Hero Stats Bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    padding: 40px 0 30px;
    z-index: 5;
}

.hero-stats-bar .hero-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.hero-stats-bar .hero-stat {
    text-align: center;
    position: relative;
}

.hero-stats-bar .hero-stat::after {
    content: '';
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-stats-bar .hero-stat:last-child::after {
    display: none;
}

.hero-stats-bar .hero-stat .number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stats-bar .hero-stat .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 8px;
    display: block;
}

/* Scroll Indicator */
.hero-carousel-section .scroll-indicator {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

.hero-carousel-section .scroll-indicator a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-carousel-section .scroll-indicator a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-red-light);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    opacity: 0.95;
    color: var(--white);
}

.hero-text {
    font-size: 1.15rem;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 600px;
    color: var(--white);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 50px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    display: block;
}

.hero-stat .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    margin-top: 5px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 2rem;
    opacity: 0.7;
}

.scroll-indicator a:hover {
    opacity: 1;
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-15px);
    }

    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ========================================
   Warranty Slogan Banner
======================================== */
.warranty-slogan-section {
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    background:
        radial-gradient(1200px 400px at 10% 0%, rgba(255, 19, 29, 0.08), transparent 60%),
        radial-gradient(1000px 400px at 100% 100%, rgba(255, 19, 29, 0.06), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #fff7f7 100%);
}

.warranty-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.warranty-shape {
    position: absolute;
    display: block;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.35;
}

.warranty-shape-1 {
    width: 180px;
    height: 180px;
    top: -40px;
    left: 5%;
    background: radial-gradient(circle, rgba(255, 19, 29, 0.35), transparent 70%);
    animation: warrantyFloat 8s ease-in-out infinite;
}

.warranty-shape-2 {
    width: 120px;
    height: 120px;
    bottom: -30px;
    right: 8%;
    background: radial-gradient(circle, rgba(255, 120, 0, 0.3), transparent 70%);
    animation: warrantyFloat 10s ease-in-out infinite reverse;
}

.warranty-shape-3 {
    width: 80px;
    height: 80px;
    top: 30%;
    right: 30%;
    background: radial-gradient(circle, rgba(255, 19, 29, 0.25), transparent 70%);
    animation: warrantyFloat 12s ease-in-out infinite;
}

@keyframes warrantyFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -25px); }
}

.warranty-slogan-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
    padding: 40px 60px 40px 170px;
    background:
        linear-gradient(135deg, #ffffff 0%, #fff0f1 55%, #ffe4e6 100%);
    border-radius: 24px;
    box-shadow:
        0 30px 60px -20px rgba(184, 0, 10, 0.25),
        0 18px 36px -18px rgba(0, 0, 0, 0.15),
        inset 0 0 0 1px rgba(255, 19, 29, 0.08);
    overflow: visible;
}

.warranty-slogan-banner::before,
.warranty-slogan-banner::after {
    content: "";
    position: absolute;
    border-radius: 24px;
    pointer-events: none;
}

.warranty-slogan-banner::before {
    inset: 6px;
    border: 2px dashed rgba(255, 19, 29, 0.35);
    border-radius: 18px;
}

.warranty-slogan-banner::after {
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 19, 29, 0.08), transparent 40%),
        radial-gradient(circle at 15% 80%, rgba(255, 120, 0, 0.08), transparent 40%);
}

/* ---------- Sticker ---------- */
.warranty-sticker {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) rotate(-10deg);
    width: 170px;
    height: 170px;
    z-index: 3;
    animation: warrantyStickerWobble 4s ease-in-out infinite;
}

.warranty-sticker-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 25%, #ff5a63 0%, #FF131D 55%, #a80009 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 5px solid #fff;
    box-shadow:
        0 15px 30px rgba(168, 0, 9, 0.45),
        inset 0 -10px 20px rgba(0, 0, 0, 0.18),
        inset 0 10px 20px rgba(255, 255, 255, 0.15),
        0 0 0 4px rgba(255, 19, 29, 0.9),
        0 0 0 6px #fff,
        0 0 0 8px rgba(255, 19, 29, 0.5);
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    overflow: hidden;
}

.warranty-sticker-inner::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
}

.warranty-sticker-inner::after {
    content: "";
    position: absolute;
    top: 15%;
    left: 20%;
    width: 35%;
    height: 25%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.45), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.warranty-sticker-icon {
    font-size: 26px;
    color: #ffd84d;
    margin-bottom: 4px;
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
}

.warranty-sticker-main {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow:
        2px 2px 0 rgba(0, 0, 0, 0.25),
        0 0 10px rgba(255, 255, 255, 0.3);
    margin: 2px 0;
}

.warranty-sticker-bottom {
    font-size: 11px;
    font-weight: 800;
    margin-top: 2px;
    letter-spacing: 2px;
    opacity: 0.95;
}

.warranty-sticker-ribbon {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%) rotate(10deg);
    background: linear-gradient(135deg, #ffd84d 0%, #ffb300 100%);
    color: #8a0000;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    padding: 5px 14px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    z-index: 4;
}

.warranty-sticker-ribbon::before,
.warranty-sticker-ribbon::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.warranty-sticker-ribbon::before {
    left: -6px;
    border-width: 6px 6px 6px 0;
    border-color: transparent #ffb300 transparent transparent;
    transform: translateY(-50%);
}

.warranty-sticker-ribbon::after {
    right: -6px;
    border-width: 6px 0 6px 6px;
    border-color: transparent transparent transparent #ffb300;
    transform: translateY(-50%);
}

@keyframes warrantyStickerWobble {
    0%, 100% { transform: translateY(-50%) rotate(-10deg) scale(1); }
    25%      { transform: translateY(-50%) rotate(-7deg) scale(1.03); }
    50%      { transform: translateY(-50%) rotate(-12deg) scale(1.05); }
    75%      { transform: translateY(-50%) rotate(-8deg) scale(1.02); }
}

/* ---------- Content ---------- */
.warranty-slogan-content {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: left;
}

.warranty-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 19, 29, 0.1);
    color: var(--primary-red, #FF131D);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.warranty-eyebrow i {
    color: #ffb300;
    font-size: 10px;
}

.warranty-eyebrow span {
    margin-left: 6px;
    color: var(--primary-red, #FF131D);
}

.warranty-slogan-title {
    font-size: 38px;
    font-weight: 900;
    color: #1a1a1a;
    margin: 0 0 20px;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.warranty-accent {
    background: linear-gradient(135deg, #FF131D 0%, #ff5a63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.warranty-accent::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 6px;
    background: rgba(255, 19, 29, 0.2);
    border-radius: 3px;
    z-index: -1;
}

/* ---------- Pills ---------- */
.warranty-pills {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.warranty-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px 12px 14px;
    border-radius: 60px;
    background: linear-gradient(135deg, #FF131D 0%, #b8000a 100%);
    color: #fff;
    box-shadow:
        0 10px 22px rgba(255, 19, 29, 0.35),
        inset 0 -3px 8px rgba(0, 0, 0, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.warranty-pill::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    animation: warrantyShimmer 3.5s ease-in-out infinite;
}

@keyframes warrantyShimmer {
    0%   { left: -75%; }
    60%  { left: 125%; }
    100% { left: 125%; }
}

.warranty-pill:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 28px rgba(255, 19, 29, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.18);
}

.warranty-pill-exterior {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a3a3a 100%);
    box-shadow:
        0 10px 22px rgba(0, 0, 0, 0.35),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.1);
}

.warranty-pill-exterior:hover {
    box-shadow:
        0 15px 28px rgba(0, 0, 0, 0.45),
        inset 0 -3px 8px rgba(0, 0, 0, 0.3);
}

.warranty-pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.warranty-pill-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.warranty-pill-years {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.warranty-pill-label {
    font-size: 12px;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.warranty-pill-connector {
    flex: 0 0 auto;
    width: 36px;
    height: 2px;
    position: relative;
    background: repeating-linear-gradient(90deg, rgba(255, 19, 29, 0.4) 0 6px, transparent 6px 12px);
}

.warranty-pill-connector span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary-red, #FF131D);
    color: var(--primary-red, #FF131D);
    font-weight: 900;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warranty-pill-connector span::before {
    content: "&";
}

/* ---------- Shield Badge ---------- */
.warranty-badge-shield {
    position: absolute;
    top: -22px;
    right: 26px;
    width: 70px;
    height: 84px;
    background: linear-gradient(135deg, #ffd84d 0%, #ffb300 100%);
    clip-path: path("M35 0 L70 14 L70 48 Q70 70 35 84 Q0 70 0 48 L0 14 Z");
    color: #8a0000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(184, 0, 10, 0.25);
    z-index: 3;
}

.warranty-badge-shield i {
    font-size: 22px;
    margin-bottom: 2px;
}

.warranty-badge-shield span {
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .warranty-slogan-banner {
        padding: 40px 30px 30px 160px;
        gap: 24px;
    }
    .warranty-slogan-title {
        font-size: 30px;
    }
    .warranty-sticker {
        width: 150px;
        height: 150px;
        left: -24px;
    }
}

@media (max-width: 767px) {
    .warranty-slogan-section {
        padding: 100px 0 30px;
    }

    .warranty-slogan-banner {
        flex-direction: column;
        padding: 100px 22px 28px;
        text-align: center;
        gap: 20px;
    }

    .warranty-slogan-content {
        text-align: center;
    }

    .warranty-sticker {
        top: -60px;
        left: 50%;
        transform: translateX(-50%) rotate(-6deg);
        width: 130px;
        height: 130px;
    }

    @keyframes warrantyStickerWobble {
        0%, 100% { transform: translateX(-50%) rotate(-6deg) scale(1); }
        25%      { transform: translateX(-50%) rotate(-2deg) scale(1.03); }
        50%      { transform: translateX(-50%) rotate(-8deg) scale(1.05); }
        75%      { transform: translateX(-50%) rotate(-4deg) scale(1.02); }
    }

    .warranty-sticker-main {
        font-size: 24px;
    }

    .warranty-sticker-icon {
        font-size: 22px;
    }

    .warranty-slogan-title {
        font-size: 26px;
    }

    .warranty-pills {
        justify-content: center;
    }

    .warranty-pill-connector {
        width: 2px;
        height: 24px;
        background: repeating-linear-gradient(180deg, rgba(255, 19, 29, 0.4) 0 6px, transparent 6px 12px);
    }

    .warranty-badge-shield {
        top: -20px;
        right: 18px;
        width: 56px;
        height: 68px;
    }

    .warranty-badge-shield i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .warranty-pill {
        width: 100%;
        justify-content: center;
        padding: 10px 20px;
    }
    .warranty-slogan-title {
        font-size: 22px;
    }
    .warranty-eyebrow {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* ========================================
   Features Section
======================================== */
.features-section {
    background-color: var(--white);
    padding: 80px 0 60px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-gray);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-red);
}

.feature-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    font-size: 2.2rem;
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--secondary-blue) 0%, var(--secondary-blue-dark) 100%);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--medium-gray);
}

/* ========================================
   About Section
======================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--lighter-gray);
}

.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-red);
    border-radius: var(--border-radius-lg);
    z-index: -1;
}

.experience-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    padding: 30px 35px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding-left: 40px;
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.about-list li i {
    color: var(--primary-red);
    margin-right: 15px;
    font-size: 1.3rem;
}

/* ========================================
   Experience Stats Section - Modern Cards
======================================== */
.experience-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.experience-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.experience-stats-section .section-header {
    position: relative;
    z-index: 2;
}

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

.experience-stats-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.experience-stats-section .section-divider {
    background: var(--primary-red);
}

/* Stats Cards */
.stats-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    z-index: 1;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    z-index: -1;
}

.stats-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.stats-card:hover::before {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Gradient Variations */
.stats-card-gradient-1 .stats-card-icon {
    background: linear-gradient(135deg, #FF131D 0%, #FF6B6B 100%);
}

.stats-card-gradient-2 .stats-card-icon {
    background: linear-gradient(135deg, #2070BF 0%, #00D4FF 100%);
}

.stats-card-gradient-3 .stats-card-icon {
    background: linear-gradient(135deg, #FF9F43 0%, #FFD93D 100%);
}

.stats-card-gradient-4 .stats-card-icon {
    background: linear-gradient(135deg, #6C5CE7 0%, #A29BFE 100%);
}

/* Stats Card Icon */
.stats-card-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.stats-card:hover .stats-card-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Stats Card Content */
.stats-card-content {
    position: relative;
    z-index: 2;
}

.stats-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.stats-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats Card Decoration */
.stats-card-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.stats-card:hover .stats-card-decoration {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Responsive Styles for Stats Cards */
@media (max-width: 991.98px) {
    .experience-stats-section {
        padding: 80px 0;
    }

    .stats-card {
        padding: 35px 25px;
    }

    .stats-card-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .stats-number {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {
    .experience-stats-section {
        padding: 60px 0;
    }

    .stats-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .stats-card-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .stats-number {
        font-size: 2.5rem;
    }

    .stats-label {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .stats-card {
        padding: 25px 15px;
    }

    .stats-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .stats-number {
        font-size: 2rem;
    }

    .stats-label {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
}

/* Why Choose Us Boxes (Legacy) */
.why-choose-box {
    background: var(--white);
    padding: 35px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--primary-red);
}

.why-choose-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.why-choose-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
}

.why-choose-box h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.why-choose-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ========================================
   Why Choose Us - Minimal Modern
======================================== */
.why-choose-modern {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

/* Modern Feature Card */
.modern-feature-card {
    background: var(--white);
    padding: 40px 35px;
    border-radius: 16px;
    height: 100%;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-gray);
    overflow: hidden;
}

.modern-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Animated Bottom Line */
.modern-feature-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, var(--secondary-blue) 100%);
    transition: width 0.4s ease;
}

.modern-feature-card:hover .modern-feature-line {
    width: 100%;
}

/* Modern Feature Icon */
.modern-feature-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: 16px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
}

.modern-feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: all 0.4s ease;
}

.modern-feature-card:hover .modern-feature-icon {
    background: var(--primary-red);
    transform: scale(1.05);
}

.modern-feature-card:hover .modern-feature-icon i,
.why-choose-modern .modern-feature-card:hover .modern-feature-icon i,
.row > div:nth-child(1) .modern-feature-card:hover .modern-feature-icon i,
.row > div:nth-child(2) .modern-feature-card:hover .modern-feature-icon i,
.row > div:nth-child(3) .modern-feature-card:hover .modern-feature-icon i,
.row > div:nth-child(4) .modern-feature-card:hover .modern-feature-icon i,
.row > div:nth-child(5) .modern-feature-card:hover .modern-feature-icon i,
.row > div:nth-child(6) .modern-feature-card:hover .modern-feature-icon i {
    color: var(--white) !important;
}

/* Card Variations - Alternating Icon Colors */
.modern-feature-card:nth-child(1) .modern-feature-icon i,
.row > div:nth-child(1) .modern-feature-icon i {
    color: var(--primary-red);
}

.row > div:nth-child(1) .modern-feature-card:hover .modern-feature-icon {
    background: var(--primary-red);
}

.row > div:nth-child(2) .modern-feature-icon i {
    color: var(--secondary-blue);
}

.row > div:nth-child(2) .modern-feature-card:hover .modern-feature-icon {
    background: var(--secondary-blue);
}

.row > div:nth-child(2) .modern-feature-line {
    background: linear-gradient(90deg, var(--secondary-blue) 0%, #00D4FF 100%);
}

.row > div:nth-child(3) .modern-feature-icon i {
    color: #6C5CE7;
}

.row > div:nth-child(3) .modern-feature-card:hover .modern-feature-icon {
    background: #6C5CE7;
}

.row > div:nth-child(3) .modern-feature-line {
    background: linear-gradient(90deg, #6C5CE7 0%, #a29bfe 100%);
}

.row > div:nth-child(4) .modern-feature-icon i {
    color: #00B894;
}

.row > div:nth-child(4) .modern-feature-card:hover .modern-feature-icon {
    background: #00B894;
}

.row > div:nth-child(4) .modern-feature-line {
    background: linear-gradient(90deg, #00B894 0%, #55efc4 100%);
}

.row > div:nth-child(5) .modern-feature-icon i {
    color: #FF9F43;
}

.row > div:nth-child(5) .modern-feature-card:hover .modern-feature-icon {
    background: #FF9F43;
}

.row > div:nth-child(5) .modern-feature-line {
    background: linear-gradient(90deg, #FF9F43 0%, #ffd93d 100%);
}

.row > div:nth-child(6) .modern-feature-icon i {
    color: #E84393;
}

.row > div:nth-child(6) .modern-feature-card:hover .modern-feature-icon {
    background: #E84393;
}

.row > div:nth-child(6) .modern-feature-line {
    background: linear-gradient(90deg, #E84393 0%, #fd79a8 100%);
}

/* Modern Feature Content */
.modern-feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.modern-feature-card:hover .modern-feature-content h4 {
    color: var(--dark-gray);
}

.modern-feature-content p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Responsive - Tablet */
@media (max-width: 991.98px) {
    .why-choose-modern {
        padding: 80px 0;
    }

    .modern-feature-card {
        padding: 35px 30px;
    }

    .modern-feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .modern-feature-icon i {
        font-size: 1.5rem;
    }

    .modern-feature-content h4 {
        font-size: 1.15rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 767.98px) {
    .why-choose-modern {
        padding: 60px 0;
    }

    .modern-feature-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }

    .modern-feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 20px;
    }

    .modern-feature-icon i {
        font-size: 1.4rem;
    }

    .modern-feature-content h4 {
        font-size: 1.1rem;
    }

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

@media (max-width: 575.98px) {
    .modern-feature-card {
        padding: 25px 20px;
    }

    .modern-feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .modern-feature-icon i {
        font-size: 1.25rem;
    }

    .modern-feature-content h4 {
        font-size: 1.05rem;
    }
}

/* ========================================
   Services Section
======================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--white);
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .row>[class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background: var(--white);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card-image {
    position: relative;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition);
}

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

.service-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.service-card-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background-color: var(--secondary-blue);
    transform: rotate(360deg);
}

.service-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    transition: var(--transition);
    flex-shrink: 0;
}

.service-card:hover .service-card-content h4 {
    color: var(--primary-red);
}

/* Service Text with Read More/Less */
.service-card-content .service-text {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Short text visible by default, full text hidden */
.service-card-content .service-text .short-text {
    display: inline;
}

.service-card-content .service-text .full-text {
    display: none;
}

/* When expanded: hide short, show full */
.service-card-content .service-text.expanded .short-text {
    display: none;
}

.service-card-content .service-text.expanded .full-text {
    display: inline;
}

/* Read More Button */
.service-card-content .read-more-btn {
    display: block;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-content .read-more-btn:hover {
    color: var(--primary-red-dark);
    text-decoration: underline;
}

.service-card-content>.btn {
    padding: 10px 25px;
    font-size: 0.85rem;
    margin-top: auto;
    display: block;
    width: 100%;
    text-align: center;
}

/* Service Card Alt Style (Grid overlay) */
.service-card-alt {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 300px;
    transition: var(--transition);
}

.service-card-alt:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card-alt img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-card-alt .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(45, 45, 45, 0.95) 0%, rgba(45, 45, 45, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: var(--transition);
}

.service-card-alt:hover .overlay {
    background: linear-gradient(to top, rgba(255, 19, 29, 0.95) 0%, rgba(255, 19, 29, 0.7) 100%);
}

.service-card-alt .service-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.service-card-alt:hover .service-icon {
    background-color: var(--white);
    color: var(--primary-red);
}

.service-card-alt h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card-alt p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.service-card-alt:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Gallery Section
======================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--light-gray);
}

/* Gallery Filter Buttons */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid var(--border-gray);
    background-color: var(--white);
    color: var(--dark-gray);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-btn.active {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    color: var(--white);
}

/* Gallery Item Wrapper for filtering */
.gallery-item-wrapper {
    transition: all 0.3s ease;
}

@media (max-width: 767.98px) {
    .gallery-filter {
        gap: 8px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 575.98px) {
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 19, 29, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay a,
.gallery-overlay .gallery-zoom-btn {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 1.4rem;
    transform: scale(0);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.gallery-item:hover .gallery-overlay a,
.gallery-item:hover .gallery-overlay .gallery-zoom-btn {
    transform: scale(1);
}

.gallery-overlay a:hover,
.gallery-overlay .gallery-zoom-btn:hover {
    background-color: var(--primary-red);
    color: var(--white);
}

/* ========================================
   Testimonials Section
======================================== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(255, 19, 29, 0.9) 100%),
        url('../images/service-spray.jpg') center/cover no-repeat fixed;
    color: var(--white);
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
    font-size: 5rem;
    color: var(--primary-red-light);
    line-height: 1;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
    color: var(--white);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-author img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-red);
    margin-bottom: 15px;
}

.testimonial-author h5 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--primary-red-light);
    font-size: 0.95rem;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 12px;
}

/* Testimonials Slider */
#testimonialSlider {
    position: relative;
    padding-bottom: 60px;
}

#testimonialSlider .carousel-inner {
    padding: 20px 0;
}

#testimonialSlider .carousel-control-prev,
#testimonialSlider .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
}

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

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

#testimonialSlider .carousel-control-prev:hover,
#testimonialSlider .carousel-control-next:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-50%) scale(1.1);
}

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

#testimonialSlider .carousel-indicators {
    bottom: 0;
    margin-bottom: 0;
}

#testimonialSlider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#testimonialSlider .carousel-indicators button.active {
    background-color: var(--primary-red);
    transform: scale(1.2);
}

/* Multiple Testimonials */
.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition);
    border-top: 4px solid var(--primary-red);
}

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

.testimonial-item .quote-icon {
    color: var(--primary-red);
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin-bottom: 25px;
}

.testimonial-item .author {
    display: flex;
    align-items: center;
}

.testimonial-item .author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-item .author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-item .author-info span {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* ========================================
   Estimate / Quote Form Section
======================================== */
.estimate-section {
    padding: 100px 0;
    background-color: var(--white);
}

.estimate-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.estimate-info p {
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-item .icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    color: var(--primary-red);
    border-radius: 50%;
    font-size: 1.4rem;
    margin-right: 20px;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-info-item:hover .icon {
    background-color: var(--primary-red);
    color: var(--white);
}

.contact-info-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-info-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.estimate-form {
    background-color: var(--light-gray);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.estimate-form h4 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: center;
}

.form-control,
.form-select {
    border: 1px solid var(--border-gray);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
    font-family: 'Poppins', sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px rgba(255, 19, 29, 0.1);
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark-gray);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

/* ========================================
   Call to Action Section
======================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-dark) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    margin: 0 10px;
}

/* ========================================
   Contact Section / Map
======================================== */
.contact-section {
    padding: 100px 0;
}

.map-wrapper {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   Footer
======================================== */
.footer {
    background-color: var(--dark-gray);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget h5 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--primary-red);
}

.footer-logo img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-widget p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 8px;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: var(--primary-red);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact li i {
    color: var(--primary-red);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.1rem;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    font-size: 1.1rem;
}

.footer-social a:hover {
    background-color: var(--primary-red);
    transform: translateY(-5px);
    color: var(--white);
}

.footer-bottom {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-bottom a {
    color: var(--primary-red);
}

/* ========================================
   Back to Top Button
======================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    cursor: pointer;
    border: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-red-dark);
    transform: translateY(-5px);
    color: var(--white);
}

/* ========================================
   Preloader
======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-gray);
    border-top: 4px solid var(--primary-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* ========================================
   Responsive Styles
======================================== */

/* Extra Large Devices (Large desktops, 1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-stats {
        gap: 30px;
    }

    .hero-stats-bar .hero-stats {
        gap: 50px;
    }

    .hero-stats-bar .hero-stat::after {
        right: -25px;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 100px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-stats {
        flex-wrap: wrap;
        gap: 25px;
    }

    .hero-stat .number {
        font-size: 2.5rem;
    }

    /* Hero Carousel Tablet */
    .hero-slide {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 180px;
    }

    .hero-slide-content {
        padding: 40px 0;
    }

    .hero-control {
        opacity: 1;
    }

    .hero-control.carousel-control-prev {
        left: 10px;
    }

    .hero-control.carousel-control-next {
        right: 10px;
    }

    .hero-control-icon {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .hero-stats-bar .hero-stats {
        gap: 30px;
    }

    .hero-stats-bar .hero-stat .number {
        font-size: 2.2rem;
    }

    .hero-stats-bar .hero-stat::after {
        right: -15px;
        height: 40px;
    }

    .hero-indicators {
        bottom: 160px;
    }

    .hero-carousel-section .scroll-indicator {
        bottom: 150px;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

    .navbar-nav .nav-link::after {
        bottom: 8px;
        left: 0;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 40px;
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 15px;
        display: inline-block;
    }

    .navbar-quote-wrapper {
        margin-top: 15px;
        margin-left: 0;
        width: 100%;
    }

    .nav-quote-btn {
        width: 100%;
        text-align: center;
    }

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

    .about-image-wrapper {
        margin-bottom: 60px;
    }

    .about-image::before {
        top: -15px;
        left: -15px;
    }

    .experience-badge {
        bottom: -15px;
        right: 15px;
        padding: 25px;
    }

    .about-content {
        padding-left: 0;
    }

    .estimate-info {
        margin-bottom: 50px;
    }

    .estimate-form {
        padding: 40px 30px;
    }

    #testimonialSlider .carousel-control-prev,
    #testimonialSlider .carousel-control-next {
        width: 50px;
        height: 50px;
    }

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

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

    .testimonial-card {
        padding: 40px 30px;
    }

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

/* Small Devices (Landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .section-padding {
        padding: 60px 0;
    }

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

    /* Hide Top Header Bar on mobile */
    .top-header {
        display: none;
    }

    /* Logo size for mobile */
    .navbar-brand img {
        height: 70px;
        max-width: 180px;
        padding: 5px 10px;
    }

    /* Reduce navbar padding on mobile */
    .main-navbar {
        padding: 0;
    }

    .main-navbar .container {
        padding-top: 5px;
        padding-bottom: 5px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-brand {
        padding: 0;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    /* Hero Carousel Mobile */
    .hero-slide {
        padding: 100px 0 200px;
    }

    .hero-slide-content {
        text-align: center;
        padding: 30px 15px;
    }

    .hero-slide-content .hero-buttons {
        align-items: center;
    }

    .hero-control {
        display: none;
    }

    .hero-indicators {
        bottom: 180px;
    }

    .hero-indicators button {
        width: 35px;
        height: 4px;
        margin: 0 4px;
    }

    .hero-stats-bar {
        padding: 30px 0 20px;
    }

    .hero-stats-bar .hero-stats {
        gap: 20px;
        justify-content: space-around;
    }

    .hero-stats-bar .hero-stat {
        flex: 0 0 45%;
        margin-bottom: 15px;
    }

    .hero-stats-bar .hero-stat::after {
        display: none;
    }

    .hero-stats-bar .hero-stat .number {
        font-size: 1.8rem;
    }

    .hero-stats-bar .hero-stat .label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-carousel-section .scroll-indicator {
        display: none;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .experience-badge {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 20px auto 0;
        display: inline-block;
    }

    .about-image-wrapper {
        text-align: center;
        padding: 0;
    }

    .about-image::before {
        display: none;
    }

    .service-card-alt {
        height: 260px;
    }

    /* Service Cards Tablet */
    .service-card-image {
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }

    .service-card-content {
        padding: 20px;
    }

    .gallery-item img {
        height: 220px;
    }

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

    .testimonial-card {
        padding: 35px 25px;
    }

    #testimonialSlider .carousel-control-prev,
    #testimonialSlider .carousel-control-next {
        width: 40px;
        height: 40px;
        top: auto;
        bottom: 60px;
        transform: none;
    }

    #testimonialSlider .carousel-control-prev {
        left: calc(50% - 60px);
    }

    #testimonialSlider .carousel-control-next {
        right: calc(50% - 60px);
    }

    .estimate-form {
        padding: 30px 20px;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section .btn {
        margin: 5px;
        width: 100%;
    }

    .footer {
        padding: 60px 0 0;
    }

    .page-banner {
        padding: 100px 0 60px;
    }

    .page-banner h1 {
        font-size: 2.2rem;
    }
}

/* Extra Small Devices (Portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.85rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 15px 30px;
    }

    /* Logo size for extra small devices */
    .navbar-brand img {
        height: 60px;
        max-width: 160px;
        padding: 4px 8px;
    }

    /* Reduce navbar padding on extra small devices */
    .main-navbar .container {
        padding-top: 15px;
        padding-bottom: 15px;
        padding-left: 8px;
        padding-right: 8px;
    }

    .navbar-brand {
        padding: 0;
    }

    .service-card-alt {
        height: 240px;
    }

    /* Service Cards Mobile */
    .services-section .row>[class*="col-"] {
        margin-bottom: 20px;
    }

    .service-card-image {
        height: 180px;
        min-height: 180px;
        max-height: 180px;
    }

    .service-card-content {
        padding: 18px;
    }

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

    .service-text-wrapper .service-text {
        font-size: 0.9rem;
    }

    .gallery-item img {
        height: 200px;
    }

    .contact-info-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 15px;
        background: var(--light-gray);
        border-radius: var(--border-radius);
        margin-bottom: 15px;
    }

    .contact-info-item .icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        font-size: 1.1rem;
        margin-right: 15px;
        margin-bottom: 0;
    }

    .contact-info-item h5 {
        font-size: 0.95rem;
        margin-bottom: 3px;
    }

    .contact-info-item p {
        font-size: 0.85rem;
        line-height: 1.4;
        word-break: break-word;
    }

    .estimate-info {
        margin-bottom: 40px;
    }

    .estimate-info h3 {
        font-size: 1.5rem;
    }

    .hero-stat {
        flex: 0 0 50%;
    }

    /* Hero Carousel Extra Small */
    .hero-slide {
        padding: 90px 0 220px;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 18px;
    }

    .hero-slide-content .hero-title {
        font-size: 1.7rem;
    }

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

    .hero-slide-content .hero-text {
        font-size: 0.95rem;
    }

    .hero-indicators {
        bottom: 200px;
    }

    .hero-stats-bar .hero-stat .number {
        font-size: 1.5rem;
    }
}


/* Trust Images */
.trust-image {
    max-width: 120px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.trust-card:hover .trust-image {
    transform: scale(1.05);
}

/* Trust Title */
.trust-title {
    color: #1f2937;
    font-weight: 600;
    font-size: 18px;
    margin: 0;
}

/* Trust Arrow */
.trust-arrow {
    color: #6b7280;
    font-size: 18px;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-arrow {
    color: #374151;
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trust-card {
        margin-bottom: 1rem;
    }

    .bbb-badge,
    .homestars-badge {
        padding: 10px 16px;
        font-size: 14px;
    }

    .google-text {
        font-size: 20px;
    }

    .trust-title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 2rem 1rem;
    }

    .trust-badge {
        height: 70px;
    }

    .bbb-badge,
    .homestars-badge {
        padding: 8px 12px;
    }

    .google-text {
        font-size: 18px;
    }
}

/* Call button */

#call {
    position: fixed;
    z-index: 99;
    left: 10px;
    bottom: 2px;
}

@media screen and (max-width:1920px) {
    .div-only-mobile {
        visibility: hidden
    }
}

@media screen and (max-width:906px) {
    .div-only-mobile {
        visibility: visible
    }
}