/* =========================================
   ROTA REPARAÇÕES - ESTILOS GLOBAIS
   ========================================= */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #2D3E6B;
    --navy-dark: #1e2d52;
    --navy-light: #3a4f85;
    --orange: #F5A623;
    --orange-hover: #e09410;
    --dark: #FFFFFF;
    --dark-card: #F8FAFC;
    --dark-border: #E2E8F0;
    --text-white: #1E293B;
    --text-muted: #64748B;
    --text-light: #374151;
    --green-wa: #25D366;
    --radius: 12px;
    --shadow: 0 8px 40px rgba(0,0,0,0.10);
    --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #FFFFFF;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; }

/* =========================================
   FLOATING BUTTONS
   ========================================= */
.floating-buttons {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1000;
}

.float-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0,0,0,0.4);
    transition: var(--transition);
    cursor: pointer;
}

.float-btn:hover {
    transform: scale(1.12) translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.5);
}

.call-btn { background: var(--navy); }
.whatsapp-btn { background: var(--green-wa); }

/* =========================================
   HEADER
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 900;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid #E2E8F0;
    transition: var(--transition);
}

.header.scrolled {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 16px;
}

.nav-logo a { display: flex; align-items: center; }

.nav-logo img {
    height: 58px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 13px;
    font-size: 14px;
    font-weight: 500;
    color: #1E293B;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--orange);
    background: rgba(245,166,35,0.1);
}

.arrow { font-size: 10px; opacity: 0.6; }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    min-width: 230px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 9px 13px;
    font-size: 13.5px;
    color: #374151;
    border-radius: 8px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(245,166,35,0.1);
    color: #e09410;
    padding-left: 18px;
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: #111;
    padding: 11px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-call:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(245,166,35,0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #1E293B;
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================
   HERO - HOME
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 70px;
    background:
        radial-gradient(ellipse at 10% 60%, rgba(45,62,107,0.06) 0%, transparent 55%),
        radial-gradient(ellipse at 90% 20%, rgba(245,166,35,0.07) 0%, transparent 50%),
        linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%, #fff8ed 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245,166,35,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,166,35,0.12);
    border: 1px solid rgba(245,166,35,0.3);
    color: var(--orange);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.badge-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    animation: blink 1.4s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    color: #1E293B;
}

.hero-highlight {
    color: var(--orange);
    display: block;
}

.hero-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.75;
    margin-bottom: 30px;
    max-width: 460px;
}

.hero-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 38px;
}

.hero-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.hero-list li svg { flex-shrink: 0; }

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #111;
    padding: 16px 34px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 800;
    transition: var(--transition);
    box-shadow: 0 10px 32px rgba(245,166,35,0.3);
}

.hero-cta:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 16px 42px rgba(245,166,35,0.42);
}

.hero-note {
    margin-top: 12px;
    font-size: 11.5px;
    color: #94A3B8;
}

/* Form Card */
.form-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 34px;
    box-shadow: 0 8px 40px rgba(45,62,107,0.10);
}

.form-title {
    font-size: 22px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 13px;
    color: #64748B;
    margin-bottom: 26px;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 7px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1.5px solid #CBD5E1;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1E293B;
    font-family: inherit;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder, .form-textarea::placeholder {
    color: #94A3B8;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--orange);
    background: rgba(245,166,35,0.05);
    box-shadow: 0 0 0 3px rgba(245,166,35,0.12);
}

.form-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%239CA3AF'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    cursor: pointer;
}

.form-select option { background: #FFFFFF; color: #1E293B; }

.form-textarea {
    resize: vertical;
    min-height: 85px;
}

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

.form-submit {
    width: 100%;
    background: var(--orange);
    color: #111;
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    margin-top: 6px;
}

.form-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(245,166,35,0.4);
}

/* =========================================
   SECTIONS SHARED
   ========================================= */
section { padding: 88px 0; }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    margin-bottom: 14px;
    color: #1E293B;
}

.section-title span { color: var(--orange); }

.section-subtitle {
    font-size: 16px;
    color: #64748B;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.65;
}

/* =========================================
   SERVICES GRID
   ========================================= */
.services { background: #F8FAFC; }

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

.service-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(245,166,35,0.5);
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.service-card:hover::after { transform: scaleX(1); }

.service-icon {
    width: 68px;
    height: 68px;
    background: rgba(45,62,107,0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 30px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(245,166,35,0.12);
    transform: scale(1.05);
}

.service-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1E293B;
}

.service-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    transition: var(--transition);
}

.service-link:hover { gap: 10px; }

/* =========================================
   WHY US
   ========================================= */
.why-us { background: #FFFFFF; }

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin-top: 34px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.why-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(45,62,107,0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(45,62,107,0.15);
}

.why-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1E293B;
}

.why-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.55;
}

/* Stats Grid */
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stat-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.stat-card:hover {
    border-color: var(--orange);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: #64748B;
    font-weight: 500;
}

/* =========================================
   SERVICE AREAS
   ========================================= */
.areas { background: #F8FAFC; }

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.area-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 22px 12px;
    text-align: center;
    transition: var(--transition);
    display: block;
}

.area-card:hover {
    border-color: var(--orange);
    background: rgba(245,166,35,0.06);
    transform: translateY(-3px);
}

.area-icon { font-size: 22px; margin-bottom: 8px; }

.area-name {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
}

.area-note {
    font-size: 11px;
    color: #94A3B8;
    margin-top: 3px;
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials { background: var(--dark); }

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

.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(245,166,35,0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.stars {
    color: var(--orange);
    font-size: 17px;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: #1E293B;
}

.author-loc {
    font-size: 12px;
    color: #94A3B8;
}

/* =========================================
   CTA BANNER
   ========================================= */
.cta-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(245,166,35,0.08);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-inner p {
    font-size: 16px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--orange);
    color: #111;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    transition: var(--transition);
}

.cta-btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(245,166,35,0.4);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.12);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact { background: #FFFFFF; }

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

.contact-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.contact-card:hover {
    border-color: rgba(245,166,35,0.4);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
}

.contact-icon { font-size: 42px; margin-bottom: 18px; }

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1E293B;
}

.contact-link {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 8px;
    transition: var(--transition);
}

.contact-link:hover { color: var(--orange-hover); }

.contact-card p {
    font-size: 13px;
    color: #64748B;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #1E293B;
    border-top: 1px solid #334155;
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo img {
    height: 72px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-social { display: flex; gap: 10px; }

.social-link {
    width: 40px; height: 40px;
    background: #334155;
    border: 1px solid #475569;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    color: #F1F5F9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13.5px;
    color: #94A3B8;
    transition: var(--transition);
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 22px;
}

.footer-contact-label {
    font-size: 11px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.footer-contact-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--orange);
}

.footer-contact-value:hover { color: var(--orange-hover); }

.hours-badge {
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.25);
    color: var(--orange);
    padding: 9px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-top: 8px;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-size: 13px;
    color: #94A3B8;
}

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

.footer-bottom-links a {
    font-size: 13px;
    color: #94A3B8;
    transition: var(--transition);
}

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

/* =========================================
   SERVICE PAGE HERO
   ========================================= */
.page-hero {
    padding: 130px 0 70px;
    background:
        radial-gradient(ellipse at 20% 60%, rgba(45,62,107,0.06) 0%, transparent 55%),
        linear-gradient(160deg, #f0f4ff 0%, #ffffff 60%, #fff8ed 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.page-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.page-hero-text .breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb span { margin: 0 6px; }

.page-hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1E293B;
}

.page-hero-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.75;
    margin-bottom: 32px;
}

.page-hero-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(45,62,107,0.07);
    border: 1px solid rgba(45,62,107,0.18);
    color: #2D3E6B;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.page-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--orange);
    color: #111;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,166,35,0.38);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: transparent;
    border: 2px solid var(--dark-border);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

/* Page Info Box */
.page-info-box {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.info-box-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 20px;
}

.info-box-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.info-box-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.info-box-list li svg { flex-shrink: 0; margin-top: 1px; }

.info-box-divider {
    height: 1px;
    background: #E2E8F0;
    margin: 18px 0;
}

.info-box-price {
    text-align: center;
}

.price-label {
    font-size: 12px;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.price-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange);
}

.price-note {
    font-size: 12px;
    color: #94A3B8;
    margin-top: 4px;
}

/* How it works */
.how-it-works { background: #FFFFFF; }

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 38px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    z-index: 0;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border: 3px solid var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: var(--orange);
    margin: 0 auto 18px;
    box-shadow: 0 0 0 6px rgba(245,166,35,0.08);
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1E293B;
}

.step-desc {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.6;
}

/* Appliance models */
.models-section { background: #F8FAFC; }

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

.model-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
}

.model-card:hover {
    border-color: var(--orange);
    transform: translateY(-3px);
}

.model-icon { font-size: 28px; margin-bottom: 10px; }

.model-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1E293B;
}

.model-desc {
    font-size: 12px;
    color: #64748B;
}

/* FAQ */
.faq { background: #FFFFFF; }

.faq-list { max-width: 780px; margin: 0 auto; }

.faq-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.open { border-color: rgba(245,166,35,0.35); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    cursor: pointer;
    background: #F8FAFC;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }

.faq-icon {
    font-size: 20px;
    color: var(--orange);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

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

.faq-item.open .faq-answer { 
    max-height: 1000px; 
    padding-bottom: 10px;
}

.faq-answer p {
    padding: 16px 22px 20px;
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.7;
    background: #FFFFFF;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .areas-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .how-steps { grid-template-columns: repeat(2, 1fr); }
    .how-steps::before { display: none; }
    .models-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
    .nav-menu {
        position: fixed;
        top: 75px; left: 0; right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
        border-bottom: 1px solid #E2E8F0;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }
    .nav-menu.active { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-list { flex-direction: column; align-items: flex-start; gap: 4px; }
    .nav-link { width: 100%; }
    .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .dropdown-menu { position: static; box-shadow: none; background: rgba(45,62,107,0.04); margin-top: 4px; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }
}

@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-stats { grid-template-columns: 1fr 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .how-steps { grid-template-columns: 1fr; }
    .models-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-buttons { flex-direction: column; align-items: center; }
}

/* New Service Cards */
.other-services { padding: 100px 0; }
.service-card-new {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
    border: 1px solid #E2E8F0;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: var(--orange);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1E293B;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link-new {
    font-size: 14px;
    font-weight: 700;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link-new:hover {
    gap: 10px;
}

@media (max-width: 1000px) {
    .other-services .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .other-services .services-grid {
        grid-template-columns: 1fr;
    }
}

/* SERVICE IMAGE ROWS */
.gas-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.gas-row.reverse {
    flex-direction: row-reverse;
}

.gas-img {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.gas-img img {
    width: 100%;
    display: block;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.img-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--orange);
    color: #111;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.gas-text {
    flex: 1;
}

@media (max-width: 992px) {
    .gas-row, .gas-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }
    .gas-img img {
        height: 300px;
    }
    .gas-text {
        padding: 0 !important;
        text-align: center;
    }
}
