/* ===== VARIABLES ===== */
:root {
  --primary:      #1b2a3b;
  --primary-dark: #0e1827;
  --accent:       #e8793a;
  --accent-dark:  #c85f22;
  --light:        #f8fafc;
  --white:        #ffffff;
  --text:         #1e293b;
  --muted:        #64748b;
  --border:       #e2e8f0;
  --radius:       8px;
  --radius-lg:    14px;
  --shadow:       0 4px 6px -1px rgba(0,0,0,.1);
  --shadow-lg:    0 10px 25px -3px rgba(0,0,0,.15);
  --transition:   0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(1.9rem, 6vw, 3.5rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.05rem, 3vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 600; }
p  { font-size: 1rem; line-height: 1.7; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.section-title   { color: var(--primary); margin-bottom: 12px; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; max-width: 620px; }

/* ===== LAYOUT ===== */
.section       { padding: 72px 0; }
.section--dark  { background: var(--primary); color: var(--white); }
.section--light { background: var(--light); }
.container     { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center   { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary  { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.55); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-dark     { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-full { width: 100%; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo img  { height: 46px; width: auto; display: block; }
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 20px 20px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--accent); }
.nav-mobile .nav-phone {
  display: block;
  margin-top: 16px;
  padding: 14px 20px;
  background: var(--accent);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: none;
}
.nav-desktop { display: none; }

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.emergency-banner a { color: var(--white); text-decoration: underline; font-weight: 700; }

/* ===== HERO (home) ===== */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,20,31,.62) 0%, rgba(11,20,31,.82) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 80px 20px 60px;
  text-align: center;
  color: var(--white);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255,255,255,.9);
}
.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title { color: var(--white); margin-bottom: 16px; }
.hero-title span { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 28px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 36px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.88);
}
.hero-pill::before { content: '✓'; color: var(--accent); font-weight: 700; }
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative;
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,20,31,.9) 0%, rgba(11,20,31,.4) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 36px 20px 40px;
  color: var(--white);
  width: 100%;
}
.page-hero-content h1 { font-size: clamp(1.6rem, 5vw, 2.8rem); margin-bottom: 8px; }
.page-hero-content p  { color: rgba(255,255,255,.78); font-size: 1rem; max-width: 520px; }

/* ===== STATS BAR ===== */
.stats-bar { background: var(--primary); }
.stats-inner { display: grid; grid-template-columns: repeat(2, 1fr); }
.stat-item {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.stat-item:nth-child(2n) { border-right: none; }
.stat-item:nth-last-child(-n+2) { border-bottom: none; }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.stat-label  { font-size: 0.76rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 500; }

/* ===== SERVICE CARDS (image cards) ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--border); }
.svc-card {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.svc-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.svc-card:hover .svc-card-bg { transform: scale(1.08); }
.svc-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,20,31,.9) 0%, rgba(11,20,31,.25) 65%);
  transition: opacity var(--transition);
}
.svc-card:hover::after { background: linear-gradient(to top, rgba(11,20,31,.95) 0%, rgba(11,20,31,.4) 65%); }
.svc-card-content { position: relative; z-index: 1; padding: 24px 20px; color: var(--white); width: 100%; }
.svc-card-icon { width: 38px; height: 38px; margin-bottom: 10px; color: var(--accent); }
.svc-card-content h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--white); }
.svc-card-content p  { font-size: 0.84rem; color: rgba(255,255,255,.78); margin-bottom: 10px; line-height: 1.5; }
.svc-arrow { font-size: 0.82rem; font-weight: 600; color: var(--accent); display: flex; align-items: center; gap: 4px; }

/* ===== TRUST SECTION ===== */
.trust-section { background: var(--light); }
.trust-inner   { display: flex; flex-direction: column; gap: 40px; }
.trust-image   { border-radius: var(--radius-lg); overflow: hidden; max-height: 360px; }
.trust-image img { width: 100%; height: 100%; object-fit: cover; }
.trust-list    { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.trust-item    { display: flex; align-items: flex-start; gap: 12px; }
.trust-tick {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.trust-tick svg { width: 11px; height: 11px; stroke: white; stroke-width: 2.5; fill: none; }
.trust-item-text strong { display: block; font-weight: 600; color: var(--primary); margin-bottom: 2px; font-size: 0.94rem; }
.trust-item-text span   { font-size: 0.84rem; color: var(--muted); }

/* ===== REVIEWS ===== */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.review-card  {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.review-stars  { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 12px; }
.review-text   { font-size: 0.9rem; color: var(--text); line-height: 1.65; margin-bottom: 16px; font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: var(--primary); }
.review-date { font-size: 0.77rem; color: var(--muted); }
.reviews-cta  { text-align: center; margin-top: 32px; }

/* ===== RATING BANNER ===== */
.rating-banner { background: var(--primary); color: var(--white); padding: 48px 20px; text-align: center; }
.rating-number { font-size: 4.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.rating-stars  { font-size: 1.8rem; color: #f59e0b; margin: 8px 0; }
.rating-count  { font-size: 0.9rem; color: rgba(255,255,255,.65); }

/* ===== BEFORE / AFTER ===== */
.ba-section { background: var(--light); }
.ba-grid    { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; }
.ba-pair    { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; border-radius: var(--radius-lg); overflow: hidden; }
.ba-item    { position: relative; aspect-ratio: 1; overflow: hidden; }
.ba-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.ba-label   {
  position: absolute; top: 10px; left: 10px;
  background: rgba(11,20,31,.78);
  color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.ba-label.after { background: var(--accent); }

/* ===== FAQ ===== */
.faq-list           { margin-top: 40px; display: flex; flex-direction: column; gap: 3px; }
.faq-category-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); padding: 24px 0 8px; }
.faq-item           { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  font-weight: 600; font-size: 0.94rem; color: var(--primary);
  cursor: pointer; list-style: none; gap: 12px;
  transition: background var(--transition);
  user-select: none;
}
.faq-question:hover { background: var(--light); }
.faq-question::marker, .faq-question::-webkit-details-marker { display: none; }
.faq-question::after { content: '+'; font-size: 1.4rem; font-weight: 400; color: var(--accent); flex-shrink: 0; line-height: 1; }
details[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 4px 20px 18px; font-size: 0.88rem; color: var(--muted); line-height: 1.72; }

/* ===== CTA IMAGE SECTION ===== */
.cta-image-section  { position: relative; padding: 88px 0; overflow: hidden; }
.cta-bg             { position: absolute; inset: 0; z-index: 0; }
.cta-bg img         { width: 100%; height: 100%; object-fit: cover; }
.cta-bg::after      { content: ''; position: absolute; inset: 0; background: rgba(11,20,31,.82); }
.cta-content        { position: relative; z-index: 1; text-align: center; padding: 0 20px; color: var(--white); }
.cta-content h2     { color: var(--white); margin-bottom: 12px; }
.cta-content p      { color: rgba(255,255,255,.78); margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons        { display: flex; flex-direction: column; gap: 12px; align-items: center; max-width: 380px; margin: 0 auto; }

/* ===== CONTACT FORM ===== */
.contact-section { background: var(--light); }
.contact-grid    { display: flex; flex-direction: column; gap: 36px; }
.form-group      { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--primary); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(27,42,59,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-info-block  { background: var(--primary); border-radius: var(--radius-lg); padding: 32px 24px; color: var(--white); }
.contact-info-block h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-item   { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon   {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.contact-info-icon svg { width: 18px; height: 18px; }
.contact-info-text strong { display: block; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 3px; }
.contact-info-text a,
.contact-info-text span  { color: var(--white); font-size: 0.95rem; font-weight: 500; }
.hours-table   { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; }
.hours-table h4 { color: rgba(255,255,255,.55); font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.hours-row     { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.86rem; border-bottom: 1px solid rgba(255,255,255,.06); }
.hours-row:last-child { border-bottom: none; }
.hours-day  { color: rgba(255,255,255,.65); }
.hours-time { font-weight: 600; color: var(--white); }

/* ===== GUARANTEE STRIP ===== */
.guarantee-section { background: var(--primary); color: var(--white); padding: 56px 0; text-align: center; }
.guarantee-section h2 { color: var(--white); margin-bottom: 12px; }
.guarantee-section p  { color: rgba(255,255,255,.72); max-width: 520px; margin: 0 auto 28px; }
.guarantee-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 32px; }
.guarantee-icon-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.guarantee-icon-item svg { width: 36px; height: 36px; color: var(--accent); }
.guarantee-icon-item span { font-size: 0.8rem; color: rgba(255,255,255,.7); font-weight: 500; }

/* ===== SERVICES DETAIL (services page) ===== */
.services-detail-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 40px; }
.service-detail-card  { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.sdc-header           { background: var(--primary); padding: 20px 24px; display: flex; align-items: center; gap: 14px; }
.sdc-header-icon      { width: 42px; height: 42px; border-radius: var(--radius); background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.sdc-header-icon svg  { width: 22px; height: 22px; }
.sdc-header h3        { font-size: 1.05rem; color: var(--white); }
.sdc-body             { padding: 20px 24px; }
.sdc-body p           { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }
.sdc-bullets          { display: flex; flex-direction: column; gap: 8px; }
.sdc-bullets li       { font-size: 0.84rem; color: var(--text); display: flex; align-items: flex-start; gap: 8px; }
.sdc-bullets li::before { content: '→'; color: var(--accent); flex-shrink: 0; font-weight: 700; }

/* ===== ABOUT PAGE ===== */
.owner-inner      { display: flex; flex-direction: column; gap: 40px; }
.owner-photo      { border-radius: var(--radius-lg); overflow: hidden; max-height: 440px; }
.owner-photo img  { width: 100%; height: 100%; object-fit: cover; }
.owner-content p  { color: var(--muted); margin-bottom: 14px; font-size: 0.97rem; }
.owner-checklist  { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.owner-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; font-weight: 500; color: var(--text); }
.owner-check-item::before { content: '✓'; color: var(--accent); font-weight: 800; font-size: 1rem; flex-shrink: 0; }

.values-grid   { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
.value-card    { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.value-icon    { width: 54px; height: 54px; border-radius: 50%; background: rgba(232,121,58,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--accent); }
.value-icon svg { width: 26px; height: 26px; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--primary); }
.value-card p  { font-size: 0.85rem; color: var(--muted); }

/* ===== FOOTER ===== */
.footer        { background: var(--primary-dark); color: rgba(255,255,255,.75); padding: 60px 0 0; }
.footer-grid   { display: grid; grid-template-columns: 1fr; gap: 36px; padding-bottom: 52px; }
.footer-col h4 { color: var(--white); font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-logo   { height: 42px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: .85; }
.footer-tagline { font-size: 0.86rem; color: rgba(255,255,255,.5); line-height: 1.65; max-width: 230px; }
.footer-links  { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.86rem; color: rgba(255,255,255,.65); }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 0.78rem; color: rgba(255,255,255,.35); }

/* ===== DIVIDER ===== */
.divider-accent { height: 4px; background: var(--accent); }

/* ===== TABLET 768px+ ===== */
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
  .stat-item { border-bottom: none !important; }
  .stat-item:nth-child(2n) { border-right: 1px solid rgba(255,255,255,.1) !important; }
  .stat-item:last-child { border-right: none !important; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-ctas { flex-direction: row; justify-content: center; max-width: none; }
  .hero-ctas .btn { width: auto; min-width: 0; padding: 12px 28px; font-size: 0.95rem; }
  .cta-buttons { flex-direction: row; justify-content: center; max-width: none; }

  .page-hero { min-height: 46vh; }

  .contact-grid { flex-direction: row; }
  .contact-form { flex: 1.3; }
  .contact-info-block { flex: 0 0 300px; }

  .trust-inner { flex-direction: row; align-items: center; gap: 56px; }
  .trust-image { flex: 0 0 340px; max-height: 460px; }
  .trust-content { flex: 1; }

  .owner-inner { flex-direction: row; align-items: center; gap: 60px; }
  .owner-photo { flex: 0 0 340px; max-height: 480px; }
  .owner-content { flex: 1; }

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

/* ===== DESKTOP 1024px+ ===== */
@media (min-width: 1024px) {
  .nav-hamburger { display: none; }
  .nav-mobile    { display: none !important; }
  .nav-desktop   {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .nav-desktop a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition);
    position: relative;
    padding-bottom: 3px;
  }
  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -3px; left: 0;
    width: 0; height: 2px;
    background: var(--accent);
    transition: width var(--transition);
  }
  .nav-desktop a:hover { color: var(--accent); }
  .nav-desktop a:hover::after { width: 100%; }
  .nav-desktop .nav-cta {
    background: var(--accent);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
  }
  .nav-desktop .nav-cta::after { display: none !important; }
  .nav-desktop .nav-cta:hover  { background: var(--accent-dark); }

  .services-grid        { grid-template-columns: repeat(4, 1fr); }
  .services-detail-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid         { grid-template-columns: repeat(3, 1fr); }
  .values-grid          { grid-template-columns: repeat(4, 1fr); }

  .trust-image { flex: 0 0 420px; max-height: 520px; }
  .owner-photo { flex: 0 0 400px; max-height: 520px; }

  .page-hero { min-height: 52vh; }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
