/* ================================================
   THE FLOOR OF YOUR LIFE — Stylesheet
   Design: Dark navy + Gold #C9A962 premium theme
   ================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #0A0A0A;
  background: #FFFFFF;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- VARIABLES ---- */
:root {
  --gold: #C9A962;
  --gold-hover: #D4B46D;
  --gold-dark: #B39350;
  --navy: #1A1A2E;
  --navy-2: #2A2A3E;
  --navy-3: #1E1E31;
  --white: #FFFFFF;
  --near-white: #FBFBFC;
  --cream: #FAF9F6;
  --light-gray: #F8FAFC;
  --border: #E5E5E5;
  --border-2: #CCCCCC;
  --black: #0A0A0A;
  --error: #DC2626;
  --max-w: 1400px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.center-cta { text-align: center; margin-top: 56px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 16px 40px; font-size: 17px; min-height: 56px; }
.btn-full { width: 100%; }

.btn-gold { background: var(--gold); color: #FFFFFF; }
.btn-gold:hover { background: var(--gold-hover); transform: scale(1.02); }
.btn-gold:active { background: var(--gold-dark); transform: none; }

.btn-navy { background: var(--navy); color: #FFFFFF; border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--navy-2); border-color: var(--navy-2); }

.btn-ghost-white {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: #FFFFFF; }

/* ---- TEXT LINKS ---- */
.text-link-gold {
  color: var(--gold);
  font-size: 16px;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
}
.text-link-gold:hover { color: var(--gold-hover); }

.text-link-gold-sm {
  color: var(--gold);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.text-link-gold-sm:hover { color: var(--gold-hover); }

/* ---- BADGES ---- */
.badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.badge-gold-sm {
  display: inline-block;
  background: rgba(201, 169, 98, 0.15);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid rgba(201, 169, 98, 0.3);
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: rgba(0,0,0,0.3) 0px 4px 20px; }

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon { display: flex; }
.logo-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--near-white);
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--near-white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-link:hover { color: var(--gold); background: rgba(201, 169, 98, 0.08); }
.nav-link.active { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 16px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--near-white);
  opacity: 0.8;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.nav-phone:hover { opacity: 1; color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--near-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  border-top: 1px solid rgba(201,169,98,0.15);
  background: var(--navy);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 16px;
  color: var(--near-white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.15s;
}
.mobile-link:hover { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 96px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-pattern {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(10,10,20,0.82) 60%, rgba(26,26,46,0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,169,98,0.12);
  border: 1px solid rgba(201,169,98,0.3);
  color: var(--gold);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin-bottom: 36px;
  animation: fadeDown 0.6s ease both;
}

.hero-title {
  font-size: 72px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--near-white);
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.gold { color: var(--gold); }

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  color: rgba(251,251,252,0.75);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.65;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding: 32px 40px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,98,0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s ease 0.4s both;
  max-width: 720px;
  margin: 0 auto;
}
.hero-stat { text-align: center; }
.stat-val { display: block; font-size: 26px; font-weight: 300; color: var(--gold); line-height: 1.2; }
.stat-lbl { display: block; font-size: 13px; color: rgba(251,251,252,0.6); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(201,169,98,0.2); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}
.trust-sep { width: 1px; height: 24px; background: var(--border); }

/* ---- SECTIONS ---- */
.section { padding: 96px 0; }
.section-cream { background: var(--cream); }
.section-dark { background: var(--navy); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-title {
  font-size: 60px;
  font-weight: 300;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 20px;
}
.section-title.light { color: var(--near-white); }
.section-sub {
  font-size: 18px;
  color: #475569;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ---- CARDS ---- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.25s ease;
}

.dark-card {
  background: var(--navy);
  border: 1px solid var(--navy-2);
  color: var(--near-white);
  box-shadow: rgba(0,0,0,0.1) 0px 20px 25px -5px, rgba(0,0,0,0.1) 0px 8px 10px -6px;
}
.dark-card:hover {
  border-color: var(--gold);
  box-shadow: rgba(0,0,0,0.25) 0px 25px 50px -12px;
  transform: translateY(-4px);
}

.elevated-card {
  background: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: rgba(0,0,0,0.1) 0px 20px 25px -5px, rgba(0,0,0,0.1) 0px 8px 10px -6px;
}
.elevated-card:hover {
  box-shadow: rgba(0,0,0,0.25) 0px 25px 50px -12px;
}

/* ---- SERVICE CARDS ---- */
.svc-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(201,169,98,0.1);
  border: 1px solid rgba(201,169,98,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.card-title-light {
  font-size: 20px;
  font-weight: 600;
  color: var(--near-white);
  margin-bottom: 12px;
}
.card-text-light {
  font-size: 15px;
  color: rgba(251,251,252,0.65);
  line-height: 1.65;
  margin-bottom: 20px;
}
.svc-list {
  margin-bottom: 24px;
}
.svc-list li {
  font-size: 14px;
  color: rgba(251,251,252,0.55);
  padding: 5px 0 5px 20px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px;
  gap: 16px;
}
.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-large .gallery-overlay { opacity: 1; }

.gallery-badge {
  display: inline-block;
  background: var(--gold);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  width: fit-content;
}
.gallery-caption { font-size: 14px; color: var(--near-white); font-weight: 400; }

/* Floor preview blocks */
.gallery-floor-preview {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.hw {
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 119px,
    rgba(0,0,0,0.5) 119px, rgba(0,0,0,0.5) 120px
  ),
  repeating-linear-gradient(
    180deg,
    transparent, transparent 23px,
    rgba(0,0,0,0.3) 23px, rgba(0,0,0,0.3) 24px
  );
}
.lv {
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.05), rgba(255,255,255,0.05) 79px,
    rgba(255,255,255,0.12) 79px, rgba(255,255,255,0.12) 80px
  );
}
.tl {
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 39px,
    rgba(255,255,255,0.1) 39px, rgba(255,255,255,0.1) 40px
  ),
  repeating-linear-gradient(
    90deg,
    transparent, transparent 39px,
    rgba(255,255,255,0.1) 39px, rgba(255,255,255,0.1) 40px
  );
}
.rf { background: rgba(0,0,0,0.1); }
.cp { background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 2px, transparent 2px, transparent 8px); }

/* ---- PROCESS ---- */
.process-steps {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all 0.2s ease;
  position: relative;
  z-index: 1;
}
.process-step:hover {
  border-color: var(--gold);
  box-shadow: rgba(0,0,0,0.05) 0px 1px 2px;
}
.process-connector {
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(201,169,98,0.3) 100%);
  margin: 0 0 0 64px;
  position: relative;
  z-index: 0;
}

.step-num {
  font-size: 48px;
  font-weight: 300;
  color: rgba(201,169,98,0.3);
  line-height: 1;
  min-width: 64px;
}
.step-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
}
.step-text {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 16px;
}
.step-tag {
  display: inline-block;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--black);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

/* ---- ABOUT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-body {
  font-size: 17px;
  color: rgba(251,251,252,0.72);
  line-height: 1.7;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(201,169,98,0.15);
}
.astat-val { display: block; font-size: 36px; font-weight: 300; color: var(--gold); }
.astat-lbl { display: block; font-size: 14px; color: rgba(251,251,252,0.5); margin-top: 4px; }

.about-card-stack { position: relative; }
.about-card-bg {
  position: absolute;
  inset: 20px -20px -20px 20px;
  background: rgba(201,169,98,0.08);
  border: 1px solid rgba(201,169,98,0.15);
  border-radius: var(--radius-lg);
}
.about-card-main {
  position: relative;
  background: var(--navy-3);
  border: 1px solid rgba(201,169,98,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-floor-art { width: 100%; }
.about-floor-art svg { width: 100%; height: auto; display: block; }
.about-guarantee {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border-top: 1px solid rgba(201,169,98,0.15);
  background: rgba(201,169,98,0.05);
}
.ag-title { font-size: 16px; font-weight: 600; color: var(--near-white); }
.ag-sub { font-size: 13px; color: rgba(251,251,252,0.5); margin-top: 2px; }

/* ---- TESTIMONIALS ---- */
.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.review-stars { color: var(--gold); font-size: 20px; letter-spacing: 3px; }
.review-score { font-size: 18px; font-weight: 600; color: var(--black); }
.review-count { font-size: 14px; color: #64748B; }

.t-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.t-text { font-size: 16px; color: var(--black); line-height: 1.7; font-style: italic; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 14px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #FFFFFF; font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.t-name { font-size: 15px; font-weight: 600; color: var(--black); }
.t-role { font-size: 13px; color: #64748B; margin-top: 2px; }

/* ---- CONTACT ---- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-sub {
  font-size: 17px;
  color: rgba(251,251,252,0.65);
  line-height: 1.65;
  margin-top: 20px;
}
.contact-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: rgba(251,251,252,0.75);
  font-weight: 400;
}
.contact-info {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 36px;
  border-top: 1px solid rgba(201,169,98,0.15);
}
.cinfo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(251,251,252,0.7);
  transition: color 0.15s;
}
.cinfo-item:hover { color: var(--gold); }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: rgba(0,0,0,0.25) 0px 25px 50px -12px;
}
.form-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
}
.form-input {
  height: 48px;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: all 0.15s;
  width: 100%;
}
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,98,0.1);
}
.form-input::placeholder { color: var(--border-2); }
.form-select { cursor: pointer; color: var(--black); }
.form-select option { color: var(--black); }
.form-textarea {
  height: auto;
  padding: 14px 16px;
  resize: vertical;
  min-height: 110px;
}
.form-note {
  text-align: center;
  font-size: 13px;
  color: #94A3B8;
  margin-top: 12px;
}

/* ---- FOOTER ---- */
.footer {
  background: #0A0A14;
  color: var(--near-white);
  padding: 72px 0 0;
  border-top: 1px solid rgba(201,169,98,0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: rgba(251,251,252,0.45);
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fq-item {
  font-size: 14px;
  color: rgba(251,251,252,0.55);
  transition: color 0.15s;
}
.fq-item:hover { color: var(--gold); }

.footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: var(--near-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-links li {
  font-size: 14px;
  color: rgba(251,251,252,0.45);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(251,251,252,0.3);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(251,251,252,0.3); transition: color 0.15s; }
.footer-legal a:hover { color: rgba(251,251,252,0.6); }

/* ---- ANIMATIONS ---- */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  .section-title { font-size: 48px; }
  .hero-title { font-size: 60px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-large { grid-column: 1; grid-row: 1; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .container, .nav-inner { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 96px 0 64px; min-height: auto; }
  .hero-title { font-size: 44px; }
  .hero-subtitle { font-size: 17px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; }
  .hero-stats { gap: 20px; padding: 24px; }
  .hero-stat-divider { display: none; }
  .section-title { font-size: 36px; }
  .grid-3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { min-height: 180px; }
  .gallery-large { grid-column: 1; grid-row: 1; min-height: 240px; }
  .process-step { flex-direction: column; gap: 16px; }
  .process-connector { margin-left: 28px; }
  .step-num { font-size: 36px; min-width: auto; }
  .form-row-2 { grid-template-columns: 1fr; }
  .form-card { padding: 28px 24px; }
  .about-stats { flex-wrap: wrap; gap: 24px; }
  .trust-inner { gap: 16px; }
  .trust-sep { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .section-title { font-size: 30px; }
  .review-summary { flex-direction: column; gap: 6px; }
}
