:root {
  --bg: #0a0f1e;
  --card: #0d1425;
  --blue: #5bb8f5;
  --green: #4ade80;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.08);
  --blue-glow: rgba(91, 184, 245, 0.1);
}

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

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
  width: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid var(--border);
}

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

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
}

.nav-logo-text span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  background: var(--blue);
  color: #0a0f1e;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 7px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  opacity: 0.88;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-right: -8px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(10, 15, 30, 0.98);
  border-bottom: 0.5px solid var(--border);
  padding: 24px 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 0;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 17px;
  padding: 14px 0;
  border-bottom: 0.5px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu a:hover {
  color: var(--white);
}

/* ── PAGES ── */
.page {
  padding-top: 72px;
  min-height: 100vh;
}

/* ── SECTIONS ── */
.section {
  padding: 80px 0;
}

.section-sm {
  padding: 50px 0;
}

.section-card {
  background: var(--card);
}

.section-label {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1px;
  line-height: 0.95;
}

h1 {
  font-size: 88px;
}

h2 {
  font-size: 52px;
}

h3 {
  font-size: 36px;
}

.accent {
  color: var(--blue);
}

.muted {
  color: var(--muted);
}

p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.btn {
  display: inline-block;
  background: var(--blue);
  color: #0a0f1e;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 0.5px solid rgba(255, 255, 255, 0.3);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(74, 222, 128, 0.08);
  border: 0.5px solid rgba(74, 222, 128, 0.2);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 11px;
  color: var(--green);
}

.badge-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-glow);
  border: 0.5px solid rgba(91, 184, 245, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--blue);
}

/* ── HERO ── */
.hero {
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(91, 184, 245, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-tag {
  margin-bottom: 28px;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-text p {
  max-width: 480px;
  font-size: 17px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-phone {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.hero-phone:hover {
  color: var(--blue);
}

/* Hero photos container */
.hero-photos {
  position: relative;
  height: 625px;
  right: -165px;
}

.hero-img {
  position: absolute;
  object-fit: cover;
  border-radius: 16px;
  border: 3px solid var(--card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hero-img-1 {
  left: -20%;
  top: 30px;
  width: 56%;
  height: 510px;
  z-index: 1;
}

.hero-img-2 {
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 46%;
  height: 540px;
  z-index: 3;
}

.hero-img-3 {
  right: -20%;
  top: 50px;
  width: 56%;
  height: 490px;
  z-index: 2;
}

.hero-glow {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60px;
  background: rgba(91, 184, 245, 0.15);
  filter: blur(24px);
  border-radius: 50%;
  z-index: 0;
}

/* ── PHONE BAR ── */
.phone-bar {
  background: rgba(91, 184, 245, 0.07);
  border-top: 0.5px solid rgba(91, 184, 245, 0.15);
  border-bottom: 0.5px solid rgba(91, 184, 245, 0.15);
  padding: 24px 0;
}

.phone-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.phone-bar-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.phone-bar-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  letter-spacing: 2px;
  color: var(--blue);
  text-decoration: none;
  display: block;
}

.phone-bar-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 20px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.ai-badge span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ── TRUST BAR ── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.trust-item {
  background: var(--card);
  padding: 28px;
  text-align: center;
}

.trust-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 46px;
  color: var(--blue);
  letter-spacing: 1px;
}

.trust-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 4px;
}

/* ── SERVICES GRID ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.service-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.2s;
}

.service-card:hover {
  border-color: rgba(91, 184, 245, 0.3);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--white);
}

.service-card p {
  font-size: 13px;
}

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--blue);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #0a0f1e;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-label {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  margin-top: 12px;
}

.pricing-discount {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1;
}

.pricing-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 14px 0;
}

.pricing-detail {
  font-size: 13px;
  color: var(--muted);
  line-height: 2;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.review-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.review-stars {
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.review-author {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
}

.review-location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.reviews-note {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

/* ── GALLERY ── */
.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 24px 0 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(91, 184, 245, 0.3) transparent;
  cursor: grab;
  user-select: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-scroll:active {
  cursor: grabbing;
}

.gallery-scroll::-webkit-scrollbar {
  height: 4px;
}

.gallery-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-scroll::-webkit-scrollbar-thumb {
  background: rgba(91, 184, 245, 0.3);
  border-radius: 4px;
}

.gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--card);
  border: 0.5px solid var(--border);
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}

.gallery-item:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 184, 245, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--card);
}

.gallery-placeholder-icon {
  font-size: 36px;
  opacity: 0.25;
}

.gallery-placeholder-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 0 16px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 24px 14px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.gallery-tag {
  display: inline-block;
  background: var(--blue);
  color: #0a0f1e;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 5px;
}

.gallery-arrows {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.gallery-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--card);
  border: 0.5px solid var(--border);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}

.gallery-arrow:hover {
  border-color: var(--blue);
  background: rgba(91, 184, 245, 0.1);
}

.gallery-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 8px;
}

/* ── MAP ── */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 0.5px solid var(--border);
  margin-top: 32px;
  height: 420px;
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

.map-placeholder {
  font-size: 48px;
  opacity: 0.3;
}

.map-placeholder-text {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

/* ── FAQ ── */
.faq-list {
  margin-top: 32px;
}

.faq-item {
  border-bottom: 0.5px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--blue);
}

.faq-chevron {
  font-size: 18px;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--blue);
}

.faq-answer {
  display: none;
  padding: 0 0 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 680px;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
  margin-top: 32px;
}

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

.form-full {
  margin-bottom: 14px;
}

input,
select,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(91, 184, 245, 0.5);
}

select option {
  background: var(--card);
  color: var(--white);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  font-size: 15px;
  padding: 16px;
  border-radius: 8px;
}

.contact-info {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 32px;
}

.contact-info-label {
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.contact-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--blue);
  letter-spacing: 2px;
  text-decoration: none;
  display: block;
  margin-bottom: 4px;
}

.contact-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-detail {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-divider {
  border: none;
  border-top: 0.5px solid var(--border);
  margin: 20px 0;
}

.contact-perks {
  font-size: 13px;
  color: var(--muted);
  line-height: 2.2;
}

/* ── FOOTER ── */
footer {
  background: var(--card);
  border-top: 0.5px solid var(--border);
  padding: 40px 0;
}

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

.footer-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.1;
}

.footer-logo-text span {
  color: var(--blue);
  opacity: 0.7;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-right {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
}

/* ── RAIN NOTE ── */
.rain-note {
  border-left: 2px solid rgba(91, 184, 245, 0.3);
  padding: 14px 20px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 40px;
}

.rain-note strong {
  color: var(--blue);
}

/* ── CITIES ── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}

.city-chip {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ══════════════════════════════════
   RESPONSIVE — TABLET (≤900px)
══════════════════════════════════ */
@media (max-width: 900px) {
  .wrap {
    padding: 0 32px;
  }

  nav {
    padding: 0 32px;
  }

  .hero {
    padding: 60px 0 60px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-photos {
    height: 260px;
    order: -1;
  }

  .hero-img-1 {
    height: 220px !important;
    top: 20px !important;
  }

  .hero-img-2 {
    height: 240px !important;
    top: 0 !important;
  }

  .hero-img-3 {
    height: 210px !important;
    top: 30px !important;
  }

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

  .pricing-card.featured {
    margin-top: 14px;
  }

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

  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .three-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════
   RESPONSIVE — MOBILE (≤640px)
══════════════════════════════════ */
@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }

  nav {
    padding: 0 20px;
    height: 64px;
  }

  .page {
    padding-top: 64px;
  }

  .mobile-menu {
    top: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-logo img {
    width: 36px;
    height: 36px;
  }

  .nav-logo-text {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .section {
    padding: 48px 0;
  }

  .section-sm {
    padding: 32px 0;
  }

  .hero {
    padding: 40px 0 48px;
  }

  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-photos {
    display: block !important;
    height: 300px;
    margin-top: 0px;
    margin-bottom: 15px;
    right: 0px;
  }

  .hero-img-1 {
    height: 265px !important;
    top: 18px !important;
    width: 35%;
    left: 0;
  }

  .hero-img-2 {
    height: 285px !important;
    top: 0 !important;
    width: 35%;
  }

  .hero-img-3 {
    height: 255px !important;
    top: 28px !important;
    display: block !important;
    width: 35%;
    right: 0;
  }

  .hero-text p {
    font-size: 15px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-phone {
    font-size: 14px;
  }

  .phone-bar {
    padding: 20px 0;
  }

  .phone-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .phone-bar-number {
    font-size: 32px;
  }

  .phone-bar-sub {
    font-size: 12px;
  }

  .ai-badge {
    padding: 10px 16px;
  }

  .ai-badge span {
    font-size: 12px;
  }

  .trust-bar {
    grid-template-columns: repeat(3, 1fr);
  }

  .trust-item {
    padding: 18px 10px;
  }

  .trust-num {
    font-size: 28px;
  }

  .trust-label {
    font-size: 10px;
    line-height: 1.3;
  }

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

  .service-card {
    padding: 22px 20px;
  }

  .service-icon {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-card.featured {
    margin-top: 8px;
  }

  .pricing-discount {
    font-size: 44px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .review-card {
    padding: 22px 20px;
  }

  .gallery-item {
    width: 260px;
    height: 190px;
  }

  .gallery-arrows {
    display: none;
  }

  .map-container {
    height: 280px;
  }

  .cities-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .city-chip {
    padding: 12px 16px;
    font-size: 13px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .three-col {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .form-full {
    margin-bottom: 12px;
  }

  .contact-info {
    padding: 24px 20px;
  }

  .contact-number {
    font-size: 28px;
  }

  .service-card[style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  footer {
    padding: 32px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-right {
    font-size: 11px;
  }

  .rain-note {
    font-size: 12px;
    padding: 12px 16px;
  }

  section[style*="text-align:center"] .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* Extra small (≤380px) */
@media (max-width: 380px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

  .trust-num {
    font-size: 24px;
  }

  .trust-label {
    font-size: 9px;
  }

  .phone-bar-number {
    font-size: 28px;
  }
}
