/* ============================================================
   RAIPUR REPAIR SERVICE — Bright Professional Design
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --blue-light: #3b82f6;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --green: #059669;
    --green-light: #10b981;
    --green-50: #ecfdf5;
    --orange: #ea580c;
    --orange-light: #f97316;
    --amber: #f59e0b;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    --shadow: 0 1px 3px rgba(0, 0, 0, .1), 0 1px 2px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

ul,
ol {
    list-style: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900)
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem
}

@media(min-width:768px) {
    .container {
        padding: 0 2rem
    }
}

.hide-mobile {
    display: none !important
}

@media(min-width:768px) {
    .hide-mobile {
        display: flex !important
    }

    .hide-desktop {
        display: none !important
    }
}

/* ---- HEADER ---- */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow)
}

.header-top {
    background: var(--blue);
    color: #fff;
    font-size: .8rem;
    padding: .4rem 0;
    text-align: center;
    font-weight: 500
}

.header-top a {
    color: #fff;
    text-decoration: underline
}

.header-main {
    padding: .6rem 0
}

.header-main-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    flex-shrink: 0
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--gray-900);
    line-height: 1.2
}

.logo-text span {
    display: block;
    font-size: .65rem;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: .03em
}

.nav-desktop {
    display: none
}

.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem
}

.nav-link {
    padding: .5rem .9rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: all .2s
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
    background: var(--blue-50)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .2rem
}

.nav-dropdown-toggle svg {
    transition: transform .2s
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg)
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: .4rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all .25s
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0)
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .9rem;
    font-size: .9rem;
    color: var(--gray-600);
    border-radius: var(--radius);
    transition: all .15s
}

.nav-dropdown-item:hover {
    background: var(--blue-50);
    color: var(--blue)
}

.nav-dropdown-item svg {
    color: var(--blue);
    flex-shrink: 0
}

.header-cta {
    display: flex;
    align-items: center;
    gap: .6rem
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem .9rem;
    font-weight: 600;
    font-size: .875rem;
    color: var(--blue);
    background: var(--blue-50);
    border-radius: var(--radius-full);
    border: 1px solid var(--blue-100);
    transition: all .2s
}

.header-phone:hover {
    background: var(--blue-100)
}

.header-phone svg {
    color: var(--blue);
    flex-shrink: 0
}

/* Hamburger */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all .3s
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 999;
    padding: 90px 1.5rem 2rem;
    transform: translateX(100%);
    transition: transform .3s;
    overflow-y: auto
}

.mobile-menu.active {
    transform: translateX(0)
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: .15rem
}

.mobile-nav-link {
    display: block;
    padding: .85rem 1rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all .15s
}

.mobile-nav-link:hover {
    background: var(--blue-50);
    color: var(--blue)
}

.mobile-services-list {
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: .1rem;
    margin-bottom: .4rem
}

.mobile-services-list a {
    display: block;
    padding: .6rem 1rem;
    font-size: .95rem;
    color: var(--gray-500);
    border-left: 2px solid var(--gray-200);
    transition: all .15s
}

.mobile-services-list a:hover {
    color: var(--blue);
    border-left-color: var(--blue);
    background: var(--blue-50)
}

@media(min-width:1024px) {
    .nav-desktop {
        display: block
    }

    .mobile-menu-toggle {
        display: none
    }
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .7rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    border: none;
    transition: all .25s;
    white-space: nowrap;
    text-decoration: none;
    line-height: 1.4
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, .3)
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, .4)
}

.btn-cta {
    background: var(--green);
    color: #fff;
    box-shadow: 0 2px 8px rgba(5, 150, 105, .3)
}

.btn-cta:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, .4)
}

.btn-white {
    background: #fff;
    color: var(--gray-800);
    box-shadow: var(--shadow-md)
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg)
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue)
}

.btn-outline:hover {
    background: var(--blue);
    color: #fff;
    transform: translateY(-1px)
}

.btn-lg {
    padding: .85rem 2rem;
    font-size: 1rem
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.1rem
}

.btn-full {
    width: 100%
}

.btn svg {
    flex-shrink: 0
}

/* ---- HERO ---- */
.hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
    padding: 3rem 0 3.5rem;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .08) 0%, transparent 70%);
    border-radius: 50%
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem .9rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: var(--radius-full);
    font-size: .8rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1.25rem
}

.hero h1,
.hero-title {
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.15
}

.hero h1 span {
    color: #fbbf24
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.hero-cta-box {
    margin-bottom: 1rem
}

.hero-phone-display {
    margin-bottom: .5rem
}

.hero-phone-display a {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #fff;
    transition: color .2s
}

.hero-phone-display a:hover {
    color: #fbbf24
}

.hero-subtext {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    margin-bottom: 1.25rem
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem
}

.hero-feature {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    color: rgba(255, 255, 255, .95);
    padding: .3rem .6rem;
    background: rgba(255, 255, 255, .1);
    border-radius: var(--radius-full)
}

.hero-feature svg {
    color: #34d399;
    flex-shrink: 0
}

@media(min-width:768px) {
    .hero {
        padding: 4rem 0 5rem
    }
}

/* Service Hero (inner pages) */
.service-hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
    padding: 2.5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden
}

.service-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    border-radius: 50%
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto
}

.service-hero h1 {
    color: #fff;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    margin-bottom: .75rem
}

.service-hero p {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.7
}

/* ---- TRUST BADGES ---- */
.trust-badges {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0
}

.trust-badges-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: .4rem;
    color: var(--gray-600);
    font-size: .8rem;
    white-space: nowrap
}

.trust-badge svg {
    color: var(--blue);
    flex-shrink: 0
}

.trust-badge strong {
    color: var(--gray-800)
}

@media(min-width:768px) {
    .trust-badges-content {
        gap: 2.5rem
    }

    .trust-badge {
        font-size: .875rem
    }
}

/* ---- SECTION COMMON ---- */
.section-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-badge {
    display: inline-block;
    padding: .3rem .9rem;
    background: var(--blue-50);
    color: var(--blue);
    font-size: .75rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .75rem;
    border: 1px solid var(--blue-100)
}

.section-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: .75rem;
    color: var(--gray-900)
}

.section-description {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7
}

/* ---- SERVICES ---- */
.services-section {
    padding: 3.5rem 0;
    background: var(--white)
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media(min-width:640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .services-grid {
        gap: 1.5rem
    }

    .services-section {
        padding: 4rem 0
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all .3s
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue-light)
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 180px
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.service-card:hover .service-card-image img {
    transform: scale(1.06)
}

.service-card-badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    padding: .3rem .7rem;
    background: var(--orange);
    color: #fff;
    font-size: .7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: .03em
}

.service-card-content {
    padding: 1.25rem
}

.service-card-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-50);
    color: var(--blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem
}

.service-card-content h3 {
    font-size: 1.15rem;
    margin-bottom: .4rem;
    color: var(--gray-900)
}

.service-card-content p {
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: .75rem;
    line-height: 1.6
}

.service-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1rem
}

.service-card-feature {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .2rem .6rem;
    background: var(--gray-50);
    border-radius: var(--radius-full);
    font-size: .75rem;
    color: var(--gray-600);
    border: 1px solid var(--gray-200)
}

.service-card-feature svg {
    color: var(--green);
    flex-shrink: 0
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .875rem;
    font-weight: 600;
    color: var(--blue);
    transition: all .15s
}

.service-card-link:hover {
    gap: .6rem;
    color: var(--blue-dark)
}

.service-card-cta {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap
}

/* ---- WHY CHOOSE US ---- */
.why-choose-section {
    padding: 3.5rem 0;
    background: var(--gray-50)
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media(min-width:640px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .why-choose-section {
        padding: 4rem 0
    }
}

.why-choose-card {
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all .3s
}

.why-choose-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-light)
}

.why-choose-icon {
    width: 56px;
    height: 56px;
    background: var(--blue);
    color: #fff;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 3px 10px rgba(37, 99, 235, .25)
}

.why-choose-card h4 {
    font-size: 1rem;
    margin-bottom: .4rem;
    color: var(--gray-900)
}

.why-choose-card p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

/* ---- BRANDS ---- */
.brands-section {
    padding: 2.5rem 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200)
}

.brands-title {
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 1.25rem
}

.brands-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.2rem 2rem
}

/* ---- PROCESS ---- */
.process-section {
    padding: 3.5rem 0;
    background: var(--white)
}

@media(min-width:1024px) {
    .process-section {
        padding: 4rem 0
    }
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media(min-width:640px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem
    }
}

.process-step {
    text-align: center;
    padding: 1.75rem 1.25rem
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 auto 1rem;
    box-shadow: 0 3px 10px rgba(37, 99, 235, .25)
}

.process-step h4 {
    font-size: 1rem;
    margin-bottom: .4rem;
    color: var(--gray-900)
}

.process-step p {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.6
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    padding: 3.5rem 0;
    background: var(--gray-50)
}

@media(min-width:1024px) {
    .testimonials-section {
        padding: 4rem 0
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem
}

@media(min-width:640px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem
    }
}

.testimonial-card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    transition: all .3s
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg)
}

.testimonial-rating {
    display: flex;
    gap: .1rem;
    margin-bottom: .75rem
}

.testimonial-rating svg {
    fill: var(--amber);
    color: var(--amber);
    width: 16px;
    height: 16px
}

.testimonial-text {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .6rem
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--blue);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: .8rem;
    flex-shrink: 0
}

.testimonial-info h5 {
    font-size: .875rem;
    font-weight: 600;
    color: var(--gray-900)
}

.testimonial-info p {
    font-size: .75rem;
    color: var(--gray-500)
}

/* ---- CTA SECTION ---- */
.cta-section {
    padding: 3.5rem 0;
    background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, .06) 0%, transparent 70%);
    border-radius: 50%
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto
}

.cta-title {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: #fff;
    margin-bottom: .75rem
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, .9);
    margin-bottom: 1.5rem;
    line-height: 1.7
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 1.5rem
}

.cta-phone svg {
    color: #fff
}

.cta-phone a {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #fff
}

.cta-phone a:hover {
    color: #fbbf24
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .75rem
}

/* ---- FAQ ---- */
.faq-section {
    padding: 3.5rem 0;
    background: var(--white)
}

@media(min-width:1024px) {
    .faq-section {
        padding: 4rem 0
    }
}

.faq-grid {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.faq-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all .3s
}

.faq-item:hover {
    border-color: var(--gray-300)
}

.faq-item.active {
    border-color: var(--blue);
    background: var(--white)
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.1rem 1.25rem;
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    font-weight: 600;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: .75rem
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform .3s
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--blue)
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s
}

.faq-item.active .faq-answer {
    max-height: 500px
}

.faq-answer-content {
    padding: 0 1.25rem 1.1rem
}

.faq-answer-content p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.7
}

/* ---- DISCLAIMER ---- */
.disclaimer-section {
    padding: 1.5rem 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200)
}

.disclaimer-content {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200)
}

.disclaimer-title {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .9rem;
    font-weight: 700;
    color: var(--orange);
    margin-bottom: .5rem
}

.disclaimer-title svg {
    color: var(--orange);
    flex-shrink: 0
}

.disclaimer-text {
    font-size: .75rem;
    color: var(--gray-500);
    line-height: 1.8
}

.disclaimer-text a {
    color: var(--blue);
    text-decoration: underline
}

/* ---- SERVICE PROBLEMS (inner pages) ---- */
.service-problems {
    padding: 3rem 0;
    background: var(--white)
}

.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem
}

@media(min-width:640px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem
    }
}

.problem-item {
    display: flex;
    gap: .75rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all .3s
}

.problem-item:hover {
    border-color: var(--blue-light);
    background: var(--blue-50);
    transform: translateY(-2px)
}

.problem-item svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: .15rem
}

.problem-item h4 {
    font-size: .95rem;
    color: var(--gray-800);
    margin-bottom: .25rem
}

.problem-item p {
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.6
}

/* ---- FOOTER ---- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 3rem 0 0
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

@media(min-width:640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1fr
    }
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: .5rem
}

.footer-brand p {
    font-size: .875rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: .75rem
}

.footer-registration {
    padding: .75rem;
    background: rgba(255, 255, 255, .04);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .06);
    margin-top: .75rem
}

.footer-registration p {
    font-size: .75rem;
    color: var(--gray-500);
    line-height: 1.6
}

.footer-registration strong {
    color: var(--gray-300)
}

.footer-links h4 {
    color: #fff;
    font-size: .875rem;
    font-weight: 600;
    margin-bottom: .75rem;
    text-transform: uppercase;
    letter-spacing: .04em
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.footer-links a {
    font-size: .85rem;
    color: var(--gray-400);
    transition: color .15s;
    padding: .15rem 0
}

.footer-links a:hover {
    color: #fff
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center
}

.footer-bottom p {
    font-size: .75rem;
    color: var(--gray-500)
}

/* ---- FLOATING CTA ---- */
.floating-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    z-index: 998;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, .15)
}

.floating-cta .btn {
    flex: 1;
    border-radius: 0;
    padding: .9rem;
    font-size: .9rem;
    justify-content: center
}

.btn-call {
    background: var(--green);
    color: #fff
}

.btn-call:hover {
    background: #047857
}

.btn-whatsapp {
    background: #25D366;
    color: #fff
}

.btn-whatsapp:hover {
    background: #1da851
}

@media(min-width:1024px) {
    .floating-cta {
        display: none !important
    }
}

body {
    padding-bottom: 52px
}

@media(min-width:1024px) {
    body {
        padding-bottom: 0
    }
}

/* ---- POLICY PAGES ---- */
.policy-hero {
    background: linear-gradient(135deg, var(--blue) 0%, #1e40af 100%);
    padding: 2.5rem 0;
    text-align: center
}

.policy-hero h1 {
    color: #fff;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    margin-bottom: .4rem
}

.policy-hero p {
    color: rgba(255, 255, 255, .85);
    font-size: .9rem
}

.policy-content {
    padding: 2.5rem 0;
    background: var(--white)
}

.policy-content .container {
    max-width: 780px
}

.policy-content h2 {
    font-size: 1.25rem;
    margin: 2rem 0 .6rem;
    color: var(--gray-900);
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--gray-100)
}

.policy-content h2:first-child {
    margin-top: 0
}

.policy-content h3 {
    font-size: 1.05rem;
    margin: 1.25rem 0 .4rem;
    color: var(--gray-800)
}

.policy-content p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: .75rem
}

.policy-content ul,
.policy-content ol {
    padding-left: 1.25rem;
    margin-bottom: .75rem
}

.policy-content ul {
    list-style: disc
}

.policy-content ol {
    list-style: decimal
}

.policy-content li {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: .3rem
}

.policy-content li strong {
    color: var(--gray-800)
}

.policy-content a {
    color: var(--blue);
    text-decoration: underline
}

.policy-content .last-updated {
    font-size: .8rem;
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-style: italic
}

@media(min-width:1024px) {
    .policy-hero {
        padding: 3rem 0
    }

    .policy-content {
        padding: 3rem 0
    }
}

/* ---- RESPONSIVE ---- */
@media(max-width:767px) {
    .header-top {
        font-size: .75rem;
        padding: .35rem 0
    }

    .logo-text {
        font-size: .95rem
    }

    .logo-text span {
        font-size: .6rem
    }

    .logo-icon {
        width: 36px;
        height: 36px
    }

    .header-phone {
        padding: .35rem .65rem;
        font-size: .8rem
    }

    .header-phone svg {
        width: 14px;
        height: 14px
    }

    .service-card-image {
        height: 150px
    }
}