/* ============================================
   MK INTERIOR REPAIR & REMODELING
   Local Service Company — Chicago Suburbs
   Design System: Bold + High-Contrast (meblemdr.pl-inspired)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/recoleta');

/* --- CSS Custom Properties --- */
:root {
  --dark: #1A1A1A;
  --dark-rgb: 26, 26, 26;
  --dark-alt: #111111;
  --accent: #E8711A;
  --accent-hover: #d4660f;
  --accent-rgb: 232, 113, 26;
  --white: #FFFFFF;
  --warm: #F7F5F2;
  --warm-alt: #F0EDE8;
  --text-dark: #2D2D2D;
  --text-light: #F0F0F0;
  --text-muted: #7A7672;
  --border: #E0DCD7;
  --border-dark: #333333;

  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, 'Segoe UI', sans-serif;

  --section-pad: 80px;
  --section-pad-sm: 48px;
  --container: 1280px;
  --gutter: 32px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration: 0.4s;
  --duration-fast: 0.25s;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
}

h1 { font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 16px; }
h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 24px; }
h3 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 16px; }
h4 { font-size: clamp(18px, 2vw, 22px); margin-bottom: 8px; }
h5 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
h6 { font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent);
}

p { margin-bottom: 1em; }
.container > p,
.services-intro p,
.process-intro p,
.faq-left p,
.contact-cta-content p,
.footer-tagline p,
.footer-logo p,
.page-hero-subtitle,
.hero-subtitle { max-width: 640px; }

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--accent);
}

.section-number {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--accent);
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* --- Section --- */
.section { padding: var(--section-pad) 0; position: relative; }
.section--warm { background: var(--warm); }
.section--dark { background: var(--dark); color: var(--text-light); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-light); }

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

/* --- MK Watermark --- */
.mk-watermark {
  position: absolute;
  font-family: var(--font-heading);
  font-size: clamp(120px, 15vw, 220px);
  font-weight: 400;
  color: rgba(var(--dark-rgb), 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 0;
  overflow: hidden;
}

.section--warm .mk-watermark { color: rgba(var(--dark-rgb), 0.04); }
.section--dark .mk-watermark { color: rgba(255, 255, 255, 0.03); }

.mk-watermark--right { right: 0; top: 40px; }
.mk-watermark--left { left: 0; bottom: 40px; }

/* Clip sections that contain watermarks */
.section { overflow: hidden; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 2px solid currentColor;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-out);
  z-index: -1;
}

.btn:hover::before { transform: scaleX(1); }
.btn:hover { color: var(--white); border-color: var(--accent); }

.btn--accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn--accent::before { background: var(--accent-hover); }
.btn--accent:hover { border-color: var(--accent-hover); }

.btn--white {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--white::before { background: var(--warm); }
.btn--white:hover { color: var(--dark); border-color: var(--warm); }

.btn--dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--dark:hover { color: var(--white); border-color: var(--accent); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn--outline-white::before { display: none; }

.link-underline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color var(--duration-fast) var(--ease);
}
.link-underline:hover { color: var(--accent); }

/* ============================================
   TOP BAR — Contact Strip (meblemdr pattern)
   ============================================ */
.top-bar {
  background: var(--dark-alt);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  transition: color var(--duration-fast) var(--ease);
}

.top-bar-item:hover { color: var(--white); }

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   HEADER — Always Dark (meblemdr pattern)
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: var(--dark);
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ff9a44, var(--accent));
  background-size: 200% 100%;
  animation: header-glow 4s ease infinite;
}

@keyframes header-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.site-header.scrolled {
  background: rgba(var(--dark-rgb), 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35), 0 1px 0 rgba(var(--accent-rgb), 0.15);
}

.site-header {
  transition: box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .site-header {
    position: fixed;
  }
  body {
    padding-top: 70px;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--gutter);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  z-index: 1001;
}

/* Logo SVG */
.logo-svg {
  width: 100px;
  height: 50px;
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-svg--footer {
  width: 100px;
  height: 50px;
  color: var(--white);
}

.logo-mk {
  font-family: 'Recoleta', var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--white);
  line-height: 1;
  position: relative;
}

.logo-mk::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  transition: color var(--duration-fast) var(--ease);
}



/* Navigation — always white on dark header */
.main-nav { display: flex; align-items: center; gap: 36px; }
.nav-list { display: flex; align-items: center; gap: 32px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--duration-fast) var(--ease);
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }

/* Services Dropdown */
.nav-item--dropdown { position: relative; }
.nav-item--dropdown .nav-link { display: flex; align-items: center; gap: 6px; }
.nav-link .dropdown-arrow { font-size: 8px; transition: transform var(--duration-fast) var(--ease); }
.nav-item--dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Hover bridge — prevents dropdown flicker */
.nav-item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration-fast) var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  z-index: 10;
}

.nav-item--dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  transition: all var(--duration-fast) var(--ease);
}
.dropdown-link:hover { color: var(--accent); padding-left: 30px; background: rgba(255,255,255,0.04); }
.dropdown-link .arrow { font-size: 14px; opacity: 0; transform: translateX(-8px); transition: all var(--duration-fast) var(--ease); }
.dropdown-link:hover .arrow { opacity: 1; transform: translateX(0); }

/* Header CTA — Prominent filled orange button */
.header-cta {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--accent);
  border: 2px solid var(--accent);
  color: var(--white);
  transition: all var(--duration-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-cta .dot { width: 0; height: 0; display: none; }
.header-cta:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

/* Header Phone Number (Desktop) */
.header-phone {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: color var(--duration-fast) var(--ease);
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-phone::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  display: block;
  animation: pulse-dot 2s ease-in-out infinite;
}
.header-phone:hover { color: var(--accent); }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
  padding: 8px;
  cursor: pointer;
}
.menu-toggle span { width: 28px; height: 2px; background: var(--white); transition: all var(--duration-fast) var(--ease); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}
.mobile-nav.active { opacity: 1; visibility: visible; }
.mobile-nav-list { display: flex; flex-direction: column; align-items: center; gap: 20px; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--white);
  transition: color var(--duration-fast) var(--ease);
}
.mobile-nav-link:hover { color: var(--accent); }

.mobile-nav-sub { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: -4px; }
.mobile-nav-sub a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  transition: all var(--duration-fast) var(--ease);
}
.mobile-nav-sub a:hover { color: var(--accent); border-color: var(--accent); }

.mobile-nav-phone {
  margin-top: 32px;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); transform: scale(1.02); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(var(--dark-rgb), 0.55) 0%,
    rgba(var(--dark-rgb), 0.6) 50%,
    rgba(var(--dark-rgb), 0.85) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--gutter) 80px;
  max-width: var(--container);
  margin: 0 auto;
}

.hero-services-bar {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-service-tag {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  border-left: 3px solid var(--accent);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
  transition: all var(--duration-fast) var(--ease);
}
.hero-service-tag:hover {
  border-color: var(--accent);
  border-left-color: var(--accent);
  color: var(--white);
  background: rgba(var(--accent-rgb), 0.25);
  transform: translateY(-2px);
}

.hero h1 { color: var(--white); margin-bottom: 16px; max-width: 700px; text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  font-weight: 400;
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hero-pricing {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-price-item {
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.hero-price-item .price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
}

.hero-price-item .price-value {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Trust Badges */
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
}

.hero-trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* ============================================
   PULSING CALL WIDGET — Clean Circle (meblemdr pattern)
   ============================================ */
.call-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.5);
  transition: all var(--duration) var(--ease);
  animation: pulse-ring 2s ease-in-out infinite;
}

.call-widget:hover {
  background: var(--accent-hover);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(var(--accent-rgb), 0.6);
}

.call-widget-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: phone-shake 1.5s ease-in-out infinite;
}

.call-widget-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

@keyframes pulse-ring {
  0% { box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.4), 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
  50% { box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.4), 0 0 0 14px rgba(var(--accent-rgb), 0); }
  100% { box-shadow: 0 8px 32px rgba(var(--accent-rgb), 0.4), 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

@keyframes phone-shake {
  0%, 100% { transform: rotate(0deg); }
  10% { transform: rotate(-12deg); }
  20% { transform: rotate(12deg); }
  30% { transform: rotate(-8deg); }
  40% { transform: rotate(8deg); }
  50% { transform: rotate(0deg); }
}

/* ============================================
   SERVICES SECTION — Visual Hierarchy
   ============================================ */
.services-intro {
  max-width: 640px;
  margin-bottom: 48px;
}

.services-intro h2 { margin-bottom: 20px; }
.services-intro p { color: var(--text-muted); }

/* Primary services: 2 large cards side by side */
.services-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

/* Secondary services: 2 smaller cards */
.services-secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--dark);
  border-radius: 0;
  border-bottom: 3px solid transparent;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border-bottom-color: var(--accent);
}

.service-card--large { min-height: 520px; }
.service-card--small { min-height: 320px; }

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.8s var(--ease-out), opacity 0.4s ease;
  opacity: 0.75;
}
.service-card:hover img { transform: scale(1.08); opacity: 1; }

.service-card-content {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(var(--dark-rgb), 0.9) 0%, rgba(var(--dark-rgb), 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  z-index: 2;
}

.service-card-name {
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--white);
  margin-bottom: 8px;
  transition: color var(--duration-fast) var(--ease);
}

.service-card--small .service-card-name { font-size: 24px; }

.service-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
  line-height: 1.5;
  margin-bottom: 16px;
}

.service-card-price {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  padding: 8px 18px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.service-card-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--duration-fast) var(--ease);
}
.service-card-link:hover { color: var(--accent); }
.service-card-link .arrow { transition: transform var(--duration-fast) var(--ease); }
.service-card:hover .service-card-link .arrow { transform: translate(4px, -4px); }

/* ============================================
   PROCESS SECTION — Bold Number Circles (meblemdr pattern)
   ============================================ */
.process-intro {
  max-width: 640px;
  margin-bottom: 56px;
}
.process-intro h2 { margin-bottom: 20px; }
.process-intro p { color: var(--text-muted); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 3px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 8px;
}

.process-step-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
  transition: all var(--duration) var(--ease);
  border: none;
}

.process-step:hover .process-step-number {
  background: var(--accent-hover);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.3);
}

.process-step-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  max-width: 160px;
}

/* ============================================
   CTA BAND — Full Orange Background (meblemdr pattern)
   ============================================ */
.cta-band {
  background: var(--accent);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-band .mk-watermark {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  color: rgba(255,255,255,0.08);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-band h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(28px, 3.5vw, 44px); }
.cta-band .btn { flex-shrink: 0; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 0; }

.cta-band .btn--accent {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.cta-band .btn--accent::before { background: var(--warm); }
.cta-band .btn--accent:hover {
  color: var(--dark);
  border-color: var(--warm);
}

/* ============================================
   SELECTED PROJECTS
   ============================================ */
.projects-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.projects-image { overflow: hidden; }
.projects-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: opacity 0.4s var(--ease);
}

.projects-right h2 { margin-bottom: 40px; }

.project-list { display: flex; flex-direction: column; }

.project-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}
.project-item:first-child { border-top: 1px solid var(--border); }
.project-item:hover {
  padding-left: 12px;
  border-bottom-color: var(--accent);
}

.project-name {
  font-family: var(--font-heading);
  font-size: 20px;
  transition: color var(--duration-fast) var(--ease);
}
.project-item:hover .project-name { color: var(--accent); }

.project-tags { font-size: 13px; color: var(--text-muted); transition: color var(--duration-fast) var(--ease); }
.project-item:hover .project-tags { color: var(--text-dark); }
.project-year { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.project-thumb { display: none; }

/* ============================================
   REVIEWS — Dark Cards (meblemdr pattern)
   ============================================ */
.reviews-header { margin-bottom: 48px; }
.reviews-header h2 { margin-bottom: 0; }

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background: var(--dark);
  padding: 36px;
  position: relative;
  border-left: 3px solid transparent;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 20px;
}
.review-stars span { color: var(--accent); font-size: 16px; }

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 24px;
  max-width: 100%;
  font-weight: 400;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.review-name { font-weight: 600; font-size: 14px; color: var(--white); }
.review-city { font-size: 13px; color: rgba(255,255,255,0.4); }
.review-date { font-size: 12px; color: rgba(255,255,255,0.3); text-align: right; }
.review-source { font-size: 11px; color: var(--accent); font-weight: 700; text-align: right; letter-spacing: 1px; text-transform: uppercase; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--warm);
  padding: 56px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item-number {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 8px;
}

.trust-item-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================
   CONTACT CTA (Bottom section)
   ============================================ */
.contact-cta {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.contact-cta .bg-image {
  position: absolute;
  inset: 0;
}
.contact-cta .bg-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-cta .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.75);
  z-index: 1;
}
.contact-cta .container { position: relative; z-index: 2; }

.contact-cta-content { max-width: 640px; }
.contact-cta-content h2 { color: var(--white); margin-bottom: 16px; }
.contact-cta-content p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }

.contact-cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .contact-cta-content {
    text-align: center;
    margin: 0 auto;
  }
  .contact-cta-actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

.contact-cta-phone {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--accent);
  transition: color var(--duration-fast) var(--ease);
}
.contact-cta-phone:hover { color: var(--white); }

/* ============================================
   FAQ
   ============================================ */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.faq-left h2 { margin-bottom: 16px; }
.faq-left p { color: var(--text-muted); }

.accordion { display: flex; flex-direction: column; }

.accordion-item {
  border-bottom: 1px solid var(--border);
  transition: border-color var(--duration-fast) var(--ease);
}
.accordion-item.active { border-bottom-color: var(--accent); }

.accordion-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  transition: color var(--duration-fast) var(--ease);
}
.accordion-header:hover { color: var(--accent); }

.accordion-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  min-width: 28px;
}

.accordion-title {
  flex: 1;
  font-size: 17px;
  font-weight: 500;
  color: var(--accent);
}

.accordion-icon {
  font-size: 22px;
  font-weight: 300;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--duration) var(--ease), color var(--duration-fast) var(--ease);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease);
}

.accordion-body-inner {
  padding: 0 0 20px 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================
   SERVICE AREA SECTION
   ============================================ */
.area-section {
  padding: 60px 0;
  background: var(--dark);
  color: var(--white);
}

.area-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.area-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 8px;
  color: var(--white);
}

.area-subtitle {
  color: rgba(255,255,255,0.5);
}

.area-towns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-town {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--duration-fast) var(--ease);
  text-decoration: none;
}

.area-town:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ============================================
   FOOTER — Vibrant & Warm (redesigned)
   ============================================ */
.site-footer {
  background: var(--dark-alt);
  padding: 0 0 32px;
  color: var(--text-light);
  position: relative;
}

/* Animated orange gradient bar at top of footer */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #ff9a44, #ffb347, var(--accent));
  background-size: 300% 100%;
  animation: footer-bar-glow 6s ease infinite;
}

@keyframes footer-bar-glow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Footer tagline area */
.footer-tagline {
  text-align: center;
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 48px;
}

.footer-tagline h3 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  color: var(--white);
  margin-bottom: 20px;
}

.footer-tagline h3 em {
  font-style: italic;
  color: var(--accent);
}

.footer-tagline p {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 24px;
}

.footer-tagline .btn {
  min-width: 220px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-logo .logo-svg {
  margin-bottom: 8px;
}

.footer-logo .logo-mk { color: var(--white); margin-bottom: 4px; display: inline-block; }
.footer-logo .logo-sub { color: rgba(255,255,255,0.3); display: block; margin-bottom: 16px; }
.footer-logo p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }

.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--accent);
  position: relative;
}

.footer-heading::before {
  content: '';
  position: absolute;
  left: -3px;
  top: -4px;
  bottom: -4px;
  width: 3px;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(var(--accent-rgb), 0.3);
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all var(--duration-fast) var(--ease);
  padding-left: 0;
  position: relative;
}
.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--duration-fast) var(--ease);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 16px;
}
.footer-links a:hover::before {
  width: 8px;
}

.footer-contact-item { margin-bottom: 14px; }
.footer-contact-item .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  display: block;
  margin-bottom: 4px;
}
.footer-contact-item .value { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact-item .value a {
  color: var(--accent);
  transition: all var(--duration-fast) var(--ease);
}
.footer-contact-item .value a:hover {
  color: #ff9a44;
  text-shadow: 0 0 8px rgba(var(--accent-rgb), 0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  transition: color var(--duration-fast) var(--ease);
}
.footer-legal a:hover { color: var(--accent); }

.footer-dev {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-dev a {
  color: rgba(255,255,255,0.4);
  transition: color var(--duration-fast) var(--ease);
}
.footer-dev a:hover {
  color: var(--accent);
}

/* ============================================
   POPUP FORM
   ============================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
}

.popup-overlay.active { opacity: 1; visibility: visible; }

.popup-form {
  background: var(--white);
  padding: 48px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform var(--duration) var(--ease-out);
}

.popup-overlay.active .popup-form { transform: translateY(0); }

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--duration-fast) var(--ease);
  background: none;
  border: none;
}
.popup-close:hover { color: var(--dark); }

.popup-form h3 {
  margin-bottom: 8px;
}

.popup-form > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

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

.form-group input:not([type="checkbox"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color var(--duration-fast) var(--ease);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease);
}
.form-submit:hover { background: var(--accent-hover); }

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(var(--dark-rgb), 0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration) var(--ease);
  cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 36px;
  color: var(--white);
  cursor: pointer;
}

/* ============================================
   MOBILE STICKY PHONE BAR
   ============================================ */
.mobile-phone-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--accent);
  box-shadow: 0 -4px 20px rgba(var(--accent-rgb), 0.3);
}

.mobile-phone-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  padding-bottom: max(18px, env(safe-area-inset-bottom));
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
}

/* ============================================
   PAGE HERO (Service subpages + other pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero .hero-image { position: absolute; inset: 0; }
.page-hero .hero-image img { width: 100%; height: 100%; object-fit: cover; filter: blur(2px); transform: scale(1.02); }
.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(var(--dark-rgb), 0.15) 0%, rgba(var(--dark-rgb), 0.7) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 3;
  padding: 48px var(--gutter);
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.page-hero .breadcrumb {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-hero .breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--duration-fast) var(--ease); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.page-hero .breadcrumb .sep { width: 6px; height: 6px; background: var(--accent); }

.page-hero h1 { color: var(--white); margin-bottom: 8px; }

.page-hero-price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  background: var(--accent);
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.page-hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.page-hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-content {
  padding: var(--section-pad) 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-text h3 { margin-bottom: 24px; }
.service-text p { color: var(--text-muted); font-size: 15px; line-height: 1.8; }

.service-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.service-highlight {
  padding: 28px;
  background: var(--accent);
  color: var(--white);
  border-radius: 4px;
}

.service-highlight-icon {
  margin-bottom: 12px;
  color: var(--white);
}

.service-highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--white);
}

.service-highlight h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.service-highlight p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-bottom: 0;
}

/* Service Gallery */
.service-gallery-section {
  padding: var(--section-pad) 0;
  background: var(--warm);
}

.service-gallery-section h2 { margin-bottom: 40px; }

.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(var(--dark-rgb), 0.8), transparent);
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease);
}
.gallery-item:hover .gallery-item-label { opacity: 1; }

/* ============================================
   OUR WORK PAGE — Gallery
   ============================================ */
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.work-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.work-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.work-item:hover img { transform: scale(1.05); }

.work-item-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(var(--dark-rgb), 0.85), transparent);
  transform: translateY(100%);
  transition: transform var(--duration) var(--ease-out);
}
.work-item:hover .work-item-info { transform: translateY(0); }

.work-item-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.work-item-location { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 32px; }

.contact-detail {
  margin-bottom: 24px;
}

.contact-detail .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.contact-detail .value {
  font-size: 18px;
  color: var(--text-dark);
}

.contact-detail .value a {
  color: var(--accent);
  transition: color var(--duration-fast) var(--ease);
}
.contact-detail .value a:hover { color: var(--accent-hover); }

.contact-form-section h3 { margin-bottom: 24px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-2 { transition-delay: 0.15s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; --gutter: 24px; }
  .top-bar { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-primary { grid-template-columns: 1fr 1fr; }
  .services-secondary { grid-template-columns: 1fr 1fr; }
  .service-card--large { min-height: 400px; }
  .service-card--small { min-height: 280px; }
  .projects-layout { grid-template-columns: 1fr; gap: 40px; }
  .projects-image img { height: 400px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-content-grid { grid-template-columns: 1fr; gap: 40px; }

  .process-timeline { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --gutter: 20px; }

  .main-nav { display: none; }
  .menu-toggle { display: flex; }

  .hero { min-height: 600px; }
  .hero-content { padding-bottom: 100px; }
  .hero-services-bar { gap: 8px; }
  .hero-service-tag { font-size: 10px; padding: 8px 14px; }
  .hero-pricing { gap: 20px; }

  .services-primary { grid-template-columns: 1fr; }
  .services-secondary { grid-template-columns: 1fr; }
  .service-card--large { min-height: 340px; }
  .service-card--small { min-height: 280px; }

  .process-timeline { grid-template-columns: 1fr; gap: 20px; }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    align-items: center;
  }
  .process-step-number { margin-bottom: 0; flex-shrink: 0; width: 48px; height: 48px; font-size: 14px; }
  .process-step-text { max-width: 100%; }

  .reviews-carousel { grid-template-columns: 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .cta-band-inner { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .service-gallery-grid { grid-template-columns: 1fr 1fr; }
  .service-highlights { grid-template-columns: 1fr; }

  .work-gallery { grid-template-columns: 1fr 1fr; }

  /* Mobile: call widget identical to desktop, phone bar hidden */
  .mobile-phone-bar { display: none; }

  body { overflow-x: hidden; }

  /* Projects section: show as image cards on mobile */
  .projects-layout { grid-template-columns: 1fr; gap: 24px; }
  .projects-image { display: none; }
  .projects-right h2 { margin-bottom: 20px; }
  .project-list { gap: 0; }
  .project-item {
    grid-template-columns: 1fr;
    padding: 0;
    border: none;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--warm);
  }
  .project-item:first-child { border: none; }
  .project-item .project-thumb {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  .project-item .project-name {
    color: var(--text-dark);
    padding: 14px 16px;
    font-size: 16px;
  }
  .project-item .project-tags,
  .project-item .project-year { display: none; }

  .area-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .service-gallery-grid { grid-template-columns: 1fr; }
  .work-gallery { grid-template-columns: 1fr; }

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

  .popup-form { padding: 32px 24px; }
}

@media (max-height: 700px) {
  .hero { min-height: 500px; }
}

/* Area subtitle — remove inline style dependency */
.area-subtitle { margin-bottom: 0; }

/* Contact page — towns section spacing */
.contact-towns-section { margin-top: 40px; }
.contact-towns-section h4 { margin-bottom: 16px; }

/* ============================================
   CITY LANDING — WHY US CARDS
   ============================================ */
.why-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--warm);
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
}

.why-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   CITY LANDING — GOOGLE REVIEWS (meblemdr style)
   ============================================ */
.google-reviews {
  text-align: center;
  padding: 80px 0;
}

.google-reviews-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.google-reviews h2 {
  margin-bottom: 12px;
}

.google-reviews h2 em {
  color: var(--accent);
  font-style: italic;
}

.google-reviews-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 40px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 40px;
  padding: 10px 24px;
  margin-bottom: 48px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.google-badge-logo {
  height: 22px;
}

.google-badge-rating {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.google-badge-stars {
  display: flex;
  gap: 1px;
}

.google-badge-stars span {
  color: #FBBC04;
  font-size: 16px;
}

.google-badge-count {
  font-size: 13px;
  color: var(--text-muted);
}

.google-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.google-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 28px 24px;
  transition: box-shadow var(--duration) var(--ease);
}

.google-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.google-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

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

.google-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.google-avatar--blue { background: #4285F4; }
.google-avatar--green { background: #34A853; }
.google-avatar--red { background: #EA4335; }
.google-avatar--yellow { background: #FBBC04; color: #333; }
.google-avatar--purple { background: #9C27B0; }
.google-avatar--teal { background: #009688; }

.google-card-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.google-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

.google-card-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.google-card-stars {
  display: flex;
  gap: 1px;
  margin-bottom: 14px;
}

.google-card-stars span {
  color: #FBBC04;
  font-size: 14px;
}

.google-card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 0;
}

.google-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  transition: gap var(--duration-fast) var(--ease);
}

.google-reviews-link:hover {
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .why-cards { grid-template-columns: 1fr; }
  .google-cards { grid-template-columns: 1fr; }
}

/* ============================================
   COOKIE BANNER (meblemdr.pl style)
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 10000;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  padding: 20px 28px;
  max-width: 640px;
  width: calc(100% - 32px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  flex: 1;
}

.cookie-banner-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.cookie-banner-text a:hover {
  text-decoration: underline;
}

.cookie-banner-btn {
  flex-shrink: 0;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--duration-fast) var(--ease);
}

.cookie-banner-btn:hover {
  background: var(--accent-dark);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 80px;
    padding: 16px 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}

/* ============================================
   FORM CHECKBOX (Privacy consent)
   ============================================ */
.form-checkbox {
  margin-top: 4px;
}

.form-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.form-checkbox input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Popup form checkbox - dark text on white popup */
.popup-form .form-checkbox label {
  color: var(--text-muted);
}

.popup-form .form-checkbox a {
  color: var(--accent);
}
