@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

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

:root {
  --black: #0c1d30;
  --dark: #14283c;
  --red: #c8102e;
  --red-dark: #a30024;
  --white: #ffffff;
  --off-white: #f7f7f7;
  --gray: #eeeeee;
  --text: #1a1a1a;
  --text-light: #666666;
  --border: #e5e5e5;
  --shadow: 0 2px 16px rgba(0,0,0,0.09);
  --shadow-lg: 0 4px 28px rgba(0,0,0,0.14);
}

body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }

/* ── HEADER ─────────────────────────────────── */
header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo { width: 46px; height: 46px; object-fit: contain; }

.brand-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.brand-text span {
  display: block;
  font-size: 0.67rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

/* Nav */
.nav-menu { display: none; }

.nav-menu ul { list-style: none; display: flex; gap: 0; }

.nav-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.5rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-menu a:hover { color: var(--white); }
.nav-menu a.active { color: var(--white); border-bottom: 2px solid var(--red); }

/* Phone in mobile nav */
.nav-phone {
  display: none;
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.85) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  text-transform: none !important;
  border-bottom: none !important;
}

.nav-menu.open .nav-phone { display: block; }

/* Mobile open */
.nav-menu.open {
  display: block;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #081420;
  padding: 0.5rem 0;
  box-shadow: 0 6px 16px rgba(0,0,0,0.5);
  z-index: 99;
}

.nav-menu.open ul { flex-direction: column; }
.nav-menu.open a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Header right side */
.header-actions {
  display: none;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.header-phone {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-phone:hover { color: var(--white); }

.header-cta {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  white-space: nowrap;
}

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

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

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s;
  line-height: 1;
}

.btn:active { transform: scale(0.98); }

.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); }

.btn-white-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: #000; border-color: #000; }

/* ── HERO ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('hero.png') right center / cover no-repeat;
  background-color: var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(12,29,48,0.78) 0%,
    rgba(12,29,48,0.55) 38%,
    rgba(0,0,0,0.22) 65%,
    rgba(0,0,0,0.04) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 4rem 0;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FEATURES BAR ────────────────────────────── */
.features-bar {
  background: var(--dark);
  padding: 2.75rem 1.25rem;
  border-top: 1px solid #2a2a2a;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-item { display: flex; gap: 1.25rem; align-items: flex-start; }

.feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}

.feature-item h3 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.3rem;
}

.feature-item p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ── SECTION LABELS & TITLES ─────────────────── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 36px;
  background: var(--red);
}

.section-label.left { justify-content: flex-start; }
.section-label.left::before { display: none; }

.section-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.section-title.white { color: var(--white); }
.section-centered { text-align: center; }
.section-centered .section-label { justify-content: center; }

/* ── HOME SERVICES ───────────────────────────── */
.home-services { padding: 5rem 1.25rem; background: var(--white); }

.services-intro { text-align: center; max-width: 680px; margin: 0 auto 3rem; }

.services-intro p {
  color: var(--text-light);
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  background: var(--white);
  transition: box-shadow 0.2s;
}

.service-card:hover { box-shadow: var(--shadow-lg); }

.service-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray);
}

.service-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-blue { background: #dbeafe; color: #1d4ed8; }
.icon-red  { background: #fee2e2; color: var(--red); }

.service-card h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
}

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

.service-card li {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--gray);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.service-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.service-card li:last-child { border-bottom: none; }

.service-card-link {
  color: var(--red);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.service-card-link:hover { text-decoration: underline; }
.service-card-link::after { content: ' →'; }

/* ── HOME ABOUT ──────────────────────────────── */
.home-about { padding: 5rem 1.25rem; background: var(--off-white); }

.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }

.about-photo {
  min-height: 320px;
  border-radius: 4px;
  background: var(--dark);
  overflow: hidden;
}

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 4px;
}

.about-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.about-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

/* ── SERVICE AREA ────────────────────────────── */
.service-area-section { padding: 5rem 1.25rem; background: var(--dark); }

.service-area-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.area-map {
  background: #222;
  border: 1px solid #333;
  border-radius: 4px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.35);
  font-size: 0.875rem;
  text-align: center;
  padding: 2rem;
  gap: 0.5rem;
}

.area-cities h3 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}

.area-cities ul { list-style: none; }

.area-cities li {
  padding: 0.6rem 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.area-cities li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.area-cities li:last-child { border-bottom: none; }

/* ── TESTIMONIALS ────────────────────────────── */
.testimonials { padding: 5rem 1.25rem; background: var(--white); }

.testimonial-wrap {
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.stars { color: #f59e0b; font-size: 1.4rem; letter-spacing: 0.08em; margin-bottom: 1.25rem; }

.testimonial-wrap blockquote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  min-height: 80px;
}

.testimonial-wrap cite {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--text-light);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }

.testimonial-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s;
}

.testimonial-dots span.active { background: var(--red); }

/* ── TRUST BAR ───────────────────────────────── */
.trust-bar {
  background: var(--black);
  padding: 1.75rem 1.25rem;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem 2.5rem;
  max-width: 1140px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

/* ── CTA BANNER ──────────────────────────────── */
.cta-banner {
  background: var(--dark);
  padding: 4.5rem 1.25rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,16,46,0.18) 0%, transparent 55%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 2rem;
  position: relative;
}

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

/* ── FOOTER ──────────────────────────────────── */
footer { background: #081420; color: rgba(255,255,255,0.65); }

.footer-top { padding: 3.5rem 1.25rem 2.5rem; }

.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }

.footer-brand .brand { margin-bottom: 1rem; }

.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-links h4,
.footer-contact-info h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a,
.footer-contact-info a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; }

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

.footer-contact-info p { font-size: 0.875rem; line-height: 1.7; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.25rem;
  text-align: center;
}

.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ── PAGE HERO (inner pages) ─────────────────── */
.page-hero { background: var(--dark); padding: 3.5rem 1.25rem; text-align: center; }

.page-hero h1 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ── SERVICES PAGE ───────────────────────────── */
.services-page { padding: 4rem 1.25rem; }

.services-page-wrapper { max-width: 980px; margin: 0 auto; }

.service-category-block { margin-bottom: 3rem; }

.service-category-block h3 {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--red);
  margin-bottom: 1.5rem;
}

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}

.service-list-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
}

.service-list-item h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.service-list-item p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

.services-cta { text-align: center; padding: 2rem 0 1rem; }

/* ── CONTACT PAGE ────────────────────────────── */
.contact-page { padding: 4rem 1.25rem; }

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow);
}

.contact-info-card h2 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.contact-info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-info-row:last-child { margin-bottom: 0; }

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-row h3 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}

.contact-info-row a {
  color: var(--red);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  display: block;
}

.contact-info-row a:hover { text-decoration: underline; }
.contact-info-row p { color: var(--text-light); font-size: 0.875rem; }

.hours-list { list-style: none; }

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.hours-list li:last-child { border-bottom: none; }
.hours-list .day { font-weight: 700; color: var(--text); }

.map-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: 4px;
  padding: 3rem 1rem;
  text-align: center;
  color: var(--text-light);
  margin-top: 1rem;
  font-size: 0.875rem;
}

/* ── REQUEST FORM ────────────────────────────── */
.request-page { padding: 4rem 1.25rem; }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.form-group label .req { color: var(--red); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--dark);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.form-group textarea { resize: vertical; min-height: 120px; }

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

.radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.4rem; }

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 400 !important;
  font-size: 0.9rem !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text) !important;
  cursor: pointer;
}

.label-hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-light);
  font-size: 0.76rem;
}

.form-submit { margin-top: 0.75rem; }
.form-submit .btn { width: 100%; justify-content: center; padding: 1rem; }

.success-msg {
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 1.25rem;
  display: none;
  font-size: 0.9rem;
}

/* ── PHOTO UPLOAD ────────────────────────────── */
.photo-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px dashed var(--border);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text-light);
}

.photo-upload:hover,
.photo-upload.drag-over { border-color: var(--dark); background: var(--off-white); }

.photo-upload-icon { flex-shrink: 0; opacity: 0.45; }

.photo-upload div { display: flex; flex-direction: column; gap: 0.2rem; }
.photo-upload strong { font-size: 0.875rem; color: var(--text); }
.photo-upload span { font-size: 0.75rem; }

.photo-previews { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.6rem; }

.photo-preview-item {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}

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

.photo-remove {
  position: absolute;
  top: 3px;
  right: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.photo-remove:hover { background: var(--red); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .services-list-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .services-cards { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .nav-menu { display: flex !important; flex: 1; justify-content: center; position: static; background: transparent; padding: 0; box-shadow: none; }
  .nav-menu ul { flex-direction: row; }
  .nav-menu a { padding: 0.5rem 0.9rem; border-bottom: none !important; }
  .nav-phone { display: none !important; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }

  .hero h1 { font-size: 3.5rem; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .service-area-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .hero { min-height: 660px; }
  .hero h1 { font-size: 4rem; }
  .section-title { font-size: 2.4rem; }
  .cta-banner h2 { font-size: 2.5rem; }
}
