/* ============================================
   Easy Serv Professional Services — Stylesheet
   ============================================ */

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

:root {
    --primary-blue: #1e40af;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #dbeafe;
    --primary-orange: #ea580c;
    --primary-orange-light: #fff7ed;
    --success-green: #10b981;
    --business-gray: #6b7280;
    --light-gray: #f3f4f6;
    --white: #ffffff;
    --dark: #111827;
    --dark-gray: #374151;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

html, html body {
    overflow-x: hidden;
    max-width: 100%;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--white);
    max-width: 100%;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-blue-dark); }

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

/* -- Skip Link -- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--primary-blue);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* -- Buttons -- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    line-height: 1.4;
}

.btn-lg { padding: 16px 32px; font-size: 1.075rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}
.btn-primary:hover {
    background: var(--primary-blue-dark);
    border-color: var(--primary-blue-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}
.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* -- Header -- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-sizing: border-box;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.navbar { padding: 0.75rem 0; }

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

.nav-brand {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}
.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}
.tagline {
    font-size: 0.75rem;
    color: var(--primary-orange);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.925rem;
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary-blue); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.925rem;
    white-space: nowrap;
}
.header-phone:hover { color: var(--primary-orange); }

.language-selector { position: relative; }
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid var(--border);
    background: var(--light-gray);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    color: inherit;
    font-family: inherit;
    line-height: 1;
    transition: var(--transition);
}
.lang-btn:hover { border-color: var(--primary-blue); }
.lang-flag {
    display: inline-flex;
    width: 20px;
    height: 14px;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}
.lang-flag svg { width: 100%; height: 100%; display: block; }
.lang-caret { width: 10px; height: 6px; opacity: 0.6; transition: transform 0.2s; }
.lang-btn[aria-expanded="true"] .lang-caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 110px;
    z-index: 100;
}
.lang-menu[hidden] { display: none; }
.lang-menu li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark);
}
.lang-menu li:hover { background: var(--light-gray); }
.lang-menu li[aria-selected="true"] { background: var(--light-gray); }

/* Hide mobile-only items on desktop */
.mobile-only-nav { display: none; }

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: none;
    padding: 4px;
    gap: 5px;
}
.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* -- Hero -- */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-gold {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}
.badge-green {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.highlight { color: var(--primary-orange); }

.hero-description {
    font-size: 1.25rem;
    color: var(--business-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
}
.hero-rating .stars {
    color: #f59e0b;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.rating-text {
    font-size: 0.9rem;
    color: var(--business-gray);
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-number {
    display: block;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: var(--business-gray);
    text-transform: uppercase;
    letter-spacing: 0.75px;
    font-weight: 500;
    margin-top: 4px;
}

/* -- Section Headers -- */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--business-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* -- Services -- */
.services {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-blue);
}

.service-card.featured {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow);
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-icon { margin-bottom: 1rem; }

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}
.service-card > p {
    color: var(--business-gray);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.service-card li {
    color: var(--dark-gray);
    margin-bottom: 0.4rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}
.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-green);
    font-weight: 700;
}
.service-card .btn { margin-top: auto; align-self: flex-start; }

.financing-banner {
    margin-top: 3rem;
    background: var(--primary-blue-light);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    border: 1px solid #bfdbfe;
}
.financing-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-blue);
}
.financing-content strong { font-size: 1.1rem; }
.financing-content p { margin: 0; font-size: 0.9rem; color: var(--dark-gray); }

/* -- Reviews -- */
.reviews {
    padding: 80px 0;
    background: var(--light-gray);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.rating-big { text-align: center; }
.rating-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}
.stars-big {
    color: #f59e0b;
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin: 4px 0;
}
.rating-label {
    font-size: 0.9rem;
    color: var(--success-green);
    font-weight: 600;
}

.rating-bars { min-width: 200px; }
.bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--business-gray);
    margin-bottom: 2px;
}
.bar {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 3px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 3px;
}

.rating-source {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--business-gray);
}
.thumbtack-logo { height: 20px; }

.reviews-carousel {
    overflow: hidden;
    position: relative;
    margin: 2rem 0;
    max-width: 100%;
}
.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
    min-width: 0;
    background: var(--white);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-sizing: border-box;
}
.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}
.review-text {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    font-style: italic;
    white-space: normal;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
.review-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
}
.review-author strong { font-size: 0.9rem; color: var(--dark); display: block; }
.review-author span { font-size: 0.75rem; color: var(--business-gray); }
.verified-badge {
    font-size: 0.75rem;
    color: var(--success-green);
    font-weight: 600;
    white-space: nowrap;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--dark-gray);
}
.carousel-btn:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.carousel-dots { display: flex; gap: 8px; }
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}
.dot.active { background: var(--primary-blue); transform: scale(1.2); }

.reviews-cta { text-align: center; margin-top: 1rem; }

/* -- About -- */
.about {
    padding: 80px 0;
    background: var(--white);
}
.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}
.about-text h2 { margin-bottom: 0.5rem; }
.about-text .lead {
    font-size: 1.15rem;
    color: var(--primary-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}
.about-text p {
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.about-features { margin-top: 2rem; }
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.25rem;
}
.feature-item svg { flex-shrink: 0; margin-top: 2px; }
.feature-item strong { display: block; font-size: 0.95rem; color: var(--dark); }
.feature-item p { margin: 0; font-size: 0.85rem; color: var(--business-gray); }

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.about-image-placeholder {
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
}
.about-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    border-radius: var(--radius);
}
.trust-card {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.trust-row:last-child { border-bottom: none; }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; }
.trust-row strong { font-size: 0.9rem; color: var(--dark); display: block; }
.trust-row span { font-size: 0.8rem; color: var(--business-gray); }

/* -- Service Areas -- */
.service-areas {
    padding: 60px 0;
    background: var(--light-gray);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
    gap: 2rem;
}
.area-group {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.area-group h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
}
.area-group ul { list-style: none; }
.area-group li {
    padding: 4px 0;
    font-size: 0.9rem;
    color: var(--dark-gray);
    padding-left: 1.25rem;
    position: relative;
}
.area-group li::before {
    content: "📍";
    position: absolute;
    left: 0;
    font-size: 0.75rem;
}

/* -- Contact -- */
.contact {
    padding: 80px 0;
    background: var(--white);
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--primary-blue-light);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}
.contact-item p, .contact-item a {
    color: var(--business-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}
.contact-item a:hover { color: var(--primary-blue); }

.contact-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--business-gray);
    margin-top: 0.75rem;
}

.form-feedback {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 3rem 2rem;
}
.form-feedback h3 { color: var(--dark); }
.form-feedback p { color: var(--business-gray); }

/* -- Footer -- */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}
.footer-brand p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0.25rem 0;
}
.footer-tagline { color: var(--primary-orange) !important; font-weight: 500; }
.footer-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer-contact a {
    color: #9ca3af;
    font-size: 0.9rem;
}
.footer-contact a:hover { color: var(--primary-orange); }

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}
.footer-column ul { list-style: none; }
.footer-column li { margin-bottom: 0.5rem; }
.footer-column a { color: #9ca3af; font-size: 0.875rem; }
.footer-column a:hover { color: var(--primary-orange); }

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.25rem;
    text-align: center;
}
.footer-bottom p {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
}

/* -- Floating Buttons -- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.phone-float {
    display: none;
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-blue);
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.4);
    z-index: 999;
    transition: var(--transition);
}
.phone-float:hover { transform: scale(1.1); }

/* -- Animations -- */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* -- Trust card horizontal layout (desktop only) -- */
.about .trust-card {
    margin-top: 1rem;
}
@media (min-width: 769px) {
    .about .trust-card {
        display: flex;
        gap: 1.5rem;
    }
    .about .trust-card .trust-row {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid var(--border);
        padding: 0.5rem 1rem 0.5rem 0;
    }
    .about .trust-card .trust-row:last-child {
        border-right: none;
        padding-right: 0;
    }
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .review-card { flex: 0 0 calc(50% - 12px); max-width: calc(50% - 12px); }
    .about-content { grid-template-columns: 1fr; gap: 2rem; }
    .hero-title { font-size: 2.75rem; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; position: relative; z-index: 1002; }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        gap: 0.5rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.active { display: flex; }
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-actions { display: none !important; }
    .navbar .container {
        flex-wrap: nowrap;
        gap: 0.5rem;
        padding: 0 16px;
    }
    .nav-brand { flex-shrink: 1; min-width: 0; }
    .logo { font-size: 1.25rem; }
    .tagline { font-size: 0.65rem; }
    .nav-brand, .header-phone, .logo, .tagline {
        text-decoration: none;
    }

    .hero-title { font-size: 2.25rem; }
    .hero { padding: 110px 0 50px; }
    .hero-stats { gap: 2rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .hero-description { font-size: 1.05rem; }

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

    .review-card { flex: 0 0 100%; max-width: 100%; }
    .reviews-carousel { overflow: hidden; }
    .rating-summary { flex-direction: column; gap: 1.5rem; }

    .contact-content { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form { width: 100%; box-sizing: border-box; }
    .form-group input,
    .form-group select,
    .form-group textarea { width: 100%; box-sizing: border-box; }

    /* Trust card stacks on mobile */
    .about .trust-card {
        display: block;
        margin-top: 1.5rem;
    }
    .about .trust-card .trust-row {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 10px 0;
    }
    .about .trust-card .trust-row:last-child {
        border-bottom: none;
    }

    .footer-content { grid-template-columns: 1fr; gap: 2rem; }
    .footer-links { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

    .phone-float { display: flex; }
    .whatsapp-float { bottom: 90px; }

    .section-header h2 { font-size: 1.75rem; }
    .services, .reviews, .about, .contact { padding: 60px 0; }

    /* Financing banner stacks on mobile */
    .financing-content { flex-wrap: wrap; }

    /* Areas grid safe for small screens */
    .areas-grid { grid-template-columns: 1fr; }

    /* Carousel controls on mobile */
    .carousel-controls { width: 100%; max-width: 100%; padding: 0 16px; box-sizing: border-box; }
    .carousel-btn { width: 44px; height: 44px; flex-shrink: 0; }
    .dot { width: 12px; height: 12px; }
    .carousel-dots { gap: 10px; flex-wrap: wrap; overflow: hidden; }

    /* Review meta stacks if needed */
    .review-meta { flex-direction: column; align-items: flex-start; gap: 8px; }

    /* Service areas padding */
    .service-areas { padding: 50px 0; }

    /* About section visual order */
    .about-visual { order: -1; }

    /* Show mobile-only nav items */
    .mobile-only-nav { display: list-item; list-style: none; border-top: 1px solid var(--border); margin-top: 0.5rem; padding-top: 0.5rem; }

    /* Language selector dropdown safety */
    .lang-menu { right: 0; left: auto; max-width: calc(100vw - 32px); }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 1.75rem; }
    .hero { padding: 100px 0 40px; }
    .hero-description { font-size: 1rem; }
    .hero-rating { flex-wrap: wrap; justify-content: center; }
    .stat-number { font-size: 1.75rem; }
    .hero-stats { gap: 1.5rem; }

    .section-header h2 { font-size: 1.5rem; }
    .section-header p { font-size: 0.95rem; }

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

    .service-card { padding: 1.5rem; }
    .service-card h3 { font-size: 1.2rem; }

    .review-card { padding: 1.25rem; }

    .contact-form { padding: 1.5rem; }

    .financing-banner { padding: 1.25rem; }
    .financing-content { flex-direction: column; text-align: center; }

    /* Ensure minimum readable font size */
    .service-card li,
    .service-card > p,
    .area-group li,
    .review-text,
    .footer-column a,
    .contact-item p,
    .contact-item a { font-size: 0.9rem; }

    .trust-row span { font-size: 0.85rem; }

    /* Logo sizing on very small screens */
    .logo { font-size: 1.25rem; }
    .tagline { font-size: 0.65rem; }
}

/* -- Accessibility -- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
    .animate-ready { opacity: 1; transform: none; }
}

.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.carousel-btn:focus-visible {
    outline: 3px solid var(--primary-blue);
    outline-offset: 2px;
}

/* -- Print -- */
@media print {
    .header, .footer, .whatsapp-float, .phone-float, .contact-form, .carousel-controls { display: none; }
    .hero, .services, .reviews, .about, .contact { padding: 20px 0; }
    .service-card, .review-card, .contact-item { break-inside: avoid; }
}
