/* ============================================================
   ARTplus Modular Cabinet — Main Stylesheet
   Palette: Orange #C8541A · Warm White #FAFAF7 · Beige #F0E8DC
            Walnut #5C3D20 · Black #141414 · Gray #9E9E9E
   ============================================================ */

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

/* --- Variables --- */
:root {
  --orange:        #C8541A;
  --orange-hover:  #B04815;
  --orange-light:  rgba(200, 84, 26, 0.09);
  --warm-white:    #FAFAF7;
  --beige:         #F0E8DC;
  --beige-dark:    #E0D4C4;
  --walnut:        #5C3D20;
  --black:         #141414;
  --gray-dark:     #3A3A3A;
  --gray-mid:      #6B6B6B;
  --gray-light:    #9E9E9E;
  --white:         #FFFFFF;

  --font-heading:  'Montserrat', sans-serif;
  --font-body:     'Inter', sans-serif;

  --max-width:     1180px;
  --nav-height:    78px;

  --ease:          all 0.3s ease;
  --shadow-sm:     0 2px 10px rgba(0,0,0,0.06);
  --shadow-md:     0 10px 30px rgba(0,0,0,0.10);
  --shadow-lg:     0 24px 64px rgba(0,0,0,0.14);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--warm-white);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: var(--black); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1rem; }
p { color: var(--gray-mid); line-height: 1.75; }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.section    { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.text-center { text-align: center; }

/* --- Section Labels & Headers --- */
.label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }
.section-title { margin-bottom: 0.75rem; }
.section-sub { font-size: 1.05rem; color: var(--gray-mid); max-width: 580px; line-height: 1.8; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 3px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--ease);
  cursor: pointer;
}
.btn-primary {
  background-color: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background-color: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(200,84,26,0.30);
}
.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  border-color: var(--white);
  background-color: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.btn-outline-dark {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover {
  background-color: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* --- Scroll Fade Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }
.delay-5 { transition-delay: 0.50s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: rgba(250,250,247,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--ease);
}
.navbar.scrolled {
  border-bottom-color: var(--beige-dark);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 0.7rem; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
  letter-spacing: 0.02em;
}
.nav-logo-text em { color: var(--orange); font-style: normal; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--gray-dark);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background-color: var(--orange);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background-color: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 3px;
}
.nav-cta:hover { background-color: var(--orange-hover) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background-color: var(--black); border-radius: 2px; transition: var(--ease); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #1A1008;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2A1508 0%, #1A1A18 50%, #221408 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15,8,2,0.85) 0%, rgba(15,8,2,0.5) 55%, rgba(15,8,2,0.20) 100%);
}
/* Decorative orange accent */
.hero-accent {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,84,26,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: var(--nav-height);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 16px;
  background-color: rgba(200,84,26,0.15);
  border: 1px solid rgba(200,84,26,0.35);
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); max-width: 660px; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero-desc {
  color: rgba(255,255,255,0.68);
  font-size: 1.08rem;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   PAGE HEADER (inner pages)
   ============================================================ */
.page-header {
  padding: 155px 0 80px;
  background-color: var(--black);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -30%; right: -15%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(200,84,26,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.page-header .label { color: rgba(200,84,26,0.85); }
.page-header h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-header p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 500px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color 0.3s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.25); }
.breadcrumb .current { color: var(--orange); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 2px;
}
.about-img-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(135deg, #D8C8B0 0%, #C4A880 50%, #B89060 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-placeholder::after {
  content: 'Add your best project photo here';
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 0 2rem;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--orange);
  color: var(--white);
  padding: 22px 26px;
  border-radius: 2px;
  text-align: center;
  font-family: var(--font-heading);
  min-width: 110px;
}
.about-badge .num { font-size: 2.4rem; font-weight: 800; line-height: 1; display: block; }
.about-badge .lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.88; }
.about-text .section-sub { max-width: 100%; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.highlight {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.highlight-icon {
  width: 34px; height: 34px;
  background-color: var(--orange-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.85rem;
}
.highlight p { font-size: 0.83rem; font-weight: 500; color: var(--gray-dark); line-height: 1.5; }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-wrap::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 28px);
  right: calc(12.5% + 28px);
  height: 1px;
  background: var(--beige-dark);
}
.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  transition: var(--ease);
}
.process-step:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.process-step:hover .step-num {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(200,84,26,0.30);
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--beige-dark);
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-light);
  transition: var(--ease);
}
.process-step h3 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.85rem; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  overflow: hidden;
  transition: var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}
.service-card-img {
  height: 240px;
  position: relative;
  overflow: hidden;
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
/* Gradient placeholders per service */
.service-card-img.kitchen    { background: linear-gradient(135deg, #C4A070 0%, #8C5A30 100%); }
.service-card-img.counter    { background: linear-gradient(135deg, #B8C0C4 0%, #78888E 100%); }
.service-card-img.closet     { background: linear-gradient(135deg, #D4C4A8 0%, #A89070 100%); }
.service-card-img.fitout     { background: linear-gradient(135deg, #8C7460 0%, #5C4030 100%); }
.service-card-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.service-card-body { padding: 2rem; }
.service-icon {
  width: 42px; height: 42px;
  background-color: var(--orange-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.service-card p { font-size: 0.88rem; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.why-item {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  transition: var(--ease);
}
.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
  transform: translateY(-3px);
}
.why-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--beige-dark);
  line-height: 1;
  margin-bottom: 1rem;
}
.why-item h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.why-item p { font-size: 0.83rem; line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #141414 0%, #2A1408 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,84,26,0.14) 0%, transparent 65%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1rem; }
.cta-banner .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   GALLERY / PROJECTS
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, #D4C4A8 0%, #B09070 100%);
  cursor: pointer;
}
.gallery-item:nth-child(4n+2) { background: linear-gradient(135deg, #C4A878 0%, #8C6840 100%); }
.gallery-item:nth-child(4n+3) { background: linear-gradient(135deg, #B8A888 0%, #907860 100%); }
.gallery-item:nth-child(4n)   { background: linear-gradient(135deg, #A89070 0%, #705040 100%); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,8,2,0);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.35s ease;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(14,8,2,0.45); }
.gallery-item-label {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-item:hover .gallery-item-label { opacity: 1; transform: translateY(0); }
.gallery-note {
  margin-top: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--beige);
  border-left: 3px solid var(--orange);
  border-radius: 0 2px 2px 0;
}
.gallery-note-icon { color: var(--orange); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.gallery-note p { font-size: 0.88rem; color: var(--gray-dark); }
.gallery-note a { color: var(--orange); font-weight: 600; }
.gallery-note a:hover { text-decoration: underline; }

/* ============================================================
   ESTIMATE PAGE
   ============================================================ */
.estimate-intro { padding: 80px 0 0; }
.estimate-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 80px;
}
.estimate-opt {
  background: var(--white);
  border: 2px solid var(--beige-dark);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  transition: var(--ease);
}
.estimate-opt:hover { box-shadow: var(--shadow-md); }
.estimate-opt.featured { border-color: var(--orange); }
.estimate-opt.featured::before {
  content: 'FREE';
  position: absolute;
  top: -1px;
  left: 2rem;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 4px 12px;
}
.opt-icon {
  width: 50px; height: 50px;
  background: var(--orange-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}
.estimate-opt h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.estimate-opt .price-badge {
  display: inline-block;
  background: var(--beige);
  padding: 3px 12px;
  border-radius: 2px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.estimate-opt p { font-size: 0.88rem; }
.estimate-opt .checklist { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.estimate-opt .checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--gray-mid);
}
.estimate-opt .checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* Divider line */
.divider { height: 1px; background: var(--beige-dark); margin: 60px 0; }
.divider-labeled {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 60px 0;
}
.divider-labeled::before,
.divider-labeled::after { content: ''; flex: 1; height: 1px; background: var(--beige-dark); }
.divider-labeled span {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
  white-space: nowrap;
}

/* ============================================================
   FORMS
   ============================================================ */
.form-card {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 2px;
  padding: 3rem;
  max-width: 740px;
  margin: 0 auto;
}
.form-card h2 { font-size: 1.75rem; margin-bottom: 0.4rem; }
.form-card > p { margin-bottom: 2rem; font-size: 0.92rem; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-dark);
  margin-bottom: 0.45rem;
}
label .req { color: var(--orange); }
input, textarea, select {
  width: 100%;
  padding: 12px 15px;
  background: var(--warm-white);
  border: 1.5px solid var(--beige-dark);
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,84,26,0.09);
}
textarea { resize: vertical; min-height: 110px; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239E9E9E' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 38px;
}
.form-disclaimer {
  padding: 1rem 1.25rem;
  background: var(--beige);
  border: 1px solid var(--beige-dark);
  border-radius: 3px;
  margin: 1.5rem 0;
  font-size: 0.82rem;
  color: var(--gray-mid);
  line-height: 1.65;
}
.form-disclaimer strong { color: var(--gray-dark); }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: rgba(200,84,26,0.06);
  border: 1px solid rgba(200,84,26,0.2);
  border-radius: 3px;
  margin-top: 1rem;
}
.form-success h3 { color: var(--orange); margin-bottom: 0.4rem; }
.form-success p { font-size: 0.88rem; }
.form-submit-btn { width: 100%; justify-content: center; padding: 16px; font-size: 0.9rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info-col h2 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.contact-info-col > p { margin-bottom: 2rem; font-size: 0.92rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--beige-dark);
}
.contact-item:last-of-type { border-bottom: none; }
.ci-icon {
  width: 38px; height: 38px;
  background: var(--orange-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  font-size: 0.88rem;
}
.ci-label {
  font-size: 0.68rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  display: block;
  margin-bottom: 0.2rem;
}
.ci-value { font-size: 0.92rem; color: var(--gray-dark); font-weight: 500; }
.ci-value a { color: var(--gray-dark); transition: color 0.3s; }
.ci-value a:hover { color: var(--orange); }
.social-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 2rem; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 9px 18px;
  background: var(--white);
  border: 1px solid var(--beige-dark);
  border-radius: 3px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-dark);
  transition: var(--ease);
}
.social-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.map-wrap {
  margin-top: 2rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--beige-dark);
}
.map-wrap iframe { display: block; width: 100%; height: 210px; border: none; }
.contact-form-col .form-card { max-width: 100%; }

/* ============================================================
   AREAS COVERED (shared strip)
   ============================================================ */
.areas-strip {
  background: var(--beige);
  padding: 72px 0;
  text-align: center;
}
.areas-strip h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.areas-strip p { max-width: 560px; margin: 0 auto 1.75rem; font-size: 0.92rem; }
.area-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem; }
.area-tag {
  background: var(--white);
  border: 1px solid var(--beige-dark);
  padding: 5px 16px;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-dark);
  transition: var(--ease);
}
.area-tag:hover { border-color: var(--orange); color: var(--orange); }
.area-tag.main { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ============================================================
   CLIENT FEEDBACK
   ============================================================ */
.feedback-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.feedback-img-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.feedback-img-box {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.feedback-img {
  width: 100%;
  height: auto;
  display: block;
}
.feedback-img-box.feedback-placeholder {
  height: 400px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feedback-img-box.feedback-placeholder::after {
  content: 'Feedback image coming soon';
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
}
.feedback-star-row {
  display: flex;
  gap: 0.3rem;
  color: var(--orange);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.feedback-cta-col h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .feedback-wrap { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--black); padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand-logo { height: 38px; margin-bottom: 1rem; }
.footer-brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 250px; }
.footer-brand .footer-social { display: flex; gap: 0.6rem; margin-top: 1.5rem; }
.footer-social-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  transition: var(--ease);
}
.footer-social-btn:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .process-wrap { grid-template-columns: repeat(2, 1fr); }
  .process-wrap::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .section { padding: 68px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column;
    padding: 1rem 2rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--beige-dark);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.9rem 0; border-bottom: 1px solid var(--beige-dark); font-size: 0.88rem; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { padding: 0.9rem 0; background: none !important; color: var(--orange) !important; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: 10px; right: 10px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .estimate-options { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 2rem; }
  .hero-scroll { display: none; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .process-wrap { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
}
