/* ==========================================================================
   Güney Halı Yıkama – Ortak Site Teması
   ========================================================================== */

:root {
    --primary: #0d63b8;         /* Ana marka mavisi */
    --primary-dark: #094a8a;
    --primary-light: #3b8fe0;
    --navy: #101826;            /* Logo lacivert/siyahı */
    --navy-light: #1c2a3f;
    --secondary: #1fae5c;       /* Yeşil (WhatsApp / güven vurgusu) */
    --whatsapp: #25D366;
    --light: #f7f8fa;
    --cream: #fdf5ec;
    --gray: #64748b;
    --border: #e6e8ec;
    --shadow-sm: 0 2px 10px rgba(16, 24, 38, 0.06);
    --shadow-md: 0 10px 30px rgba(16, 24, 38, 0.10);
    --shadow-lg: 0 20px 45px rgba(16, 24, 38, 0.16);
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    background-color: var(--light);
    color: var(--navy);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a { color: inherit; }

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

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(13, 99, 184, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

/* ---------------- Top notice bar ---------------- */
.top-bar {
    background: var(--navy);
    color: #cbd5e1;
    font-size: 0.82rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.top-bar a { color: #cbd5e1; text-decoration: none; }
.top-bar a:hover { color: #fff; }

.top-bar .top-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.top-bar .top-left span, .top-bar .top-left a { display: flex; align-items: center; gap: 6px; }

.top-bar .socials { display: flex; gap: 12px; }
.top-bar .socials a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.top-bar .socials a:hover { background: var(--primary); color: #fff; }

/* ---------------- Header & Nav ---------------- */
header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-text strong {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.3px;
}

.logo-text span {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s;
}

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

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

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

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

.btn-call {
    background: var(--navy);
    color: #fff;
    padding: 0.65rem 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s, transform 0.2s;
    white-space: nowrap;
}

.btn-call:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    flex-shrink: 0;
}

/* ---------------- Hero Section (index) ---------------- */
.hero {
    position: relative;
    color: #fff;
    padding: 130px 2rem 110px;
    text-align: center;
    background: linear-gradient(120deg, rgba(16,24,38,0.92), rgba(13,99,184,0.75)), url('../img/banner.jpg') center/cover no-repeat;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--light) 0%, transparent 18%);
}

.hero-content {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero .eyebrow {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.1rem;
    font-weight: 700;
    line-height: 1.25;
    text-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 2.2rem;
    opacity: 0.92;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    padding: 0.95rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(13,99,184,0.35);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(13,99,184,0.45);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: #fff;
    padding: 0.95rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(37,211,102,0.3);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(37,211,102,0.4);
}

.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.2rem;
    flex-wrap: wrap;
}

.hero-stats .stat { text-align: center; }
.hero-stats .stat strong { display: block; font-size: 2rem; font-weight: 700; }
.hero-stats .stat span { font-size: 0.85rem; opacity: 0.85; letter-spacing: 0.5px; }

/* ---------------- Page Banner (inner pages) ---------------- */
.page-banner {
    background: linear-gradient(120deg, rgba(16,24,38,0.92), rgba(13,99,184,0.78)), url('../img/banner.jpg') center/cover no-repeat;
    color: #fff;
    padding: 90px 2rem 70px;
    text-align: center;
}

.page-banner .eyebrow {
    background: rgba(255,255,255,0.14);
    color: #fff;
}

.page-banner h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.page-banner p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.85;
}
.breadcrumb a { color: #fff; text-decoration: none; opacity: 0.8; }
.breadcrumb a:hover { opacity: 1; text-decoration: underline; }

/* ---------------- Features Section ---------------- */
.features {
    max-width: 1200px;
    margin: -55px auto 0;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: #fff;
    padding: 2.2rem 1.8rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--primary);
}

.feature-card .icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(13,99,184,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.1rem;
}

.feature-card i {
    font-size: 1.7rem;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ---------------- Section Titles ---------------- */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.1rem;
    color: var(--navy);
    font-weight: 700;
    margin-top: 0.6rem;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0.7rem auto 0;
}

/* ---------------- Services Section ---------------- */
.services { max-width: 1200px; margin: 90px auto; padding: 0 2rem; }
.services-section { max-width: 1200px; margin: 70px auto; padding: 0 2rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Anasayfadaki Hizmetlerimiz kartları: her zaman tek satırda, daha dar */
.services .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem;
}

.services .service-img { height: 140px; }

.services .service-content { padding: 1.1rem; }

.services .service-content h3 { font-size: 1.02rem; margin-bottom: 0.4rem; }

.services .service-content p {
    font-size: 0.85rem;
    margin-bottom: 0.9rem;
    line-height: 1.5;
}

.services .btn-order {
    padding: 0.6rem;
    font-size: 0.88rem;
}

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

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

.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s, box-shadow 0.35s;
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 210px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(16,24,38,0.55), transparent 60%);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    z-index: 2;
}

.service-content {
    padding: 1.7rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    color: var(--navy);
}

.service-content p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.3rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li i {
    color: var(--secondary);
}

.btn-order {
    background: var(--navy);
    color: #fff;
    text-align: center;
    padding: 0.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
    display: block;
}

.btn-order:hover { background: var(--primary); }

/* ---------------- CTA Section ---------------- */
.cta-section {
    background: var(--navy);
    background-image: radial-gradient(circle at 20% 20%, rgba(13,99,184,0.25), transparent 40%);
    color: #fff;
    padding: 60px 2rem;
    text-align: center;
    margin-top: 70px;
    border-radius: 0;
}

.cta-container { max-width: 700px; margin: 0 auto; }

.cta-container h2 { font-size: 1.9rem; margin-bottom: 0.8rem; }

.cta-container p {
    color: #cbd5e1;
    margin-bottom: 1.8rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons .btn-call { background: var(--primary); }
.cta-buttons .btn-call:hover { background: var(--primary-dark); }

/* Yorumlar bölümünden hemen sonra geliyorsa üstteki boşluğu kapat */
.reviews-section + .cta-section { margin-top: 0; }

/* ---------------- Google Yorumları ---------------- */
.reviews-section {
    background: var(--cream);
    padding: 50px 2rem;
}

.reviews-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 1.6rem;
}

.reviews-summary .g-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.reviews-summary .score {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
}

.reviews-summary .stars {
    color: #fbbc04;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.reviews-summary .count {
    color: var(--gray);
    font-size: 0.86rem;
}

.reviews-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.reviews-viewport {
    overflow: hidden;
    padding: 6px 0 14px;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: reviewsScroll 50s linear infinite;
}

.reviews-viewport:hover .reviews-track {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 1.7rem;
    flex: 0 0 300px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.review-name-wrap h4 {
    font-size: 0.98rem;
    color: var(--navy);
    margin-bottom: 2px;
}

.review-name-wrap span {
    font-size: 0.78rem;
    color: var(--gray);
}

.review-stars {
    color: #fbbc04;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.review-text {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.65;
    flex-grow: 1;
}

.review-date {
    font-size: 0.78rem;
    color: #a8b0bb;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.btn-google {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--navy);
    padding: 0.75rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s, box-shadow 0.25s;
}

.btn-google:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-google svg { width: 20px; height: 20px; }

@media (max-width: 600px) {
    .review-card { flex: 0 0 260px; width: 260px; }
}

/* ---------------- Contact Page ---------------- */
.contact-section { max-width: 1200px; margin: 70px auto; padding: 0 2rem; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info { display: flex; flex-direction: column; gap: 1.3rem; }

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.info-card i {
    font-size: 1.6rem;
    color: var(--primary);
    background: rgba(13,99,184,0.08);
    padding: 14px;
    border-radius: 12px;
}

.info-card h3 { font-size: 1.05rem; margin-bottom: 0.3rem; }

.info-card p, .info-card a {
    color: var(--gray);
    font-size: 0.95rem;
    text-decoration: none;
}

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

.quick-contact-btns { display: flex; gap: 1rem; margin-top: 0.5rem; }

.btn-whatsapp-large {
    background: var(--whatsapp);
    color: #fff;
    padding: 0.9rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    box-shadow: 0 8px 20px rgba(37,211,102,0.3);
    transition: transform 0.25s;
}

.btn-whatsapp-large:hover { transform: translateY(-3px); }

.contact-form-container {
    background: #fff;
    padding: 2.6rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.contact-form-container h2 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

.contact-form-container p {
    color: var(--gray);
    margin-bottom: 1.8rem;
    font-size: 0.95rem;
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fbfbfc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,99,184,0.1);
    background: #fff;
}

.btn-submit {
    background: var(--navy);
    color: #fff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover { background: var(--primary); }

.map-section { max-width: 1200px; margin: 0 auto 70px; padding: 0 2rem; }

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    height: 350px;
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ---------------- Footer ---------------- */
footer {
    background: var(--navy);
    color: #fff;
    padding: 55px 2rem 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-brand img { height: 44px; width: auto; }
.footer-brand strong { font-size: 1.15rem; }

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 1.2rem;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s, transform 0.25s;
}

.footer-socials a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 36px; height: 2px;
    background: var(--primary);
}

.footer-col p, .footer-col li {
    color: #94a3b8;
    font-size: 0.92rem;
    margin-bottom: 0.6rem;
    list-style: none;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.footer-col li i { width: 18px; color: var(--primary); margin-right: 6px; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #23324a;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* ---------------- Floating Action Buttons ---------------- */
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 2000;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(16,24,38,0.25);
    position: relative;
    transition: transform 0.25s;
}

.fab:hover { transform: scale(1.08); }

.fab-call { background: var(--primary); }
.fab-whatsapp { background: var(--whatsapp); }

.fab-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: fabPing 2.2s cubic-bezier(0,0,0.2,1) infinite;
}

.fab-call .fab-ping { background: var(--primary); }
.fab-whatsapp .fab-ping { background: var(--whatsapp); }

@keyframes fabPing {
    0% { transform: scale(1); opacity: 0.55; }
    75%, 100% { transform: scale(1.9); opacity: 0; }
}

.fab-label {
    position: absolute;
    right: 72px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--navy);
    color: #fff;
    padding: 7px 14px;
    border-radius: 6px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, right 0.25s;
}

.fab:hover .fab-label {
    opacity: 1;
    right: 76px;
}

/* ---------------- Responsive ---------------- */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { position: relative; }
    .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #fff;
        box-shadow: var(--shadow-md);
        padding: 0.4rem 0;
        border-radius: 0 0 var(--radius) var(--radius);
    }
    .nav-links.is-open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.95rem 2rem; }
    .nav-links a::after { display: none; }
    .hero h1 { font-size: 2.1rem; }
    .hero p { font-size: 1rem; }
    .page-banner h1 { font-size: 2rem; }
    .contact-form-container { padding: 1.6rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    .top-bar .container { justify-content: center; text-align: center; }
    .hero-stats { gap: 1.6rem; }
    .fab { width: 52px; height: 52px; font-size: 1.3rem; }
    .fab-label { display: none; }
}

@media (max-width: 480px) {
    .hide-xs { display: none !important; }
    .btn-call-text { display: none; }
    .btn-call { padding: 0.65rem 0.85rem; }
    .logo img { height: 42px; }
    .hero { padding: 105px 1.2rem 90px; }
    .hero h1 { font-size: 1.7rem; }
    .hero-stats { gap: 1.1rem; }
    .hero-stats .stat strong { font-size: 1.5rem; }
    .page-banner { padding: 80px 1.2rem 55px; }
    .page-banner h1 { font-size: 1.6rem; }
    .container { padding: 0 1.2rem; }
    .services, .services-section, .contact-section, .map-section { padding: 0 1.2rem; }
    .section-title h2 { font-size: 1.6rem; }
    .cta-container h2 { font-size: 1.5rem; }
}
