/* ─────────────────────────  DESIGN TOKENS  ───────────────────────── */
:root {
  --bg: #0a0e1a;
  --panel: #111827;
  --panel2: #1a2236;
  --text: #f0f2f8;
  --muted: #a0aac0;
  --brand: #e84052;
  --brand2: #ff6b6b;
  --gold: #d4a853;
  --stroke: rgba(255, 255, 255, .08);
  --glass: rgba(255, 255, 255, .04);
  --shadow: 0 16px 48px rgba(0, 0, 0, .45);
  --radius: 16px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

/* ─────────────────────────  LIGHT MODE (Reveal-Inspired)  ───────────────────────── */
[data-theme="light"] {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel2: #f7f7f7;
  --text: #444444;
  --muted: #888888;
  --heading: #1a2744;
  --brand: #e84052;
  --brand2: #c9303b;
  --gold: #b8922e;
  --stroke: rgba(0, 0, 0, .08);
  --glass: rgba(0, 0, 0, .02);
  --shadow: 0 4px 16px rgba(0, 0, 0, .06);
  --navy: #1a2744;
  --footer-bg: #2c3e50;
}

/* Clean white body */
[data-theme="light"] .site-body {
  background: #ffffff;
}

/* ─── Topbar: Reveal-style ─── */
[data-theme="light"] .topbar {
  background: #f8f9fa;
  border-bottom: 1px solid #e8eaee;
  font-size: .85rem;
}

[data-theme="light"] .topbar .topbar-link {
  color: var(--muted);
}

[data-theme="light"] .topbar .topbar-link:hover {
  color: var(--brand);
}

/* Social icons in topbar */
[data-theme="light"] .topbar-social a {
  color: var(--muted);
  font-size: .95rem;
  transition: color .3s ease;
}

[data-theme="light"] .topbar-social a:hover {
  color: var(--brand);
}

/* ─── Nav: Clean white, Reveal-style ─── */
[data-theme="light"] .mainnav {
  background: #ffffff;
  border-bottom: 1px solid #e8eaee;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

[data-theme="light"] .navbar-dark .navbar-nav .nav-link {
  color: var(--heading);
  font-weight: 600;
  text-transform: uppercase;
  font-size: .82rem;
  letter-spacing: .5px;
}

[data-theme="light"] .navbar-dark .navbar-nav .nav-link:hover {
  color: var(--brand) !important;
}

[data-theme="light"] .navbar-dark .navbar-nav .nav-link.active {
  color: var(--brand) !important;
}

[data-theme="light"] .navbar-dark .navbar-brand {
  color: var(--heading);
}

[data-theme="light"] .navbar-toggler {
  border-color: rgba(0, 0, 0, .15);
}

[data-theme="light"] .navbar-toggler-icon {
  filter: invert(1) grayscale(100%) brightness(0.4);
}

[data-theme="light"] .brand-text {
  color: var(--heading);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

/* ─── Section Titles: NAVY heading + RED underline (Reveal pattern) ─── */
[data-theme="light"] .section-title {
  color: var(--heading);
  font-weight: 700;
}

[data-theme="light"] .section-title::after {
  content: '';
  display: block;
  width: clamp(40px, 8vw, 60px);
  height: 3px;
  background: var(--brand);
  margin-top: .75rem;
  border-radius: 2px;
}

[data-theme="light"] .text-center .section-title::after,
[data-theme="light"] .section-title.text-center::after {
  margin-left: auto;
  margin-right: auto;
}

/* ─── Section Backgrounds: alternating white / light grey ─── */
[data-theme="light"] .section:nth-of-type(even) {
  background: #f7f7f7;
}

[data-theme="light"] .section:nth-of-type(odd) {
  background: #ffffff;
}

/* ─── Cards: Reveal service-card style — horizontal icon+text ─── */
[data-theme="light"] .cardx {
  background: #ffffff;
  border: 1px solid #e8eaee;
  border-left: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all .3s ease;
}

[data-theme="light"] .cardx:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  border-color: #ddd;
  transform: none;
}

[data-theme="light"] .cardx .bi {
  color: var(--brand);
  opacity: 1;
  font-size: 2rem;
  flex-shrink: 0;
}

[data-theme="light"] .cardx .fw-bold {
  color: var(--heading);
  font-size: 1.05rem;
}

/* Badge: subtle pill */
[data-theme="light"] .badgex {
  background: rgba(230, 57, 70, .06);
  border-color: rgba(230, 57, 70, .15);
  color: var(--brand);
}

/* ─── Buttons ─── */
[data-theme="light"] .btn-outline-light {
  border-color: #ccc;
  color: var(--text);
}

[data-theme="light"] .btn-outline-light:hover {
  background: var(--heading);
  border-color: var(--heading);
  color: #fff;
}

[data-theme="light"] .btn-primary {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

[data-theme="light"] .btn-primary:hover {
  background: var(--brand2);
  border-color: var(--brand2);
  box-shadow: none;
  filter: none;
}

/* ─── Forms: clean inputs ─── */
[data-theme="light"] .form-control,
[data-theme="light"] .form-select {
  background: #ffffff !important;
  border: 1px solid #ddd !important;
  color: var(--text) !important;
  border-radius: 4px;
}

[data-theme="light"] .form-control::placeholder {
  color: #999;
}

[data-theme="light"] .form-control:focus,
[data-theme="light"] .form-select:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 4px rgba(232, 64, 82, .14) !important;
}

[data-theme="light"] .form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c7a8d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  background-repeat: no-repeat !important;
  background-position: right .75rem center !important;
  background-size: 16px 12px !important;
}

/* ─── Hero: Full-width overlay (Reveal-style) ─── */
[data-theme="light"] .hero {
  background: #f7f7f7;
}

[data-theme="light"] .hero-media {
  border: 1px solid #e8eaee;
  box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
  background: #fff;
}

/* ─── CTA Band: Subtle warm accent ─── */
[data-theme="light"] .cta-band {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
  border-top: 1px solid #e8eaee;
  border-bottom: 1px solid #e8eaee;
}

[data-theme="light"] .cta-band .section-title {
  color: var(--heading);
}

[data-theme="light"] .cta-band .section-title::after {
  display: none;
}

[data-theme="light"] .cta-band .section-sub,
[data-theme="light"] .cta-band .text-muted2 {
  color: var(--muted) !important;
}

[data-theme="light"] .cta-band .btn-primary {
  background: var(--brand);
  border: 2px solid var(--brand);
  border-radius: 50px;
  color: #fff;
  padding: .6rem 2rem;
  font-weight: 600;
}

[data-theme="light"] .cta-band .btn-primary:hover {
  background: var(--brand2);
  border-color: var(--brand2);
  color: #fff;
}

[data-theme="light"] .cta-band .btn-outline-light {
  border: 2px solid var(--heading);
  color: var(--heading);
  border-radius: 50px;
}

[data-theme="light"] .cta-band .btn-outline-light:hover {
  background: var(--heading);
  color: #fff;
}

[data-theme="light"] .cta-band .btn-whatsapp {
  border-radius: 50px;
}

/* ─── Footer: Centered warm charcoal ─── */
[data-theme="light"] .site-footer {
  background: var(--footer-bg);
  border-top: none;
  color: rgba(255, 255, 255, .85);
  text-align: center;
}

[data-theme="light"] .site-footer .fw-semibold,
[data-theme="light"] .site-footer .fw-bold,
[data-theme="light"] .site-footer .footer-title {
  color: #fff;
}

[data-theme="light"] .site-footer .text-muted2 {
  color: rgba(255, 255, 255, .75) !important;
}

[data-theme="light"] .site-footer .footer-link {
  color: rgba(255, 255, 255, .75);
}

[data-theme="light"] .site-footer .footer-link:hover {
  color: #fff;
}

[data-theme="light"] .footer-bottom {
  border-top-color: rgba(255, 255, 255, .14);
}

[data-theme="light"] .footer-bottom .text-muted2 {
  color: rgba(255, 255, 255, .65) !important;
}

/* Footer social icons (Reveal circle style) */
[data-theme="light"] .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 1rem;
  transition: all .3s ease;
  border: 1px solid rgba(255, 255, 255, .15);
}

[data-theme="light"] .footer-social a:hover {
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-3px);
}

/* ─── Contact Page Components ─── */
[data-theme="light"] .contact-info-card {
  padding: 1.25rem;
  border-left: 3px solid var(--brand);
  background: #fff;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  transition: all .3s ease;
}

[data-theme="light"] .contact-info-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  transform: translateX(4px);
}

[data-theme="light"] .contact-info-card .contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(230, 57, 70, .08);
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: .75rem;
}

[data-theme="light"] .contact-info-card h5 {
  color: var(--heading);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

[data-theme="light"] .contact-info-card p {
  margin: 0;
  font-size: .9rem;
  color: var(--muted);
}

[data-theme="light"] .contact-info-card a {
  color: var(--heading);
  font-weight: 600;
  text-decoration: none;
}

[data-theme="light"] .contact-info-card a:hover {
  color: var(--brand);
}

[data-theme="light"] .contact-form-card {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

[data-theme="light"] .contact-form-card h4 {
  color: var(--heading);
  font-weight: 700;
}

/* ─── Shop Page ─── */

/* Category filter tabs */
.shop-category-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.shop-tab {
  background: transparent;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: .5rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted, #777);
  cursor: pointer;
  transition: all .3s ease;
}

[data-theme="light"] .shop-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}

[data-theme="light"] .shop-tab.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Product cards */
[data-theme="light"] .product-card {
  background: #fff;
  border: 1px solid #e8eaee;
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

[data-theme="light"] .product-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #f8f9fa;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

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

.product-badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  background: var(--brand, #e63946);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .3rem .75rem;
  border-radius: 50px;
}

.product-badge.badge-new {
  background: #0d6efd;
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--brand, #e63946);
  font-weight: 600;
  margin-bottom: .35rem;
}

[data-theme="light"] .product-title {
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: .875rem;
  color: var(--muted, #777);
  line-height: 1.5;
  flex-grow: 1;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--heading, #1a2744);
}

[data-theme="light"] .btn-product {
  background: transparent;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  border-radius: 50px;
  font-weight: 600;
  padding: .35rem 1rem;
  font-size: .8rem;
  transition: all .3s ease;
}

[data-theme="light"] .btn-product:hover {
  background: var(--brand);
  color: #fff;
}

/* Info band perks */
[data-theme="light"] .shop-info-band {
  background: #f8f9fa;
  border-top: 1px solid #e8eaee;
  border-bottom: 1px solid #e8eaee;
}

.shop-perk i {
  font-size: 2rem;
  color: var(--brand, #e63946);
  margin-bottom: .75rem;
  display: block;
}

[data-theme="light"] .shop-perk h5 {
  color: var(--heading);
  font-size: .95rem;
  font-weight: 700;
}

.shop-perk p {
  color: var(--muted, #777);
  font-size: .875rem;
  margin: 0;
}

/* Stock status badges */
.stock-badge {
  position: absolute;
  bottom: .75rem;
  right: .75rem;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .3rem .65rem;
  border-radius: 50px;
}

.stock-in {
  background: #198754;
  color: #fff;
}

.stock-order {
  background: #fd7e14;
  color: #fff;
}

.stock-badge-modal {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: .3rem .65rem;
  border-radius: 50px;
}

/* Buy / Order buttons */
[data-theme="light"] .btn-product-buy {
  background: var(--brand);
  border: 1.5px solid var(--brand);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  transition: all .3s ease;
}

[data-theme="light"] .btn-product-buy:hover {
  background: #c62d3a;
  border-color: #c62d3a;
  color: #fff;
}

[data-theme="light"] .btn-product-order {
  background: transparent;
  border: 1.5px solid #fd7e14;
  color: #fd7e14;
  border-radius: 50px;
  font-weight: 600;
  padding: .4rem 1.1rem;
  font-size: .8rem;
  transition: all .3s ease;
}

[data-theme="light"] .btn-product-order:hover {
  background: #fd7e14;
  color: #fff;
}

/* Import shipping note */
.product-import-note {
  font-size: .78rem;
  color: #fd7e14;
  font-weight: 500;
  margin-bottom: .5rem;
}

/* Installation option */
.product-install-option {
  border-top: 1px solid #eee;
  padding-top: .5rem;
  margin-top: .25rem;
}

.product-install-option .form-check {
  margin: 0;
  padding-left: 1.5em;
}

.product-install-option .form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

/* Filter animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

/* ─── Divider ─── */
[data-theme="light"] .divider {
  background: linear-gradient(90deg, transparent, #e8eaee, transparent);
}

/* ─── Dropdown: clean white ─── */
[data-theme="light"] .dropdown-menu-dark {
  background: #fff;
  border: 1px solid #e8eaee;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}

[data-theme="light"] .dropdown-menu-dark .dropdown-item {
  color: var(--heading);
  font-weight: 500;
}

[data-theme="light"] .dropdown-menu-dark .dropdown-item:hover {
  background: rgba(230, 57, 70, .05);
  color: var(--brand);
}

/* Stats: navy heading for contrast */
[data-theme="light"] .stat-num {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: var(--heading);
}

[data-theme="light"] .stat-label {
  color: var(--muted);
}

/* Process steps */
[data-theme="light"] .process-num {
  background: var(--brand);
  box-shadow: none;
}

/* ─── Theme Toggle Button ─── */
.theme-toggle {
  background: none;
  border: 1px solid var(--stroke);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--transition);
  padding: 0;
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: rgba(230, 57, 70, .06);
}

.theme-toggle .bi-sun-fill {
  display: none;
}

.theme-toggle .bi-moon-fill {
  display: inline;
}

[data-theme="light"] .theme-toggle .bi-sun-fill {
  display: inline;
}

[data-theme="light"] .theme-toggle .bi-moon-fill {
  display: none;
}

/* Logo dark/light swap */
.logo-light {
  display: none;
}

.logo-dark {
  display: inline;
}

[data-theme="light"] .logo-light {
  display: inline;
}

[data-theme="light"] .logo-dark {
  display: none;
}

/* ─────────────────────────  GLOBAL BASE  ───────────────────────── */
* {
  box-sizing: border-box;
}

.site-body {
  background:
    radial-gradient(ellipse 1200px 800px at 15% -8%, rgba(230, 57, 70, .18), transparent 60%),
    radial-gradient(ellipse 900px 600px at 90% 5%, rgba(212, 168, 83, .08), transparent 50%),
    var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.text-muted2 {
  color: var(--muted) !important;
}

/* ─────────────────────────  LINKS  ───────────────────────── */
a {
  color: var(--brand2);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--brand);
  text-decoration: none;
}

/* ─────────────────────────  TOP BAR  ───────────────────────── */
.topbar {
  background: rgba(255, 255, 255, .02);
  border-bottom: 1px solid var(--stroke);
  padding: .4rem 0;
  font-size: .82rem;
  letter-spacing: .3px;
}

.topbar-link {
  color: var(--muted);
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--text);
  text-decoration: none;
}

/* ─────────────────────────  MAIN NAV  ───────────────────────── */
.mainnav {
  position: relative;
  z-index: 1030;
  background: rgba(10, 14, 26, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--stroke);
}

.brand-logo {
  height: 34px;
  width: auto;
}

.brand-text {
  font-size: .95rem;
  letter-spacing: .3px;
  font-weight: 500;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: .88rem;
  letter-spacing: .3px;
  transition: color var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--brand2) !important;
}

.navbar-nav .nav-link.active {
  color: var(--brand) !important;
  font-weight: 600;
}

/* ─────────────────────────  SECTIONS  ───────────────────────── */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ─────────────────────────  CARDS (Glassmorphism)  ───────────────────────── */
.cardx {
  background: linear-gradient(160deg, rgba(255, 255, 255, .07) 0%, rgba(255, 255, 255, .02) 100%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.cardx:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5), 0 0 40px rgba(230, 57, 70, .08);
  border-color: rgba(255, 255, 255, .14);
}

a.cardx {
  color: var(--text);
  text-decoration: none;
}

a.cardx:hover {
  color: var(--text);
  text-decoration: none;
}

a.cardx .fw-bold {
  color: var(--brand2);
  transition: color var(--transition);
}

a.cardx:hover .fw-bold {
  color: var(--brand);
}

/* ─────────────────────────  BADGES  ───────────────────────── */
.badgex {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  color: var(--muted);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .3px;
  transition: transform var(--transition), border-color var(--transition);
}
.badgex:hover {
  transform: scale(1.02);
  border-color: var(--brand);
}

/* ─────────────────────────  BUTTONS  ───────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .3px;
  padding: .55rem 1.5rem;
  box-shadow: 0 8px 24px rgba(230, 57, 70, .3);
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(230, 57, 70, .4);
  filter: brightness(1.08);
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.btn-primary:active {
  transform: translateY(0px);
  box-shadow: 0 4px 16px rgba(230, 57, 70, .25);
}

.btn-outline-light {
  border-color: var(--stroke);
  color: var(--text);
  border-radius: 12px;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .3px;
  padding: .55rem 1.5rem;
  transition: all var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .2);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

/* WhatsApp button */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: .9rem;
  padding: .55rem 1.5rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, .25);
  transition: all var(--transition);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, .35);
}

/* ─────────────────────────  HERO  ───────────────────────── */
.hero {
  padding: 5rem 0 4rem 0;
}

.hero h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.hero p {
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-media {
  border-radius: 20px;
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--glass);
}

.hero-media img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  transition: transform 6s ease;
}

.hero-media:hover img {
  transform: scale(1.04);
}

/* ─────────────────────────  CTA BAND  ───────────────────────── */
.cta-band {
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  background:
    linear-gradient(90deg, rgba(232, 64, 82, .08) 0%, transparent 35%),
    rgba(255, 255, 255, .02);
}

/* ─────────────────────────  PROCESS / TIMELINE  ───────────────────────── */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .75rem;
  box-shadow: 0 6px 20px rgba(230, 57, 70, .3);
}

/* ─────────────────────────  STATS ROW  ───────────────────────── */
.stat-block {
  text-align: center;
  padding: 1.5rem;
}

.stat-num {
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.03em;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--muted);
  font-size: .88rem;
  margin-top: .2rem;
  font-weight: 500;
}

/* ─────────────────────────  DARK FORM INPUTS  ───────────────────────── */
.form-control,
.form-select {
  background: rgba(255, 255, 255, .05) !important;
  border: 1px solid var(--stroke) !important;
  color: var(--text) !important;
  border-radius: 10px;
  padding: .65rem .9rem;
  font-size: .92rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control::placeholder {
  color: var(--muted);
  opacity: .6;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 4px rgba(232, 64, 82, .18) !important;
  outline: none;
}

.form-label {
  font-weight: 500;
  font-size: .85rem;
  letter-spacing: .3px;
  color: var(--muted);
  margin-bottom: .35rem;
}

/* File input */
input[type="file"].form-control {
  color: var(--muted);
}

input[type="file"].form-control::file-selector-button {
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--stroke);
  color: var(--text);
  border-radius: 8px;
  padding: .3rem .75rem;
  margin-right: .75rem;
  font-size: .82rem;
  cursor: pointer;
  transition: background var(--transition);
}

input[type="file"].form-control::file-selector-button:hover {
  background: rgba(255, 255, 255, .12);
}

/* Select dropdown arrow for dark mode */
.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238b99b8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
  padding-right: 2.25rem !important;
  background-position: right 0.75rem center !important;
  background-size: 16px 12px !important;
  background-repeat: no-repeat !important;
}

/* ─────────────────────────  FOOTER  ───────────────────────── */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--stroke);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .3), rgba(0, 0, 0, .5));
}

.footer-logo {
  height: 30px;
  width: auto;
  opacity: .9;
}

.footer-title {
  font-weight: 700;
  margin-bottom: .7rem;
  font-size: .92rem;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.footer-link {
  color: var(--muted);
  font-size: .9rem;
  transition: color var(--transition);
}

.footer-link:hover {
  color: var(--text);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid var(--stroke);
}

/* ─────────────────────────  IMAGE UTILITIES  ───────────────────────── */
.img-round {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ─────────────────────────  SCROLL REVEAL  ───────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

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

/* Stagger children */
.reveal-stagger>*:nth-child(1) {
  transition-delay: 0ms;
}

.reveal-stagger>*:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger>*:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger>*:nth-child(4) {
  transition-delay: 240ms;
}

.reveal-stagger>*:nth-child(5) {
  transition-delay: 320ms;
}

.reveal-stagger>*:nth-child(6) {
  transition-delay: 400ms;
}

/* ─────────────────────────  ICON STYLING  ───────────────────────── */
.cardx .bi {
  color: var(--brand2);
  opacity: .75;
  transition: opacity var(--transition);
}

.cardx:hover .bi {
  opacity: 1;
}

/* ─────────────────────────  DIVIDER  ───────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--stroke), transparent);
  border: none;
  margin: 0;
}

/* ─────────────────────────  RESPONSIVE  ───────────────────────── */
@media (max-width: 991px) {
  .hero {
    padding: 3.5rem 0 2.5rem 0;
  }

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

  .hero-media img {
    height: 260px;
  }

  .section {
    padding: 3.5rem 0;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  /* ─── MOBILE HEADER / NAV ─── */
  .topbar {
    font-size: .75rem;
    padding: .3rem 0;
  }

  .navbar-collapse {
    background: var(--panel, #111827);
    border: 1px solid var(--stroke, rgba(255, 255, 255, .08));
    border-radius: 12px;
    margin-top: .5rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
  }

  [data-theme="light"] .navbar-collapse {
    background: #ffffff;
    border-color: #e8eaee;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
  }

  .navbar-nav {
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: .5rem .75rem !important;
    border-radius: 8px;
  }

  .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, .05);
  }

  [data-theme="light"] .navbar-nav .nav-link:hover {
    background: rgba(0, 0, 0, .03);
  }

  .navbar-nav .btn {
    margin-top: .5rem;
    width: 100%;
  }

  /* Dropdown menu in mobile */
  .dropdown-menu {
    border: none !important;
    box-shadow: none !important;
    padding-left: 1rem;
  }

  [data-theme="light"] .dropdown-menu-dark {
    background: transparent !important;
  }

  [data-theme="light"] .dropdown-menu-dark .dropdown-item {
    color: var(--heading, #1a2744) !important;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 2.5rem 0 2rem 0;
  }

  .section {
    padding: 2.5rem 0;
  }

  .cardx {
    padding: 1.1rem;
  }
}
