/* ============================================================
   DUNDEE STYLES – Premium Wallpaper Installation
   style.css | Version 1.0
   Color Palette:
     Primary:        #1E293B
     Accent (Gold):  #C8A96A
     Background:     #FFFFFF
     Light BG:       #F8FAFC
     Text:           #222222
   Fonts: Playfair Display (headings) | Inter (body)
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1E293B;
  --accent:       #C8A96A;
  --accent-dark:  #a8893a;
  --accent-light: #e8d4a0;
  --bg:           #FFFFFF;
  --bg-light:     #F8FAFC;
  --text:         #222222;
  --text-muted:   #64748B;
  --border:       #E2E8F0;
  --shadow-sm:    0 2px 8px rgba(30,41,59,.06);
  --shadow-md:    0 8px 32px rgba(30,41,59,.10);
  --shadow-lg:    0 20px 60px rgba(30,41,59,.14);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --transition:   .35s cubic-bezier(.4,0,.2,1);
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section-padding { padding: 100px 0; }
.bg-light { background: var(--bg-light); }

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

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,169,106,.12);
  border: 1px solid rgba(200,169,106,.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-tag--light {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
  color: #fff;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 100px;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent) 0%, #b8924a 100%);
  color: var(--primary);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(200,169,106,.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, #d4b97a 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200,169,106,.5);
  color: var(--primary);
}

.btn-outline-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.22);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Glass Card ───────────────────────────────────────────── */
.glass-card {
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(30,41,59,.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--accent), #b8924a);
  color: var(--primary);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}
.logo-text em { font-style: italic; color: var(--accent); }
.site-header.scrolled .logo-text { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-link {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover { color: var(--accent); background: rgba(200,169,106,.1); }
.site-header.scrolled .nav-link { color: var(--text-muted); }
.site-header.scrolled .nav-link:hover { color: var(--accent); }

.nav-cta {
  flex-shrink: 0;
  font-size: .875rem;
  padding: 11px 24px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.site-header.scrolled .nav-toggle span { background: var(--primary); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-cover.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,41,59,.85) 0%,
    rgba(30,41,59,.60) 50%,
    rgba(30,41,59,.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 140px 32px 100px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(200,169,106,.15);
  border: 1px solid rgba(200,169,106,.35);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.hero-headline em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: rgba(255,255,255,.88);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.hero-phone a {
  color: var(--accent);
  transition: color var(--transition);
}
.hero-phone a:hover { color: var(--accent-light); }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.6));
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-indicator span {
  font-size: .6875rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  background: var(--primary);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.stat-card:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--accent);
}
.stat-label {
  font-size: .9375rem;
  color: rgba(255,255,255,.65);
  margin-top: 10px;
  font-weight: 500;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/8;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-glass-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 220px;
}
.about-glass-card p {
  font-size: .875rem;
  line-height: 1.5;
  color: var(--primary);
}
.about-glass-card strong { color: var(--primary); }

.about-lead {
  font-size: 1.125rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 400;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,106,.3);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: rgba(200,169,106,.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(200,169,106,.18); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.35;
}

.service-card p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: all var(--transition);
  text-align: center;
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(200,169,106,.25);
}

.why-icon {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, rgba(200,169,106,.12), rgba(200,169,106,.06));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background var(--transition);
}
.why-card:hover .why-icon {
  background: linear-gradient(135deg, rgba(200,169,106,.22), rgba(200,169,106,.1));
}

.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-light);
}
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,41,59,.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .3s ease;
}
.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  width: 52px; height: 52px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.lightbox-close { top: 24px; right: 24px; font-size: 1.75rem; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(200,169,106,.4);
  border-color: var(--accent);
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}

.step-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: 16px;
  transition: opacity var(--transition);
}
.process-step:hover .step-number { opacity: 1; }

.step-content h3 {
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-content p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.process-connector {
  flex-shrink: 0;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(200,169,106,.3));
  margin-top: 28px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid rgba(200,169,106,.5);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider-wrap {
  position: relative;
  overflow: hidden;
}

.testimonials-slider {
  display: flex;
  gap: 28px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 19px);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.stars {
  color: var(--accent);
  font-size: 1.125rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-card blockquote p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
}

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

.author-avatar {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--primary);
  font-weight: 700;
  font-size: .875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: .9375rem;
  color: var(--primary);
}
.testimonial-author span {
  font-size: .8125rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--primary);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}
.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-item.open { border-color: rgba(200,169,106,.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 28px;
  font-family: var(--font-head);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  padding: 0 28px 24px;
}
.faq-answer p {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/cta-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,41,59,.88) 0%, rgba(30,41,59,.72) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  line-height: 1.75;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}

.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}

.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-details li svg { flex-shrink: 0; margin-top: 2px; }
.contact-details a:hover { color: var(--accent); }

.hours-block h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9375rem;
}
.hours-table td {
  padding: 8px 0;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--primary); }

/* Contact Form */
.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 32px;
}

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

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

.form-group label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}
.form-group label span { color: var(--accent); }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(200,169,106,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #94A3B8; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* Form Success */
#form-success {
  display: none;
}
.form-success-inner {
  text-align: center;
  padding: 60px 40px;
}
.form-success-inner svg { margin: 0 auto 24px; }
.form-success-inner h3 {
  font-family: var(--font-head);
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 12px;
}
.form-success-inner p { color: var(--text-muted); }

/* Error messages */
.error-message {
  color: #ff6b6b;
  margin-top: 5px;
  font-size: 14px;
  animation: fadeIn .3s ease;
}

/* Map */
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,.7);
}

.footer-top { padding: 80px 0 60px; }

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

.footer-brand .logo-text { color: #fff; }
.footer-brand p {
  font-size: .9375rem;
  line-height: 1.75;
  margin: 20px 0 24px;
  color: rgba(255,255,255,.6);
}

.footer-phone {
  display: inline-block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--accent);
  transition: color var(--transition);
}
.footer-phone:hover { color: var(--accent-light); }

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact address p {
  font-size: .9375rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: .875rem; color: rgba(255,255,255,.45); }

.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: .875rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ============================================================
   RESPONSIVE – Tablet (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-card:last-child, .stat-card:nth-last-child(2) { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-wrap { max-width: 560px; margin: 0 auto; }
  .about-glass-card { right: 0; bottom: -20px; }

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

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item--wide { grid-column: span 1; }

  .process-steps { flex-direction: column; align-items: center; }
  .process-connector { width: 2px; height: 32px; margin-top: 0; }
  .process-connector::after {
    top: auto; bottom: -6px; left: 50%; right: auto;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid rgba(200,169,106,.5);
    border-bottom: none;
  }
  .process-step { max-width: 480px; width: 100%; }

  .testimonial-card { flex: 0 0 calc(50% - 14px); }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: span 2; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -4px 0 40px rgba(0,0,0,.2);
    z-index: 999;
  }
  .nav-menu.open { right: 0; }
  .nav-link { color: rgba(255,255,255,.8) !important; font-size: 1rem; width: 100%; padding: 12px 16px; }
  .nav-link:hover { color: var(--accent) !important; }

  .nav-toggle { display: flex; z-index: 1001; }
  .nav-cta { display: none; }
}

/* ============================================================
   RESPONSIVE – Mobile (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section-padding { padding: 72px 0; }

  .hero-content { padding: 120px 20px 80px; }
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }

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

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }
  .gallery-item--tall, .gallery-item--wide { grid-column: span 1; grid-row: span 1; }

  .about-features { grid-template-columns: 1fr; }

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

  .contact-info-card, .contact-form-wrap { padding: 32px 24px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }

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

  .testimonial-card { flex: 0 0 calc(100% - 0px); }

  .process-connector { display: none; }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header, .scroll-indicator, .lightbox, .slider-controls { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  .hero-bg, .hero-overlay, .cta-bg, .cta-overlay { display: none; }
  .hero-headline, .hero-sub { color: var(--primary); }
}
