/* 
==============================================
   Hector's Handyman - Premium CSS
==============================================
   Colors:
   Primary: Deep Navy Blue (#0B132B)
   Accent: Construction Orange (#FF6B35)
   Secondary: White (#FFFFFF)
   Background: Light Gray (#F4F5F7)
   Text: Dark Charcoal (#2B2D42)
==============================================
*/

:root {
    --primary: #0B132B;
    --primary-light: #1C2541;
    --accent: #FF6B35;
    --accent-hover: #E85A24;
    --secondary: #FFFFFF;
    --bg-light: #F4F5F7;
    --text-dark: #2B2D42;
    --text-muted: #6C757D;
    --border-color: #E2E8F0;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

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

ul {
    list-style: none;
}

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

/* Layout */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

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

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

.flex-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.flex-row>div {
    flex: 1 1 400px;
}

/* Utilities */
.glassmorphism {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--secondary);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

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

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--secondary);
}

.btn-outline.white:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-warning {
    background-color: #E63946;
    color: white;
}

.btn-warning:hover {
    background-color: #D62828;
    transform: scale(1.05);
}

/* Header & Nav */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.header.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

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

.logo-img {
    height: 85px;
    width: auto;
    display: block;
    border-radius: 4px;
    background: white;
    padding: 2px 6px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header.scrolled .logo-img {
    height: 65px;
    padding: 2px 4px;
}

.footer-logo {
    height: 100px;
    margin-bottom: 20px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--secondary);
    font-weight: 500;
    font-size: 1.05rem;
}

.header.scrolled .nav a {
    color: var(--text-dark);
}

.nav a:hover {
    color: var(--accent);
}

.header-ctas {
    display: flex;
    gap: 15px;
}

/* Make Call Now button visible over rotating banners */
.header:not(.scrolled) .secondary-cta {
    background-color: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header:not(.scrolled) .secondary-cta:hover {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary);
    cursor: pointer;
}

.header.scrolled .mobile-menu-btn {
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

.slide-bg {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 19, 43, 0.9) 0%, rgba(11, 19, 43, 0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 100px;
}

.hero-badges-container {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.hero-badges-container .trust-badges {
    pointer-events: auto;
}

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

.hero .headline {
    color: var(--secondary);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero .subheadline {
    color: #E2E8F0;
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.banner-tagline {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 4px rgba(0, 0, 0, 0.5);
}

.banner-tagline::before,
.banner-tagline::after {
    content: '';
    height: 2px;
    width: 40px;
    background-color: var(--primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: var(--accent);
}

/* Services */
.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--secondary);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    z-index: -1;
    transition: var(--transition);
}

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

.service-card:hover::before {
    height: 100%;
}

.service-card .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card .alert-icon {
    background: rgba(230, 57, 70, 0.1);
    color: #E63946;
}

.service-card h3 {
    font-size: 1.3rem;
    transition: var(--transition);
}

.service-card p {
    color: var(--text-muted);
    transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p {
    color: var(--secondary);
}

.service-card:hover .icon-wrap {
    background: rgba(255, 255, 255, 0.2);
    color: var(--secondary);
}

/* Why Us */
.lead {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--accent);
    font-size: 1.25rem;
}

.image-wrapper {
    position: relative;
    height: 500px;
    border-radius: 20px;
    background: url('../assets/images/why_choose_us_handshake.jpg') center/cover;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary);
    color: white;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.experience-badge .text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
}

/* How It Works Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.timeline-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--secondary);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: 0 0 0 8px var(--secondary);
    transition: var(--transition);
}

.timeline-item:hover .step-number {
    background: var(--accent);
    color: var(--secondary);
    transform: scale(1.1);
}

/* Emergency Banner */
.emergency-banner {
    background: var(--primary);
    color: var(--secondary);
    padding: 60px 0;
    background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.05) 0, rgba(0, 0, 0, 0.05) 20px, transparent 20px, transparent 40px);
}

.emergency-banner h2 {
    color: var(--accent);
    font-size: 2.5rem;
}

.emergency-banner p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.gsap-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/* Gallery / Slider */
.slider-card {
    background: var(--secondary);
    padding: 15px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.ba-image-container {
    display: flex;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    gap: 2px;
    background: var(--primary);
}

.ba-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.ba-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.ba-image .tag {
    position: absolute;
    top: 15px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    z-index: 2;
}

.ba-image.before .tag {
    left: 15px;
}

.ba-image.after .tag {
    right: 15px;
}

.swiper-pagination {
    bottom: -5px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--accent) !important;
}

/* Industries Served */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.industry-tag {
    padding: 15px 30px;
    background: var(--secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    cursor: default;
}

.industry-tag:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--secondary);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--accent);
}

.stars {
    color: #FFD166;
    margin-bottom: 20px;
}

.review-text {
    font-style: italic;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

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

.avatar {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.reviewer h4 {
    margin: 0;
    font-size: 1.1rem;
}

.reviewer span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Accordion FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--secondary);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: transparent;
    border: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 20px;
}

/* Quote Form Section */
.quote-section {
    background: url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&q=80') center/cover fixed;
    position: relative;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.8);
}

.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 24px;
    position: relative;
    z-index: 2;
}

.quote-content h2 {
    text-align: center;
    color: var(--primary);
}

.quote-content>p {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.photo-upload {
    grid-column: 1 / -1;
    border: 2px dashed var(--accent);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    position: relative;
}

.hide-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.photo-upload label {
    font-size: 1.25rem;
    cursor: pointer;
}

.upload-text {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Contact & Maps */
.contact-list {
    margin-top: 30px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-list i {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-list h4 {
    margin-bottom: 5px;
}

.map-container {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    background: #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-weight: 600;
    padding: 50px;
    border-radius: 16px;
}

.map-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.h-100 {
    height: 100%;
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--secondary);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about h2 {
    color: var(--secondary);
}

.footer-about span {
    color: var(--accent);
}

.footer-about p {
    color: #cbd5e1;
    margin-bottom: 20px;
    max-width: 300px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-links h4 {
    color: var(--secondary);
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.footer-bottom a {
    color: #cbd5e1;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--accent);
}

.designer-credit {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #64748b;
}

.designer-credit a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.designer-credit a:hover {
    color: var(--accent);
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.call-btn {
    background: #25D366;
}

/* Green like Whatsapp/Phone */
.email-btn {
    background: #007BFF;
}

.quote-btn {
    background: var(--accent);
}

.scroll-top-btn {
    background: var(--primary-light);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.float-btn:hover {
    transform: scale(1.1);
    color: var(--secondary);
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.exit-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup-content {
    background: var(--secondary);
    padding: 50px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.exit-popup-overlay.show .exit-popup-content {
    transform: translateY(0);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
}

/* We Clean It All */
.clean-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.clean-item {
    background: var(--secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: default;
}

.clean-item i {
    font-size: 1.5rem;
    color: var(--accent);
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.clean-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

/* Cost Estimator */
.estimator-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 24px;
}

.estimator-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
}

.estimator-result {
    text-align: center;
    padding: 30px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 16px;
}

.estimator-result h3 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.price-display {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 15px;
}

.text-sm {
    font-size: 0.85rem;
    line-height: 1.4;
    opacity: 0.8;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    outline: none;
    border-radius: 4px;
    margin: 20px 0;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* Photo Preview */
.photo-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.photo-preview {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

/* Responsive */
@media (max-width: 992px) {
    .timeline::after {
        display: none;
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-item {
        text-align: left;
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
    }

    .quote-wrapper {
        padding: 30px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .estimator-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header */
    .header { 
        padding: 10px 0; 
        max-width: 100vw;
    }
    .header.scrolled { padding: 10px 0; }
    .logo-img { height: 45px; }
    .header.scrolled .logo-img { height: 40px; }

    /* Navigation */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--primary);
        padding-top: 100px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 999;
        display: block;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav a {
        font-size: 1.2rem;
        color: var(--secondary);
    }
    
    .header.scrolled .nav a {
        color: var(--secondary);
    }
    
    .header-ctas { display: none !important; }
    
    .mobile-menu-btn { 
        display: block; 
        z-index: 1001;
        position: relative;
        margin-left: auto;
        padding: 6px 12px;
        font-size: 1.6rem;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 500px;
        padding-top: 0;
        padding-bottom: 0;
    }
    
    .hero-content {
        margin-top: 90px;
        text-align: center;
    }
    
    .hero .headline { 
        font-size: 1.75rem; 
        margin-bottom: 15px; 
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero .subheadline {
        font-size: 1.1rem;
        margin-bottom: 25px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons { 
        flex-direction: column; 
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .banner-tagline {
        font-size: 1rem;
        justify-content: center;
        margin-top: 10px;
    }
    
    .banner-tagline::before, .banner-tagline::after {
        display: none;
    }
    
    .hero-badges-container {
        display: none; /* Takes up too much space on mobile */
    }

    /* Floating Buttons */
    .floating-buttons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
        z-index: 9999;
    }
    
    .float-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    /* Other Grids & Cards */
    .section-padding { padding: 50px 0; overflow-x: hidden; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .clean-grid { grid-template-columns: 1fr; }
    .service-card { padding: 25px 20px; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .image-wrapper { height: 300px; }
    .experience-badge { 
        position: relative; 
        left: 0; 
        bottom: 0; 
        margin-top: 15px; 
        width: 100%; 
        justify-content: center;
        padding: 20px; 
    }
}