/* ═══════════════════════════════════════════════════════
   AMEGO HOMESTUDIO — PREMIUM CSS DESIGN SYSTEM
   Version 2.0 | Full Design Refinement Pass
═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────── */
:root {
  /* Brand colors */
  --orange:       #E8471C;
  --orange-light: #FF5A2D;
  --orange-dark:  #C73A14;
  --purple:       #7C3AED;
  --purple-light: #9B59EF;
  --purple-dark:  #5B21B6;
  --gold:         #C9A227;
  --gold-light:   #E8BB3A;
  --whatsapp:     #25D366;
  --whatsapp-dk:  #128C7E;

  /* Neutrals */
  --dark:         #0D0D14;
  --dark-2:       #171723;
  --dark-3:       #25253A;
  --mid:          #52526A;
  --mid-light:    #7B7B99;
  --light:        #FCFCFA;
  --light-2:      #F5F4F1;
  --border:       #E8E3DC;
  --border-dark:  rgba(255,255,255,0.08);

  /* Glassmorphism */
  --glass-bg:     rgba(252, 252, 250, 0.92);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-dark:   rgba(13, 13, 20, 0.7);

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, var(--orange) 0%, #F0622A 40%, var(--purple) 100%);
  --grad-brand-h: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 40%, var(--purple-dark) 100%);
  --grad-dark:    linear-gradient(135deg, #171723 0%, #25253A 100%);
  --grad-hero:    linear-gradient(to right, rgba(13,13,20,0.94) 0%, rgba(13,13,20,0.68) 55%, rgba(13,13,20,0.18) 100%);
  --grad-gold:    linear-gradient(135deg, #C9A227, #E8BB3A);

  /* Typography */
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, sans-serif;

  /* Spacing */
  --section-py:   6rem;
  --container:    1200px;
  --card-radius:  20px;
  --btn-radius:   10px;

  /* Premium Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.03);
  --shadow-md:    0 12px 32px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.10), 0 12px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 32px 80px rgba(0,0,0,0.14), 0 16px 32px rgba(0,0,0,0.08);
  --shadow-brand: 0 12px 32px rgba(232,71,28,0.30);
  --shadow-card:  0 4px 20px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);

  /* Transitions */
  --ease:         cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out:     cubic-bezier(0.0, 0, 0.2, 1);
  --dur:          0.35s;
  --dur-slow:     0.6s;
}

/* ─── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.78rem 1.6rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(232,71,28,0.38);
  background: var(--grad-brand-h);
}

.btn-outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,71,28,0.25);
}

.btn-outline-light {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  backdrop-filter: blur(8px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.20);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dk);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37,211,102,0.45);
}

.btn-white { background: #fff; color: var(--orange); box-shadow: var(--shadow-sm); }
.btn-white:hover { background: var(--light-2); transform: translateY(-1px); }

.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; border-radius: 12px; }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── SECTION BASE ───────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(232,71,28,0.10), rgba(124,58,237,0.10));
  color: var(--orange);
  border: 1px solid rgba(232,71,28,0.22);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.section-tag--light {
  color: #ffffff;
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.section-title em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── ANIMATION ──────────────────────────────────────── */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-aos].aos-visible { opacity: 1; transform: none; }
[data-aos-delay="60"]  { transition-delay: 0.06s; }
[data-aos-delay="80"]  { transition-delay: 0.08s; }
[data-aos-delay="100"] { transition-delay: 0.10s; }
[data-aos-delay="120"] { transition-delay: 0.12s; }
[data-aos-delay="160"] { transition-delay: 0.16s; }
[data-aos-delay="200"] { transition-delay: 0.20s; }
[data-aos-delay="240"] { transition-delay: 0.24s; }
[data-aos-delay="300"] { transition-delay: 0.30s; }
[data-aos-delay="400"] { transition-delay: 0.40s; }

[data-aos="fade-right"] { transform: translateX(-28px); }
[data-aos="fade-left"]  { transform: translateX(28px);  }
[data-aos="scale-up"]   { transform: scale(0.93); }
[data-aos="fade-right"].aos-visible,
[data-aos="fade-left"].aos-visible,
[data-aos="scale-up"].aos-visible  { transform: none; }


/* ═══════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header .container {
  max-width: 1440px;
}
.main-nav {
  background: #ffffff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.site-header.scrolled .main-nav {
  box-shadow: 0 4px 28px rgba(0,0,0,0.10);
  border-bottom-color: rgba(232,71,28,0.12);
}
.site-header.hidden { transform: translateY(-100%); }

.header-topbar {
  background: #fcfcfa;
  padding: 0.42rem 0;
  font-size: 0.78rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header-topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left a, .topbar-left span {
  color: #555;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--dur);
}
.topbar-left a:hover { color: var(--orange-light); }
.topbar-left i { color: var(--orange); font-size: 0.72rem; }
.topbar-right { display: flex; gap: 10px; }
.topbar-right a {
  color: #555;
  font-size: 0.88rem;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all var(--dur);
}
.topbar-right a:hover { color: #fff; background: rgba(232,71,28,0.25); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  min-height: 66px;
}

.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--dur) var(--ease);
}
.site-logo:hover .site-logo-img { transform: scale(1.04); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-grow: 1;
  justify-content: center;
}
.nav-links li {
  display: flex;
  align-items: center;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-3);
  border-radius: 7px;
  transition: all var(--dur);
  position: relative;
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--grad-brand);
  transition: all var(--dur) var(--ease);
  border-radius: 2px;
}
.nav-link:hover { color: var(--orange); background: rgba(232,71,28,0.05); }
.nav-link:hover::after, .nav-link.active::after { left: 10%; right: 10%; }
.nav-link.active { color: var(--orange); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-cta {
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
  border-radius: 9px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* Responsive Nav Shrink for small laptops before mobile menu */
@media (max-width: 1360px) {
  .nav-inner { gap: 0.5rem; }
  .nav-link { padding: 0.5rem 0.6rem; font-size: 0.82rem; }
  .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.8rem; }
  .site-logo-img { height: 40px; }
}

@media (max-width: 1060px) {
  .nav-inner { padding: 0 1rem; }
  .nav-link { padding: 0.4rem 0.4rem; font-size: 0.78rem; }
  .nav-cta { padding: 0.5rem 0.6rem; font-size: 0.78rem; }
  .site-logo-img { height: 36px; }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  padding: 4px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--dur);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════════════════
   HERO — CINEMATIC LUXURY REDESIGN
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 110px;
  overflow: hidden;
}

/* ── Cinematic Background ─────────────────────────── */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  will-change: transform;
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-bg-video.active {
  opacity: 1;
}
/* Hide the old static image if it somehow appears */
.hero-bg-img {
  display: none;
}


/* Subtle dark overlay — masks low-res video artifacts, improves text readability */
.hero-cinematic-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.30) 0%,
    rgba(0, 0, 0, 0.18) 40%,
    rgba(0, 0, 0, 0.18) 60%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

/* Vignette edges */
.hero-vignette {
  display: none;
}

/* ── Floating Ambient Light Orbs ─────────────────── */
.hero-orb {
  display: none;
}
.hero-orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(220,190,100,0.15) 0%, transparent 70%);
  top: -10%; left: -5%;
  animation-duration: 14s;
}
.hero-orb--2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(200,100,80,0.08) 0%, transparent 70%);
  bottom: 5%; right: 35%;
  animation-duration: 10s;
  animation-delay: -4s;
}
.hero-orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(150,150,150,0.08) 0%, transparent 70%);
  top: 20%; right: 5%;
  animation-duration: 16s;
  animation-delay: -7s;
}
@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.08); }
}

/* ── Luxury Grid Accent ──────────────────────────── */
.hero-grid-accent {
  display: none;
}

/* ── Horizontal light streak ─────────────────────── */
.hero-line-accent {
  display: none;
}
@keyframes lineShimmer {
  from { opacity: 0.4; transform: scaleX(0.8); }
  to   { opacity: 1; transform: scaleX(1); }
}

/* ── Container ───────────────────────────────────── */
.hero-container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 4rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 5rem;
  width: 100%;
}

/* ═══════════════════════════════════════════════════
   LEFT SIDE — Hero Content
═══════════════════════════════════════════════════ */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Entrance animations */
[data-hero-animate] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-hero-animate].hero-visible { opacity: 1; transform: none; }
[data-hero-animate="badge"].hero-visible  { transition-delay: 0.1s; }
[data-hero-animate="title"].hero-visible  { transition-delay: 0.25s; }
[data-hero-animate="sub"].hero-visible    { transition-delay: 0.42s; }
[data-hero-animate="ctas"].hero-visible   { transition-delay: 0.56s; }
[data-hero-animate="trust"].hero-visible  { transition-delay: 0.70s; }
[data-hero-animate="panel"].hero-visible  {
  opacity: 1; transform: none;
  transition-delay: 0.3s;
}

/* ── Premium Badge ───────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 999px;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  font-size: 0.72rem;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201,162,39,0.08) 0%, transparent 100%);
}
.badge-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #d32f2f;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  box-shadow: none;
}
.badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.badge-dot span {
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #d32f2f;
  animation: badgePulse 2.4s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.6); opacity: 0; }
}
.badge-location {
  color: #d32f2f;
  font-weight: 600;
}
/* Show only desktop text on desktop, mobile text on mobile */
.hb-mobile { display: none; }
.hb-desktop { display: inline; }

/* ── Luxury Heading ──────────────────────────────── */
.hero-title {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 1.6rem;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}
.hero-title-line {
  display: block;
  overflow: hidden;
}
.hero-title-line--1 {
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  color: rgba(255,255,255,0.9);
  font-style: italic;
}
.hero-title-line--2 {
  font-size: clamp(3.8rem, 7.5vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}
.hero-title-line--2 em {
  font-style: italic;
  font-weight: 800;
  background: linear-gradient(90deg, #F95D28 0%, #A136B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title-line--3 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.title-highlight {
  display: inline-block;
  position: relative;
  color: #ffffff;
  font-weight: 800;
}
.title-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -4px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
  border-radius: 2px;
}

/* ── Supporting Paragraph ────────────────────────── */
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.06rem;
  margin-bottom: 2.4rem;
  max-width: 500px;
  line-height: 1.75;
  font-weight: 400;
}
.hero-sub-accent {
  display: block;
  margin-top: 0.4rem;
  color: #ffffff;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── Premium CTA Buttons ─────────────────────────── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 1rem;
}
/* Price Calculator text link below buttons */
.hero-calc-link {
  margin-bottom: 2rem;
}
.hero-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.01em;
  transition: color 0.25s ease, gap 0.25s ease;
  position: relative;
  text-decoration: none;
}
.hero-text-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(232,71,28,0.8), rgba(249,115,22,0.6));
  transition: right 0.3s ease;
}
.hero-text-link:hover {
  color: #ffffff; gap: 10px; }
.hero-text-link:hover::after { right: 0; }
.hero-text-link i:first-child { color: var(--orange-light); font-size: 0.8rem; }
.hero-text-link-arrow {
  font-size: 0.65rem;
  color: var(--orange-light);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.hero-text-link:hover .hero-text-link-arrow {
  opacity: 1;
  transform: translateX(0);
}
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1.6rem;
  border-radius: 14px;
  font-family: var(--font-body);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
  border: none;
}
.hero-btn-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.hero-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}
.hero-btn-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.hero-btn-sub {
  font-size: 0.7rem;
  opacity: 0.75;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.hero-btn-arrow {
  margin-left: 4px;
  font-size: 0.78rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
}

/* Primary Button */
.hero-btn--primary {
  background: #d32f2f;
  color: #fff;
  box-shadow: 0 8px 24px rgba(211,47,47,0.3);
  border: none;
}
.hero-btn--primary .hero-btn-icon {
  background: rgba(255,255,255,0.18);
}
.hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(211,47,47,0.4);
}
.hero-btn--primary:hover .hero-btn-arrow {
  opacity: 1;
  transform: translateX(0);
}
.hero-btn--primary:hover .hero-btn-icon { transform: scale(1.1); }
.hero-btn--primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}
.hero-btn--primary:hover::before { left: 150%; }

/* Ghost Button */
.hero-btn--ghost {
  background: #fff;
  color: #333;
  border: 1px solid rgba(0,0,0,0.1);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-btn--ghost .hero-btn-icon {
  background: rgba(0,0,0,0.05);
  color: #555;
}
.hero-btn--ghost:hover {
  background: rgba(0,0,0,0.02);
  border-color: rgba(0,0,0,0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.hero-btn--ghost:hover .hero-btn-icon { transform: scale(1.1); }

/* ── Trust Indicators ────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 16px;
  padding: 0.85rem 1.2rem;
  gap: 0.8rem;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.trust-indicator {
  display: flex;
  align-items: center;
  gap: 9px;
}
.ti-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #555;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.ti-icon--gold {
  background: rgba(212,175,55,0.1);
  border-color: rgba(212,175,55,0.2);
  color: #aa7c11;
}
.trust-indicator:hover .ti-icon {
  background: rgba(211,47,47,0.1);
  border-color: rgba(211,47,47,0.2);
  color: #d32f2f;
  transform: scale(1.1) rotate(-5deg);
}
.ti-text {
  display: flex;
  flex-direction: column;
}
.ti-text strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.ti-text span {
  font-size: 0.65rem;
  color: #666;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}
.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(0,0,0,0.08);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   RIGHT SIDE — Floating Luxury Consultation Panel
═══════════════════════════════════════════════════ */
.hero-panel {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  padding: 2.2rem 2rem;
  overflow: hidden;
  animation: panelEntrance 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}
@keyframes panelEntrance {
  from { opacity: 0; transform: translateX(50px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}

/* Corner gold accent */
.hero-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 140px; height: 140px;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Panel Glow */
.panel-glow {
  display: none;
}

/* ── Panel Header ────────────────────────────────── */
.hero-panel-header {
  margin-bottom: 1.4rem;
}
.panel-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.panel-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: statusPulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
}
@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}
.panel-title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}
.panel-title em {
  font-style: italic;
  background: linear-gradient(90deg, #F95D28 0%, #A136B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.panel-sub {
  font-size: 0.8rem;
  color: #666;
  letter-spacing: 0.01em;
}
.panel-sub strong {
  color: #222;
  font-weight: 600;
}
.panel-divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 1.4rem;
}

/* ── Luxury Form ─────────────────────────────────── */
.luxury-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lf-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.lf-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #555;
  padding-left: 2px;
}
.lf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.lf-icon {
  position: absolute;
  left: 12px;
  color: #888;
  font-size: 0.78rem;
  z-index: 1;
  pointer-events: none;
  transition: color 0.3s var(--ease);
}
.lf-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.4rem;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 11px;
  font-size: 0.85rem;
  color: #333;
  font-family: var(--font-body);
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  outline: none;
}
.lf-input::placeholder { color: #aaa; }
.lf-input:focus {
  background: #fff;
  border-color: #d32f2f;
  box-shadow: 0 0 0 3px rgba(211,47,47,0.1);
}
.lf-input-wrap:focus-within .lf-icon { color: #d32f2f; }
.lf-select {
  cursor: pointer;
}
.lf-select-wrap { }
.lf-select-arrow {
  position: absolute;
  right: 12px;
  color: #888;
  font-size: 0.65rem;
  pointer-events: none;
  z-index: 1;
}
.lf-input option {
  background: #fff;
  color: #111;
}

/* Animated focus line (under the input) */
.lf-focus-line {
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 2px;
  background: #d32f2f;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center;
}
.lf-input-wrap:focus-within .lf-focus-line { transform: scaleX(1); }

/* Two-column row */
.lf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* ── Luxury Submit Button ─────────────────────────── */
.lf-submit {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  margin-top: 0.3rem;
  background: #d32f2f;
  box-shadow: 0 8px 24px rgba(211,47,47,0.25);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.lf-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(211,47,47,0.35);
}
.lf-submit:active { transform: translateY(0); }
.lf-submit-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  font-family: var(--font-body);
}
.lf-submit-inner i { font-size: 1.1rem; }
/* Shine sweep effect */
.lf-submit-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.2),
    transparent);
  transition: left 0.7s ease;
  z-index: 0;
}
.lf-submit:hover .lf-submit-shine { left: 160%; }

/* ── Trust Note ──────────────────────────────────── */
.lf-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.68rem;
  color: #666;
  letter-spacing: 0.02em;
  padding-top: 0.2rem;
}
.lf-trust-note i { color: #4ade80; font-size: 0.65rem; }

/* ── Scroll Cue ──────────────────────────────────── */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.scroll-line {
  width: 1px; height: 0;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.6));
  animation: scrollGrow 2s ease-in-out infinite;
}
.hero-scroll-cue span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
@keyframes scrollGrow {
  0%   { height: 0; opacity: 0; }
  40%  { opacity: 1; }
  70%  { height: 44px; opacity: 0.8; }
  100% { height: 44px; opacity: 0; }
}

/* ═══════════════════════════════════════════════════
   SCROLL CUE (legacy compat)
═══════════════════════════════════════════════════ */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.65;
}
.scroll-cue-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.85));
  animation: scrollLine 2.2s ease-in-out infinite;
}
.scroll-cue-arrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  animation: scrollBounce 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { height: 0; opacity: 0; }
  50%  { height: 40px; opacity: 1; }
  100% { height: 40px; opacity: 0; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(4px); opacity: 1; }
}

/* Form success state (legacy compat) */
.form-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: linear-gradient(135deg, rgba(37,211,102,0.10), rgba(37,211,102,0.05));
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 12px;
  padding: 1.1rem;
  font-size: 0.88rem;
  margin-top: 1rem;
  color: #0a6e3c;
  flex-wrap: wrap;
}
.form-success i { font-size: 1.2rem; margin-top: 1px; flex-shrink: 0; }
.form-success a { color: var(--orange); font-weight: 600; }
.form-note {
  font-size: 0.73rem;
  color: var(--mid-light);
  text-align: center;
  margin-top: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-note i { color: #4ade80; }

/* Estimate / Contact forms */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.estimate-form .form-field,
.contact-form .form-field { flex-direction: column; align-items: stretch; }
.estimate-form .form-field label,
.contact-form .form-field label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-3);
  margin-bottom: 5px;
  letter-spacing: 0.01em;
}
.estimate-form .form-field input,
.estimate-form .form-field select,
.estimate-form .form-field textarea,
.contact-form .form-field input,
.contact-form .form-field select,
.contact-form .form-field textarea {
  padding: 0.78rem 1rem;
}
.form-field {
  position: relative;
  display: flex;
  align-items: center;
}
.field-icon {
  position: absolute;
  left: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  z-index: 1;
  pointer-events: none;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.78rem 1rem 0.78rem 2.6rem;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 0.88rem;
  color: var(--dark);
  background: var(--light-2);
  transition: border-color var(--dur), box-shadow var(--dur), background var(--dur);
  -webkit-appearance: none;
  appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--mid-light); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232,71,28,0.12), 0 2px 8px rgba(0,0,0,0.05);
}
.form-field input.error { border-color: #e74c3c; box-shadow: 0 0 0 3px rgba(231,76,60,0.10); }

/* ═══════════════════════════════════════════════════
   HERO RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
  }
  .hero-title-line--2 { font-size: clamp(3rem, 7vw, 5rem); }
}

@media (max-width: 860px) {
  .hero-container {
    grid-template-columns: 1fr;
    padding-bottom: 3rem;
  }
  .hero-panel {
    animation: panelEntranceMobile 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  }
  @keyframes panelEntranceMobile {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: none; }
  }
  .hero-orb--3 { display: none; }
  .hero-trust { gap: 0.75rem; }
  .lf-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding-top: 95px; }
  .hero-title-line--1 { font-size: 2.2rem; }
  .hero-title-line--2 { font-size: 3rem; }
  .hero-title-line--3 { font-size: 1.8rem; }
  .hero-ctas { flex-direction: column; }
  .hero-btn { width: 100%; justify-content: space-between; }
  .hero-btn--ghost .hero-btn-arrow { display: none; }
  .hero-trust {
    gap: 0.55rem;
    padding: 0.7rem 0.9rem;
    overflow-x: auto;
  }
  .trust-divider { display: none; }
  .ti-text strong { font-size: 0.8rem; }
  .ti-text span { font-size: 0.6rem; }
  .ti-icon { width: 30px; height: 30px; font-size: 0.7rem; }
  .lf-row { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.65rem; }
  .hb-desktop { display: none; }
  .hb-mobile { display: inline; }
  .hero-panel { padding: 1.6rem 1.4rem; }
  .panel-title { font-size: 1.35rem; }
  .hero-orb--1, .hero-orb--2 { display: none; }
}


/* ═══════════════════════════════════════════════════════
   NEWS TICKER / TRUST BAR
═══════════════════════════════════════════════════════ */
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.trust-bar {
  background: #f2f2f2;
  border-top: 1px solid rgba(232,71,28,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 52px;
  position: relative;
}

/* Left "LIVE" label badge */
.ticker-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 1.4rem;
  background: var(--grad-brand);
  flex-shrink: 0;
  z-index: 2;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
  padding-right: 2rem;
}
.ticker-label i {
  color: #fff;
  font-size: 0.75rem;
  animation: pulse-icon 1.8s ease-in-out infinite;
}
.ticker-label span {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
}
@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* Scrolling track wrapper */
.ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* Edge fade masks */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

/* The actual moving row */
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  height: 52px;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }

/* Each headline item */
.ticker-slide {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 2.4rem;
  flex-shrink: 0;
}
.ticker-icon {
  color: var(--orange);
  font-size: 0.82rem;
  flex-shrink: 0;
}
.ticker-slide strong {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.01em;
}
.ticker-slide span {
  font-size: 0.72rem;
  color: var(--mid);
  margin-left: 4px;
}

/* Diamond separator */
.ticker-dot {
  color: var(--orange);
  font-size: 0.5rem;
  flex-shrink: 0;
  opacity: 0.55;
}

/* Hide old trust-grid classes (no longer used) */
.trust-grid, .trust-item, .trust-icon-wrap, .trust-text, .trust-sep { display: none; }




/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
.services-section { background: var(--light); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}

.service-card {
  background: #fff;
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--dur-slow) var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232,71,28,0.20);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}
.service-card:hover .service-img-wrap img { transform: scale(1.07); }

.service-img-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,20,0.52);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--dur);
}
.service-card:hover .service-img-overlay { opacity: 1; }

.service-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: rgba(13,13,20,0.82);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.92);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.02em;
}
.service-badge--hot {
  background: var(--grad-brand);
  border: none;
  box-shadow: 0 4px 12px rgba(232,71,28,0.35);
}

.service-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(232,71,28,0.10), rgba(124,58,237,0.10));
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
  border: 1px solid rgba(232,71,28,0.14);
  transition: all var(--dur);
}
.service-card:hover .service-icon-wrap {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(232,71,28,0.28);
}
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.55rem;
  color: var(--dark);
}
.service-body p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.65;
  flex: 1;
}
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange); font-weight: 600; font-size: 0.84rem;
  margin-top: 1.1rem;
  transition: gap var(--dur), color var(--dur);
  position: relative;
}
.service-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1.5px;
  background: var(--orange);
  transition: right var(--dur) var(--ease);
}
.service-link:hover::after { right: 0; }
.service-link:hover { gap: 10px; }
.service-card--featured {
  border-color: rgba(232,71,28,0.25);
  box-shadow: 0 4px 24px rgba(232,71,28,0.10), var(--shadow-card);
}
.service-card--featured:hover {
  box-shadow: 0 20px 60px rgba(232,71,28,0.18), var(--shadow-hover);
}


/* ═══════════════════════════════════════════════════════
   CALCULATOR
═══════════════════════════════════════════════════════ */
.calc-section { position: relative; background: var(--light-2); }
.calc-section-bg {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(232,71,28,0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(124,58,237,0.05) 0%, transparent 55%);
}

.calc-wrapper {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.calc-tabs {
  display: flex;
  background: linear-gradient(135deg, #1A1A2E 0%, #171723 100%);
  overflow-x: auto;
  scrollbar-width: none;
}
.calc-tabs::-webkit-scrollbar { display: none; }
.calc-tab {
  flex: 1;
  padding: 1.15rem 1.5rem;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  font-size: 0.88rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--dur);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  min-width: 140px;
  position: relative;
}
.calc-tab:hover { color: rgba(255,255,255,0.8); }
.calc-tab.active {
  color: var(--orange-light);
  border-bottom-color: var(--orange-light);
  background: rgba(232,71,28,0.10);
}
.calc-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #fff;
}

.calc-body { padding: 2.8rem; }
.calc-panel { display: none; }
.calc-panel.active {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.8rem;
  align-items: start;
}

.calc-left h3 {
  font-family: var(--font-head);
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  display: flex; align-items: center; gap: 10px;
}
.calc-left h3 i { color: var(--orange); font-size: 1.1rem; }
.calc-formula {
  font-size: 0.84rem;
  color: var(--mid);
  margin-bottom: 1.8rem;
  padding: 0.65rem 1.1rem;
  background: rgba(232,71,28,0.05);
  border-radius: 9px;
  border-left: 3px solid var(--orange);
  line-height: 1.6;
}
.calc-formula strong { color: var(--dark); }

.calc-input-group { margin-bottom: 1.8rem; }
.calc-input-group label {
  display: block;
  font-weight: 600;
  font-size: 0.84rem;
  margin-bottom: 9px;
  color: var(--dark);
}
.input-with-unit { position: relative; }
.input-with-unit input {
  width: 100%;
  padding: 0.9rem 4.5rem 0.9rem 1.2rem;
  border: 2px solid var(--border);
  border-radius: 11px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--light-2);
  transition: all var(--dur);
}
.input-with-unit input:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 4px 18px rgba(232,71,28,0.12);
}
.unit {
  position: absolute;
  right: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.78rem;
  color: var(--mid-light);
  font-weight: 600;
  pointer-events: none;
}

.range-hints { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.range-hint {
  padding: 0.3rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mid);
  transition: all var(--dur);
  background: #fff;
}
.range-hint:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,71,28,0.04); }
.range-hint.active { background: var(--grad-brand); border-color: transparent; color: #fff; box-shadow: 0 4px 12px rgba(232,71,28,0.25); }

.scope-checkboxes p, .kitchen-layout p, .wardrobe-type p, .bathroom-finish p {
  font-weight: 600;
  font-size: 0.84rem;
  margin-bottom: 10px;
  color: var(--dark);
}
.scope-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.scope-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.84rem; cursor: pointer; padding: 7px 11px;
  border: 1.5px solid var(--border); border-radius: 9px;
  transition: all var(--dur);
  background: #fff;
}
.scope-item input { width: 15px; height: 15px; accent-color: var(--orange); cursor: pointer; }
.scope-item:hover { border-color: var(--orange); background: rgba(232,71,28,0.03); }

.layout-options, .wardrobe-type .layout-options, .bathroom-finish .layout-options {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.layout-opt {
  display: flex; align-items: center; gap: 7px;
  font-size: 0.84rem; padding: 6px 14px;
  border: 1.5px solid var(--border); border-radius: 999px;
  cursor: pointer; transition: all var(--dur);
  background: #fff;
}
.layout-opt input { accent-color: var(--orange); cursor: pointer; }
.layout-opt:has(input:checked) {
  border-color: var(--orange);
  background: rgba(232,71,28,0.06);
  color: var(--orange);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(232,71,28,0.15);
}

/* Bathroom counter */
.bt-counter {
  display: flex; align-items: center;
  border: 2px solid var(--border); border-radius: 12px; overflow: hidden; width: fit-content;
  box-shadow: var(--shadow-sm);
}
.counter-btn {
  width: 52px; height: 52px;
  background: var(--light-2);
  font-size: 1.5rem; font-weight: 300;
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur);
}
.counter-btn:hover { background: var(--orange); color: #fff; }
.bt-counter input {
  width: 72px; text-align: center; border: none;
  border-left: 2px solid var(--border); border-right: 2px solid var(--border);
  font-size: 1.4rem; font-weight: 700; background: #fff; padding: 0; height: 52px;
}

/* Result card */
.calc-result-card {
  background: linear-gradient(150deg, #1A1A2E 0%, #171723 100%);
  border-radius: 18px;
  padding: 2.2rem;
  text-align: center;
  position: sticky;
  top: 100px;
  border: 1px solid rgba(232,71,28,0.18);
  box-shadow: 0 0 0 1px rgba(124,58,237,0.08) inset, var(--shadow-md);
}
.result-label {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.result-amount {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 0.3rem;
  filter: drop-shadow(0 4px 12px rgba(232,71,28,0.25));
}
.result-range {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.6rem;
}
.result-breakdown {
  margin-bottom: 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.1rem;
}
.breakdown-item {
  display: flex; justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.breakdown-item:last-child { border-bottom: none; }
.calc-disclaimer {
  font-size: 0.7rem;
  color: var(--mid-light);
  text-align: center;
  margin-top: 1rem;
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════
   ESTIMATE SECTION
═══════════════════════════════════════════════════════ */
.estimate-section { background: #fff; }
.estimate-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4.5rem; align-items: start; }

.estimate-info { padding-top: 1rem; }
.estimate-info p {
  color: var(--mid);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.75;
}
.estimate-points { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 2rem; }
.estimate-pt {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--dark);
  padding: 0.5rem 0;
}
.estimate-pt-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37,211,102,0.15), rgba(37,211,102,0.08));
  border: 1px solid rgba(37,211,102,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.estimate-pt-icon i { color: var(--whatsapp); font-size: 0.78rem; }
.estimate-brands { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.brand-pill {
  display: flex; align-items: center; gap: 6px;
  padding: 0.42rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-3);
  background: var(--light-2);
  transition: all var(--dur);
}
.brand-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,71,28,0.05);
}
.brand-pill i { color: var(--orange); }

.estimate-form-wrap {
  background: var(--light-2);
  border-radius: 22px;
  padding: 2.8rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.estimate-form h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  margin-bottom: 1.6rem;
  color: var(--dark);
}
.estimate-form { display: flex; flex-direction: column; gap: 1rem; }


/* ═══════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════ */
.portfolio-section { background: var(--light); }
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 2.2rem;
}
.filter-btn {
  padding: 0.5rem 1.3rem;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--mid);
  transition: all var(--dur);
  background: #fff;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,71,28,0.04); }
.filter-btn.active {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 14px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
/* All items are equal — no span overrides */
.portfolio-item--tall { grid-row: span 1; }
.portfolio-item--wide { grid-column: span 1; }
.portfolio-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.85s var(--ease), filter 0.85s var(--ease);
}
.portfolio-item:hover img { transform: scale(1.09); filter: brightness(0.85); }
.portfolio-item:hover { box-shadow: var(--shadow-hover); }

/* Always-visible subtle gradient at bottom */
.portfolio-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(13,13,20,0.72) 0%, rgba(13,13,20,0.02) 70%, transparent 100%);
  z-index: 1;
  transition: opacity var(--dur);
}

/* Always-visible tag at bottom */
.p-tag-static {
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  display: inline-block;
  background: var(--grad-brand);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.22rem 0.65rem; border-radius: 999px;
  letter-spacing: 0.02em;
  transition: opacity var(--dur);
}

.portfolio-hover {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,20,0.88) 0%, rgba(13,13,20,0.12) 55%, transparent 100%);
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0;
  transition: opacity var(--dur);
  z-index: 3;
}
.portfolio-item:hover .portfolio-hover { opacity: 1; }
.portfolio-item:hover .p-tag-static { opacity: 0; }
.p-tag {
  display: inline-block;
  align-self: flex-start;
  width: fit-content;
  background: var(--grad-brand);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.7rem; border-radius: 999px;
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.portfolio-hover h4 {
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}
.portfolio-hover p { color: rgba(255,255,255,0.7); font-size: 0.8rem; }
.portfolio-item.hidden { display: none; }
.portfolio-cta { text-align: center; margin-top: 2.8rem; }


/* ═══════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════ */
.why-section { position: relative; background: var(--dark-2); overflow: hidden; }
.why-section-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(232,71,28,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 70%, rgba(124,58,237,0.14) 0%, transparent 55%);
}
.why-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.why-desc {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  margin: 1.1rem 0 2.2rem;
  line-height: 1.75;
}
.why-points { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.2rem; }
.why-pt { display: flex; align-items: flex-start; gap: 1.1rem; }
.why-pt-icon {
  width: 46px; height: 46px; border-radius: 13px;
  background: linear-gradient(135deg, rgba(232,71,28,0.22), rgba(124,58,237,0.18));
  border: 1px solid rgba(232,71,28,0.32);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange-light);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all var(--dur);
}
.why-pt:hover .why-pt-icon {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 18px rgba(232,71,28,0.3);
  transform: scale(1.08);
}
.why-pt strong { display: block; color: #fff; margin-bottom: 4px; font-size: 0.95rem; }
.why-pt p { color: rgba(255,255,255,0.58); font-size: 0.84rem; margin: 0; line-height: 1.6; }

.comparison-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.comparison-card h4 {
  padding: 1.3rem 1.6rem;
  font-size: 1.0rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-head);
  background: rgba(255,255,255,0.04);
  letter-spacing: -0.01em;
}
.comp-table { display: flex; flex-direction: column; }
.comp-row {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 1fr;
  gap: 8px;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
  align-items: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-header {
  background: rgba(255,255,255,0.04);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
}
.comp-row span:first-child { color: rgba(255,255,255,0.7); }
.col-amego {
  color: #4ade80;
  display: flex; align-items: center; gap: 3px;
  font-weight: 700;
}
.col-amego i {
  color: #4ade80;
  text-shadow: 0 0 12px rgba(74,222,128,0.5);
}
.col-other { color: rgba(255,255,255,0.35); display: flex; align-items: center; gap: 3px; }
.col-other .fa-times-circle { color: #f87171; }
.col-other .fa-minus-circle { color: #fbbf24; }


/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
.process-section { background: var(--light-2); }
.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 1.5rem;
}
.process-line {
  position: absolute;
  top: 68px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(to right, var(--orange), var(--purple));
  z-index: 0;
}
.process-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.4), rgba(255,255,255,0));
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}
.process-step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 0 1.2rem;
}
.ps-num {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(232,71,28,0.12), rgba(124,58,237,0.12));
  border: 1px solid rgba(232,71,28,0.18);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
}
.ps-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-size: 1.25rem;
  margin-bottom: 1.4rem;
  box-shadow: 0 4px 24px rgba(232,71,28,0.22), 0 0 0 6px rgba(232,71,28,0.06);
  position: relative; z-index: 1;
  transition: all var(--dur-slow) var(--ease);
}
.process-step:hover .ps-icon {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  transform: scale(1.12);
  box-shadow: var(--shadow-brand), 0 0 0 8px rgba(232,71,28,0.08);
}
.ps-content h3 {
  font-family: var(--font-head);
  font-size: 1.08rem;
  margin-bottom: 0.55rem;
  color: var(--dark);
}
.ps-content p { font-size: 0.82rem; color: var(--mid); line-height: 1.65; }


/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials-section { background: #fff; position: relative; overflow: hidden; }
.testimonials-bg-shape {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,71,28,0.04) 0%, transparent 70%);
  top: -200px; right: -200px;
  pointer-events: none;
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--mid);
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.rating-stars-row { color: #FFB800; display: flex; gap: 2px; }

.testimonials-slider-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  padding: 2rem;
  transition: box-shadow var(--dur), border-color var(--dur), transform var(--dur);
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
  position: relative;
  box-shadow: var(--shadow-card);
}
.t-card::before {
  content: '\201C';
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-family: var(--font-head);
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(232,71,28,0.08);
  font-style: normal;
  pointer-events: none;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(232,71,28,0.20);
}
.t-card-top { display: flex; align-items: center; gap: 13px; margin-bottom: 1.2rem; }
.t-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(232,71,28,0.25);
}
.t-info { flex: 1; }
.t-info strong { display: block; font-size: 0.95rem; color: var(--dark); margin-bottom: 1px; }
.t-info span { font-size: 0.76rem; color: var(--mid-light); }
.t-stars { color: #FFB800; font-size: 0.68rem; margin-top: 3px; display: flex; gap: 2px; }
.t-google-icon { color: #4285f4; font-size: 1.2rem; margin-left: auto; flex-shrink: 0; }
.t-card p {
  font-size: 0.87rem;
  color: var(--mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.1rem;
}
.t-project {
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--orange);
  background: rgba(232,71,28,0.07);
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  border: 1px solid rgba(232,71,28,0.15);
}

.t-nav { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.t-nav-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--mid); font-size: 0.8rem;
  transition: all var(--dur);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.t-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(232,71,28,0.05);
  transform: scale(1.08);
}
.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--border);
  transition: all var(--dur);
  border: none;
}
.t-dot.active { background: var(--grad-brand); width: 24px; }


/* ═══════════════════════════════════════════════════════
   CTA BANNER
═══════════════════════════════════════════════════════ */
.cta-banner {
  position: relative;
  padding: 6rem 0;
  background: url('hero_interior.png') center 30%/cover no-repeat;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(232,71,28,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 50%, rgba(200,60,20,0.20) 0%, transparent 50%),
    linear-gradient(to bottom,
      rgba(8,8,16,0.88) 0%,
      rgba(8,8,16,0.72) 40%,
      rgba(8,8,16,0.72) 60%,
      rgba(8,8,16,0.92) 100%);
}
/* Warm glowing top accent line */
.cta-banner-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,71,28,0.7), rgba(255,130,60,0.6), rgba(232,71,28,0.7), transparent);
}
/* Subtle noise/grain texture overlay */
.cta-banner::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight: 700;
  color: #fff;
  margin: 1rem 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.cta-title em {
  font-style: italic;
  background: linear-gradient(135deg, #FF8C42 0%, #E8471C 45%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 14px rgba(232,71,28,0.4));
}
.cta-sub { color: rgba(255, 255, 255, 0.75); font-size: 1.05rem; margin-bottom: 2.2rem; line-height: 1.75; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 1.4rem; }
.cta-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cta-note i { color: var(--whatsapp); }


/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-section { background: var(--light-2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4.5rem; align-items: start; }
.contact-left p { color: var(--mid); margin: 0.8rem 0 2rem; font-size: 1.05rem; line-height: 1.72; }
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.cd-item { display: flex; align-items: flex-start; gap: 15px; }
.cd-icon {
  width: 44px; height: 44px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(232,71,28,0.10), rgba(124,58,237,0.10));
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: 1rem;
  flex-shrink: 0;
  border: 1px solid rgba(232,71,28,0.12);
  transition: all var(--dur);
}
.cd-item:hover .cd-icon {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
  transform: scale(1.08);
}
.cd-item strong { display: block; font-size: 0.84rem; font-weight: 700; margin-bottom: 3px; color: var(--dark); }
.cd-item span, .cd-item a { font-size: 0.87rem; color: var(--mid); line-height: 1.5; }
.cd-item a:hover { color: var(--orange); }
.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border);
  color: var(--mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: all var(--dur);
  box-shadow: var(--shadow-sm);
}
.contact-social a:hover {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232,71,28,0.28);
}

.contact-right {
  background: #fff;
  border-radius: 22px;
  padding: 2.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  margin-bottom: 1.6rem;
  color: var(--dark);
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }


/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.site-footer { background: #f3f4f6; border-top: 1px solid rgba(0,0,0,0.05); }
.footer-main {
  padding: 4.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.5rem; }

.footer-brand p {
  font-size: 0.84rem;
  color: #666;
  line-height: 1.75;
  margin: 1.3rem 0 1.6rem;
}
.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
  transition: opacity var(--dur);
}
.footer-logo-wrap:hover { opacity: 0.8; }
.footer-logo-wrap img { height: 38px; width: auto; mix-blend-mode: multiply; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  color: #444;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: all var(--dur);
}
.footer-social a:hover {
  background: var(--grad-brand);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(232,71,28,0.28);
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col a {
  font-size: 0.84rem;
  color: #555;
  transition: color var(--dur), padding-left var(--dur);
}
.footer-col a:hover { color: var(--orange-light); padding-left: 4px; }

.footer-contact-col p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.84rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.55;
}
.footer-contact-col i { color: var(--orange); margin-top: 2px; flex-shrink: 0; font-size: 0.82rem; }
.footer-contact-col a { color: #555; transition: color var(--dur); }
.footer-contact-col a:hover { color: var(--orange-light); }
.ap-footer-badge {
  display: flex; align-items: center; gap: 11px;
  margin-top: 1.3rem; padding: 0.5rem 0;
}
.ap-footer-badge .ap-badge-img {
  height: 46px; width: auto;
  border-radius: 4px;
  mix-blend-mode: multiply;
}
.ap-footer-badge strong { display: block; font-size: 0.82rem; color: #111; }
.ap-footer-badge span { font-size: 0.70rem; color: #777; }

.footer-bottom { padding: 1.3rem 0; }
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.78rem; color: #777; }
.footer-bottom p:last-child { color: #999; }


/* ═══════════════════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  z-index: 900;
  transition: all var(--dur);
  animation: waBounce 3.5s ease-in-out infinite;
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
.wa-float:hover {
  background: var(--whatsapp-dk);
  transform: scale(1.12);
  animation: none;
  box-shadow: 0 12px 40px rgba(37,211,102,0.55);
}
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark-2);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.42rem 0.85rem;
  border-radius: 7px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--dur);
  box-shadow: var(--shadow-md);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -5px; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right: none;
  border-left-color: var(--dark-2);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: none; }

.back-top {
  position: fixed;
  bottom: 104px; right: 28px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--dark-2);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: all var(--dur);
  box-shadow: var(--shadow-md);
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.08);
}
.back-top.visible { opacity: 1; transform: none; pointer-events: all; }
.back-top:hover {
  background: var(--grad-brand);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-brand);
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-py: 4.5rem; }

  /* Hero responsive now handled by built-in hero media queries */

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

  .calc-panel.active { grid-template-columns: 1fr; }
  .calc-result-card { position: static; }

  .estimate-grid { grid-template-columns: 1fr; }
  .estimate-form-wrap { order: -1; }

  .portfolio-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .portfolio-item--wide { grid-column: span 1; }

  .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .comparison-card { max-width: 640px; }

  .process-track { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .process-line { display: none; }

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

  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .t-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }
  html { scroll-padding-top: 60px; }

  .header-topbar { display: none; }
  .main-nav .nav-inner { min-height: 58px; }
  .logo-divider, .logo-ap-block { display: none; }
  .logo-tagline-small { display: none; }

  .nav-links {
    position: fixed;
    top: 58px; left: 0; right: 0;
    max-height: calc(100vh - 58px);
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.4rem;
    align-items: stretch;
    box-shadow: var(--shadow-lg);
    transform: translateY(-110%);
    transition: transform var(--dur) var(--ease);
    z-index: 999;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: none; }
  .nav-links li { flex-direction: column; align-items: stretch; width: 100%; }
  .nav-link { font-size: 1rem; padding: 0.85rem 1rem; border-radius: 9px; justify-content: space-between; }
  .nav-link:hover { background: rgba(232,71,28,0.06); }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  /* Mobile services flat dropdown list */
  .mobile-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.98);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .mobile-services-label {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    padding: 0.85rem 1.5rem 0.3rem;
  }
  .mobile-services-item {
    display: block;
    padding: 0.6rem 1.5rem 0.6rem 2rem;
    font-size: 0.9rem;
    color: var(--dark-3);
    font-weight: 500;
    border-radius: 0;
    transition: background var(--dur), color var(--dur);
  }
  .mobile-services-item:hover,
  .mobile-services-item:active {
    background: rgba(232,71,28,0.06);
    color: var(--orange);
  }

  /* Hero responsive handled by built-in hero media queries */

  /* Ticker is fine at mobile — just speed it up slightly and keep scrolling */
  .ticker-label span { display: none; }
  .ticker-label { padding: 0 1.1rem; }


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

  .calc-tabs { flex-wrap: nowrap; }
  .calc-tab { min-width: 110px; font-size: 0.78rem; padding: 0.9rem 1rem; }
  .calc-tab.active::after { display: none; }
  .calc-body { padding: 1.5rem; }
  .scope-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .portfolio-item--tall, .portfolio-item--wide { grid-row: span 1; grid-column: span 1; }

  .process-track { grid-template-columns: 1fr; gap: 1.8rem; }
  .process-step {
    flex-direction: row;
    text-align: left;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 0;
  }
  .ps-num {
    position: relative;
    top: auto; left: auto;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .ps-icon {
    flex-shrink: 0;
    width: 54px; height: 54px;
    font-size: 1.1rem;
  }
  .ps-content { flex: 1; padding-top: 4px; }

  .t-card { flex: 0 0 100%; }
  .t-card::before { font-size: 3.5rem; top: 0.8rem; right: 1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 1.4rem; }
  .back-top { right: 20px; bottom: 86px; }

  .scroll-cue { display: none; }
}


@media (max-width: 480px) {
  :root { --section-py: 3rem; }

  /* Hero responsive handled by built-in hero media queries */
  .section-title { font-size: 1.85rem; }
  .cta-title { font-size: 1.85rem; }
  .estimate-form-wrap { padding: 1.6rem; }
  .contact-right { padding: 1.6rem; }
  .calc-body { padding: 1.1rem; }
}


/* ─── UTILITY ────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════
   VIDEO SHOWCASE SECTION
═══════════════════════════════════════════════════════ */
.video-showcase-section {
  background: var(--light-2);
  position: relative;
  overflow: hidden;
}
.video-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(232,71,28,0.05) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 100%, rgba(124,58,237,0.05) 0%, transparent 70%);
  pointer-events: none;
}

/* 4-column grid for video cards */
.video-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Individual video card */
.video-card {
  position: relative;
  border-radius: var(--card-radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  background: #1a1a2e;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* Video element fills the card */
.video-card-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.video-card-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.06);
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
  min-width: 106%;
  min-height: 106%;
}

/* Gradient overlay for readability */
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 4, 15, 0.68) 0%,
    rgba(5, 4, 15, 0.18) 40%,
    rgba(5, 4, 15, 0.00) 100%
  );
  transition: background 0.4s ease;
}
.video-card:hover .video-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 4, 15, 0.75) 0%,
    rgba(5, 4, 15, 0.25) 45%,
    rgba(5, 4, 15, 0.00) 100%
  );
}

/* Text content pinned to bottom */
.video-card-content {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 1.5rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  z-index: 2;
  text-align: center;
}

.video-card-title {
  font-family: var(--font-body);
  font-size: 1.0rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin: 0;
}

/* "Get Quotes" button */
.btn-get-quotes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.52rem 1.5rem;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(232, 71, 28, 0.45);
  transition: background 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  white-space: nowrap;
}
.btn-get-quotes:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 71, 28, 0.55);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1024px) {
  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .video-card {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 600px) {
  .video-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .video-card {
    aspect-ratio: 3 / 4;
  }
  .video-card-content {
    padding: 1rem 0.85rem 1rem;
    gap: 0.6rem;
  }
  .video-card-title {
    font-size: 0.82rem;
  }
  .btn-get-quotes {
    font-size: 0.72rem;
    padding: 0.44rem 1rem;
  }
}


/* ═══════════════════════════════════════════════════════
   MOBILE HERO SECTION (Screenshots exactly)
═══════════════════════════════════════════════════════ */

/* Mobile Hero wrapper */
.hero-mobile {
  position: relative;
  width: 100%;
  background-color: #ffffff !important;
  background-image: url('hero_interior.png') !important;
  background-size: cover !important;
  background-position: center top !important;
  background-repeat: no-repeat !important;
  color: #1a1a1a;
  padding: 100px 0.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  z-index: 10;
}





.hm-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Badge */
.hm-badge {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 999px;
  padding: 0.35rem 0.8rem 0.35rem 0.35rem;
  gap: 12px;
  margin-bottom: 0.5rem;
}

.hm-badge-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #d32f2f;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: none;
}

.hm-badge-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.hm-badge-col span {
  font-size: 0.45rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #666;
  line-height: 1;
  white-space: nowrap;
}

.hm-badge-col span:first-child { color: #111; font-size: 0.5rem; }

.hm-badge-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  margin: 2px 0;
}

.hm-badge-loc { justify-content: center; align-items: center; }
.hm-badge-loc span { color: var(--gold) !important; font-size: 0.45rem !important; font-weight: 900 !important; }
.hm-badge-loc span i { font-size: 0.4rem; margin-right: 3px; }

/* Title */
.hm-title {
  display: flex;
  flex-direction: column;
  margin: 0;
}

.hm-title-1 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.1;
}

.hm-title-2 {
  font-size: 3.8rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.hm-title-2 em {
  font-style: italic;
  background: linear-gradient(90deg, #F95D28 0%, #A136B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hm-title-3 {
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #ffffff;
}

.hm-title-3 strong { font-weight: 900; }

/* Subtitle */
.hm-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.hm-sub em {
  display: block;
  font-weight: 700;
  font-style: italic;
  color: #ffffff;
  margin-top: 6px;
}

/* CTAs */
.hm-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hm-btn {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  border-radius: 12px;
  text-decoration: none;
  gap: 12px;
  transition: transform 0.3s ease;
}

.hm-btn:active { transform: scale(0.98); }

.hm-btn-primary {
  background: #d32f2f;
  box-shadow: 0 8px 24px rgba(211,47,47,0.3);
  border: none;
  color: #fff;
}

.hm-btn-secondary {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  color: #333;
}

.hm-btn-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(0,0,0,0.05);
  display: flex; align-items: center; justify-content: center;
  color: #555;
  font-size: 1rem;
  flex-shrink: 0;
}

.hm-btn-text {
  display: flex;
  flex-direction: column;
}

.hm-btn-title {
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.hm-btn-sub {
  color: #666;
  font-size: 0.7rem;
  margin-top: 2px;
}

.hm-calc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.2rem;
}

.hm-calc-link i { color: var(--orange); }

/* Embedded Form */
.hm-form-card {
  margin-top: 2rem;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 2rem 1rem;
  position: relative;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.hm-form-tag {
  position: absolute;
  top: -12px;
  left: 1.5rem;
  background: var(--whatsapp-dk);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 999px;
  display: flex; align-items: center; gap: 4px;
}

.hm-form-tag i { font-size: 0.4rem; color: #51ff8e; }

.hm-form-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
}

.hm-form-title em {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(90deg, #F95D28 0%, #A136B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hm-form-sub {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.hm-form-sub strong { color: #1a1a1a; }

.hm-form { display: flex; flex-direction: column; gap: 1.2rem; }

.hm-field { display: flex; flex-direction: column; gap: 6px; }

.hm-field label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #555;
  letter-spacing: 0.05em;
}

.hm-input-wrap {
  position: relative;
}

.hm-input-wrap input, .hm-input-wrap select {
  width: 100%;
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 14px 14px 44px;
  color: #333;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.hm-input-wrap select { appearance: none; }

.hm-input-wrap input:focus, .hm-input-wrap select:focus {
  border-color: #d32f2f;
}
.hm-input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
  font-size: 0.9rem;
}

.hm-submit {
  margin-top: 0.5rem;
  background: #d32f2f;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 800;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(211,47,47,0.3);
}

.hm-form-footer {
  text-align: center;
  font-size: 0.6rem;
  color: #777;
  margin-top: 0.5rem;
}

.hm-scroll {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; margin-top: 1rem;
  opacity: 0.5;
}

.hm-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}
.hm-scroll span {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.2em; color: rgba(255,255,255,0.7);
}
.hm-wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 100;
  text-decoration: none;
}

/* Default display states */
.hero-mobile { display: none; }
.hero { display: block; }

@media (max-width: 768px) {
  .hero-mobile { display: flex !important; }
  .hero { display: none !important; }
}

.hm-glow {
  display: none;
}

.hm-btn-primary .hm-btn-icon { background: rgba(255,255,255,0.2); color: #fff; }
.hm-btn-primary .hm-btn-title { color: #fff; }
.hm-btn-primary .hm-btn-sub { color: rgba(255,255,255,0.8); }