/* Performance Optimizations */
* {
    box-sizing: border-box;
}

/* Prevent layout shift */
img {
    max-width: 100%;
    height: auto;
}

/* Optimize font rendering and layout */
html {
    font-display: swap;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%; /* Ensure html takes full width */
    margin: 0;
    padding: 0;
}

/* FOUC Prevention - Initial States */
.hero-content {
    opacity: 0;
    transform: translateX(-30px);
}

.hero-image {
    opacity: 0;
    transform: translateX(30px);
}

.trust-badges .badge {
    opacity: 0;
    transform: translateY(10px);
}

.dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
}

/* GPU acceleration for smooth animations */
.hero-content, .step, .review-card, .cta-button, .guarantee-item, .trust-badges .badge {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

body {
    overflow-x: hidden; /* Keep overflow-x hidden on body */
    margin: 0;
    padding: 0;
    width: 100%; /* Explicitly set body width to 100% */
}

/* Ensure all direct children of body are contained */
body > * {
    max-width: 100%;
    overflow-x: hidden;
    display: block; /* Ensure block-level behavior */
    width: 100%; /* Ensure full width */
}

/* Ensure main content sections are properly centered */
main {
    width: 100%;
    margin: 0 auto;
    display: block;
}

:root {
    --primary-blue: #2196F3;
    --secondary-orange: #FF914D;
    --light-gray-bg: #F5F5F5;
    --text-color: #333;
    --header-font: 'Merriweather', serif;
    --body-font: 'Open Sans', sans-serif;
}

body {
    font-family: var(--body-font);
    /* margin and padding are now on html */
    box-sizing: border-box;
    color: var(--text-color);
    background-color: #fff;
    word-break: break-word; /* Ensure long words break to prevent overflow */
}

/* Ensure smooth loading and prevent FOUC */
body.loading .hero-content,
body.loading .hero-image,
body.loading .trust-badges .badge {
    opacity: 0;
    transform: translateY(20px);
}

/* Remove loading class after DOM is ready */
body:not(.loading) .hero-content,
body:not(.loading) .hero-image,
body:not(.loading) .trust-badges .badge {
    animation-play-state: running;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    color: var(--primary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative; /* Ensure proper positioning */
}

a {
    text-decoration: none;
    color: var(--primary-blue);
}

a:hover {
    color: var(--secondary-orange);
}

/* Header */
.main-header {
    background-color: #fff;
    padding: 19px 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2); /* Increased shadow for better visibility */
    z-index: 1000; /* Ensure header is on top */
    position: relative; /* Needed for z-index to work */
    width: 100%;
    margin: 0 auto;
    overflow: visible;
}

.main-header .container {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: visible;
}

.main-header .logo {
    flex-shrink: 0;
}

.main-header .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    overflow: visible;
}

.main-header .desktop-call-btn {
    flex-shrink: 0;
}

.main-header .logo img {
    height: 60px; /* Adjust as needed */
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    display: flex; /* Changed to flex */
    align-items: center; /* Added for vertical alignment */
    gap: 4px; /* Added to maintain spacing for dropdown arrow */
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-orange);
    transition: width 0.3s ease-in-out;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Desktop Call Button */
.desktop-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--primary-blue), #1976D2);
    color: white;
    padding: 12px 40px; /* Increased from 30px to 40px for better text display */
    border-radius: 25px;
    font-weight: 600;
    font-size: 1em;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
    position: relative;
    overflow: hidden;
    white-space: nowrap; /* Prevent text wrapping */
}

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

.desktop-call-btn:hover::before {
    left: 100%;
}

.desktop-call-btn:hover {
    background: linear-gradient(45deg, var(--secondary-orange), #FF6B35);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 145, 77, 0.4);
    color: white;
}

.desktop-call-btn svg {
    transition: transform 0.3s ease;
}

.desktop-call-btn:hover svg {
    transform: scale(1.1);
}

/* Desktop Dropdown Styles */
.dropdown {
    position: relative;
    overflow: visible;
}

.dropdown-toggle {
    font-weight: 600;
    padding: 5px 0;
    position: relative;
    /* Removed display: inline-flex; as it's now handled by .main-nav ul li a */
    align-items: center;
    gap: 4px;
    color: var(--primary-blue);
    text-decoration: none;
}

.dropdown-toggle::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-orange);
    transition: width 0.3s ease-in-out;
}

.dropdown:hover .dropdown-toggle::after {
    width: 100%;
}

.dropdown-arrow {
    font-size: 0.65em;
    transition: transform 0.3s ease;
    color: inherit;
    margin-left: 1px;
    line-height: 1;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    min-width: 220px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15), 0 4px 15px rgba(33, 150, 243, 0.08);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99999;
    list-style: none;
    border: 1px solid rgba(33, 150, 243, 0.1);
    display: block !important;
    flex-direction: column !important;
    backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.dropdown-menu li {
    margin: 0 !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    flex: none !important;
}

.dropdown-menu li a {
    display: block;
    padding: 14px 24px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
    position: relative;
    border-radius: 8px;
    margin: 2px 8px;
}

.dropdown-menu li a::after {
    display: none;
}

.dropdown-menu li a:hover {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: white;
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
}

.dropdown-menu li:not(:last-child) {
    border-bottom: none;
}

/* Add subtle icons to dropdown items */
.dropdown-menu li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #2196F3;
    border-radius: 50%;
    margin-right: 12px;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.dropdown-menu li a:hover::before {
    background: white;
    opacity: 1;
    transform: scale(1.2);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0 70px; /* Reduced top padding */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: left;
    flex-wrap: wrap;
    min-height: 60vh; /* Even further reduced min-height */
    overflow: hidden;
    width: 100%; /* Ensure hero section takes full width */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.9) 0%, rgba(255, 145, 77, 0.8) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-direction: row; /* Text on left, image on right for desktop */
}

.hero-content {
    flex: 1.4;
    min-width: 320px;
    display: flex; /* Enable flexbox */
    flex-direction: column; /* Stack children vertically */
    align-items: flex-start; /* Align items to the left for desktop */
    animation: fadeInLeft 1.2s ease-out 0.2s both;
}

.hero-content h1 {
    font-size: 2.8em;
    font-weight: 800;
    margin-bottom: 12px;
    margin-top: 0; /* Reset margin-top for desktop */
    line-height: 1.3; /* Increased line height for better readability */
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 .highlight {
    color: #FFE082;
    position: relative;
}

.hero-content h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #FFE082, #FF914D);
    border-radius: 2px;
}

.hero-content .subheadline {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.4;
}

.hero-content .services-offered {
    font-size: 1.05em;
    font-weight: 600;
    color: #FFE082;
    margin-bottom: 18px;
    padding: 12px 0;
    border-top: 2px solid rgba(255, 224, 130, 0.3);
    border-bottom: 2px solid rgba(255, 224, 130, 0.3);
}

.pricing-highlight {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 100%; /* Ensure it doesn't exceed its container */
}

.original-price {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-weight: 500;
}

.discounted-price {
    font-size: 1.8em;
    color: #FFE082;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-text {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Pricing Card Section */
.pricing-card-section {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card-content {
    padding: 25px 20px;
    text-align: center;
}

.pricing-card-icon {
    font-size: 2.2em;
    margin-bottom: 12px;
    display: block;
}

.pricing-card h3 {
    font-family: var(--header-font);
    font-size: 1.4em;
    color: var(--text-color);
    margin-bottom: 18px;
    line-height: 1.3;
}

.pricing-details {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-blue), #1976D2);
    border-radius: 12px;
    color: white;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.pricing-card .original-price {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-card .discounted-price {
    font-size: 1.8em;
    color: #FFE082;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.pricing-description {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.pricing-features .feature {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(33, 150, 243, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(33, 150, 243, 0.2);
    font-size: 0.85em;
}

.feature-icon {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1em;
}

.pricing-features .feature span:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.trust-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: nowrap;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.85em;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    flex-shrink: 1;
    animation: fadeInUp 0.8s ease-out both;
}

.trust-badges .badge:nth-child(1) { animation-delay: 0.6s; }
.trust-badges .badge:nth-child(2) { animation-delay: 0.7s; }
.trust-badges .badge:nth-child(3) { animation-delay: 0.8s; }
.trust-badges .badge:nth-child(4) { animation-delay: 0.9s; }

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

.trust-badges .badge-icon {
    font-size: 1em;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the left */
    gap: 15px; /* Adjust gap as needed */
}



/* No Fix Guarantee Badge */
.no-fix-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4CAF50, #81C784);
    color: white;
    padding: 14px 33px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05em;
    margin-top: 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    margin-left: 0;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure it takes full width up to max-width */
    max-width: 320px; /* Increased max-width to fit "No Fix = No Charges" in one line */
}

.no-fix-guarantee::before {
    content: '';
    position: absolute;
    top: 0; /* From cta-button */
    left: -100%; /* From cta-button */
    width: 100%; /* From cta-button */
    height: 100%; /* From cta-button */
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); /* From cta-button */
    transition: left 0.5s ease; /* From cta-button */
}

.no-fix-guarantee:hover::before {
    left: 100%; /* From cta-button */
}

.no-fix-guarantee:hover {
    background: linear-gradient(135deg, #4CAF50, #81C784); /* Keep original no-fix-guarantee background */
    transform: translateY(-3px); /* From cta-button */
    box-shadow: 0 15px 35px rgba(255, 145, 77, 0.6); /* From cta-button */
}

.guarantee-icon {
    font-size: 1.1em; /* From cta-button's phone-icon */
}

.guarantee-text {
    /* Removed specific text styles as per cta-button design */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words if needed */
    overflow-wrap: break-word; /* Additional support for text wrapping */
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-image {
    flex: 0.8;
    min-width: 280px;
    text-align: right;
    animation: fadeInRight 1.2s ease-out 0.4s both;
    padding-top: 50px; /* Added padding for desktop only */
}



.hero-image img {
    max-width: 100%;
    width: 100%; /* Ensure it takes full width of its parent */
    height: auto;
    max-height: 580px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(45deg, #FF914D, #FF6B35);
    color: #fff;
    padding: 14px 45px; /* Increased from 33px to 45px for better text display */
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.05em;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 145, 77, 0.4); /* Adjusted shadow for orange button */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure it takes full width up to max-width */
    max-width: 320px; /* Increased from 250px to 320px for longer text */
    white-space: nowrap; /* Prevent text wrapping */
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent); /* Brighter shine */
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}


.cta-button:hover {
    background: linear-gradient(45deg, #e67e32, #e55a2b); /* Keep original cta-button hover background */
    transform: translateY(-3px); /* From cta-button */
    box-shadow: 0 15px 35px rgba(255, 145, 77, 0.6); /* From cta-button */
}

.cta-button .phone-icon {
    font-size: 1.2em; /* From no-fix-guarantee's guarantee-icon */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)); /* From no-fix-guarantee's guarantee-icon */
}

/* Floating Elements */
.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

/* Smooth Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        gap: 40px;
        flex-direction: row; /* Maintain desktop layout on tablets */
    }
    
    .hero-content h1 {
        font-size: 3.2em;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 15px; /* Reduced top padding for mobile hero section */
        padding-bottom: 100px;
        text-align: center;
        min-height: auto; /* Allow height to be determined by content */
    }
    
    .hero .container {
        flex-direction: column-reverse !important; /* Reverse order: image first, then content on mobile */
        gap: 0px;
    }
    
    .hero-content {
        min-width: unset;
        text-align: center;
        margin-top: 0; /* Remove extra gap between image and content on mobile */
        align-items: center; /* Center items horizontally on mobile */
        max-width: 100%; /* Ensure hero content doesn't overflow */
        overflow: hidden; /* Hide any overflowing content */
        /* Update animation for mobile */
        animation: fadeInUp 1.2s ease-out 0.2s both;
    }
    
    .hero-content h1 {
        font-size: 2.8em;
        margin-bottom: 4px; /* Minimal gap below title on mobile */
        margin-top: auto; /* Push title up to reduce gap with image on mobile */
    }
    
    .hero-content .subheadline {
        font-size: 1.2em;
    }
    
    .hero-image {
        min-width: unset;
        max-width: 400px;
        margin: 0 auto; /* Center the image container */
        width: fit-content; /* Container fits the image size exactly */
        border-radius: 15px; /* Match the image border radius */
        overflow: hidden; /* Ensure border radius is applied */
        /* Update animation for mobile */
        animation: fadeInUp 1.2s ease-out 0.1s both;
        padding: 0; /* Remove all padding on mobile */
        text-align: center; /* Center align for mobile */
        line-height: 0; /* Remove line-height spacing */
    }
    
    .hero-image img {
        display: block; /* Remove inline spacing */
        border-radius: 0; /* Remove border-radius from img since container handles it */
    }
    
    .pricing-highlight {
        flex-direction: column; /* Keep column for pricing-highlight itself */
        justify-content: center;
        align-items: center;
        gap: 8px; /* Reduced gap for overall pricing-highlight */
        padding: 18px 20px; /* Adjust padding to match container */
        margin-bottom: 25px;
        width: 100%; /* Ensure it takes full width up to max-width */
        max-width: 400px; /* Set max-width equal to hero image */
        margin-left: auto; /* Center the card */
        margin-right: auto; /* Center the card */
    }

    .price-display-mobile {
        display: flex; /* Make prices inline */
        align-items: center;
        gap: 12px; /* Gap between original and discounted price */
    }
    
    .discounted-price {
        font-size: 1.4em; /* Further reduced */
    }
    
    .original-price {
        font-size: 0.8em; /* Further reduced */
        text-decoration: line-through; /* Ensure strikethrough */
    }
    
    .pricing-text {
        font-size: 1em;
    }
    
    .trust-badges {
        justify-content: center;
        gap: 12px;
        margin-bottom: 25px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%; /* Ensure it takes full width */
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .trust-badges .badge {
        padding: 12px 15px;
        font-size: 0.9em;
        justify-content: center;
        min-height: 50px;
        align-items: center;
        /* Reset animation delays for mobile grid layout */
        animation-delay: 0.5s;
    }
    
    /* Stagger animation delays for mobile 2x2 grid */
    .trust-badges .badge:nth-child(1) { animation-delay: 0.5s; }
    .trust-badges .badge:nth-child(2) { animation-delay: 0.6s; }
    .trust-badges .badge:nth-child(3) { animation-delay: 0.7s; }
    .trust-badges .badge:nth-child(4) { animation-delay: 0.8s; }
    
    .trust-badges .badge-icon {
        font-size: 1.3em;
    }
    
    /* Mobile Guarantee Badge */
    .no-fix-guarantee {
        padding: 12px 20px;
        font-size: 0.95em;
        margin-top: 30px;
        margin-left: auto; /* Center align */
        margin-right: auto; /* Center align */
    }
    
    .guarantee-icon {
        font-size: 1.1em;
    }
    
    /* Pricing Card Mobile */
    .pricing-card-section {
        padding: 25px 0;
    }
    
    .pricing-card {
        margin: 0 20px;
        max-width: none;
    }
    
    .pricing-card-content {
        padding: 20px 15px;
    }
    
    .pricing-card h3 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
    
    .pricing-card-icon {
        font-size: 2em;
        margin-bottom: 10px;
    }
    
    .pricing-details {
        padding: 12px;
        margin-bottom: 18px;
    }
    
    .pricing-card .discounted-price {
        font-size: 1.6em;
    }
    
    .pricing-card .original-price {
        font-size: 0.9em;
    }
    
    .pricing-description {
        font-size: 0.9em;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .pricing-features .feature {
        padding: 10px 15px;
        gap: 8px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2em;
        margin-bottom: 15px;
    }
    
    .hero-content .subheadline {
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    
    .hero-content .services-offered {
        font-size: 1.1em;
        margin-bottom: 20px;
        padding: 12px 0;
    }
    
    .pricing-highlight {
        flex-direction: column; /* Keep column for pricing-highlight itself */
        gap: 8px;
        text-align: center;
        padding: 16px 15px; /* Adjust padding to match container */
        margin-bottom: 20px;
        width: 100%; /* Ensure it takes full width up to max-width */
        max-width: 400px; /* Set max-width equal to hero image */
        margin-left: auto; /* Center the card */
        margin-right: auto; /* Center the card */
    }

    .price-display-mobile {
        display: flex; /* Make prices inline */
        align-items: center;
        justify-content: center; /* Center the prices within their container */
        gap: 10px; /* Slightly larger gap for smaller screens */
    }
    
    .discounted-price {
        font-size: 1.5em; /* Further reduced */
        line-height: 1;
    }
    
    .original-price {
        font-size: 0.7em; /* Further reduced */
        text-decoration: line-through; /* Ensure strikethrough */
        order: unset; /* Remove order to keep it before discounted price */
    }
    
    .pricing-text {
        font-size: 0.95em;
        margin-top: 5px;
    }
    
    .trust-badges {
        grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
        gap: 8px; /* Reduced gap between badges */
        width: 100%; /* Ensure it takes full width */
        max-width: 320px; /* Adjusted max-width for better 2x2 fit */
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
    
    .trust-badges .badge {
        padding: 8px 12px; /* Reduced padding to make badges smaller */
        font-size: 0.75em; /* Smaller font size for text */
        min-height: 40px; /* Reduced min-height */
        border-radius: 20px; /* Adjusted border-radius */
        gap: 4px; /* Reduced gap between icon and text */
    }
    
    .trust-badges .badge-icon {
        font-size: 1em; /* Reduced icon size */
    }
    
    /* Small Mobile Guarantee Badge */
.no-fix-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #4CAF50, #81C784); /* Keep original background */
    color: white; /* Keep original color */
    padding: 14px 33px;
    border: none; /* From cta-button */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05em;
    margin-top: auto; /* Keep original margin-top */
    box-shadow: 0 8px 25px rgba(255, 145, 77, 0.4); /* From cta-button */
    transition: all 0.3s ease; /* From cta-button */
    position: relative;
    overflow: hidden;
    margin-left: auto; /* Center align */
    margin-right: auto; /* Center align */
}

    .cta-button .phone-icon {
        font-size: 0.9em; /* Smaller icon size */
    }

    .mobile-call-btn {
        width: 40px; /* Match header container width */
        height: 40px; /* Match header container height */
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-call-btn svg {
        width: 20px; /* Slightly larger icon for better visibility */
        height: 20px; /* Slightly larger icon for better visibility */
    }

    .mobile-nav-call {
        padding: 8px 14px; /* Smaller padding */
        font-size: 0.9em; /* Smaller font size */
    }

    .mobile-nav-call svg {
        width: 14px; /* Smaller icon */
        height: 14px; /* Smaller icon */
    }
    
    /* Pricing Card Small Mobile */
    .pricing-card-section {
        padding: 20px 0;
    }
    
    .pricing-card {
        margin: 0 15px;
    }
    
    .pricing-card-content {
        padding: 18px 12px;
    }
    
    .pricing-card h3 {
        font-size: 1.2em;
        margin-bottom: 12px;
    }
    
    .pricing-card-icon {
        font-size: 1.8em;
        margin-bottom: 10px;
    }
    
    .pricing-details {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .pricing-card .discounted-price {
        font-size: 1.4em;
    }
    
    .pricing-card .original-price {
        font-size: 0.8em;
    }
    
    .pricing-description {
        font-size: 0.85em;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .pricing-features .feature {
        padding: 8px 12px;
        gap: 6px;
        font-size: 0.8em;
    }
}

/* Page Hero Section (for inner pages like Services, About, Contact) */
.page-hero {
    background-color: var(--primary-blue);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.8em;
    margin-bottom: 10px;
}

.page-hero p {
    font-size: 1.1em;
    opacity: 0.9;
}

/* Services List Section */
.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
    gap: 30px;
    padding-bottom: 60px;
    max-width: 960px; /* Added max-width to ensure 3 columns fit */
    margin: 0 auto; /* Center the grid */
}

/* About Page Sections */
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.about-content .about-text {
    flex: 2;
    min-width: 300px;
}

.about-content .about-text h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.about-content .about-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.about-content .about-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.about-content .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.values-section {
    padding: 60px 0;
    background-color: var(--light-gray-bg);
    text-align: center;
    margin-top: 40px;
}

.values-section h2 {
    font-size: 2.2em;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

.value-item h3 {
    font-size: 1.4em;
    color: var(--secondary-orange);
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .contact-content .contact-info {
        min-width: unset;
    }

    .contact-content .contact-info h2 {
        font-size: 1.6em;
    }

    .contact-content .contact-image {
        order: -1; /* Image on top for mobile */
        margin-bottom: 20px;
        min-width: unset;
    }

    .about-content .about-image {
        order: -1; /* Image on top for mobile */
        margin-bottom: 20px;
    }

    .values-section h2 {
        font-size: 1.8em;
    }

    /* Contact Form Mobile Styles */
    .contact-form-section {
        padding: 20px !important;
        margin: 20px 0 !important;
    }

    .contact-form-row {
        grid-template-columns: 1fr !important;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px !important; /* Prevents zoom on iOS */
    }

    .contact-form button {
        padding: 12px 20px !important;
        font-size: 15px !important;
    }

    /* Contact Page Info Boxes Mobile */
    .contact-pricing-info,
    .contact-business-info {
        margin-top: 20px;
        padding: 15px;
    }

    .contact-pricing-info h4,
    .contact-business-info h4 {
        font-size: 1.2em;
    }

    .contact-pricing-info p,
    .contact-business-info p {
        font-size: 0.95em;
    }

    /* Map Section Mobile */
    .map-section {
        padding: 40px 0;
    }

    .map-section h2 {
        font-size: 1.6em;
        margin-bottom: 25px;
    }

    .map-container {
        margin: 0 15px;
        border-radius: 8px;
    }

    .map-info p {
        font-size: 1em;
        padding: 0 15px;
    }
}

.service-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.service-item h2 {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Mobile adjustments for services section */
@media (max-width: 768px) {
    .services-list {
        grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
        max-width: 600px; /* Adjust max-width for 2 columns */
    }

    .service-item img {
        width: 100px; /* 2 sizes bigger */
        height: 100px; /* 2 sizes bigger */
    }

    .service-item h2 {
        font-size: 1.1em; /* Adjusted to be 2 sizes smaller from 1.5em */
    }
}

@media (max-width: 480px) {
    .services-list {
        grid-template-columns: 1fr; /* Small mobile: 1 column */
        max-width: 300px; /* Adjust max-width for 1 column */
    }

    .service-item img {
        width: 120px; /* Even bigger for small mobile */
        height: 120px; /* Even bigger for small mobile */
    }

    .service-item h2 {
        font-size: 0.9em; /* Adjusted to be even smaller */
    }

    /* Contact Page Small Mobile */
    .contact-content {
        padding: 15px 0;
    }

    .contact-content .contact-info h2 {
        font-size: 1.4em;
    }

    .contact-form-section {
        padding: 15px !important;
        margin: 15px 0 !important;
    }

    .contact-form-section h3 {
        font-size: 1.1em;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px !important;
        font-size: 16px !important;
    }

    .contact-form button {
        padding: 10px 15px !important;
        font-size: 14px !important;
    }

    .contact-pricing-info,
    .contact-business-info {
        padding: 12px;
        margin-top: 15px;
    }

    .contact-pricing-info h4,
    .contact-business-info h4 {
        font-size: 1.1em;
    }

    .contact-pricing-info p,
    .contact-business-info p {
        font-size: 0.9em;
    }

    .map-section {
        padding: 30px 0;
    }

    .map-section h2 {
        font-size: 1.4em;
        margin-bottom: 20px;
    }

    .map-container {
        margin: 0 10px;
    }

    .map-info p {
        font-size: 0.95em;
        padding: 0 10px;
    }
}

.service-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
}

/* Contact Page Sections */
.contact-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.contact-content .contact-info {
    flex: 2;
    min-width: 300px;
}

.contact-content .contact-info h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-content .contact-info p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.contact-content .contact-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.contact-content .contact-info ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #555;
}

.contact-content .contact-info ul li strong {
    color: var(--primary-blue);
}

.contact-content .contact-image {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.contact-content .contact-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

/* Contact Form Styles */
.contact-form-section {
    background: #f8f9fa !important;
    padding: 30px !important;
    border-radius: 10px !important;
    margin: 30px 0 !important;
}

.contact-form-section h3 {
    color: #2196F3 !important;
    margin-bottom: 20px !important;
}

.contact-form {
    display: grid !important;
    gap: 15px !important;
}

.contact-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 15px !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 12px !important;
    border: 1px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.contact-form textarea {
    resize: vertical !important;
}

.contact-form button {
    background: linear-gradient(45deg, #2196F3, #1976D2) !important;
    color: white !important;
    padding: 15px 30px !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.contact-form button:hover {
    background: linear-gradient(45deg, #1976D2, #1565C0) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3) !important;
}

.contact-call-info {
    font-size: 14px !important;
    color: #666 !important;
    margin-top: 15px !important;
    text-align: center !important;
}

.contact-call-info a {
    color: #2196F3 !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.contact-call-info a:hover {
    text-decoration: underline !important;
}

/* Contact Page Info Boxes */
.contact-pricing-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #e6f7ff;
    border-left: 5px solid #007bff;
    border-radius: 8px;
}

.contact-pricing-info h4 {
    color: #007bff;
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-pricing-info p {
    font-size: 1.0em;
    color: #333;
    margin-bottom: 10px;
}

.contact-business-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary-blue);
    border-radius: 5px;
}

.contact-business-info h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    margin-top: 0;
}

.contact-business-info p {
    margin-bottom: 10px;
}

.contact-business-info p:last-child {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: 60px 0;
    background-color: var(--light-gray-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-blue);
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map-info {
    text-align: center;
    margin-top: 30px;
}

.map-info p {
    font-size: 1.1em;
    color: #666;
}

/* Home Page Sections */
.home-services {
    padding: 80px 0;
    background-color: #fff;
    max-width: 100%; /* Ensure section doesn't overflow */
    overflow: hidden; /* Hide any overflowing content */
}

.home-services h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Desktop: exactly 3 cards per row */
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border-color: var(--secondary-orange);
}

.service-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.service-card p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.4;
}

.services-cta {
    text-align: center;
    margin-top: 40px;
}

.secondary-button {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.secondary-button:hover {
    background-color: var(--primary-blue);
    color: #fff;
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: var(--primary-blue);
}

.how-it-works .section-subtitle {
    text-align: center;
    margin-bottom: 60px;
    font-size: 1.2em;
    color: var(--text-color);
    opacity: 0.8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
}

.step-icon {
    font-size: 3em;
    margin: 20px 0;
}

.step h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.5em;
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
    font-size: 1.1em;
}

/* Our Promise Section */
.our-guarantee {
    padding: 40px 0; /* Reduced top padding */
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1976D2 100%); /* Reverted background */
    color: white;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Use equal columns for better balance on desktop */
    gap: 50px; /* Reverted gap */
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.guarantee-text h2 {
    font-size: 2.2em;
    margin-bottom: 12px;
    color: white;
    line-height: 1.2;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.guarantee-subtitle {
    font-size: 1.1em;
    margin-bottom: 25px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    opacity: 0.9;
    line-height: 1.3;
}

.guarantee-details {
    margin-bottom: 0; /* Removed margin-bottom to prevent extra space below cards */
}

.guarantee-details .guarantee-item { /* Increased specificity */
    display: flex;
    align-items: flex-start; /* Align content to the top */
    justify-content: flex-start; /* Align content to the left */
    gap: 15px;
    margin-bottom: 20px; /* Added margin-bottom for spacing between cards */
    padding: 20px 20px 30px 20px; /* Increased top padding */
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.guarantee-icon {
    font-size: 1.6em;
    line-height: 1; /* Ensure no extra line height */
    flex-shrink: 0;
    min-width: 40px;
}

.guarantee-item div {
    flex: 0 1 auto; /* Don't stretch to fill space, size based on content */
    max-width: none; /* Remove any width restrictions */
}

.guarantee-item h4 {
    font-size: 1.05em;
    margin-top: 0; /* Ensure no top margin */
    margin-bottom: 4px;
    color: #FFE082;
    font-weight: 600;
}

.guarantee-item p {
    font-size: 0.9em;
    line-height: 1.4;
    opacity: 0.9;
    margin: 0;
}

.guarantee-details .guarantee-item:last-child {
    margin-bottom: 0; /* Remove margin-bottom from the last card */
}

.guarantee-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px; /* Added border-radius to the container */
    overflow: hidden; /* Hide overflowing content to respect border-radius */
}

.guarantee-image img {
    width: 100%;
    max-width: 100%; /* Allow image to take full width of its column */
    height: 100%; /* Make image fill the height of its container */
    object-fit: cover; /* Ensure the image covers the area, cropping if necessary */
    border-radius: 20px; /* Increased border-radius for more rounded corners */
    /* Removed box-shadow from image, now on container */
}

.guarantee-cta {
    text-align: left;
    margin-top: 50px; /* Adjusted margin-top to match grid gap for consistent spacing */
}

.guarantee-cta .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 1em;
    text-align: center;
    line-height: 1;
    min-width: 220px; /* Adjusted min-width for better button appearance */
    border-radius: 25px;
}

.guarantee-image {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px; /* Ensure container has border-radius */
    overflow: hidden; /* Ensure content is clipped to border-radius */
}

.guarantee-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

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

.guarantee-cta .cta-button {
    display: inline-block;
    background: var(--secondary-orange);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 145, 77, 0.3);
}

.guarantee-cta .cta-button:hover {
    background: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 145, 77, 0.4);
}

.trust-text {
    margin-top: 15px;
    font-size: 1em;
    opacity: 0.8;
}

.guarantee-image {
    text-align: center;
}

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

/* Customer Reviews Section */
.customer-reviews {
    padding: 80px 0;
    background: white;
}

.customer-reviews h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.5em;
    color: var(--primary-blue);
}

.reviews-header {
    text-align: center;
    margin-bottom: 60px;
}

.google-rating {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--light-gray-bg);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 1.5em;
}

.rating-text {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--text-color);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

.review-stars {
    font-size: 1.2em;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-color);
    font-style: italic;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.reviewer strong {
    color: var(--primary-blue);
    font-size: 1.1em;
}

.reviewer span {
    font-size: 0.9em;
    color: var(--secondary-orange);
    font-weight: 500;
}

.reviews-cta {
    text-align: center;
}

.secondary-button {
    display: inline-block;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-gray-bg);
    max-width: 100%; /* Ensure section doesn't overflow */
    overflow: hidden; /* Hide any overflowing content */
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
    color: var(--primary-blue);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-orange);
}

.feature-item h3 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.feature-item p {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary-blue);
    color: #fff;
    text-align: center;
    max-width: 100%; /* Ensure section doesn't overflow */
    overflow: hidden; /* Hide any overflowing content */
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-subtitle {
    font-size: 1.3em !important;
    margin-bottom: 30px !important;
    color: #FFE082;
    font-weight: 600;
}

.cta-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 25px; /* Increased top/bottom padding from 15px to 20px for better balance */
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-icon {
    font-size: 1.5em;
    margin: 0; /* Remove any default margins */
    line-height: 1; /* Consistent line height for icons */
}

.cta-highlight span:last-child {
    font-weight: 600;
    font-size: 1.1em;
    margin: 0; /* Remove any default margins */
    line-height: 1.2; /* Consistent line height */
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.business-hours {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-hours p {
    font-size: 1.1em;
    margin-bottom: 10px;
    opacity: 0.9;
}

.cta-button.primary {
    background-color: var(--secondary-orange);
    color: #fff;
}

.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-button.secondary:hover {
    background-color: #fff;
    color: var(--primary-blue);
}

/* Mobile CTA Improvements */
@media (max-width: 768px) {
    .cta-highlights {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: 35px;
    }
    
    .cta-highlight {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 15px 25px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 25px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        min-width: 280px;
        max-width: 340px;
        width: 90%;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .cta-highlight:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }
    
    .cta-highlight .highlight-icon {
        font-size: 1.8em;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    }
    
    .cta-highlight span:last-child {
        font-size: 1.1em;
        font-weight: 600;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }
    
    .business-hours {
        margin-top: 30px;
        text-align: center;
    }
    
    .business-hours p {
        font-size: 1em;
        margin-bottom: 8px;
        opacity: 0.9;
    }
}

/* ===== CLEAN FOOTER DESIGN ===== */

.main-footer {
    background: linear-gradient(145deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    margin-top: 60px;
    padding: 60px 0 30px;
    font-size: 0.95em;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* About Section */
.footer-about h3 {
    color: var(--secondary-orange);
    font-size: 1.8em;
    margin-bottom: 20px;
    font-family: var(--header-font);
}

.footer-about p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1em;
}

/* Social Media */
.footer-social h4 {
    color: #fff;
    font-size: 1.1em;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link.facebook {
    background: #1877F2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #E4405F, #FFBA26);
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.social-link svg {
    color: white;
}

/* Services Section */
.footer-services h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-services h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-orange);
}

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

.footer-services ul li {
    margin-bottom: 10px;
}

.footer-services ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95em;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-services ul li a:hover {
    color: var(--secondary-orange);
    padding-left: 8px;
}

/* Contact & Business Info Section */
.footer-contact h4 {
    color: #fff;
    font-size: 1.2em;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-orange);
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px 0;
}

.contact-icon {
    width: 32px;
    height: 32px;
    background: var(--secondary-orange);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: white;
}

.contact-item a,
.contact-item span {
    color: #e1e8ed;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.contact-item a:hover {
    color: var(--secondary-orange);
}

/* Business Info Section */
.footer-business-info {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.business-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.business-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 20px 15px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.business-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,145,77,0.3);
    transform: translateY(-2px);
}

.business-label {
    font-size: 0.8em;
    color: var(--secondary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    margin-bottom: 2px;
}

.business-item span:not(.business-label) {
    color: #e1e8ed;
    font-size: 0.9em;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    hyphens: auto;
}

.price-highlight {
    color: #4CAF50 !important;
    font-weight: 700;
    font-size: 1.05em !important;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    margin: 0;
    color: #bdc3c7;
    font-size: 0.9em;
}

.footer-right {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: var(--secondary-orange);
    text-decoration: none;
    font-size: 0.9em;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid var(--secondary-orange);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.legal-link:hover {
    background: var(--secondary-orange);
    color: white;
    transform: translateY(-2px);
}

/* Legal Pages (Privacy Policy, Terms & Conditions) */
.legal-content {
    padding: 40px 0 60px;
    line-height: 1.8;
    color: #333;
}

.legal-content h2 {
    font-size: 2em;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse !important; /* Image on top for mobile */
    }
    
    .hero {
        padding: 20px 0 100px; /* Minimal top padding for mobile hero section */
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2em;
        line-height: 1.3;
    }

    .hero-content .subheadline {
        font-size: 1.1em;
    }

    .trust-badges {
        flex-direction: column;
        gap: 10px;
    }

    .trust-badges span {
        margin: 5px 0;
        display: block;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    /* Mobile: Make headings smaller and images bigger for service cards */
    .service-card img {
        width: 80px;
        height: 80px;
    }

    .service-card h3 {
        font-size: 1.1em; /* Reduced from desktop 1.3em */
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .home-services h2,
    .why-choose-us h2,
    .cta-section h2 {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px; /* Better spacing between buttons */
    }

    .cta-button {
        width: 100%;
        max-width: 340px; /* Increased for better button size on mobile */
        text-align: center;
        padding: 18px 35px; /* Increased padding for bigger button on phone */
        font-size: 1.15em; /* Increased font size for mobile */
        min-height: 56px; /* Better touch target */
        border-radius: 30px; /* More rounded for modern look */
        font-weight: 600; /* Bolder text */
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-about h3 {
        font-size: 1.6em;
    }

    .social-links {
        justify-content: center;
    }

    .footer-services h4,
    .footer-contact h4 {
        text-align: center;
    }

    .footer-services h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-business-info {
        margin-top: 30px;
        padding: 25px 0;
    }

    .business-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .business-item {
        padding: 15px 10px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%; /* Ensure container takes full width on small screens */
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }

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

    /* Small mobile: Keep larger images and smaller headings */
    .service-card img {
        width: 75px;
        height: 75px;
    }

    .service-card h3 {
        font-size: 1.0em; /* Even smaller for very small screens */
    }

    .feature-item {
        padding: 30px 20px;
    }

    .home-services,
    .why-choose-us,
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-button {
        padding: 16px 35px; /* Increased padding for bigger mobile button */
        font-size: 1.1em; /* Increased font size */
        max-width: 300px; /* Increased max-width for mobile */
        margin: 0 auto;
    }

    .cta-button .phone-icon {
        font-size: 0.9em; /* Smaller icon size */
    }

    .mobile-call-btn {
        width: 40px; /* Match header container width */
        height: 40px; /* Match header container height */
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .mobile-call-btn svg {
        width: 20px; /* Slightly larger icon for better visibility */
        height: 20px; /* Slightly larger icon for better visibility */
    }

    .mobile-nav-call {
        padding: 8px 14px; /* Smaller padding */
        font-size: 0.9em; /* Smaller font size */
    }

    .mobile-nav-call svg {
        width: 14px; /* Smaller icon */
        height: 14px; /* Smaller icon */
    }
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content ul li strong {
    color: var(--secondary-orange);
}

@media (max-width: 480px) {
    .main-footer {
        padding: 50px 0 20px;
    }

    .footer-content {
        gap: 35px;
    }

    .footer-about h3 {
        font-size: 1.4em;
    }

    .footer-about p {
        font-size: 0.95em;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }

    .footer-services h4,
    .footer-contact h4 {
        font-size: 1.1em;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .footer-business-info {
        margin-top: 25px;
        padding: 20px 0;
    }

    .business-info-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .business-item {
        padding: 12px 8px;
    }

    .legal-link {
        padding: 12px 16px;
        font-size: 0.85em;
        margin: 5px;
        display: inline-block;
        line-height: 1.2;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* Mobile Header Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--primary-blue);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-call-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-call-btn:hover {
    background: var(--secondary-orange);
    transform: scale(1.1);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%; /* Use percentage width for flexibility */
    max-width: 280px; /* Keep max-width for larger mobile devices */
    height: 100vh;
    background: white;
    padding: 100px 0 40px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav ul li a {
    display: block;
    padding: 20px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.mobile-nav ul li a:hover {
    background: var(--light-gray-bg);
    color: var(--primary-blue);
    padding-left: 40px;
}

.mobile-nav-contact {
    padding: 20px 30px;
    border-top: 2px solid var(--primary-blue);
    margin-top: 20px;
}

.mobile-nav-call {
    display: flex;
    align-items: center;
    justify-content: center; /* Added for horizontal centering */
    gap: 10px;
    background: var(--primary-blue);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.mobile-nav-call:hover {
    background: var(--secondary-orange);
    transform: translateY(-2px);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
    position: relative;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-toggle:hover {
    background: var(--light-gray-bg);
    color: var(--primary-blue);
    padding-left: 40px;
}

.mobile-dropdown-arrow {
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f8f8f8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 200px;
}

.mobile-dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-dropdown-menu li:last-child {
    border-bottom: none;
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 15px 50px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 1em;
    transition: all 0.3s ease;
    border-bottom: none;
}

.mobile-dropdown-menu li a:hover {
    background: #e8e8e8;
    color: var(--primary-blue);
    padding-left: 60px;
}

/* Mobile Responsive Styles for New Sections */
@media (max-width: 768px) {
    /* How It Works Mobile */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .step {
        padding: 30px 20px;
    }
    
    .step-icon {
        font-size: 2.5em;
        margin: 15px 0;
    }
    
    .step h3 {
        font-size: 1.3em;
    }
    
    .step p {
        font-size: 1em;
    }
    
    /* Our Promise Mobile */
    .our-guarantee {
        padding: 40px 0;
        overflow-x: hidden; /* Re-added overflow-x hidden to prevent horizontal scroll */
        width: 100vw; /* Ensure it takes full viewport width */
        max-width: 100%;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Re-added overflow-x hidden */
        align-items: flex-start; /* Prevent vertical stretching of grid items */
    }
    
    .guarantee-text {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-text h2 {
        font-size: 1.8em; /* Increased font size */
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-subtitle {
        font-size: 1em; /* Increased font size */
        margin-bottom: 20px; /* Adjusted margin */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-details {
        margin-bottom: 20px;
        width: 100%;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-item {
        flex-direction: row;
        text-align: left;
        padding: 15px;
        margin-bottom: 12px;
        gap: 5px; /* Reduced gap between icon and text on mobile */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-icon {
        font-size: 1.4em; /* Increased icon size */
        min-width: 35px; /* Adjusted min-width */
        flex-shrink: 0;
    }
    
    .guarantee-item div {
        flex: 1;
        min-width: 0;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-item h4 {
        font-size: 0.95em; /* Increased font size */
        margin-bottom: 4px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-item p {
        font-size: 0.8em; /* Increased font size */
        line-height: 1.4; /* Adjusted line height */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-cta {
        text-align: center;
        margin-top: 15px;
        width: 100%;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-cta .cta-button {
        padding: 16px 30px;
        font-size: 1.1em;
        min-width: 200px;
        max-width: 300px;
        width: auto;
        box-sizing: border-box;
    }
    
    .guarantee-image {
        order: -1;
        margin-bottom: 15px;
        position: relative; /* Needed for absolute positioning of child image */
        padding-bottom: 75%; /* 4:3 aspect ratio (height / width * 100 = 300/400 * 100 = 75%) */
        width: 100%; /* Ensure it takes full width */
        max-width: 400px; /* Limit max width to original image width */
        overflow: hidden; /* Ensure content is clipped to border-radius */
        margin-left: auto; /* Center the container */
        margin-right: auto; /* Center the container */
        display: block; /* Ensure it takes full width for centering */
    }
    
    .guarantee-image img {
        position: absolute; /* Position absolutely within the container */
        top: 0;
        left: 0;
        width: 100%; /* Fill the container */
        height: 100%; /* Fill the container */
        object-fit: cover; /* Ensure the image covers the area, cropping if necessary */
        border-radius: 20px; /* Increased border-radius for more rounded corners */
    }
    
    /* Customer Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-text {
        font-size: 1em;
    }
    
    .google-rating {
        flex-direction: column;
        gap: 10px;
        padding: 15px 20px;
    }
    
    .rating-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    /* How It Works Small Mobile */
    .how-it-works h2 {
        font-size: 2em;
    }
    
    .how-it-works .section-subtitle {
        font-size: 1.1em;
    }
    
    .step {
        padding: 25px 15px;
    }
    
    /* Our Promise Small Mobile */
    .our-guarantee {
        padding: 35px 0;
        overflow-x: hidden;
        width: 100vw;
        max-width: 100%;
    }
    
    .guarantee-content {
        gap: 20px;
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-text h2 {
        font-size: 1.6em; /* Increased font size */
        line-height: 1.2;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-subtitle {
        font-size: 0.9em; /* Increased font size */
        margin-bottom: 18px; /* Adjusted margin */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-details {
        margin-bottom: 18px;
        width: 100%;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 8px;
        margin-bottom: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-icon {
        font-size: 1.3em; /* Increased icon size */
        margin: 0 auto;
        min-width: auto;
        flex-shrink: 0;
    }
    
    .guarantee-item div {
        width: 100%;
        overflow-x: hidden; /* Re-added overflow-x hidden */
    }
    
    .guarantee-item h4 {
        font-size: 0.9em; /* Increased font size */
        margin-bottom: 3px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-item p {
        font-size: 0.75em; /* Increased font size */
        line-height: 1.3; /* Adjusted line height */
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .guarantee-cta .cta-button {
        padding: 14px 24px;
        font-size: 1em;
        min-width: 180px;
        max-width: 90%;
        width: auto;
        box-sizing: border-box;
    }
    
    /* Customer Reviews Small Mobile */
    .customer-reviews h2 {
        font-size: 2em;
    }
    
    .review-card {
        padding: 20px 15px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        display: flex;
        justify-content: space-between; /* Keep space-between for toggle and call button */
        align-items: center;
        position: relative;
        gap: 0;
        padding: 0 15px; /* Add padding to container on mobile */
        width: 100%; /* Ensure container takes full width */
        overflow: hidden; /* Hide any overflow within the header container */
    }

    .main-header .logo {
        flex-shrink: 0;
        /* Remove absolute positioning and rely on flexbox for centering */
        position: static; /* Reset to static */
        left: unset; /* Remove left property */
        transform: unset; /* Remove transform property */
        order: 2;
        margin: 0 auto; /* Center the logo using auto margins */
    }

    .main-header .main-nav {
        display: none;
    }

    .main-header .desktop-call-btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 1;
    }

    .mobile-call-btn {
        display: flex;
        order: 3;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-content h2 {
        font-size: 1.8em;
    }

    .hero .container {
        flex-direction: column-reverse !important; /* Image on top for mobile */
    }
    
    .hero {
        padding: 30px 0;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .hero-content .trust-badges span {
        display: block;
        margin: 5px auto;
    }
}

@media (max-width: 480px) {
    .main-header .logo img {
        height: 40px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .hero-content .subheadline {
        font-size: 1em;
    }

    .cta-button {
        padding: 16px 30px; /* Increased padding for better mobile experience */
        font-size: 1.05em; /* Slightly increased font size */
    }
}

/* Mobile Bottom Menu Bar */
.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
}

.mobile-menu-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 60px;
}

.mobile-menu-item:hover {
    color: var(--primary-blue);
    background: rgba(33, 150, 243, 0.1);
}

.mobile-menu-item.call-button {
    background: linear-gradient(135deg, var(--secondary-orange), #FF7043);
    color: white;
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 4px 15px rgba(255, 145, 77, 0.3);
}

.mobile-menu-item.call-button:hover {
    background: linear-gradient(135deg, #FF7043, var(--secondary-orange));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 145, 77, 0.4);
}

.menu-icon {
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-text {
    font-size: 0.75em;
    font-weight: 500;
    text-align: center;
}

/* Show mobile menu only on mobile devices */
@media (max-width: 768px) {
    .mobile-bottom-menu {
        display: block;
    }
    
    /* Add bottom padding to body to prevent content from being hidden behind the menu */
    body {
        padding-bottom: 100px;
    }
    
    /* Ensure footer bottom has extra margin on mobile to prevent overlap */
    .footer-bottom {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-item {
        padding: 6px 8px;
        min-width: 50px;
    }
    
    .mobile-menu-item.call-button {
        padding: 8px 12px;
    }
    
    .menu-text {
        font-size: 0.7em;
    }
    
    .menu-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Extra spacing for small mobile devices */
    body {
        padding-bottom: 110px;
    }
    
    .footer-bottom {
        margin-bottom: 25px;
    }
}
