/* ==========================================
   CSS Variables & Base Styles
   ========================================== */
:root {
    /* Brand Colors */
    --primary: #F5A623;
    --primary-dark: #E09000;
    --secondary: #1B365D;
    --secondary-light: #2A4A7A;
    --dark: #222222;
    --gray: #666666;
    --gray-light: #999999;
    --light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Spacing */
    --section-padding: 80px;
    --container-max: 1200px;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
    
    /* Shadows */
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    overscroll-behavior-x: none;
    position: relative;
    width: 100%;
}

/* Scroll wrapper to contain all content */
#page-wrapper {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Prevent any section from causing horizontal overflow */
section, header, footer, main {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-block;
    padding: 15px 35px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4); }
    50% { box-shadow: 0 6px 25px rgba(245, 166, 35, 0.6); }
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
    animation: none;
}

.btn-primary:hover::before {
    animation: shimmer 0.5s;
}

.btn-full {
    width: 100%;
}

/* ==========================================
   Header
   ========================================== */
.header {
    background: var(--secondary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 40px;
    padding-right: 40px;
}

.logo img {
    height: 60px;
    width: auto;
}

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

.nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--white);
    padding: 10px 0;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

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

/* Header Phone */
.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    color: var(--white);
    margin-left: 30px;
}

.header-phone span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.9;
}

.header-phone strong {
    font-size: 20px;
    color: var(--primary);
    font-family: var(--font-heading);
}

.header-phone:hover strong {
    color: var(--white);
}

/* Mobile Phone Icon */
.mobile-phone-icon {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    background-color: #F5A623 !important;
    border-radius: 50%;
    color: #FFFFFF !important;
    font-size: 22px;
    text-decoration: none;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.mobile-phone-icon i {
    color: #FFFFFF !important;
    font-size: 22px;
}

.mobile-phone-icon:hover {
    background-color: #E09000 !important;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    background: url('../images/hero-background-image.jpg') center/cover no-repeat;
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 54, 93, 0.92) 0%, rgba(30, 30, 35, 0.78) 50%, rgba(27, 54, 93, 0.85) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

.hero-text {
    color: var(--white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-top: 10px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.badge:nth-child(1) { animation-delay: 0s; }
.badge:nth-child(2) { animation-delay: 0.5s; }
.badge:nth-child(3) { animation-delay: 1s; }
.badge:nth-child(4) { animation-delay: 1.5s; }

.badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    border-color: var(--primary);
}

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

.badge i {
    color: var(--primary);
    font-size: 16px;
    filter: drop-shadow(0 0 3px rgba(245, 166, 35, 0.5));
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 17px;
}

.hero-features i {
    color: var(--primary);
    font-size: 18px;
}

.hero-cta-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Hero Testimonial */
.hero-testimonial {
    background: rgba(30, 30, 35, 0.6);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    backdrop-filter: blur(15px);
    animation: floatTestimonial 4s ease-in-out infinite;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 550px;
}

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

.testimonial-stars {
    margin-bottom: 12px;
}

.testimonial-stars i {
    color: #FFD700 !important;
    font-size: 16px;
    margin-right: 2px;
    -webkit-text-fill-color: #FFD700 !important;
}

.hero-testimonial p {
    font-style: italic;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.testimonial-author > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-author strong {
    font-size: 14px;
    letter-spacing: 1px;
}

.testimonial-author span {
    font-size: 13px;
    opacity: 0.8;
}

.hero-testimonial-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

/* Hero Form */
.hero-form {
    background: rgba(255, 255, 255, 0.97);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-form h3 {
    font-size: 26px;
    color: var(--secondary);
    margin-bottom: 10px;
    text-align: center;
}

.hero-form > p {
    color: var(--gray);
    font-size: 14px;
    text-align: center;
    margin-bottom: 25px;
}

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

.form-group {
    margin-bottom: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px; /* Minimum 16px prevents iOS auto-zoom on focus */
    font-family: var(--font-body);
    transition: var(--transition);
    background: #f0f0f0;
    color: var(--dark);
    -webkit-appearance: none; /* Removes iOS default styling */
    appearance: none;
}

.form-group input::placeholder {
    color: #666;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.1);
    background: #fff;
}

.services-label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--dark);
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray);
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

/* ==========================================
   Section Titles
   ========================================== */
.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--secondary);
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    padding: var(--section-padding) 0;
    background: var(--light);
}

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

.service-card {
    display: block;
    background: var(--white);
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 18px;
    color: var(--secondary);
    padding: 20px 15px;
    margin: 0;
}

/* ==========================================
   Top Rated Section
   ========================================== */
.top-rated {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.top-rated-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.top-rated-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.top-rated-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    background: var(--light);
    border-radius: 10px;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 32px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ==========================================
   Why Clean Gutters Section
   ========================================== */
.why-clean {
    padding: var(--section-padding) 0;
    background: var(--secondary);
    color: var(--white);
}

.why-clean .section-title {
    color: var(--white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.reason-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.reason-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.reason-icon i {
    font-size: 28px;
    color: var(--white);
}

.reason-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.9;
}

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

/* ==========================================
   CTA Banner
   ========================================== */
.cta-banner {
    background: var(--primary);
    padding: 30px 0;
}

.cta-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-content span {
    color: var(--white);
    font-size: 18px;
}

.cta-content .phone-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
}

.cta-content .phone-number:hover {
    color: var(--secondary);
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.stars {
    margin-bottom: 20px;
    color: var(--primary);
}

.stars i {
    font-size: 18px;
}

.stars span {
    margin-left: 10px;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-card > p {
    font-style: italic;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-direction: row;
}

.testimonial-card .testimonial-author img:first-child {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card .testimonial-author div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-card .testimonial-author strong {
    font-size: 16px;
    color: var(--secondary);
}

.google-icon {
    width: 24px;
    height: 24px;
}

/* ==========================================
   Service Detail Sections
   ========================================== */
.service-detail {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.service-detail:nth-child(even) {
    background: var(--light);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-reverse .service-detail-content {
    direction: rtl;
}

.service-detail-reverse .service-detail-content > * {
    direction: ltr;
}

.service-detail-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-text h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.service-detail-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--dark);
    font-weight: 500;
}

.service-features i {
    color: var(--primary);
    font-size: 16px;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    padding: var(--section-padding) 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ==========================================
   Service Areas Section
   ========================================== */
.service-areas {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    text-align: center;
}

.area {
    background: var(--light);
    padding: 15px 20px;
    border-radius: 5px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.area:hover {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================
   Final CTA Section
   ========================================== */
.final-cta {
    padding: var(--section-padding) 0;
    background: url('../images/top-rated-gutter-cleaning-services.jpg') center/cover no-repeat;
    text-align: center;
    color: var(--white);
    position: relative;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(30, 30, 35, 0.80);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.final-cta > .container > p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-phone {
    margin-top: 30px;
}

.cta-phone span {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.cta-phone a {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.cta-phone a:hover {
    color: var(--white);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-info p {
    margin-bottom: 10px;
    color: var(--white);
}

.footer-info a {
    color: var(--white);
}

.footer-info a:hover {
    color: var(--primary);
}

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

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

.social-links a:hover {
    background: var(--primary);
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links a {
    color: var(--white);
    opacity: 0.9;
}

.footer-links a:hover {
    color: var(--primary);
    opacity: 1;
}

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

.footer-map .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-map .gmap_iframe {
    width: 100%;
    max-width: 400px;
    height: 220px;
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.footer-bottom p {
    color: var(--white);
    font-size: 14px;
    opacity: 0.9;
}

.footer-bottom a {
    color: var(--white);
    font-size: 14px;
    opacity: 0.9;
}

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

/* ==========================================
   Mobile Click to Call
   ========================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: var(--white);
    padding: 18px;
    text-align: center;
    font-weight: 700;
    font-family: var(--font-heading);
    z-index: 1000;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.mobile-cta i {
    font-size: 18px;
}

/* ==========================================
   Responsive Styles
   ========================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-form {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    /* MOBILE OVERFLOW FIX - Comprehensive approach */
    html, body {
        overflow-x: hidden !important;
        overscroll-behavior: none !important;
        -webkit-overflow-scrolling: touch;
        position: relative;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Prevent any element from causing horizontal scroll */
    *, *::before, *::after {
        max-width: 100vw;
    }
    
    /* Disable all transforms and animations that could cause movement */
    .badge,
    .hero-testimonial,
    .hero-form,
    .animate-in,
    .animate-left,
    .animate-right {
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }
    
    :root {
        --section-padding: 60px;
    }
    
    .top-bar .phone-link span {
        display: none;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-phone-icon {
        display: flex;
    }
    
    .header-phone {
        display: none;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero h2 {
        font-size: 17px;
    }
    
    .hero-features {
        display: inline-block;
        text-align: left;
    }
    
    .hero-features li {
        font-size: 15px;
    }
    
    .hero-cta-text {
        font-size: 15px;
    }
    
    .hero-form {
        max-width: 100%;
        padding: 30px 25px;
    }
    
    .hero-form h3 {
        font-size: 24px;
    }
    
    .hero-testimonial {
        text-align: left;
        padding: 20px;
        animation: none !important;
        transform: none !important;
    }
    
    .hero-testimonial p {
        font-size: 14px;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .trust-badges .badge {
        font-size: 11px;
        padding: 6px 10px;
        animation: none !important;
        transform: none !important;
    }
    
    /* Prevent form elements from causing horizontal scroll */
    .hero-form {
        transform: none !important;
    }
    
    .hero-form input,
    .hero-form textarea,
    .hero-form select {
        touch-action: pan-y pinch-zoom;
        -webkit-overflow-scrolling: touch;
    }
    
    .top-rated-content {
        grid-template-columns: 1fr;
    }
    
    .top-rated-image {
        order: -1;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-reverse .service-detail-content {
        direction: ltr;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .service-detail-text h2 {
        font-size: 26px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .mobile-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .cta-content .phone-number {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 30px 0 50px;
    }
    
    .hero h1 {
        font-size: 26px;
        line-height: 1.2;
    }
    
    .hero h2 {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .hero-features li {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .hero-form {
        padding: 20px 15px;
    }
    
    .hero-form h3 {
        font-size: 20px;
    }
    
    .hero-form > p {
        font-size: 13px;
    }
    
    .trust-badges .badge {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .hero-testimonial {
        padding: 15px;
    }
    
    .hero-testimonial p {
        font-size: 13px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .final-cta h2 {
        font-size: 28px;
    }
    
    .cta-phone a {
        font-size: 28px;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-form,
.service-card,
.feature-card,
.reason-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Staggered animations for cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

.reason-card:nth-child(1) { animation-delay: 0.1s; }
.reason-card:nth-child(2) { animation-delay: 0.2s; }
.reason-card:nth-child(3) { animation-delay: 0.3s; }

/* ==========================================
   Scroll Animations
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   Sticky Header
   ========================================== */
.header {
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header.scrolled .logo img {
    height: 45px;
}

.header.scrolled .header-phone {
    font-size: 0.9em;
}

/* ==========================================
   Certifications Section
   ========================================== */
.certifications {
    padding: 50px 0;
    background: var(--light);
}

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

.certifications-content h3 {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cert-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    min-width: 150px;
    min-height: 120px;
}

.cert-badge:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.cert-badge i {
    font-size: 40px;
    color: var(--primary);
}

.cert-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    text-align: center;
}

/* ==========================================
   FAQ Section
   ========================================== */
.faq {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--secondary);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light);
}

.faq-question i {
    font-size: 14px;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question {
    background: var(--secondary);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 20px 25px;
    color: var(--gray);
    line-height: 1.7;
    border-top: 1px solid #e0e0e0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .cert-badges {
        gap: 15px;
    }
    
    .cert-badge {
        padding: 15px 20px;
        min-width: auto;
        min-height: auto;
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .cert-badge i {
        font-size: 30px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 15px 20px;
    }
}

/* ==========================================
   Mobile Overflow Prevention
   ========================================== */
main,
section,
.container,
header,
footer {
    max-width: 100vw;
    overflow-x: hidden;
}

