/* ============================================
   GEZER Kepenk — KAPI OTOMASYON Style Theme
   Navy #0c1e35 + Yellow #f5b800 + White
   ============================================ */

:root {
    --navy: #0c1e35;
    --navy-dark: #081525;
    --navy-mid: #152a45;
    --yellow: #f5b800;
    --yellow-hover: #dba500;
    --yellow-light: #fff8e6;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #64748b;
    --gray-800: #1e293b;
    --font: 'Poppins', sans-serif;
    --shadow: 0 4px 24px rgba(12, 30, 53, 0.10);
    --shadow-lg: 0 12px 48px rgba(12, 30, 53, 0.16);
    --radius: 8px;
    --radius-lg: 12px;
    --topbar-h: 42px;
    --navbar-h: 76px;
    --header-h: calc(var(--topbar-h) + var(--navbar-h));
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.02em;
}
.btn-lg { padding: 14px 32px; font-size: 14px; }
.btn-sm, .btn-nav { padding: 10px 22px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}
.btn-yellow:hover {
    background: var(--yellow-hover);
    border-color: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 184, 0, 0.35);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}
.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-detail {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--gray-200);
    padding: 10px 20px;
    font-size: 13px;
    border-radius: var(--radius);
}
.btn-detail:hover {
    border-color: var(--yellow);
    color: var(--navy);
    background: var(--yellow-light);
}

.text-yellow { color: var(--yellow); }
.text-white { color: var(--white); }

/* ---- Topbar ---- */
.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.85);
    height: var(--topbar-h);
    font-size: 13px;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1001;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar-left, .topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
}
.topbar-item svg { color: var(--yellow); flex-shrink: 0; }
.topbar-link:hover { color: var(--yellow); }

/* ---- Navbar ---- */
.navbar {
    position: fixed;
    top: var(--topbar-h);
    left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(12, 30, 53, 0.06);
    height: var(--navbar-h);
}

.navbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.brand-icon { width: 44px; height: 44px; flex-shrink: 0; }
.brand-icon svg { width: 100%; height: 100%; }
.brand-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.02em;
    line-height: 1.2;
}
.brand-text span {
    font-size: 10px;
    font-weight: 500;
    color: var(--gray-400);
    letter-spacing: 0.12em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0.04em;
    position: relative;
    border-radius: 4px;
}
.nav-menu a:hover { color: var(--navy); }
.nav-menu a.active {
    color: var(--navy);
}
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 14px; right: 14px;
    height: 3px;
    background: var(--yellow);
    border-radius: 3px 3px 0 0;
}

.navbar-actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Hero ---- */
.hero {
    position: relative;
    min-height: 580px;
    margin-top: var(--header-h);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(12, 30, 53, 0.92) 0%, rgba(12, 30, 53, 0.75) 45%, rgba(12, 30, 53, 0.35) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    padding: 60px 24px 100px;
}

.hero-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--yellow);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-products {
    position: relative;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-product-1 {
    width: 55%;
    right: 5%;
    top: 10%;
    z-index: 2;
    animation: floatY 5s ease-in-out infinite;
}
.hero-product-2 {
    width: 45%;
    left: 0;
    bottom: 5%;
    z-index: 1;
    animation: floatY 5s ease-in-out infinite 2s;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---- Features Strip (overlapping) ---- */
.features-strip {
    position: relative;
    z-index: 10;
    margin-top: -60px;
    margin-bottom: 20px;
}

.features-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 36px 24px;
    gap: 24px;
}

.feature-item {
    text-align: center;
    padding: 0 12px;
    border-right: 1px solid var(--gray-100);
}
.feature-item:last-child { border-right: none; }

.feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}
.feature-icon svg { width: 26px; height: 26px; }

.feature-item h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}
.feature-item p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.55;
}

/* ---- Section Head ---- */
.section { padding: 80px 0; }
.bg-light { background: var(--gray-50); }

.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; }

.section-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 0.14em;
    margin-bottom: 10px;
}
.section-label-light { color: var(--yellow); }

.section-head h2 {
    font-size: clamp(26px, 3.5vw, 34px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--yellow);
    border-radius: 2px;
    margin-bottom: 12px;
}
.section-head-center .section-line { margin-left: auto; margin-right: auto; }
.section-line-left { margin-left: 0; }

.section-desc {
    font-size: 16px;
    color: var(--gray-600);
    max-width: 560px;
    margin: 0 auto;
}

/* ---- Services ---- */
.section-services { background: var(--white); padding-top: 40px; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    transition: all 0.35s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-img {
    height: 200px;
    overflow: hidden;
}
.service-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body { padding: 24px; }

.service-card-icon {
    width: 48px; height: 48px;
    background: var(--navy);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    margin-bottom: 16px;
}
.service-card-icon svg { width: 24px; height: 24px; }

.service-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    margin-bottom: 20px;
}

/* ---- Stats ---- */
.section-stats {
    background: var(--navy);
    padding: 80px 0 100px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-item .stat-icon {
    width: 56px; height: 56px;
    margin: 0 auto 16px;
    background: rgba(245, 184, 0, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
}
.stat-item .stat-icon svg { width: 28px; height: 28px; }

.stat-item strong {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-item strong span { color: var(--yellow); }

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 500;
}

/* ---- CTA Float ---- */
.cta-float {
    position: relative;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 40px;
}

.cta-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-icon {
    width: 64px; height: 64px;
    background: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
}
.cta-icon svg { width: 28px; height: 28px; }

.cta-text { flex: 1; min-width: 200px; }
.cta-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.cta-text p { font-size: 14px; color: var(--gray-600); }

/* ---- About ---- */
.about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.about-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.about-badge {
    position: absolute;
    bottom: 20px; right: 20px;
    background: var(--yellow);
    color: var(--navy);
    padding: 16px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}
.about-badge strong { display: block; font-size: 28px; font-weight: 800; line-height: 1; }
.about-badge span { font-size: 12px; font-weight: 600; }

.about-text h2 {
    font-size: clamp(26px, 3vw, 32px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}
.about-text p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.75;
}

.about-list { margin-bottom: 28px; }
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-800);
}
.about-list svg {
    width: 20px; height: 20px;
    color: var(--yellow);
    flex-shrink: 0;
}

/* ---- Regions ---- */
.regions-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.region-box {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: border-color 0.3s ease;
}
.region-box:hover { border-color: var(--yellow); }

.region-box h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
}
.region-box h3 svg { color: var(--yellow); }

.region-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.region-tags span,
.region-tags .region-tag-link {
    font-size: 12px;
    padding: 5px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    color: var(--gray-600);
}
.region-tags .region-tag-link {
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.region-tags .region-tag-link:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy);
}

/* ---- Gallery ---- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 30, 53, 0.85), transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover figcaption { opacity: 1; }

/* ---- Contact ---- */
.section-contact {
    background: var(--navy);
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 14px; }

.info-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
}
.info-icon {
    width: 44px; height: 44px;
    background: rgba(245, 184, 0, 0.15);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    flex-shrink: 0;
}
.info-icon svg { width: 20px; height: 20px; }
.info-card small {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2px;
}
.info-card a, .info-card span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}
.info-card a:hover { color: var(--yellow); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.field { margin-bottom: 18px; }
.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font);
    font-size: 14px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--gray-800);
    transition: border-color 0.25s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(245, 184, 0, 0.15);
}

.alert {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.alert-success { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* ---- Footer ---- */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.brand-footer .brand-text strong { color: var(--white); }
.brand-footer .brand-text span { color: rgba(255, 255, 255, 0.4); }
.footer-brand p { font-size: 14px; margin-top: 16px; line-height: 1.7; }

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}
.footer-col a, .footer-col span {
    display: block;
    font-size: 14px;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.55);
}
.footer-col a:hover { color: var(--yellow); }

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
}

/* ---- WhatsApp ---- */
.wa-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 56px; height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 28px; height: 28px; }

/* ============================================
   SEO Pages
   ============================================ */
.seo-breadcrumb {
    background: var(--gray-50);
    padding: 14px 0;
    margin-top: var(--header-h);
    font-size: 13px;
    color: var(--gray-600);
}
.seo-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.seo-breadcrumb a:hover { color: var(--yellow-hover); }
.seo-breadcrumb li:not(:last-child)::after { content: '→'; margin-left: 8px; opacity: 0.4; }

.seo-hero {
    padding: 60px 0;
    background: var(--navy);
    color: var(--white);
}
.seo-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.seo-hero h1 { font-size: clamp(24px, 3vw, 36px); font-weight: 700; line-height: 1.25; margin: 12px 0; }
.seo-hero-intro { opacity: 0.75; margin-bottom: 24px; }
.seo-hero .section-tag, .seo-hero .label, .seo-hero .eyebrow {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 184, 0, 0.15);
    color: var(--yellow);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.seo-hero .hero-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.seo-hero .btn-primary, .seo-hero .btn-glow, .seo-hero .btn-yellow { background: var(--yellow); color: var(--navy); padding: 12px 28px; border-radius: 50px; font-weight: 600; }
.seo-hero .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); padding: 12px 28px; border-radius: 50px; }
.seo-hero-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

.seo-article { padding: 80px 0; background: var(--gray-50); }
.seo-article-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.seo-main-content { font-size: 16px; line-height: 1.8; }
.seo-content-block { margin-bottom: 36px; }
.seo-content-block h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    padding-left: 14px;
    border-left: 4px solid var(--yellow);
}
.seo-content-block p { margin-bottom: 12px; color: var(--gray-600); }
.seo-content-block a { color: var(--yellow-hover); font-weight: 600; }

.seo-process-list { list-style: none; }
.seo-process-list li { padding: 14px 18px; background: var(--white); border-left: 3px solid var(--yellow); margin-bottom: 8px; border-radius: 0 var(--radius) var(--radius) 0; }

.seo-benefits-list { list-style: none; }
.seo-benefits-list li { padding: 8px 0 8px 28px; position: relative; }
.seo-benefits-list li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 700; }

.seo-neighborhood-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.seo-neighborhood-tag { padding: 7px 14px; background: var(--white); border-radius: 50px; font-size: 13px; border: 1px solid var(--gray-200); display: inline-flex; align-items: center; gap: 6px; }

.seo-faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; background: var(--white); }
.seo-faq-item summary { padding: 16px 20px; font-weight: 600; cursor: pointer; list-style: none; }
.seo-faq-item p { padding: 0 20px 16px; color: var(--gray-600); }

.seo-related-link { padding: 10px 18px; background: var(--navy); color: var(--white); border-radius: 50px; font-size: 13px; font-weight: 600; display: inline-block; margin: 4px; }
.seo-related-link:hover { background: var(--yellow); color: var(--navy); }

.seo-sidebar { position: sticky; top: calc(var(--header-h) + 20px); }
.seo-sidebar-card { background: var(--white); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; border: 1px solid var(--gray-100); box-shadow: var(--shadow); }
.seo-sidebar-cta { background: var(--navy); color: var(--white); border: none; }
.seo-sidebar-cta h3 { color: var(--yellow); font-weight: 700; margin-bottom: 12px; }
.seo-sidebar-list { list-style: none; }
.seo-sidebar-list li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-size: 14px; }
.seo-sidebar-list li::before { content: '→ '; color: var(--yellow); }
.seo-sidebar .btn-block { width: 100%; margin-top: 8px; text-align: center; display: block; }
.seo-sidebar .btn-whatsapp { background: #25d366; color: white; padding: 12px; border-radius: 50px; font-weight: 600; display: block; text-align: center; margin-top: 8px; }

.seo-reviews { background: var(--white); padding: 80px 0; }
.seo-reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.seo-review-card { background: var(--gray-50); padding: 24px; border-radius: var(--radius-lg); border: 1px solid var(--gray-100); }
.seo-review-stars { color: var(--yellow); margin-bottom: 10px; }

.cta-band { background: linear-gradient(135deg, var(--yellow-hover), var(--yellow)); padding: 56px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: 24px; font-weight: 700; color: var(--navy); }
.cta-actions { display: flex; gap: 12px; }

.seo-map { padding: 80px 0; }
.seo-map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 26px; font-weight: 700; color: var(--navy); }
.section-tag { font-size: 12px; font-weight: 700; color: var(--yellow); letter-spacing: 0.1em; }

.section-contact .contact-grid { padding: 0; }
.contact-card { display: flex; gap: 16px; padding: 20px; background: var(--gray-50); border-radius: var(--radius-lg); margin-bottom: 12px; }
.contact-icon svg { width: 24px; color: var(--yellow); }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: 13px; margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 12px; border: 1px solid var(--gray-200); border-radius: var(--radius); font-family: var(--font); }

.seo-404 { padding: 120px 0; text-align: center; }
.seo-404 h1 { font-size: 32px; color: var(--navy); }
.section { padding: 80px 0; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .hero-inner, .about-row, .contact-grid { grid-template-columns: 1fr; }
    .hero-products { height: 260px; margin-top: 20px; }
    .features-card { grid-template-columns: repeat(2, 1fr); }
    .feature-item:nth-child(2) { border-right: none; }
    .services-grid, .stats-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .seo-hero-inner, .seo-article-grid { grid-template-columns: 1fr; }
    .cta-card { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .topbar-right { display: none; }
    .nav-menu {
        position: fixed;
        top: var(--header-h); left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
        z-index: 999;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
    .nav-menu a { padding: 14px 0; border-bottom: 1px solid var(--gray-100); width: 100%; }
    .nav-toggle { display: flex; }
    .navbar-actions .btn-nav { display: none; }

    .hero { min-height: auto; }
    .hero-inner { padding-bottom: 80px; }
    .hero-products { display: none; }
    .features-card { grid-template-columns: 1fr; }
    .feature-item { border-right: none; border-bottom: 1px solid var(--gray-100); padding-bottom: 20px; }
    .services-grid, .stats-grid, .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
    .section-stats { padding-bottom: 80px; }
}
