/* ===========================
   KRCIC LLC — Landing Page CSS
   Light / Minimalist Theme
   =========================== */

:root {
  --primary:       #8B1A1A;
  --primary-dark:  #6E1515;
  --primary-light: #A52020;
  --dark:          #111827;
  --dark-2:        #f3f4f6;
  --dark-3:        #ffffff;
  --gray:          #9ca3af;
  --gray-light:    #d1d5db;
  --border:        #e5e7eb;
  --white:         #ffffff;
  --off-white:     #f9fafb;
  --text:          #111827;
  --text-muted:    #6b7280;
  --radius:        12px;
  --radius-lg:     20px;
  --shadow:        0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-lg:     0 8px 40px rgba(0, 0, 0, 0.10);
  --transition:    0.25s ease;
  --font:          'Montserrat', sans-serif;
  --font-heading:  'Cinzel', serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 72px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139, 26, 26, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: rgba(0, 0, 0, 0.2);
}
.btn-outline:hover {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* ===========================
   HEADER / NAV
   =========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), padding var(--transition), background var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

/* House icon — cropped from logo.png (shows roof only, text hidden) */
.logo-mark {
  width: 96px;
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.logo-house-img {
  width: 260%;
  max-width: none;
  position: absolute;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

/* Hide the house crop in the footer — not legible on dark bg */
.logo-mark--footer {
  display: none;
}

/* Text block next to the house */
.logo-text-stack {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-brand em {
  font-style: normal;
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Footer version: light text */
.logo--footer .logo-brand { color: #ffffff; }
.logo--footer .logo-brand em { color: #f87171; }
.logo--footer .logo-tagline { color: #9ca3af; }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav a:hover {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.05);
}

.nav a.active {
  color: var(--primary);
  font-weight: 600;
  background: rgba(139, 26, 26, 0.07);
}

.nav-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO — Split Layout
   =========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(139, 26, 26, 0.05) 0%, transparent 60%),
    linear-gradient(175deg, #ffffff 0%, #f9fafb 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ---- Split grid: text left, photo right ---- */
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(139, 26, 26, 0.07);
  border: 1px solid rgba(139, 26, 26, 0.2);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
  letter-spacing: 0.04em;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 5px;
  display: block;
  letter-spacing: 0.04em;
}

/* ---- Hero right-side photo collage ---- */
.hero-photo-wrap {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}

.hero-single-photo {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-size: cover;
  background-position: center;
  filter: brightness(1.25);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-single-photo:hover {
  transform: scale(1.02);
}

.hero-before-after {
  width: 100%;
  height: 600px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hba-item {
  position: relative;
  background-size: cover;
  background-position: center;
  background-color: #d1cdc9;
  overflow: hidden;
  filter: brightness(1.15);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-before-after:hover .hba-item {
  transform: scale(1.03);
}


/* Small location tag on photo */
.hero-photo-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 8px;
  padding: 10px 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.hero-photo-tag span {
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}


/* ===========================
   SERVICES — Photo Cards
   =========================== */
.services {
  background: var(--off-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

/* ========================
   ANSWER BOX
======================== */
.answer-box-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.answer-box {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.answer-box-label {
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
}

.answer-box-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

.answer-box-updated {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Photo card wrapper ---- */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

/* ---- Background photo ---- */
.sc-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2a2a2a; /* dark fallback while photo loads */
  transform: scale(1.02);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  filter: brightness(1.25);
}

.service-card:hover .sc-img {
  transform: scale(1.12);
}

/* ---- Dark gradient overlay ---- */
.sc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.70) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.45s ease;
  z-index: 1;
}

.service-card:hover .sc-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.52) 55%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

/* ---- Text content ---- */
.sc-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  z-index: 2;
}

.sc-body h3 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0;
  transition: margin-bottom 0.35s ease;
}

.sc-body p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.45s ease, opacity 0.4s ease, margin-top 0.35s ease;
}

.service-card:hover .sc-body h3 {
  margin-bottom: 10px;
}

.service-card:hover .sc-body p {
  max-height: 80px;
  opacity: 1;
  margin-top: 6px;
}

/* ---- CTA button inside card ---- */
.sc-btn {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.06em;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 2px;
  margin-top: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease 0.05s, opacity 0.4s ease 0.05s;
}

.service-card:hover .sc-btn {
  max-height: 40px;
  opacity: 1;
}

.sc-btn:hover {
  border-bottom-color: #ffffff;
  color: #ffffff;
}

/* ===========================
   WHY US
   =========================== */
.why-us {
  background: var(--white);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text .section-label {
  margin-bottom: 16px;
}

.why-us-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.why-us-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(139, 26, 26, 0.08);
  border: 1px solid rgba(139, 26, 26, 0.2);
  border-radius: 50%;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 2px;
}

.why-list strong {
  display: block;
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.why-list p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ---- NYC Building Photo (replaces floating cards) ---- */
.why-us-visual {
  position: relative;
}

.why-us-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 480px;
}

.why-us-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.why-us-photo:hover .why-us-photo-img {
  transform: scale(1.04);
}

/* Floating badge pinned to bottom-left of photo */
.why-us-photo-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.badge-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ===========================
   PROCESS
   =========================== */
.process {
  background: var(--off-white);
}

.process-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  box-shadow: var(--shadow);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  border-color: rgba(139, 26, 26, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.process-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), rgba(139, 26, 26, 0.15));
  flex-shrink: 0;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 26, 26, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.09);
}

.stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.testimonial-author strong {
  display: block;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===========================
   FAQ
   =========================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item {
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid var(--border);
  transition: background 0.2s ease;
}

.faq-item:hover {
  background: var(--off-white);
}

.faq-item h3 {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px 0;
  line-height: 1.4;
}

.faq-item h3::before {
  content: 'Q  ';
  color: var(--primary);
  font-weight: 800;
}

.faq-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   CONTACT
   =========================== */
.contact {
  background: var(--off-white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  margin-bottom: 16px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-top: 2px;
}

.contact-details strong {
  display: block;
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}

.contact-details a,
.contact-details span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-details a:hover {
  color: var(--primary);
}

/* FORM */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--dark);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.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(139, 26, 26, 0.10);
  background: var(--white);
}

.form-group select option {
  background: var(--white);
  color: var(--dark);
}

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

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===========================
   FOOTER  (kept dark for contrast)
   =========================== */
.footer {
  background: #111827;
  border-top: none;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px 24px 48px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.65;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color var(--transition);
}

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

.footer-contact p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 8px;
}

.footer-contact a:hover { color: var(--primary-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: #6b7280;
}

/* ===========================
   MOBILE NAV OPEN
   =========================== */
.nav.open {
  display: flex;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  /* Hero: stack on tablet */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: unset;
  }

  .hero-before-after {
    height: 380px;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-us-photo {
    height: 360px;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.99);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }

  .nav a {
    font-size: 1.2rem;
    color: var(--dark);
    padding: 12px 24px;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-cta {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 110px;
  }

  .hero-before-after {
    height: 300px;
  }

  .hero-photo-wrap {
    order: -1;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-divider {
    height: 32px;
  }

  .process-steps {
    flex-direction: column;
    align-items: stretch;
  }

  .process-step {
    max-width: 100%;
    text-align: left;
  }

  .process-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--primary), rgba(139, 26, 26, 0.15));
    margin: 0 auto;
  }

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

  .contact-form {
    padding: 28px 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 24px 32px;
  }

  .footer-bottom .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .why-us-photo {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
  }

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

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

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
