/* ============================================================================
   INNOVACIONES ADEL S.A.C. - SISTEMA DE DISEÑO ESTILO CELIMA-TRÉBOL
   Dominio: adelsac.com | Showroom: Pachacámac, Lima | RUC: 20616384997
   ============================================================================ */

:root {
  --primary-cyan: #00A3E0;
  --primary-cyan-hover: #008ac0;
  --dark-slate: #121214;
  --dark-slate-card: #1C1C20;
  --ambient-bar-bg: #4D4D4D;
  --search-bg: #EDEDED;
  --footer-bg: #F4F4F4;
  --bg-light: #F8F9FA;
  --border-light: #E5E5E7;
  --text-dark: #111111;
  --text-body: #4A4A4A;
  --text-muted: #777777;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 12px 30px rgba(0,0,0,0.12);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: #FFFFFF;
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================================
   1. TOPBAR UTILITY (Zona Arquitectos / Maestros & Catálogos)
   ============================================================================ */
.top-utility-bar {
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.top-utility-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.utility-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
}

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

.utility-link:hover {
  color: var(--primary-cyan-hover);
}

.utility-link svg {
  width: 16px;
  height: 16px;
}

/* ============================================================================
   2. MAIN HEADER (Logos Celima-Trebol style + Oval Search + Menu)
   ============================================================================ */
.site-header {
  background: #FFFFFF;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  transition: var(--transition);
}

.header-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

/* Brand Logo (Homage to Celima-Trebol elegance) */
.brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand-logo-main {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-diamond {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--primary-cyan) 0%, #0072CE 100%);
  transform: rotate(45deg);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0, 163, 224, 0.4);
  position: relative;
}

.brand-diamond::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border: 1.5px solid #FFFFFF;
  border-radius: 1px;
}

.brand-name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--text-dark);
  line-height: 1;
  text-transform: uppercase;
}

.brand-badge-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #E30613; /* Trebol accent red */
  text-transform: uppercase;
  border-left: 2px solid var(--border-light);
  padding-left: 12px;
  line-height: 1.2;
}

/* Search Bar (Celima Pill style "¿Qué necesitas?") */
.header-search-wrap {
  flex: 1;
  max-width: 420px;
  position: relative;
}

.search-pill-box {
  position: relative;
  width: 100%;
}

.search-pill-box input {
  width: 100%;
  background: var(--search-bg);
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 12px 20px 12px 46px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.search-pill-box input:focus {
  background: #FFFFFF;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.15);
}

.search-pill-box .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #555555;
  width: 18px;
  height: 18px;
  pointer-events: none;
}

/* Navigation Links */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  position: relative;
  padding: 8px 2px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-cyan);
}

.nav-link.active::after, .nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-cyan);
}

.country-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--bg-light);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-cyan);
  cursor: pointer;
}

/* ============================================================================
   3. HERO SLIDER CARVING (The Signature Dark Luxury Slate Look)
   ============================================================================ */
.hero-carving-section {
  background: radial-gradient(circle at 65% 45%, #222227 0%, #151518 50%, #0c0c0e 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  min-height: 560px;
}

.hero-texture-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-carving-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  align-items: center;
  position: relative;
  z-index: 2;
  gap: 40px;
}

/* Left Hero Typography */
.hero-content-left {
  padding-right: 20px;
}

.hero-framed-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 10px 24px;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
}

.hero-badge-small {
  display: block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
  font-weight: 500;
}

.hero-badge-title {
  display: block;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 8px;
  color: #FFFFFF;
  text-transform: uppercase;
  line-height: 1;
}

.hero-headline {
  font-size: clamp(38px, 4.8vw, 64px);
  font-weight: 200;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 24px;
}

.hero-headline strong {
  display: block;
  font-weight: 400;
}

.hero-subdescription {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 480px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.5;
}

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

.btn-hero-cyan {
  background: var(--primary-cyan);
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
  transition: var(--transition);
}

.btn-hero-cyan:hover {
  background: var(--primary-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 163, 224, 0.6);
}

.btn-hero-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
}

/* Right Side: 3D Floating Ceramic Slabs Stage */
.hero-slabs-stage {
  position: relative;
  height: 440px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.slab-stone-base {
  position: absolute;
  bottom: 0;
  width: 90%;
  height: 36px;
  background: linear-gradient(180deg, #2b2b30 0%, #151518 100%);
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-slab {
  position: absolute;
  border-radius: 4px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.floating-slab:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
}

.floating-slab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slab 1: Wood (Back Left) */
.slab-wood {
  width: 200px;
  height: 330px;
  left: 6%;
  bottom: 25px;
  z-index: 2;
}

/* Slab 2: Calacatta Marble (Center Front Tilted) */
.slab-marble {
  width: 240px;
  height: 390px;
  left: 30%;
  bottom: 25px;
  z-index: 5;
  transform: rotate(-3deg);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

/* Slab 3: Granite Stone (Back Right) */
.slab-granite {
  width: 220px;
  height: 320px;
  left: 58%;
  bottom: 25px;
  z-index: 3;
}

.slab-caption-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  padding: 6px 10px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #FFF;
  text-align: center;
}

/* Navigation Chevrons */
.hero-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
  transform: translateY(-50%);
}

.hero-chevron-btn {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.hero-chevron-btn:hover {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: #FFFFFF;
}

.hero-brand-monogram {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
}

.hero-brand-monogram span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  color: #FFFFFF;
}

/* ============================================================================
   4. AMBIENT SELECTOR BAR (The Charcoal Bar with Cyan Arrow Badge)
   ============================================================================ */
.ambient-bar-section {
  background: var(--ambient-bar-bg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 30;
}

.ambient-bar-container {
  display: flex;
  align-items: stretch;
  min-height: 72px;
}

/* Cyan Arrow Badge (Exact polygon from Celima) */
.ambient-arrow-badge {
  background: var(--primary-cyan);
  color: #FFFFFF;
  padding: 14px 34px 14px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  flex-shrink: 0;
}

.ambient-arrow-badge span:first-child {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.ambient-arrow-badge span:last-child {
  font-size: 14px;
  font-weight: 800;
  color: #FFFFFF;
  text-transform: uppercase;
}

/* Ambient Selector Items */
.ambient-bar-items {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-around;
  padding: 0 16px;
  overflow-x: auto;
}

.ambient-selector-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  background: transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.ambient-selector-btn:hover, .ambient-selector-btn.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
}

.ambient-selector-btn.active {
  border-bottom: 3px solid var(--primary-cyan);
}

.ambient-selector-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

/* ============================================================================
   5. SECTION DIVIDER WITH VERTICAL LINE & GUIDE DOT (Celima Signature)
   ============================================================================ */
.section-guide-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 50px auto 30px;
}

.guide-vertical-line {
  width: 1px;
  height: 50px;
  background: #333333;
}

.guide-anchor-dot {
  width: 8px;
  height: 8px;
  background: #222222;
  border-radius: 50%;
  margin-top: -4px;
}

.section-celima-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
  margin-top: 20px;
  position: relative;
}

/* ============================================================================
   6. PRODUCT SHOWCASE / DESTACADOS CARDS
   ============================================================================ */
.products-grid-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin: 40px 0 60px;
}

.product-celima-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-celima-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: #D1D5DB;
}

.card-badge-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--text-dark);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 2px;
  z-index: 2;
}

.card-badge-tag.cyan {
  background: var(--primary-cyan);
}

.card-tile-visual {
  width: 100%;
  height: 240px;
  background: #F4F4F4;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 2px;
  position: relative;
}

.card-tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-celima-card:hover .card-tile-visual img {
  transform: scale(1.06);
}

.card-product-format {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-cyan);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-product-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 12px;
  min-height: 42px;
}

.card-product-specs {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  padding-top: 10px;
  margin-bottom: 16px;
}

.card-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}

.price-main {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
}

.price-unit {
  font-size: 12px;
  color: var(--text-muted);
}

.card-actions-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.btn-card-outline {
  flex: 1;
  border: 1px solid var(--text-dark);
  color: var(--text-dark);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}

.btn-card-outline:hover {
  background: var(--text-dark);
  color: #FFFFFF;
}

.btn-card-whatsapp {
  flex: 1;
  background: #25D366;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 2px;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-card-whatsapp:hover {
  background: #1eb855;
  transform: translateY(-2px);
}

/* ============================================================================
   7. ALTERNATING AMBIENCE SECTIONS (Dormitorios, Salas, Baños, Tendencias)
   ============================================================================ */
.ambiance-block-section {
  padding: 70px 0;
  border-top: 1px solid var(--border-light);
}

.ambiance-block-section:nth-child(even) {
  background: #FAFAFB;
}

.ambiance-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.ambiance-grid-row.reversed {
  direction: rtl;
}

.ambiance-grid-row.reversed > * {
  direction: ltr;
}

.ambiance-photo-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  height: 420px;
}

.ambiance-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.ambiance-photo-wrap:hover img {
  transform: scale(1.04);
}

.ambiance-info-wrap {
  padding: 10px;
}

.ambiance-giant-title {
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.95;
  color: var(--text-dark);
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.ambiance-giant-title.cyan-text {
  color: var(--primary-cyan);
}

.ambiance-paragraph {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 500px;
  line-height: 1.6;
}

.ambiance-swatches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.swatch-mini-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 8px;
  border-radius: 3px;
  text-align: center;
  transition: var(--transition);
}

.swatch-mini-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-cyan);
}

.swatch-mini-card img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  margin-bottom: 6px;
  border-radius: 2px;
}

.swatch-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.swatch-fmt {
  font-size: 10px;
  color: var(--text-muted);
}

.ambiance-cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ambiance-prompt-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.btn-cyan-solid {
  background: var(--primary-cyan);
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-cyan-solid:hover {
  background: var(--primary-cyan-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 163, 224, 0.4);
}

/* ============================================================================
   8. ENCUENTRA MÁS PRODUCTOS (Vibrant Cyan Icon Banner)
   ============================================================================ */
.more-products-cyan-banner {
  background: var(--primary-cyan);
  color: #FFFFFF;
  padding: 60px 0;
  text-align: center;
}

.more-products-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.more-products-icons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.more-product-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--transition);
  padding: 12px;
  border-radius: 6px;
}

.more-product-category-item:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}

.category-icon-wrapper {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon-wrapper svg {
  width: 54px;
  height: 54px;
  stroke: #FFFFFF;
  stroke-width: 1.8;
  fill: none;
}

.category-label-text {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

/* ============================================================================
   9. INTERACTIVE CALCULATOR & SHOWROOM PACHACÁMAC
   ============================================================================ */
.utility-showcase-section {
  padding: 70px 0;
  background: #FFFFFF;
}

.utility-grid-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.calculator-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.calc-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.calc-form-group {
  margin-bottom: 18px;
}

.calc-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.calc-form-group input, .calc-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.calc-form-group input:focus, .calc-form-group select:focus {
  border-color: var(--primary-cyan);
}

.calc-results-box {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 18px;
  margin: 24px 0;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}

.calc-result-row.total {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  border-top: 1px dashed var(--border-light);
  padding-top: 10px;
  margin-top: 8px;
}

/* Showroom Pachacámac Card */
.showroom-info-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 36px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.showroom-badge {
  background: rgba(0, 163, 224, 0.1);
  color: var(--primary-cyan);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

.showroom-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.showroom-details-list {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.showroom-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}

.showroom-details-list svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-cyan);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================================
   10. CORPORATE FOOTER (Light Grey Celima Style & Claims Book)
   ============================================================================ */
.corporate-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-light);
  padding: 60px 0 24px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-grid-four {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

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

.footer-links-list a {
  color: #555555;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-brand-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-ruc-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
}

.claims-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 14px;
  transition: var(--transition);
}

.claims-book-btn:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.footer-copyright-bar {
  border-top: 1px solid #E2E2E2;
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: #888888;
}

/* ============================================================================
   11. FLOATING WHATSAPP BUTTON (High Conversion)
   ============================================================================ */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1) rotate(6deg);
  background: #20BA5A;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: #FFFFFF;
}

/* ============================================================================
   12. RESPONSIVE DESIGN
   ============================================================================ */
@media (max-width: 992px) {
  .hero-carving-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content-left {
    padding-right: 0;
  }

  .hero-framed-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-subdescription {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions-row {
    justify-content: center;
  }

  .hero-slabs-stage {
    margin-top: 20px;
    height: 380px;
  }

  .ambiance-grid-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ambiance-grid-row.reversed {
    direction: ltr;
  }

  .footer-grid-four {
    grid-template-columns: 1fr 1fr;
  }

  .utility-grid-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header-nav, .top-utility-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-search-wrap {
    max-width: 220px;
  }

  .hero-headline {
    font-size: 34px;
  }

  .floating-slab {
    transform: scale(0.85);
  }

  .slab-marble {
    left: 20%;
  }

  .slab-wood {
    left: -5%;
  }

  .slab-granite {
    left: 45%;
  }

  .footer-grid-four {
    grid-template-columns: 1fr;
  }

  .ambient-arrow-badge {
    padding: 10px 18px;
    font-size: 11px;
  }
}
