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

:root {
  --brand: #1a56db;
  --brand-dark: #1240a4;
  --accent: #f97316;
  --text: #1f2937;
  --muted: #6b7280;
  --bg: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1), 0 4px 6px rgba(0,0,0,.05);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* ── Typography ── */
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); font-weight: 700; color: var(--text); margin-bottom: 0.5em; }
h3 { font-size: 1.12rem; font-weight: 600; color: var(--text); margin-bottom: 0.35em; }
p { margin-bottom: 1em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

/* ── Top Bar ── */
.top-bar { background: var(--brand-dark); color: #fff; padding: 7px 0; font-size: 0.85rem; text-align: center; }
.top-bar a { color: #fff; font-weight: 600; }

/* ── Header / Nav ── */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 64px; }
.logo { font-size: 1.2rem; font-weight: 800; color: var(--brand); white-space: nowrap; flex-shrink: 0; }
.logo span { color: var(--accent); }
.logo:hover { text-decoration: none; }

/* Desktop Nav */
.main-nav { display: flex; }
.main-nav > ul { display: flex; list-style: none; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav ul li a { display: block; padding: 8px 12px; font-size: 0.9rem; font-weight: 600; color: var(--text); border-radius: var(--radius); transition: background .15s, color .15s; white-space: nowrap; }
.main-nav ul li a:hover { background: var(--bg); color: var(--brand); text-decoration: none; }
.caret { font-size: 0.7rem; opacity: 0.7; }

/* Dropdown */
.has-dropdown { }
.dropdown { display: none; position: absolute; top: calc(100% + 4px); left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 220px; z-index: 300; padding: 6px; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown li a { padding: 9px 14px; font-weight: 500; color: var(--text); border-radius: 6px; font-size: 0.88rem; }
.dropdown li a:hover { background: #eff6ff; color: var(--brand); }

.header-right { display: flex; align-items: center; gap: 12px; }
.phone-link { font-size: 1rem; font-weight: 700; color: var(--brand); white-space: nowrap; }
.phone-link:hover { text-decoration: none; color: var(--brand-dark); }

/* Hamburger */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 6px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 26px; border-radius: var(--radius); font-weight: 700; font-size: 0.97rem; cursor: pointer; transition: all .2s; border: 2px solid transparent; white-space: nowrap; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-primary:hover { background: #ea6c0a; border-color: #ea6c0a; box-shadow: 0 4px 14px rgba(249,115,22,.4); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-blue { background: var(--brand); color: #fff; border-color: var(--brand); }
.btn-blue:hover { background: var(--brand-dark); border-color: var(--brand-dark); box-shadow: 0 4px 14px rgba(26,86,219,.3); }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 60%, #2563eb 100%); padding: 72px 0 80px; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.hero .container { position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); color: #fff; border-radius: 20px; padding: 4px 14px; font-size: 0.8rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; margin-bottom: 16px; }
.hero h1 { color: #fff; margin-bottom: 18px; max-width: 800px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,.88); margin-bottom: 32px; max-width: 580px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 0.83rem; color: rgba(255,255,255,.7); margin-top: 3px; }

/* Inner page hero (shorter) */
.hero-inner { padding: 48px 0 52px; }
.hero-inner h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* ── Breadcrumb ── */
.breadcrumb-wrap { background: var(--bg); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 0.83rem; list-style: none; }
.breadcrumb li { display: flex; align-items: center; gap: 6px; color: var(--muted); }
.breadcrumb li:not(:last-child)::after { content: '/'; opacity: 0.5; }
.breadcrumb li a { color: var(--brand); }
.breadcrumb li:last-child { color: var(--text); font-weight: 500; }

/* ── Trust Strip ── */
.trust-strip { background: var(--bg); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-strip .container { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.trust-item svg { color: var(--brand); flex-shrink: 0; }

/* ── Sections ── */
section { padding: 64px 0; }
.bg-light { background: var(--bg); }
.section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.section-title { margin-bottom: 12px; }
.section-intro { max-width: 620px; font-size: 1.02rem; margin-bottom: 40px; }

/* ── Image Split Layout ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text { }
.split-text h2 { margin-bottom: 16px; }
.split-text p { font-size: 1.02rem; }

/* Image with overlay badge */
.img-badge-wrap { position: relative; display: inline-block; }
.img-badge { position: absolute; bottom: -12px; right: -12px; background: var(--brand); color: #fff; border-radius: 10px; padding: 14px 18px; text-align: center; box-shadow: var(--shadow-md); }
.img-badge-num { font-size: 1.6rem; font-weight: 900; line-height: 1; }
.img-badge-label { font-size: 0.75rem; opacity: .85; }

/* ── Cards ── */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); transition: box-shadow .2s, transform .2s; }
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon { width: 48px; height: 48px; background: #eff6ff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.card-icon svg { color: var(--brand); }
.card h3 { margin-bottom: 8px; }
.card p { margin-bottom: 0; font-size: 0.93rem; }

/* ── Services Grid ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.service-item { display: flex; align-items: flex-start; gap: 12px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 16px; transition: box-shadow .2s; }
.service-item:hover { box-shadow: var(--shadow-md); }
.service-check { color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.service-item h3 { font-size: 0.97rem; margin-bottom: 4px; }
.service-item p { font-size: 0.85rem; margin-bottom: 0; }

/* ── Process Steps ── */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 2px; background: var(--border); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; padding: 0 16px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: 0 0 0 4px #fff, 0 0 0 6px var(--brand); }
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: 0.88rem; }

/* ── Why Us Numbers ── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 28px; text-align: center; }
.why-item { padding: 24px 16px; }
.why-num { font-size: 2.4rem; font-weight: 900; color: var(--brand); line-height: 1; margin-bottom: 8px; }
.why-item h3 { margin-bottom: 6px; }
.why-item p { font-size: 0.9rem; }

/* ── FAQ ── */
.faq-list { max-width: 760px; }
details.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
details.faq-item summary { padding: 18px 20px; font-weight: 600; font-size: 1rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; color: var(--text); background: var(--white); transition: background .15s; }
details.faq-item summary:hover { background: var(--bg); }
details.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--brand); flex-shrink: 0; transition: transform .2s; }
details.faq-item[open] summary { background: #eff6ff; }
details.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 16px 20px 20px; border-top: 1px solid var(--border); font-size: 0.95rem; color: var(--muted); line-height: 1.7; }

/* ── Service Areas / City Grid ── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.city-card { display: flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 16px; font-size: 0.92rem; font-weight: 600; color: var(--text); transition: all .15s; }
.city-card:hover { background: #eff6ff; border-color: var(--brand); color: var(--brand); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.city-card svg { color: var(--brand); flex-shrink: 0; }

/* Areas tags (smaller) */
.areas-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.area-tag { background: var(--white); border: 1px solid var(--border); border-radius: 20px; padding: 6px 16px; font-size: 0.87rem; font-weight: 500; color: var(--text); transition: all .15s; }
.area-tag a { color: inherit; }
.area-tag:hover, .area-tag a:hover { background: #eff6ff; border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* ── Reviews ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); }
.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--brand); color: #fff; font-size: 1rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 0.93rem; color: var(--text); }
.review-source { font-size: 0.8rem; color: var(--muted); }
.review-badge { display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 10px 16px; margin-bottom: 32px; font-size: 0.9rem; font-weight: 600; color: var(--text); box-shadow: var(--shadow); }
.review-badge-stars { color: #f59e0b; }

/* ── Contact Form ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info h3 { margin-bottom: 6px; }
.contact-info p { margin-bottom: 20px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-detail-icon { width: 40px; height: 40px; background: #eff6ff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { color: var(--brand); }
.contact-detail h4 { font-size: 0.88rem; color: var(--muted); margin-bottom: 2px; }
.contact-detail p { font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 0; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 0.97rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Nearby Cities ── */
.nearby-cities { display: flex; flex-wrap: wrap; gap: 8px; }
.nearby-city-link { background: var(--bg); border: 1px solid var(--border); border-radius: 20px; padding: 5px 14px; font-size: 0.85rem; font-weight: 500; color: var(--text); transition: all .15s; }
.nearby-city-link:hover { background: #eff6ff; border-color: var(--brand); color: var(--brand); text-decoration: none; }

/* ── Service Page Feature List ── */
.feature-list { list-style: none; }
.feature-list li { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.feature-list li:last-child { border-bottom: none; }
.feature-list li svg { color: #16a34a; flex-shrink: 0; margin-top: 2px; }
.feature-list li span { font-size: 0.95rem; color: var(--text); }

/* ── CTA Banner ── */
.cta-banner { background: linear-gradient(135deg, var(--brand-dark), var(--brand)); padding: 64px 0; text-align: center; }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-phone { font-size: 2rem; font-weight: 900; color: #fff; display: block; margin-bottom: 24px; }
.cta-phone:hover { text-decoration: none; color: rgba(255,255,255,.9); }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.site-footer { background: #111827; color: #9ca3af; padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-brand { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: var(--accent); }
.footer-col p { font-size: 0.88rem; line-height: 1.6; color: #9ca3af; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; font-size: 0.88rem; }
.footer-col a { color: #9ca3af; transition: color .15s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom { border-top: 1px solid #374151; padding-top: 20px; font-size: 0.8rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #9ca3af; }
.footer-bottom a:hover { color: #fff; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split.reverse { direction: ltr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 2px solid var(--border); padding: 16px 20px; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav ul li a { padding: 10px 12px; }
  .dropdown { position: static; box-shadow: none; border: none; background: var(--bg); padding: 4px 4px 4px 16px; display: none !important; }
  .has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: none !important; }
  .menu-toggle { display: flex; }
  .process-steps::before { display: none; }
  .process-steps { gap: 24px; }
  .hero-stats { gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero { padding: 48px 0 56px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  section { padding: 48px 0; }
  .cta-phone { font-size: 1.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-strip .container { gap: 14px; }
  .card-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}
