/* ============================================================
   Liso Ceilings — styles.css
   Colors: Charcoal #1C1C1A | Terra Cotta #B05C3A | Cream #F8F4EE | Forest Green #2D5016
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #F8F4EE;
  color: #1C1C1A;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---------- CSS VARIABLES ---------- */
:root {
  --charcoal: #1C1C1A;
  --terra: #B05C3A;
  --terra-dark: #8a4429;
  --terra-light: #c8704e;
  --cream: #F8F4EE;
  --cream-dark: #ede8e0;
  --green: #2D5016;
  --green-light: #3d6b20;
  --white: #ffffff;
  --gray-100: #f5f5f4;
  --gray-200: #e8e4de;
  --gray-400: #a09890;
  --gray-600: #6b635a;
  --shadow-sm: 0 2px 8px rgba(28,28,26,0.08);
  --shadow-md: 0 4px 20px rgba(28,28,26,0.12);
  --shadow-lg: 0 8px 40px rgba(28,28,26,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.2rem; }
p { color: var(--gray-600); }

/* ---------- UTILITY ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 620px; margin: 0 auto; font-size: 1.1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-terra { color: var(--terra); }
.bg-charcoal { background: var(--charcoal); }
.bg-cream { background: var(--cream); }
.bg-green { background: var(--green); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(176,92,58,0.35);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(176,92,58,0.45); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline:hover { background: var(--terra); color: var(--white); }
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}
.btn-dark:hover { background: #333330; transform: translateY(-2px); }
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover { background: var(--green-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(28,28,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
#site-header.scrolled {
  background: rgba(28,28,26,0.98);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
  position: relative;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--terra);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-icon svg { width: 22px; height: 22px; fill: white; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--terra); }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex: 1;
  white-space: nowrap;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-phone:hover { color: var(--terra); }
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.lang-btn.active {
  background: var(--terra);
  color: var(--white);
}
.lang-btn:hover:not(.active) { color: var(--white); }
.nav-cta { font-size: 0.875rem; padding: 10px 20px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('assets/images/main.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(28,28,26,0.72) 0%,
    rgba(28,28,26,0.58) 50%,
    rgba(28,28,26,0.75) 100%
  );
  z-index: 1;
}
/* Hide legacy split elements — replaced by real photo */
.hero-split-left,
.hero-split-right,
.hero-divider,
.hero-before-label,
.hero-after-label { display: none; }

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 24px 40px;
  max-width: 800px;
  margin: 0 auto;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-content h1 .highlight { color: var(--terra); }
.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-social-proof .stars { color: #FFD700; }

/* Trust bar */
.trust-bar {
  position: relative;
  z-index: 10;
  background: var(--terra);
  padding: 14px 0;
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 18px;
  white-space: nowrap;
}
.trust-item svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.8); flex-shrink: 0; }
.trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.featured {
  border: 2px solid var(--terra);
  grid-row: span 1;
}
.service-card-icon {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-icon img {
  transform: scale(1.04);
}
.service-icon-svg {
  width: 56px;
  height: 56px;
  opacity: 0.9;
}
.service-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.service-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { font-size: 0.95rem; margin-bottom: 16px; flex: 1; }
.service-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 12px;
}
.service-upsell {
  font-size: 0.82rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 16px;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 6px;
  border-left: 3px solid var(--terra);
}

/* Design mini-menu inside service card */
.design-mini-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.design-mini-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--cream);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: background var(--transition);
}
.design-mini-item:hover { background: var(--cream-dark); }
.design-mini-thumb {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  flex-shrink: 0;
}

/* Service add-ons */
.addons-section {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  color: var(--white);
}
.addons-section h3 { color: var(--white); margin-bottom: 20px; }
.addons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all var(--transition);
}
.addon-item:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.15); }
.addon-icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { background: var(--charcoal); }
#gallery .section-header h2 { color: var(--white); }
#gallery .section-header p { color: rgba(255,255,255,0.65); }
.gallery-filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--terra);
  color: var(--white);
  border-color: var(--terra);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: #2a2a28;
}
.gallery-card[data-category="removal"] {}
.gallery-card[data-category="design"] {}
.gallery-card[data-category="commercial"] {}
.gallery-card.hidden { display: none; }

/* Before/after slider */
.ba-slider {
  position: relative;
  overflow: hidden;
  height: 220px;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
.ba-after, .ba-before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ba-after { z-index: 1; }
.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  transition: clip-path 0s;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ba-handle-bar {
  width: 3px;
  height: 100%;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.ba-handle-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  pointer-events: none;
}
.ba-handle-btn svg { width: 18px; height: 18px; fill: var(--charcoal); }
.ba-label {
  position: absolute;
  top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 3px 10px;
  border-radius: 50px;
  z-index: 4;
  pointer-events: none;
}
.ba-label.before-label { left: 10px; }
.ba-label.after-label { right: 10px; }

/* CSS texture fills for gallery placeholders */
.tex-popcorn {
  background:
    radial-gradient(circle at 10% 20%, rgba(180,160,140,0.5) 0%, transparent 4%),
    radial-gradient(circle at 35% 55%, rgba(160,140,120,0.4) 0%, transparent 3%),
    radial-gradient(circle at 65% 30%, rgba(170,150,130,0.5) 0%, transparent 3.5%),
    radial-gradient(circle at 80% 70%, rgba(150,130,110,0.4) 0%, transparent 4%),
    radial-gradient(circle at 50% 80%, rgba(180,160,140,0.3) 0%, transparent 3%),
    radial-gradient(circle at 20% 65%, rgba(160,140,120,0.5) 0%, transparent 3.5%),
    radial-gradient(circle at 90% 40%, rgba(170,150,130,0.4) 0%, transparent 4%),
    radial-gradient(circle at 45% 15%, rgba(150,130,110,0.3) 0%, transparent 3%),
    linear-gradient(160deg, #6a5e54 0%, #5a4e44 50%, #4e4238 100%);
}
.tex-smooth {
  background: linear-gradient(160deg, #f0edea 0%, #e4e0dc 50%, #d8d4d0 100%);
}
.tex-coffered {
  background:
    linear-gradient(90deg, rgba(180,160,140,0.3) 0px, transparent 1px, transparent 59px, rgba(180,160,140,0.3) 59px),
    linear-gradient(0deg, rgba(180,160,140,0.3) 0px, transparent 1px, transparent 54px, rgba(180,160,140,0.3) 54px),
    linear-gradient(160deg, #e8e4e0 0%, #d4d0cc 100%);
  background-size: 60px 55px, 60px 55px, 100% 100%;
}
.tex-knockdown {
  background:
    radial-gradient(ellipse at 15% 25%, rgba(200,196,192,0.6) 0%, transparent 8%),
    radial-gradient(ellipse at 55% 45%, rgba(195,191,187,0.5) 0%, transparent 10%),
    radial-gradient(ellipse at 80% 20%, rgba(205,201,197,0.6) 0%, transparent 7%),
    radial-gradient(ellipse at 35% 75%, rgba(198,194,190,0.5) 0%, transparent 9%),
    radial-gradient(ellipse at 70% 80%, rgba(202,198,194,0.6) 0%, transparent 8%),
    linear-gradient(160deg, #dedad6 0%, #ccc8c4 100%);
}
.tex-tray {
  background:
    linear-gradient(to bottom, #c8c4c0 0px, #c8c4c0 15px, #e0dcda 15px, #e0dcda calc(100% - 15px), #c8c4c0 calc(100% - 15px)),
    linear-gradient(to right, #c8c4c0 0px, #c8c4c0 15px, #e8e4e2 15px, #e8e4e2 calc(100% - 15px), #c8c4c0 calc(100% - 15px)),
    #dedad6;
}
.tex-beams {
  background:
    repeating-linear-gradient(90deg, #8B6914 0px, #8B6914 28px, #e8e4e0 28px, #e8e4e0 140px),
    #e8e4e0;
}

.gallery-card-info {
  padding: 16px 18px;
}
.gallery-card-info p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ============================================================
   CEILING DESIGN SHOWCASE
   ============================================================ */
#designs { background: var(--cream); }
.designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.design-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.design-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.design-preview {
  height: 160px;
  position: relative;
  overflow: hidden;
}
.design-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.design-card:hover .design-preview img {
  transform: scale(1.05);
}
.design-popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
}
.design-card-body { padding: 22px; }
.design-card-body h3 { margin-bottom: 6px; font-size: 1.15rem; }
.design-card-body p { font-size: 0.875rem; margin-bottom: 14px; }
.design-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 14px;
}
.designs-cta {
  text-align: center;
  padding: 32px;
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  color: var(--white);
}
.designs-cta p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 1rem; }

/* ============================================================
   PRICING
   ============================================================ */
#pricing { background: var(--white); }
.pricing-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pricing-table {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 22px;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pricing-table td {
  padding: 14px 22px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:nth-child(even) td { background: var(--cream); }
.pricing-table tr:hover td { background: rgba(176,92,58,0.06); }
.price-cell {
  font-weight: 700;
  color: var(--terra);
  white-space: nowrap;
}
.price-free {
  font-weight: 700;
  color: var(--green);
}

/* Calculator */
.calc-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 2px solid var(--cream-dark);
}
.calc-box h3 { margin-bottom: 6px; }
.calc-box > p { font-size: 0.9rem; margin-bottom: 28px; }
.calc-field { margin-bottom: 22px; }
.calc-field label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.sqft-slider-wrap { display: flex; align-items: center; gap: 14px; }
input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  background: var(--gray-200);
  border-radius: 50px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--terra);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(176,92,58,0.4);
}
.sqft-value {
  background: var(--white);
  border: 2px solid var(--terra);
  color: var(--terra);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 14px;
  border-radius: 8px;
  min-width: 90px;
  text-align: center;
}
select.calc-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B05C3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  outline: none;
  transition: border-color var(--transition);
}
select.calc-select:focus { border-color: var(--terra); }
.calc-result {
  background: var(--charcoal);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
}
.calc-result-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.calc-result-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--terra);
}

/* ============================================================
   WHY CEILINGPROS
   ============================================================ */
#why { background: var(--charcoal); }
#why .section-header h2 { color: var(--white); }
#why .section-header p { color: rgba(255,255,255,0.65); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(176,92,58,0.3);
  transform: translateY(-4px);
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(176,92,58,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.why-icon svg { width: 26px; height: 26px; fill: var(--terra); }
.why-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.875rem; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { background: var(--cream); }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--terra) 0%, var(--terra-light) 100%);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--terra);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  box-shadow: 0 0 0 6px var(--cream), 0 0 0 8px rgba(176,92,58,0.2);
}
.process-step h3 { margin-bottom: 10px; font-size: 1.1rem; }
.process-step p { font-size: 0.875rem; }
.optional-tag {
  display: inline-block;
  background: var(--terra);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 50px;
  margin-bottom: 6px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  border: 1px solid var(--cream-dark);
  transition: all var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.t-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.t-stars span { color: #FFD700; font-size: 1.1rem; }
.t-text {
  font-size: 0.95rem;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}
.t-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.t-author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.t-author-info span {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.t-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: var(--gray-400);
  font-weight: 600;
  white-space: nowrap;
}
.t-badge svg { width: 14px; height: 14px; }

/* ============================================================
   FAQ
   ============================================================ */
#faq { background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-item:first-child { border-top: 1px solid var(--cream-dark); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--charcoal);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--terra); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; fill: none; stroke: white; stroke-width: 2.5px; stroke-linecap: round; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-a p {
  padding-bottom: 22px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 600px; }

/* ============================================================
   SERVICE AREAS
   ============================================================ */
#areas { background: var(--white); }
.areas-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.areas-map {
  background: var(--cream);
  border-radius: var(--radius-lg);
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--cream-dark);
}
.map-svg-wrap { width: 100%; height: 100%; }
.areas-info h3 { margin-bottom: 8px; }
.areas-info > p { margin-bottom: 24px; font-size: 0.95rem; }
.counties-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.county-tag {
  background: var(--terra);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
}
.cities-list h4 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-600); margin-bottom: 12px; }
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.city-link {
  font-size: 0.875rem;
  color: var(--terra);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 5px;
  background: rgba(176,92,58,0.08);
  transition: all var(--transition);
}
.city-link:hover { background: var(--terra); color: var(--white); }

/* City SEO anchors (soft city sections) */
.city-seo-section {
  padding: 48px 32px;
  border-top: 1px solid var(--gray-200);
  border-left: 4px solid var(--terra);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 8px;
}
.city-seo-section h2 { font-size: 1.5rem; margin-bottom: 10px; }
.city-seo-section p { max-width: 680px; font-size: 0.95rem; }
.city-seo-section:nth-child(even) { background: var(--cream); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--charcoal); }
#contact .section-header h2 { color: var(--white); }
#contact .section-header p { color: rgba(255,255,255,0.65); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* Multi-step form */
.form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 32px;
}
.form-step-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}
.fsi-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.fsi-num.active {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(176,92,58,0.25);
}
.fsi-num.done {
  background: var(--green);
  color: var(--white);
}
.fsi-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.fsi-label.active { color: var(--white); }
.fsi-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 0 8px;
}

.form-pane { display: none; }
.form-pane.active { display: block; }

.estimate-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--terra);
  background: rgba(255,255,255,0.1);
}
.form-field textarea { height: 100px; resize: vertical; }
.form-field select { color: rgba(255,255,255,0.8); }
.form-field select option { background: var(--charcoal); color: var(--white); }

.checkboxes-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.checkboxes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--terra); cursor: pointer; flex-shrink: 0; }
.checkbox-item span { font-size: 0.875rem; color: rgba(255,255,255,0.75); }

.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 12px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
  display: none;
}
.form-success.visible { display: block; }
.form-success .success-icon {
  width: 64px;
  height: 64px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success .success-icon svg { width: 30px; height: 30px; fill: white; }
.form-success h3 { color: var(--white); margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.65); }

/* Contact sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.contact-info-card h4 { color: var(--white); margin-bottom: 16px; font-size: 1rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail svg { width: 18px; height: 18px; fill: var(--terra); flex-shrink: 0; margin-top: 2px; }
.contact-detail a, .contact-detail span {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.contact-detail a:hover { color: var(--terra); }
.contact-detail strong { color: rgba(255,255,255,0.5); font-size: 0.8rem; display: block; margin-bottom: 2px; }

.calendly-placeholder {
  background: rgba(255,255,255,0.03);
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.calendly-placeholder h4 { color: var(--white); margin-bottom: 6px; font-size: 0.95rem; }
.calendly-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #141412;
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 14px; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
  margin-bottom: 16px;
}
.footer-license {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}
.footer-col h5 {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-family: 'Inter', sans-serif;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--terra); }
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 4px;
}
.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-link:hover { background: var(--terra); }
.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); }
.social-link:hover svg { fill: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-left {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-invivant {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
  flex-basis: 100%;
  text-align: center;
  margin-top: 4px;
}
.footer-invivant a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}
.footer-invivant a:hover { color: var(--terra-light); }
.footer-bottom-right {
  display: flex;
  gap: 20px;
}
.footer-bottom-right a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-bottom-right a:hover { color: var(--terra); }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: whatsapp-pulse 3s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* Slide-in notification */
.slidein-toast {
  position: fixed;
  bottom: 100px;
  right: 16px;
  left: auto;
  z-index: 800;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  width: 280px;
  max-width: calc(100vw - 32px);
  transform: translateX(calc(100% + 40px));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 4px solid var(--terra);
}
.slidein-toast.visible { transform: translateX(0); }
.slidein-toast p { font-size: 0.875rem; color: var(--charcoal); margin-bottom: 10px; font-weight: 500; }
.slidein-close {
  position: absolute;
  top: 8px;
  right: 10px;
  color: var(--gray-400);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

/* Exit intent popup */
.exit-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.exit-overlay.visible { opacity: 1; visibility: visible; }
.exit-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition);
}
.exit-overlay.visible .exit-modal { transform: scale(1); }
.exit-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
}
.exit-modal-close:hover { color: var(--charcoal); }
.exit-discount {
  background: var(--terra);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
}
.exit-modal h3 { margin-bottom: 10px; font-size: 1.5rem; }
.exit-modal p { font-size: 0.95rem; margin-bottom: 22px; }
.exit-email-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.exit-email-row input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.exit-email-row input:focus { border-color: var(--terra); }
.exit-skip {
  font-size: 0.8rem;
  color: var(--gray-400);
  cursor: pointer;
  text-decoration: underline;
}
.exit-skip:hover { color: var(--gray-600); }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-hero {
  background: var(--charcoal);
  padding: 120px 0 60px;
  text-align: center;
}
.blog-hero h1 { color: var(--white); margin-bottom: 12px; }
.blog-hero p { color: rgba(255,255,255,0.65); max-width: 520px; margin: 0 auto; }
.blog-grid-section { padding: 60px 0 90px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-thumb {
  height: 180px;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  position: relative;
}
.blog-card-thumb .blog-category {
  background: var(--terra);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  position: absolute;
  top: 14px;
  left: 14px;
}
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; flex: 1; }
.blog-card-body h3 a { color: var(--charcoal); transition: color var(--transition); }
.blog-card-body h3 a:hover { color: var(--terra); }
.blog-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 12px;
}
.blog-meta span { display: flex; align-items: center; gap: 4px; }

/* ============================================================
   CEILING DESIGN CARDS
   ============================================================ */
.ceiling-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.ceiling-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.ceiling-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ceiling-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}
.ceiling-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.ceiling-card:hover .ceiling-card-image img { transform: scale(1.04); }
.ceiling-popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--terra);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 2;
}
.ceiling-card-body {
  padding: 22px 22px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ceiling-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
}
.ceiling-lang-tabs {
  display: flex;
  gap: 3px;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 3px;
  width: fit-content;
}
.ceiling-tab {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--gray-400);
  background: transparent;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}
.ceiling-tab.active {
  background: var(--white);
  color: var(--charcoal);
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}
.ceiling-desc { flex: 1; }
.ceiling-desc.hidden { display: none; }
.ceiling-tagline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--terra);
  font-style: italic;
  margin-bottom: 8px;
  line-height: 1.4;
}
.ceiling-desc p:not(.ceiling-tagline) {
  font-size: 0.86rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.ceiling-price-anchor {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding: 9px 14px;
  background: var(--gray-100);
  border-radius: 8px;
  border-left: 3px solid var(--terra);
}
.ceiling-price-anchor strong {
  color: var(--charcoal);
  font-weight: 700;
}
/* Ceiling Type Gallery */
.cg-section {
  margin-top: 48px;
}
.cg-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.cg-filter {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: all var(--transition);
}
.cg-filter:hover { border-color: var(--terra); color: var(--terra); }
.cg-filter.active {
  background: var(--terra);
  border-color: var(--terra);
  color: var(--white);
}
.cg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.cg-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}
.cg-img:hover { transform: scale(1.03); }
.cg-img.cg-hidden { display: none; }

/* Lightbox */
.cg-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.cg-lightbox.open { display: flex; }
.cg-lightbox-inner {
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cg-lightbox-inner img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lb-in 0.2s ease;
}
@keyframes lb-in {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
.cg-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.4rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.2s;
  background: none;
  border: none;
}
.cg-lightbox-close:hover { opacity: 1; }
.cg-lightbox-prev,
.cg-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  opacity: 0.7;
  padding: 12px 20px;
  transition: opacity 0.2s;
  background: none;
  border: none;
  user-select: none;
}
.cg-lightbox-prev:hover,
.cg-lightbox-next:hover { opacity: 1; }
.cg-lightbox-prev { left: 12px; }
.cg-lightbox-next { right: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: span 3; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex !important; }
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex: unset;
    background: var(--charcoal);
    padding: 20px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.mobile-open a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .designs-grid { grid-template-columns: repeat(2, 1fr); }
  .ceiling-cards { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .cg-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-wrapper { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-timeline::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .areas-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-sidebar { order: -1; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .exit-modal { padding: 36px 24px; }
  .exit-email-row { flex-direction: column; }
}

@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .designs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .checkboxes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-items { gap: 0; }
  .trust-item { padding: 6px 12px; font-size: 0.75rem; }
  .design-mini-menu { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .exit-email-row { flex-direction: column; }
  .lang-toggle { display: none; }
  .hamburger { display: flex !important; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.fade-in-up.delay-1 { animation-delay: 0.1s; }
.fade-in-up.delay-2 { animation-delay: 0.2s; }
.fade-in-up.delay-3 { animation-delay: 0.3s; }
.fade-in-up.delay-4 { animation-delay: 0.4s; }

/* Intersection observer triggered — visible by default, animated only when JS loads */
.reveal {
  opacity: 1;
  transform: none;
}
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.js-ready .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   BLOG THUMB PLACEHOLDERS
   ============================================================ */
.blog-thumb-1 { background: linear-gradient(135deg, #4a3f35 0%, #8B6914 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #3a3028 0%, #6a5e54 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, var(--terra-dark) 0%, var(--terra-light) 100%); }
.blog-thumb-4 { background: linear-gradient(135deg, var(--green) 0%, #5a8030 100%); }
.blog-thumb-5 { background: linear-gradient(135deg, #2a2a28 0%, #4a4a48 100%); }
.blog-thumb-6 { background: linear-gradient(135deg, #3a3028 0%, #c8a070 100%); }
