/* ═══════════════════════════════════════════════
   BLINDS & CURTAINS SYDNEY — Design System
   ═══════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --bg: #FAF8F5;
  --bg-alt: #F3EDE5;
  --surface: #FFFFFF;
  --surface-glass: rgba(255, 255, 255, 0.72);

  --ink: #1A1714;
  --ink-secondary: #5C5650;
  --ink-muted: #9B948C;

  --accent: #C4884A;
  --accent-dark: #8B5E3C;
  --accent-light: #FDF0E3;
  --accent-glow: rgba(196, 136, 74, 0.25);

  --gold: #D4A853;
  --green: #4A7C6B;
  --green-light: #D4EDE6;
  --blue: #4A6B8A;
  --blue-light: #E3EBF5;
  --red: #8A3A3A;

  --border: #E0D8CF;
  --border-light: #EDE5D8;

  --bg-dark:           #0f0d0a;
  --bg-dark-alt:       #1a1714;
  --bg-dark-card:      #1c1813;
  --border-dark:       rgba(196, 136, 74, 0.15);
  --ink-on-dark:       rgba(255, 255, 255, 0.65);
  --ink-on-dark-muted: rgba(255, 255, 255, 0.4);
  --glow-copper:       rgba(196, 136, 74, 0.35);
  --glow-copper-sm:    rgba(196, 136, 74, 0.18);

  --shadow-sm: 0 2px 8px rgba(26, 23, 20, 0.06);
  --shadow-md: 0 8px 32px rgba(26, 23, 20, 0.08);
  --shadow-lg: 0 16px 56px rgba(26, 23, 20, 0.12);
  --shadow-glow: 0 8px 40px rgba(196, 136, 74, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-height: 80px;
}

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 12px;
}

/* ── FOCUS STYLES (Accessibility) ── */
*:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
.btn:focus-visible,
a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px var(--accent-glow);
}

/* ── FORM ERROR (Accessibility) ── */
.form-error-msg {
  display: none;
  font-size: 0.78rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 4px;
}

.form-group.has-error .form-error-msg {
  display: block;
}

.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: var(--red) !important;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  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;
  transition: color 0.3s var(--ease-out);
}

ul,
ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--ink-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--ink-muted);
}

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

.section-padding {
  padding: 100px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-light);
  border: 1px solid rgba(196, 136, 74, 0.2);
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin-bottom: 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.divider-line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 3px;
  margin: 16px 0 24px;
}

.section-header .divider-line {
  margin: 16px auto 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── URGENCY BANNER ── */
@keyframes bannerShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.urgency-banner {
  background: linear-gradient(
    90deg,
    var(--accent-dark),
    var(--accent),
    var(--gold),
    var(--accent),
    var(--accent-dark)
  );
  background-size: 300% 100%;
  animation: bannerShimmer 5s ease infinite;
  color: #fff;
  text-align: center;
  padding: 11px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 1001;
}

.urgency-banner strong {
  color: #fff;
}

.urgency-banner .close-banner {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
}

.urgency-banner .close-banner:hover {
  color: #fff;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  background:
    linear-gradient(90deg, rgba(196, 136, 74, 0.08), transparent 22%, transparent 78%, rgba(212, 168, 83, 0.08)),
    rgba(15, 13, 10, 0.58);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-dark);
  transition: all 0.4s var(--ease-out);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.navbar.has-banner {
  top: 40px;
}

.navbar.scrolled {
  top: 0;
  background:
    linear-gradient(90deg, rgba(196, 136, 74, 0.1), transparent 24%, transparent 76%, rgba(212, 168, 83, 0.1)),
    rgba(15, 13, 10, 0.9);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border-dark);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.3);
}

/* navbar-dark class kept for backward compat; base navbar is now dark */
.navbar-dark .nav-burger span {
  background: #fff;
}

.navbar-dark.scrolled .nav-burger span {
  background: rgba(255, 255, 255, 0.7);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 10;
  min-width: 0;
}

.nav-logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(196, 136, 74, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-logo-text h2 {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-logo-text h2 span {
  color: var(--accent);
}

.nav-logo-text p {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px;
  margin-left: clamp(10px, 2vw, 24px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-link {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  transition: all 0.3s var(--ease-out);
  position: relative;
  letter-spacing: 0.01em;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  right: 16px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  border-radius: 999px;
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-phone {
  margin-left: auto;
  margin-right: 2px;
}

.nav-phone a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: all 0.3s var(--ease-out);
}

.nav-phone a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(196, 136, 74, 0.22);
}

.nav-cta {
  margin-left: 4px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #fff !important;
  border-radius: 999px !important;
  padding: 12px 24px !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.01em !important;
  box-shadow: 0 10px 28px var(--glow-copper-sm) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: all 0.3s var(--ease-out) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 32px var(--glow-copper) !important;
}

/* Mobile menu */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  z-index: 10;
  cursor: pointer;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  transform-origin: center;
}

.nav-burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-dark);
  z-index: 999;
  padding: 120px 32px 40px;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.4s var(--ease-out);
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu .nav-link {
  font-size: 1.3rem;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border-radius: 0;
}

.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active {
  color: #fff;
}

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(196, 136, 74, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 13, 10, 0.9) 0%,
    rgba(26, 18, 0, 0.82) 40%,
    rgba(15, 13, 10, 0.65) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgba(196, 136, 74, 0.12);
  border: 1px solid rgba(196, 136, 74, 0.35);
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #D4A853;
  margin-bottom: 24px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero-title {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  color: #fff;
}

.hero-title .accent-word {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.88);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

.hero .btn-primary {
  border-radius: 30px;
  box-shadow: 0 6px 24px var(--glow-copper);
}

.hero .btn-primary:hover {
  box-shadow: 0 10px 36px var(--glow-copper);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(196, 136, 74, 0.2);
  aspect-ratio: 4/3;
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s var(--ease-out);
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: rgba(15, 13, 10, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(196, 136, 74, 0.25);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}

.hero-float-icon {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.hero-float-icon svg {
  width: 14px;
  height: 14px;
}

.hero-float-text strong {
  display: block;
  font-size: 0.75rem;
  color: #fff;
}

.hero-float-text span {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 24px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.trust-icon.green {
  background: var(--green-light);
}

.trust-icon.gold {
  background: #FEF3D7;
}

.trust-icon.accent {
  background: var(--accent-light);
}

.trust-icon.blue {
  background: var(--blue-light);
}

.trust-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
  font-weight: 700;
}

.trust-text span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196, 136, 74, 0.25);
  border-color: rgba(196, 136, 74, 0.3);
}

.product-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(196, 136, 74, 0.07));
  pointer-events: none;
  z-index: 1;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 1;
}

.badge-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 2px 10px var(--glow-copper-sm);
}

.badge-green {
  background: linear-gradient(135deg, var(--green), #3d6b5a);
  color: #fff;
}

.badge-blue {
  background: linear-gradient(135deg, var(--blue), #3d5a74);
  color: #fff;
}

.badge-gold {
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  box-shadow: 0 2px 10px var(--glow-copper-sm);
}

.product-card-body {
  padding: 28px;
}

.product-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.product-tag {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--bg-alt);
  color: var(--ink-secondary);
  border: 1px solid var(--border);
}

.product-tag.highlight {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-color: rgba(196, 136, 74, 0.3);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap 0.3s var(--ease-out);
}

.product-card-link:hover {
  gap: 12px;
}

/* ── WHY CHOOSE US ── */
.features-section {
  background: var(--surface);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.feature-card {
  position: relative;
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border-color: rgba(196, 136, 74, 0.2);
}

.feature-card:hover::before {
  opacity: 0.2;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), var(--accent-light));
  box-shadow: 0 8px 16px rgba(196, 136, 74, 0.12), inset 0 2px 0 rgba(255, 255, 255, 0.6);
  color: var(--accent-dark);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.5px;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 24px rgba(196, 136, 74, 0.2);
}

.feature-card h4 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
  transition: color 0.3s ease;
}

.feature-card:hover h4 {
  color: var(--accent-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ── WHO WE SERVE ── */
.serve-section {
  background: var(--bg);
}

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

.serve-card {
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  background: var(--surface);
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.serve-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(180deg, transparent 0%, var(--accent-light) 200%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.serve-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  border-color: rgba(196, 136, 74, 0.2);
}

.serve-card:hover::before {
  opacity: 0.15;
}

.serve-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), var(--accent-light));
  box-shadow: 0 8px 16px rgba(196, 136, 74, 0.12), inset 0 2px 0 rgba(255, 255, 255, 0.6);
  color: var(--accent-dark);
  margin-bottom: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.serve-card:hover .serve-icon {
  transform: scale(1.1) rotate(5deg);
}

.serve-content h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  color: var(--ink);
  transition: color 0.3s ease;
}

.serve-card:hover h3 {
  color: var(--accent-dark);
}

.serve-content p {
  color: var(--ink-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(26, 23, 20, 0.1);
  border-color: rgba(196, 136, 74, 0.25);
}

.quote-mark {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
  color: rgba(196, 136, 74, 0.1);
  font-weight: 700;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars span {
  color: var(--gold);
  font-size: 1.1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--glow-copper-sm);
}

.testimonial-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--ink);
}

.testimonial-info span {
  font-size: 0.78rem;
  color: var(--ink-muted);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    #1e1208 35%,
    #2d1f0e 65%,
    var(--bg-dark-alt) 100%
  );
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(196, 136, 74, 0.14) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 136, 74, 0.12);
  border: 1px solid rgba(196, 136, 74, 0.3);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 24px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-section .btn-primary {
  border-radius: 30px;
  box-shadow: 0 8px 28px var(--glow-copper);
}

.cta-section .btn-white {
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.cta-section .btn-white:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: none;
}

/* ── STATS SECTION ── */
.stats-section {
  background: var(--bg-dark);
  padding: 60px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

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

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-number .accent {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

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

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content .section-label {
  margin-bottom: 16px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  transition: all 0.3s var(--ease-out);
}

.about-feature:hover {
  background: var(--accent-light);
}

.about-feature-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature h5 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.about-feature p {
  font-size: 0.82rem;
  margin: 0;
}

/* ── SERVICE AREAS ── */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.area-tag {
  padding: 7px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  font-size: 0.82rem;
  color: var(--ink-secondary);
  transition: all 0.3s var(--ease-out);
  font-weight: 500;
}

.area-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}

/* ── PRODUCTS PAGE ── */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--bg-dark) 0%,
    #1e1208 40%,
    #2d1f0e 70%,
    var(--bg-dark-alt) 100%
  );
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(196, 136, 74, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero .section-label {
  color: var(--gold);
  border-color: rgba(196, 136, 74, 0.3);
  background: rgba(196, 136, 74, 0.1);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border-light);
}

.product-section:nth-child(even) {
  background: var(--surface);
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.product-layout.reverse {
  direction: rtl;
}

.product-layout.reverse>* {
  direction: ltr;
}

.product-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.product-image:hover img {
  transform: scale(1.05);
}

.product-details h2 {
  margin-bottom: 16px;
}

.product-details p {
  margin-bottom: 20px;
}

.product-feature-list {
  margin-bottom: 28px;
}

.product-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--ink-secondary);
}

.product-feature-list li::before {
  content: '›';
  color: var(--accent);
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1.4;
}

.callout-box {
  background: var(--accent-light);
  border: 2px solid rgba(196, 136, 74, 0.25);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 24px 0;
}

.callout-box h4 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--accent-dark);
}

.callout-box p {
  font-size: 0.9rem;
}

.warranty-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-glow);
  margin: 16px 0;
}

.warranty-badge .warranty-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1;
}

/* ── CONTACT FORM ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: start;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.form-group label .required {
  color: var(--red);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: all 0.3s var(--ease-out);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

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

.form-interest-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.interest-chip {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid var(--border);
  background: var(--surface);
  font-size: 0.85rem;
  color: var(--ink-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.interest-chip:hover,
.interest-chip.selected {
  border-color: var(--accent);
  background: var(--accent-light);
  color: var(--accent-dark);
}

.form-note {
  font-size: 0.8rem;
  color: var(--ink-muted);
  margin-top: 12px;
}

.contact-sidebar {
  position: sticky;
  top: 120px;
}

.contact-info-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 32px;
  margin-bottom: 24px;
}

.contact-info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-info-item span {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
}

.map-placeholder {
  width: 100%;
  height: 200px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-top: 24px;
}

.call-cta-card {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  color: #fff;
}

.call-cta-card h4 {
  color: #fff;
  margin-bottom: 12px;
}

.call-cta-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* Honeypot */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ── FOOTER ── */
.footer {
  background: #0a0907;
  padding: 80px 0 0;
  border-top: 1px solid rgba(196, 136, 74, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.footer-brand h3 span {
  color: var(--accent);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s var(--ease-out);
}

.footer-social a:hover {
  background: rgba(196, 136, 74, 0.2);
  border-color: rgba(196, 136, 74, 0.4);
  color: var(--accent);
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  padding: 6px 0;
  transition: all 0.3s var(--ease-out);
}

.footer-col a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-cta-col .btn {
  width: 100%;
  margin-bottom: 16px;
  border-radius: 24px;
}

.footer-cta-col p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ── FLOATING CTA (Mobile) ── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
}

.floating-cta .btn {
  border-radius: 50px;
  box-shadow: 0 8px 32px var(--glow-copper), var(--shadow-lg);
  padding: 16px 28px;
}

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s var(--ease-out);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s var(--ease-out);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.8s var(--ease-out);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger>* {
  transition-delay: calc(var(--i, 0) * 0.08s);
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 4px 20px var(--glow-copper-sm);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  z-index: 800;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px var(--glow-copper);
}

/* ── FORM SUCCESS MESSAGE ── */
.form-success {
  display: none;
  text-align: center;
  padding: 48px;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  border: 2px solid var(--green);
}

.form-success.show {
  display: block;
  animation: fadeUp 0.5s var(--ease-out);
}

.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  color: var(--green);
  margin-bottom: 8px;
}

.form-success p {
  color: var(--ink-secondary);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── BADGE GREEN ── */
.product-card-badge.badge-green {
  background: linear-gradient(135deg, var(--green), #3d6b5a);
}

/* ══════════════════════════════════════════
   COMING SOON — REDESIGNED MODERN TREATMENT
   ══════════════════════════════════════════ */

/* ── Card: glowing border ring ── */
.product-card.coming-soon {
  box-shadow:
    0 0 0 1.5px rgba(200, 136, 86, 0.45),
    0 8px 40px rgba(200, 136, 86, 0.1),
    var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.product-card.coming-soon:hover {
  box-shadow:
    0 0 0 2px rgba(200, 136, 86, 0.65),
    0 16px 50px rgba(200, 136, 86, 0.18),
    var(--shadow-lg);
}

/* ── Card image: deep gradient + slow Ken Burns ── */
.product-card.coming-soon .product-card-image img {
  filter: grayscale(20%) brightness(0.78);
  transform: scale(1.06);
  transition: transform 8s ease;
}
.product-card.coming-soon:hover .product-card-image img {
  transform: scale(1.12);
}

/* Dark overlay with bottom accent glow — two pseudo-elements via stacked backgrounds */
.product-card.coming-soon .product-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(180, 110, 50, 0.28) 0%, transparent 40%),
    linear-gradient(to bottom, rgba(8, 12, 22, 0.2) 0%, rgba(8, 12, 22, 0.72) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ── Glassmorphism badge centered on card image ── */
.coming-soon-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  box-shadow:
    0 0 0 4px rgba(200, 136, 86, 0.18),
    0 4px 30px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

/* Pulsing neon dot */
.coming-soon-badge::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f0a868;
  box-shadow: 0 0 0 3px rgba(200, 136, 86, 0.35), 0 0 14px rgba(200, 136, 86, 0.9);
  animation: cs-pulse 2s ease-in-out infinite;
}

/* Shimmer sweep across badge */
.coming-soon-badge::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    100deg,
    transparent 0%,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: cs-shimmer 2.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cs-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(200,136,86,0.35), 0 0 10px rgba(200,136,86,0.8); }
  50%       { box-shadow: 0 0 0 7px rgba(200,136,86,0),   0 0 20px rgba(200,136,86,0.2); }
}
@keyframes cs-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ── Card body: "COMING SOON" chip + notify button ── */
.cs-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(200,136,86,0.14), rgba(200,136,86,0.06));
  border: 1px solid rgba(200,136,86,0.35);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-dark, #a46a3d);
  margin-bottom: 8px;
}
.cs-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent, #c88856);
  box-shadow: 0 0 6px rgba(200,136,86,0.8);
  animation: cs-pulse 2s ease-in-out infinite;
}

.cs-notify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 13px 20px;
  border-radius: var(--radius-md, 10px);
  background: linear-gradient(135deg, var(--accent, #c88856) 0%, var(--accent-dark, #a46a3d) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.2px;
  text-decoration: none;
  margin-top: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(200,136,86,0.35);
  position: relative;
  overflow: hidden;
}
.cs-notify-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: cs-shimmer 2.5s ease-in-out infinite;
}
.cs-notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,136,86,0.48);
}

/* ═══════════════════════════════════════════
   PRODUCTS PAGE — LARGE IMAGE VARIANT
   ═══════════════════════════════════════════ */
.product-section.coming-soon .product-image {
  position: relative;
}

.product-section.coming-soon .product-image img {
  filter: grayscale(35%) brightness(0.75);
  transform: scale(1.04);
  transition: transform 10s ease;
}
.product-section.coming-soon .product-image:hover img {
  transform: scale(1.08);
}

/* Multi-layer overlay: top vignette + bottom accent glow */
.product-section.coming-soon .product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(160, 90, 30, 0.35) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(6, 9, 18, 0.25) 0%, rgba(6, 9, 18, 0.75) 100%);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

/* Centered badge override for larger image */
.product-section.coming-soon .product-image .coming-soon-badge {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.9rem;
  padding: 16px 34px;
  letter-spacing: 3.5px;
  z-index: 2;
  box-shadow:
    0 0 0 6px rgba(200,136,86,0.15),
    0 8px 40px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* Bottom label */
.product-section.coming-soon .product-image::before {
  content: "PLANTATION SHUTTERS";
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
  pointer-events: none;
}

/* Inline banner beside the products detail text */
.coming-soon-banner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(200,136,86,0.1), rgba(200,136,86,0.04));
  border: 1px solid rgba(200, 136, 86, 0.4);
  font-weight: 600;
  font-size: 0.9rem;
}
.coming-soon-banner .cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent, #c88856);
  box-shadow: 0 0 0 4px rgba(200,136,86,0.2), 0 0 10px rgba(200,136,86,0.7);
  animation: cs-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.coming-soon-banner strong {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent-dark, #a46a3d);
}
.coming-soon-banner .cs-sep {
  width: 1px;
  height: 16px;
  background: rgba(200,136,86,0.3);
}

.btn.btn-disabled {
  background: var(--bg-alt, #f2f2f2);
  color: var(--muted, #7a7a7a);
  border: 1px solid var(--border, #e0e0e0);
  pointer-events: none;
  cursor: not-allowed;
  box-shadow: none;
}

/* ── BEFORE / AFTER GALLERY ── */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.ba-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(26, 23, 20, 0.06);
}

.ba-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.ba-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26, 23, 20, 0.15);
  border-color: rgba(196, 136, 74, 0.4);
}

.ba-card:hover::before {
  opacity: 1;
}

.ba-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.ba-side {
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.ba-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-window-visual {
  width: 100%;
  height: 100%;
  min-height: 160px;
  background: linear-gradient(180deg, #e8dfd4 0%, #d4c9ba 40%, #c8bca8 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.ba-window-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 18px,
      rgba(255, 255, 255, 0.06) 18px,
      rgba(255, 255, 255, 0.06) 19px);
  pointer-events: none;
}

.ba-window-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  width: 70%;
  height: 80px;
  background: #8a7d6d;
  padding: 5px;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ba-window-frame.triple {
  grid-template-columns: 1fr 1fr 1fr;
}

.ba-glass {
  background: linear-gradient(135deg, #d1e8f5 0%, #a8cce0 50%, #b8d8ec 100%);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ba-glass.old {
  background: linear-gradient(135deg, #d1e8f5 0%, #a8cce0 100%);
  grid-column: 1 / -1;
}

.ba-glare {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 60px;
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(-25deg);
  border-radius: 50%;
}

.ba-old-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  background: repeating-linear-gradient(180deg,
      #b89a7a,
      #b89a7a 3px,
      #a8896a 3px,
      #a8896a 6px);
  opacity: 0.85;
}

.ba-old-curtain.left {
  left: 0;
  border-right: 2px solid #9a7d5e;
  border-radius: 0 0 4px 0;
}

.ba-old-curtain.right {
  right: 0;
  border-left: 2px solid #9a7d5e;
  border-radius: 0 0 0 4px;
}

.ba-caption {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  color: #7a6f62;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.3px;
}

.ba-label {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  border-radius: 24px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 2;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}

.ba-before {
  background: rgba(239, 68, 68, 0.95);
  color: #fff;
}

.ba-after {
  background: rgba(34, 197, 94, 0.95);
  color: #fff;
}

.ba-info {
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(196, 136, 74, 0.02) 100%);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: background 0.3s;
}

.ba-card:hover .ba-info {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(196, 136, 74, 0.05) 100%);
}

.ba-info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(196, 136, 74, 0.25);
  transition: transform 0.3s;
}

.ba-card:hover .ba-info-icon {
  transform: scale(1.05) rotate(5deg);
}

.ba-info-content {
  flex: 1;
}

.ba-info h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  color: var(--ink);
  font-weight: 600;
}

.ba-info p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  margin: 0;
  line-height: 1.5;
}

/* ── MAP EMBED ── */
.map-container {
  width: 100%;
  height: 220px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 24px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── FORM LOADING STATE ── */
.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

/* ── HERO ENHANCEMENTS ── */
.hero-trust-badges {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

.hero-trust-icon {
  background: transparent;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  width: auto;
  height: auto;
  border-radius: 0;
}

.hero-image-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(-20deg);
  animation: imageShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes imageShine {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 150%;
  }
}

.hero-float-card-2 {
  bottom: auto;
  top: -20px;
  right: -20px;
  left: auto;
  animation-delay: 2s;
}

/* ── HOW IT WORKS / PROCESS ── */
.process-section {
  background:
    radial-gradient(circle at top center, rgba(212, 168, 83, 0.12), transparent 34%),
    linear-gradient(180deg, #fffdfa 0%, var(--surface) 28%, #fbf7f2 100%);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(196, 136, 74, 0.16), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0.7;
  pointer-events: none;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  align-items: start;
}

.process-step {
  position: relative;
  text-align: center;
  padding-top: 8px;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 47px;
  left: calc(50% + 42px);
  width: calc(100% - 56px);
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 136, 74, 0.55), rgba(212, 168, 83, 0.15));
  z-index: 0;
}

.process-step:last-child::before {
  display: none;
}

.process-number {
  width: 84px;
  height: 84px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 18px;
  box-shadow: 0 18px 36px rgba(196, 136, 74, 0.22);
  border: 6px solid rgba(255, 255, 255, 0.98);
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.process-connector {
  width: 62px;
  height: 18px;
  margin: 0 auto 22px;
  position: relative;
}

.process-connector::before,
.process-connector::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-connector::before {
  width: 62px;
  height: 2px;
  background: linear-gradient(90deg, rgba(196, 136, 74, 0.1), rgba(196, 136, 74, 0.55), rgba(196, 136, 74, 0.1));
}

.process-connector::after {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.98), 0 0 0 10px rgba(196, 136, 74, 0.08);
}

.process-card {
  padding: 30px 26px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(253, 248, 242, 0.92));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(196, 136, 74, 0.14);
  box-shadow: 0 18px 40px rgba(26, 23, 20, 0.06);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.process-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  opacity: 0.95;
}

.process-card::after {
  content: '';
  position: absolute;
  top: -45%;
  right: -18%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.1), transparent 68%);
  pointer-events: none;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 52px rgba(196, 136, 74, 0.14);
  border-color: rgba(196, 136, 74, 0.25);
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(253, 248, 242, 0.96));
}

.process-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-dark);
  background: linear-gradient(135deg, rgba(253, 240, 227, 0.95), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(196, 136, 74, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 10px 26px rgba(196, 136, 74, 0.1);
}

.process-kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.process-card h4 {
  font-family: var(--font-heading);
  font-size: 1.42rem;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}

.process-card p {
  font-size: 0.97rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 28ch;
  margin: 0 auto;
}

/* ── INTERACTIVE B/A SLIDER ── */
.ba-section {
  background: linear-gradient(to bottom, var(--surface) 0%, rgba(248, 246, 243, 0.5) 100%);
  position: relative;
}

.ba-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border) 50%, transparent 100%);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  cursor: ew-resize;
  aspect-ratio: 16/10;
  /* Prevent text/image selection during drag */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Prevent image dragging */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  /* Prevent touch callouts on mobile */
  -webkit-touch-callout: none;
  /* Smooth dragging */
  touch-action: pan-y;
}

.ba-slider-before,
.ba-slider-after {
  position: absolute;
  inset: 0;
  /* Prevent selection on container */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.ba-slider-before img,
.ba-slider-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Prevent image selection and dragging */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  /* Prevent context menu on right-click */
  pointer-events: none;
}

.ba-slider-before {
  z-index: 1;
  clip-path: inset(0 50% 0 0);
}

.ba-slider-after {
  z-index: 0;
}

.ba-slider .ba-label {
  z-index: 3;
}

.ba-slider-before .ba-label {
  top: 12px;
  left: 12px;
}

.ba-slider-after .ba-label {
  top: 12px;
  right: 12px;
  left: auto;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ba-slider-line {
  flex: 1;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-slider-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 3px rgba(196, 136, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  pointer-events: auto;
  cursor: ew-resize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.ba-slider-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
}

.ba-slider-button:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(196, 136, 74, 0.5);
}

.ba-slider-button:hover::before {
  opacity: 0.1;
}

.ba-slider-button svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* ── ENHANCED TESTIMONIALS ── */
.testimonial-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  position: absolute;
  top: 20px;
  right: 28px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
}

.testimonial-card:hover::before {
  opacity: 1;
}

/* ── ENHANCED STATS ── */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  border-radius: 50%;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.15), transparent 70%);
  border-radius: 50%;
}

.stat-number span {
  font-family: var(--font-heading);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.stat-number .accent {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .navbar .container {
    gap: 12px;
  }

  .nav-logo-text p {
    letter-spacing: 0.08em;
  }

  .nav-links {
    margin-left: 0;
    padding: 6px;
  }

  .nav-link {
    padding: 10px 14px;
  }

  .nav-phone a {
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  .nav-cta {
    padding: 11px 18px !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust-badges {
    justify-content: center;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .hero-float-card-2 {
    display: none;
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .process-step:nth-child(2)::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-grid,
  .product-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-layout.reverse {
    direction: ltr;
  }

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

  .contact-sidebar {
    position: static;
  }

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

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

  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .floating-cta {
    display: block;
  }

  .floating-cta .floating-quote {
    display: none;
  }

  .floating-cta .floating-call {
    display: inline-flex;
  }
}

@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
    gap: 22px;
  }

  .process-step {
    padding-top: 0;
  }

  .process-step::before {
    top: auto;
    left: 50%;
    bottom: -22px;
    width: 2px;
    height: 22px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(196, 136, 74, 0.5), rgba(212, 168, 83, 0.12));
  }

  .process-connector {
    margin-bottom: 18px;
  }

  .process-card {
    padding: 28px 22px 26px;
  }

  .process-card h4 {
    font-size: 1.3rem;
  }

  .hero-trust-badges {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

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

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

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

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

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

  .section-padding {
    padding: 64px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-float-card {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 480px) {
  .process-number {
    width: 76px;
    height: 76px;
    font-size: 1.35rem;
  }

  .process-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
  }

  .process-card p {
    font-size: 0.92rem;
  }

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

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

  .container {
    padding: 0 16px;
  }

  .trust-strip .container {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }
}
