/* ===== CSS VARIABLES ===== */
:root {
    /* Primary Colors - Light Theme */
    --primary-dark: #1e3a5f;
    --primary-blue: #2563eb;
    --primary-accent: #3b82f6;
    --primary-light: #dbeafe;
    
    /* Secondary Colors */
    --secondary-gold: #f59e0b;
    --secondary-orange: #f97316;
    --secondary-red: #ef4444;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --medium-gray: #e2e8f0;
    --dark-gray: #334155;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    
    /* Hero Light Background */
    --hero-bg: #f0f9ff;
    --hero-gradient: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-accent) 100%);
    --gradient-accent: linear-gradient(135deg, var(--secondary-orange) 0%, var(--secondary-gold) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 249, 255, 0.9) 100%);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 30px rgba(255, 107, 53, 0.3);
    
    /* Border Radius */
    --radius-sm: 5px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* ===== RESET & BASE ===== */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-display: swap;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn--primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn--outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn--outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

.btn--pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 107, 53, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* ===== SECTION STYLES ===== */
.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: #c2410c;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section__description {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-dark);
}

.nav__logo i {
    font-size: 1.8rem;
    color: var(--secondary-orange);
}

.nav__logo strong {
    color: var(--secondary-orange);
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    gap: 35px;
}

.nav__link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-orange);
    transition: var(--transition-normal);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__link:hover {
    color: var(--primary-blue);
}

/* Nav Dropdown */
.nav__item--dropdown {
    position: relative;
}
.nav__dropdown-icon {
    font-size: 0.7rem;
    margin-left: 3px;
    transition: var(--transition-fast);
}
.nav__item--dropdown:hover .nav__dropdown-icon {
    transform: rotate(180deg);
}
.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
    z-index: 100;
    margin-top: 10px;
}
.nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}
.nav__dropdown-link {
    display: block;
    padding: 8px 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: var(--transition-fast);
    white-space: nowrap;
}
.nav__dropdown-link:hover {
    background: var(--light-gray);
    color: var(--primary-blue);
    padding-left: 25px;
}

.nav__close {
    display: none;
}

/* Language Switcher */
.nav__lang {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-left: 25px;
    padding-left: 25px;
    border-left: 1px solid var(--medium-gray);
}

.lang-link {
    padding: 5px 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-link:hover {
    color: var(--primary-blue);
    background: var(--light-gray);
}

.lang-link.active {
    color: var(--white);
    background: var(--primary-blue);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--gradient-accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
}

.nav__cta:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.nav__toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../111.webp') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(37,99,235,0.08)" stroke-width="0.5"/></svg>') repeat;
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 249, 255, 0.8) 100%);
}

.hero__content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 25px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid var(--primary-blue);
    border-radius: var(--radius-full);
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero__title span {
    color: var(--secondary-orange);
}

.hero__subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.hero__trust {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
    background: var(--white);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
}

.hero__trust-item i {
    color: var(--secondary-orange);
    font-size: 1.2rem;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.hero__scroll a {
    color: var(--primary-blue);
    font-size: 1.5rem;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.hero__scroll a:hover {
    opacity: 1;
}

/* Hero Checklist */
.hero__checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 30px auto;
    max-width: 450px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero__check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.hero__check-item i {
    color: #22c55e;
    font-size: 1.3rem;
}

.hero__check-item strong {
    color: var(--secondary-orange);
}

/* Google Reviews Widget */
.hero__reviews {
    margin: 25px auto;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.google-reviews-widget {
    display: inline-block;
    background: var(--white);
    padding: 15px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
}

.reviews-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.google-logo {
    height: 24px;
    width: auto;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reviews-rating .stars {
    display: flex;
    gap: 3px;
}

.reviews-rating .stars i {
    color: #fbbc04;
    font-size: 1.1rem;
}

.rating-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.rating-text strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-15px); }
    60% { transform: translateX(-50%) translateY(-7px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== WHY CHOOSE US ===== */
.why-us {
    padding: var(--section-padding);
    background: var(--white);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.why-us__card {
    position: relative;
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.why-us__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.why-us__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.why-us__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.why-us__card:hover .why-us__icon {
    transform: scale(1.1) rotate(10deg);
}

.why-us__icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-us__title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.why-us__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.why-us__number {
    position: absolute;
    bottom: 15px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.1);
}


/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--white);
}

.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    position: relative;
}

.about__image-box {
    width: 100%;
    height: 450px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about__image-box::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 30s linear infinite;
}

.about__image-box i {
    font-size: 8rem;
    color: var(--secondary-gold);
    opacity: 0.3;
    position: relative;
    z-index: 1;
}

.about__experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-accent);
    padding: 30px 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.about__experience-text {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
}

.about__content {
    padding-left: 20px;
}

.about__text {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about__text strong {
    color: var(--primary-blue);
}

.about__mission {
    background: var(--light-gray);
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    border-left: 4px solid var(--secondary-orange);
}

.about__mission h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about__mission h3 i {
    color: var(--secondary-orange);
}

.about__mission p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.about__feature i {
    color: var(--secondary-orange);
    font-size: 1.1rem;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.services__tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.services__tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-normal);
}

.services__tab:hover {
    border-color: var(--primary-accent);
    color: var(--primary-accent);
}

.services__tab.active {
    background: var(--gradient-primary);
    border-color: var(--primary-blue);
    color: var(--white);
}

.services__tab i {
    font-size: 1rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.services__card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--medium-gray);
}

.services__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.services__card.hidden {
    display: none;
}

.services__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.1) 0%, rgba(50, 130, 184, 0.1) 100%);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.services__card:hover .services__icon {
    background: var(--gradient-primary);
}

.services__icon i {
    font-size: 1.8rem;
    color: var(--primary-blue);
    transition: var(--transition-normal);
}

.services__card:hover .services__icon i {
    color: var(--secondary-gold);
}

.services__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.services__text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.services__category {
    display: inline-block;
    padding: 5px 15px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Services Grid (4 items) */
.services__grid--featured {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Services CTA */
.services__cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-light);
}

.services__cta-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
}


/* ===== SERVICE AREAS ===== */
.areas {
    padding: var(--section-padding);
    background: var(--white);
}

.areas__search {
    max-width: 500px;
    margin: 0 auto 50px;
}

.areas__search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

.areas__search-box:focus-within {
    border-color: var(--primary-accent);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.areas__search-box i {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.areas__input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
}

.areas__input::placeholder {
    color: var(--text-muted);
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.areas__card {
    background: var(--light-gray);
    padding: 25px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.areas__card:hover {
    background: var(--white);
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.areas__card.highlight {
    background: var(--gradient-primary);
    border-color: var(--primary-dark);
}

.areas__card.highlight .areas__icon i,
.areas__card.highlight .areas__name,
.areas__card.highlight .areas__zips {
    color: var(--white);
}

.areas__card.hidden {
    display: none;
}

.areas__icon {
    margin-bottom: 15px;
}

.areas__icon i {
    font-size: 1.5rem;
    color: var(--secondary-orange);
}

.areas__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.areas__zips {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ===== GOOGLE REVIEWS SECTION ===== */
.reviews {
    padding: var(--section-padding);
    background: var(--white);
}

.reviews__summary {
    text-align: center;
    margin-bottom: 50px;
}

.reviews__google-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 50px;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    border: 2px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.reviews__google-link:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.reviews__google-logo {
    height: 30px;
    width: auto;
}

.reviews__rating-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews__stars i {
    color: #fbbc04;
    font-size: 1.3rem;
}

.reviews__score {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.reviews__count {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.reviews__view-all {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 500;
}

.reviews__view-all i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* Reviews Slider */
.reviews__slider {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    margin: 0 -20px;
    cursor: grab;
    user-select: none;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.reviews__slider::-webkit-scrollbar {
    display: none;
}

.reviews__slider:active {
    cursor: grabbing;
}

.reviews__track {
    display: flex;
    gap: 25px;
    width: max-content;
    padding: 0 20px;
    animation: reviewsScroll 30s linear infinite;
}

.reviews__track.dragging {
    animation: none;
}

@keyframes reviewsScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.reviews__card {
    flex: 0 0 350px;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--medium-gray);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.reviews__card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-accent);
}

.reviews__card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviews__avatar {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.reviews__info {
    flex: 1;
}

.reviews__info h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.reviews__name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.reviews__card-stars i {
    color: #fbbc04;
    font-size: 0.85rem;
}

.reviews__source {
    width: 20px;
    height: 20px;
}

.reviews__text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 12px;
}

.reviews__date {
    font-size: 0.8rem;
    color: #64748b;
}

/* ===== GOOGLE MAPS WIDGET ===== */
.contact__map {
    margin-top: 20px;
}

.map-widget {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--medium-gray);
    transition: var(--transition-normal);
}

.map-widget:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-accent);
}

.map-widget__header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.map-widget__logo {
    height: 18px;
    width: auto;
}

.map-widget__header span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-widget__preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
}

.map-widget__preview > i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.map-widget__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.map-widget__info strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-dark);
}

.map-widget__info > span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.map-widget__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.map-widget__rating i {
    color: #fbbc04;
    font-size: 0.75rem;
}

.map-widget__rating span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.map-widget__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--primary-blue);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.map-widget:hover .map-widget__cta {
    background: var(--primary-accent);
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.cta__content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta__title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta__text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact__info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.contact__info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact__info-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact__info-icon i {
    font-size: 1.5rem;
    color: var(--secondary-gold);
}

.contact__info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact__info-content a {
    font-size: 1rem;
    color: var(--primary-accent);
    font-weight: 500;
}

.contact__info-content a:hover {
    color: var(--secondary-orange);
}

.contact__info-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.contact__form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form__input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition-normal);
    outline: none;
}

.form__input:focus {
    border-color: var(--primary-accent);
    box-shadow: 0 0 0 4px rgba(50, 130, 184, 0.1);
}

.form__input::placeholder {
    color: var(--text-muted);
}

.form__textarea {
    min-height: 150px;
    resize: vertical;
}

.form__message {
    margin-top: 20px;
    padding: 15px;
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.form__message.success {
    display: block;
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form__message.error {
    display: block;
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}


/* ===== FOOTER ===== */
.footer {
    background: var(--primary-dark);
    padding: 80px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer__logo i {
    font-size: 1.8rem;
    color: var(--secondary-gold);
}

.footer__logo strong {
    color: var(--secondary-gold);
}

.footer__description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--secondary-orange);
    transform: translateY(-3px);
}

.footer__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-orange);
}

.footer__list li {
    margin-bottom: 12px;
}

.footer__list a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer__list a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

/* Footer Navigation */
.footer__heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}
.footer__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-orange);
}
.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer__nav-list li {
    margin-bottom: 12px;
}
.footer__nav-list a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}
.footer__nav-list a:hover {
    color: var(--secondary-gold);
    padding-left: 5px;
}

.footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-list i {
    color: var(--secondary-gold);
    margin-top: 3px;
}

.footer__contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__contact-list a:hover {
    color: var(--secondary-gold);
}

/* Footer Landing Pages - minimal visibility for SEO */
.footer__landing-pages {
    padding: 8px 0;
    margin-bottom: 0;
}

.footer__landing-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3px 8px;
}

.footer__landing-link {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
    padding: 4px 2px;
    border: none;
    border-radius: 0;
    display: inline-block;
    min-height: 24px;
    line-height: 1.6;
}

.footer__landing-link:hover {
    color: var(--primary-dark);
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer__copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.footer__credit {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 10px;
}

.footer__credit a {
    color: #fbbf24;
    text-decoration: none;
    transition: var(--transition-normal);
}

.footer__credit a:hover {
    color: var(--secondary-gold);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .services__grid,
    .services__grid--featured {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 50px;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .nav__lang {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--medium-gray);
    }
    
    .nav__link {
        font-size: 1.1rem;
        color: var(--text-dark);
    }
    
    /* Mobile dropdown */
    .nav__dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        background: var(--light-gray);
        border-radius: 6px;
        margin-top: 8px;
        padding: 4px 0;
    }
    .nav__dropdown-link {
        text-align: center;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 1.5rem;
        color: var(--text-dark);
        cursor: pointer;
    }
    
    .nav__toggle {
        display: block;
        color: var(--primary-dark);
    }
    
    .nav__cta span {
        display: none;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__subtitle {
        font-size: 1.2rem;
    }
    
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about__image {
        order: -1;
    }
    
    .about__content {
        padding-left: 0;
    }
    
    .services__grid,
    .services__grid--featured {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services__cta {
        padding: 30px 20px;
        margin-top: 30px;
    }
    
    .services__cta-text {
        font-size: 1.1rem;
    }
    
    .areas__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact__wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero__trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .why-us__grid {
        grid-template-columns: 1fr;
    }
    
    .about__image-box {
        height: 350px;
    }
    
    .about__features {
        grid-template-columns: 1fr;
    }
    
    .services__tabs {
        gap: 10px;
    }
    
    .services__tab {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .services__grid,
    .services__grid--featured {
        grid-template-columns: 1fr;
    }
    
    .areas__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reviews responsive */
    .reviews__card {
        flex: 0 0 300px;
    }
    
    .reviews__google-link {
        padding: 20px 30px;
    }
    
    .reviews__rating-box {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    
    .reviews__score {
        font-size: 1.5rem;
    }
    
    .cta__title {
        font-size: 2rem;
    }
    
    .contact__form-wrapper {
        padding: 30px 20px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .areas__grid {
        grid-template-columns: 1fr;
    }
    
    .services__tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .services__tab {
        justify-content: center;
    }
}


/* ===== MOBILE CALL BUTTON (FIXED) ===== */
.mobile-call-btn {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--secondary-gold) 100%);
    color: var(--white);
    padding: 18px;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.mobile-call-btn.visible {
    transform: translateY(0);
}

.mobile-call-btn i {
    font-size: 1.3rem;
    animation: shake 1.5s infinite;
}

@keyframes shake {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
    50% { transform: rotate(0deg); }
}

/* ===== AREAS LINK ===== */
.areas__link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-normal);
}

.areas__link:hover {
    background: var(--secondary-orange);
    transform: scale(1.05);
}

/* ===== ENHANCED MOBILE STYLES ===== */
@media (max-width: 768px) {
    /* Show mobile call button */
    .mobile-call-btn {
        display: flex;
    }
    
    /* Add padding to body for fixed call button */
    body {
        padding-bottom: 70px;
    }
    
    /* Better mobile header */
    .nav {
        height: 70px;
    }
    
    .nav__logo {
        font-size: 1.1rem;
    }
    
    .nav__logo i {
        font-size: 1.4rem;
    }
    
    .nav__cta {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .nav__cta span {
        display: none;
    }
    
    /* Better mobile hero */
    .hero {
        min-height: calc(100vh - 70px);
        padding-top: 70px;
        background-image: url('../111-mobile.webp');
    }
    
    .hero__content {
        padding: 40px 15px 100px;
    }
    
    .hero__badge {
        font-size: 0.8rem;
        padding: 8px 15px;
    }
    
    .hero__title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero__subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
    
    .hero__trust {
        gap: 12px;
    }
    
    .hero__trust-item {
        font-size: 0.85rem;
        background: rgba(255,255,255,0.9);
        padding: 8px 12px;
        border-radius: var(--radius-md);
    }
    
    /* Mobile hero checklist */
    .hero__checklist {
        gap: 8px;
        margin: 20px auto;
    }
    
    .hero__check-item {
        font-size: 0.9rem;
        padding: 10px 15px;
        gap: 10px;
    }
    
    .hero__check-item i {
        font-size: 1.1rem;
    }
    
    /* Mobile Google Reviews */
    .hero__reviews {
        margin: 20px auto;
    }
    
    .google-reviews-widget {
        padding: 12px 20px;
    }
    
    .reviews-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .google-logo {
        height: 20px;
    }
    
    .reviews-rating .stars i {
        font-size: 1rem;
    }
    
    .rating-text {
        font-size: 0.85rem;
    }
    
    .hero__scroll {
        display: none;
    }
    
    /* Better mobile sections */
    .section__header {
        margin-bottom: 40px;
    }
    
    .section__title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .section__description {
        font-size: 0.95rem;
    }
    
    /* Better mobile why-us cards */
    .why-us__card {
        padding: 30px 20px;
    }
    
    .why-us__icon {
        width: 65px;
        height: 65px;
    }
    
    .why-us__icon i {
        font-size: 1.6rem;
    }
    
    .why-us__title {
        font-size: 1.1rem;
    }
    
    .why-us__number {
        font-size: 2.5rem;
    }
    
    /* Better mobile about */
    .about__image-box {
        height: 280px;
    }
    
    .about__image-box i {
        font-size: 5rem;
    }
    
    .about__experience {
        bottom: -15px;
        right: -10px;
        padding: 20px 25px;
    }
    
    .about__experience-number {
        font-size: 2.2rem;
    }
    
    .about__mission {
        padding: 20px;
    }
    
    /* Better mobile services */
    .services__tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .services__tab {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .services__card {
        padding: 25px 20px;
    }
    
    .services__icon {
        width: 60px;
        height: 60px;
    }
    
    .services__icon i {
        font-size: 1.5rem;
    }
    
    .services__title {
        font-size: 1rem;
    }
    
    /* Better mobile areas */
    .areas__search-box {
        padding: 12px 18px;
    }
    
    .areas__input {
        font-size: 0.95rem;
    }
    
    .areas__card {
        padding: 20px 15px;
    }
    
    .areas__name {
        font-size: 0.95rem;
    }
    
    .areas__zips {
        font-size: 0.75rem;
    }
    
    /* Better mobile CTA */
    .cta {
        padding: 60px 0;
    }
    
    .cta__title {
        font-size: 1.6rem;
    }
    
    .cta__text {
        font-size: 0.95rem;
    }
    
    /* Better mobile contact */
    .contact__info-card {
        padding: 20px;
        gap: 15px;
    }
    
    .contact__info-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact__info-icon i {
        font-size: 1.2rem;
    }
    
    .contact__info-content h3 {
        font-size: 1rem;
    }
    
    .contact__form-wrapper {
        padding: 25px 15px;
    }
    
    .contact__form-title {
        font-size: 1.2rem;
    }
    
    .form__input {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Better mobile footer */
    .footer {
        padding: 60px 0 100px; /* Extra padding for call button */
    }
    
    .footer__logo {
        font-size: 1.2rem;
    }
    
    .footer__title {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .footer__list a,
    .footer__contact-list li {
        font-size: 0.9rem;
    }
    
    /* Back to top position */
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero__title {
        font-size: 1.7rem;
    }
    
    .hero__subtitle {
        font-size: 0.9rem;
    }
    
    .section__title {
        font-size: 1.4rem;
    }
    
    .why-us__card {
        padding: 25px 15px;
    }
    
    .services__tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero__trust {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .btn:hover,
    .services__card:hover,
    .why-us__card:hover,
    .areas__card:hover,
    .contact__info-card:hover {
        transform: none;
    }
    
    .btn:active {
        transform: scale(0.98);
    }
    
    .services__card:active,
    .why-us__card:active,
    .areas__card:active {
        transform: scale(0.98);
    }
}


/* ===== LOGO STYLES ===== */
.nav__logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.footer__logo-img {
    height: 60px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    margin-bottom: 15px;
}

.sidebar-logo {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .nav__logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer__logo-img {
        height: 50px;
        max-width: 180px;
    }
}


/* Contact Form Messages */
.form__message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form__message:not(:empty) {
    display: block;
}

.form__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form__message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form__message i {
    margin-right: 8px;
}


/* Available Badge - Blinking Animation */
.available-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #22c55e;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    width: fit-content;
    margin: 0 auto 20px auto;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards, availablePulse 2s ease-in-out infinite 0.8s;
    animation-delay: 0.3s;
}

.available-dot {
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes availablePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(34, 197, 94, 0.6), 0 0 0 8px rgba(34, 197, 94, 0.1);
    }
}

@media (max-width: 768px) {
    .available-badge {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .available-dot {
        width: 10px;
        height: 10px;
    }
}

/* ===== BRANDS SECTION ===== */
.brands {
    padding: 60px 0;
    background: var(--white);
    overflow: hidden;
}

.brands__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.brands__slider {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.brands__slider::-webkit-scrollbar {
    display: none;
}

.brands__slider:active {
    cursor: grabbing;
}

.brands__track {
    display: flex;
    animation: brandScroll 20s linear infinite;
    gap: 60px;
}

.brands__track.dragging {
    animation-play-state: paused;
}

.brands__slide {
    flex: 0 0 auto;
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    border: 1px solid var(--medium-gray);
}

.brands__slide:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-accent);
}

.brands__logo {
    max-width: 100px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: var(--transition-normal);
}

.brands__slide:hover .brands__logo {
    filter: grayscale(0%) opacity(1);
}

@keyframes brandScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive brands */
@media (max-width: 768px) {
    .brands {
        padding: 30px 0;
        overflow: hidden;
    }
    
    .brands__title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .brands__slider {
        overflow: hidden;
    }
    
    .brands__track {
        gap: 30px;
        animation: brandScroll 15s linear infinite;
    }
    
    .brands__slide {
        width: auto;
        height: auto;
        background: none;
        border: none;
        box-shadow: none;
        padding: 0;
        flex: 0 0 auto;
    }
    
    .brands__slide:hover {
        transform: none;
        box-shadow: none;
    }
    
    .brands__logo {
        display: none;
    }
    
    .brands__slide::after {
        content: attr(data-name);
        font-family: var(--font-heading);
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--text-dark);
        text-transform: uppercase;
        letter-spacing: 1px;
        white-space: nowrap;
    }
}
