/* ============================================================
   SUNFLORA SOLUTIONS — Shared Stylesheet
   Brand tagline: Think Differently
   Industry: Packaging Manufacturer & Supplier (PP / Foam / Bubble)
   Brand colors (sourced directly from the official business card):
     - Logo gradient: violet/purple → magenta/pink
     - Wordmark navy blue
     - Footer band purple
   Visual direction: corporate, reliable, industrial-modern, NOT generic tech.
   ============================================================ */

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties / Variables)
   ============================================================ */
:root {
  /* Primary brand */
  --brand-navy: #1e2b6b;
  --brand-navy-dark: #141d4e;
  --brand-purple: #6a1b9a;
  --brand-purple-deep: #4a148c;
  --brand-pink: #d81b60;
  --brand-magenta: #e91e63;
  --brand-gradient: linear-gradient(135deg, #6a1b9a 0%, #d81b60 100%);
  --brand-gradient-soft: linear-gradient(
    135deg,
    rgba(106, 27, 154, 0.08),
    rgba(216, 27, 96, 0.08)
  );
  --brand-gradient-strip: linear-gradient(90deg, #6a1b9a 0%, #d81b60 100%);

  /* Neutrals */
  --color-text: #1c2235;
  --color-muted: #555555;
  --color-bg: #ffffff;
  --color-bg-soft: #f7f6fb;
  --color-bg-alt: #faf8fd;
  --color-border: #e6e3ef;
  --color-dark: #0f1430;
  --color-success: #16a34a;
  --color-danger: #d81b60;

  /* Typography */
  --font-heading: "Plus Jakarta Sans", "Poppins", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  /* Shadows */
  --shadow-xs: 0 2px 6px rgba(30, 43, 107, 0.06);
  --shadow-sm: 0 8px 24px rgba(30, 43, 107, 0.08);
  --shadow-md: 0 18px 42px rgba(30, 43, 107, 0.12);
  --shadow-lg: 0 28px 64px rgba(74, 20, 140, 0.18);
  --shadow-glow: 0 6px 18px rgba(216, 27, 96, 0.18);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.3s ease-in-out;
  --t-base: 0.5s var(--ease);
}

/* ============================================================
   2. RESET & GLOBAL BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}
body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--brand-purple);
  text-decoration: none;
  transition: var(--t-fast);
}
a:hover {
  color: var(--brand-pink);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.01em;
}

p {
  color: var(--color-muted);
}
p:last-child {
  margin-bottom: 0;
}

/* Utility */
.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.text-muted-custom {
  color: var(--color-muted);
}
.bg-soft {
  background: var(--color-bg-soft);
}
.bg-alt {
  background: var(--color-bg-alt);
}
.bg-navy {
  background: var(--brand-navy);
  color: #fff;
}
.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4,
.bg-navy h5 {
  color: #fff;
}

.section-space {
  padding: 110px 0;
}
.section-space-sm {
  padding: 70px 0;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-pink);
  margin-bottom: 16px;
}
.section-kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--brand-gradient-strip);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 18px;
}

.section-intro {
  max-width: 760px;
  color: var(--color-muted);
  font-size: 1.02rem;
}

::selection {
  background: var(--brand-pink);
  color: #fff;
}

/* ============================================================
   3. PRELOADER (Packaging-themed product icons)
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: grid;
  place-items: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-stage {
  text-align: center;
}

.preloader-icons {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
}

.preloader-icons span {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-glow);
  animation: bobble 1.2s ease-in-out infinite;
  opacity: 0.92;
}
.preloader-icons span:nth-child(1) {
  animation-delay: 0s;
}
.preloader-icons span:nth-child(2) {
  animation-delay: 0.15s;
}
.preloader-icons span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader-icons span:nth-child(4) {
  animation-delay: 0.45s;
}

@keyframes bobble {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.05);
  }
}

.preloader-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand-navy);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.preloader-label small {
  display: block;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--brand-pink);
  margin-top: 4px;
  font-size: 0.7rem;
}

/* ============================================================
   4. NAVIGATION / HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(30, 43, 107, 0.06);
  transition: var(--t-base);
  padding: 20px 0;
}
.site-header.scrolled {
  box-shadow: var(--shadow-xs);
}

.navbar-custom {
  padding: 14px 0;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  /* background: var(--brand-gradient); */
  display: grid;
  place-items: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}
/* Hexagon S monogram from business card */
/*.brand-logo svg {*/
/*  width: 28px;*/
/*  height: 28px;*/
/*  color: #fff;*/
/*}*/
.brand-text strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--brand-navy);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  font-size: 1.05rem;
  text-align: center;
}
.brand-text small {
  display: block;
  font-size: 0.72rem;
  color: var(--color-muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 4px;
}

.nav-link-custom {
  color: var(--color-text) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px !important;
  position: relative;
}
.nav-link-custom::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--brand-gradient-strip);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--t-base);
}
.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--brand-purple) !important;
}
.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 8px 12px;
}
.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(216, 27, 96, 0.15);
}
.navbar-toggler i {
  color: var(--brand-purple);
}

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn-brand,
.btn-brand-outline,
.btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 14px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--t-base);
  white-space: nowrap;
}
.btn-brand {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: var(--shadow-glow);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(216, 27, 96, 0.26);
  color: #fff;
}
.btn-brand-outline {
  background: transparent;
  color: var(--brand-purple);
  border-color: var(--brand-purple);
}
.btn-brand-outline:hover {
  background: var(--brand-purple);
  color: #fff;
}
.btn-navy {
  background: var(--brand-navy);
  color: #fff;
}
.btn-navy:hover {
  background: var(--brand-navy-dark);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   6. HEROES
   ============================================================ */
.hero-home {
  position: relative;
  padding: 170px 0 110px;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(106, 27, 154, 0.1),
      transparent 45%
    ),
    radial-gradient(circle at 88% 82%, rgba(216, 27, 96, 0.1), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, var(--color-bg-soft) 100%);
  overflow: hidden;
}
/* .hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 43, 107, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 43, 107, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
} */

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-navy);
  box-shadow: var(--shadow-xs);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-gradient);
  box-shadow: 0 0 0 6px rgba(216, 27, 96, 0.12);
}

.hero-title {
  font-size: clamp(2.6rem, 5.4vw, 4.6rem);
  color: var(--brand-navy);
  margin-bottom: 22px;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--color-muted);
  max-width: 620px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 620px;
}
.hero-stats .item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-xs);
}
.hero-stats .item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--brand-navy);
  line-height: 1;
}
.hero-stats .item span {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
}

.hero-collage {
  position: relative;
  padding: 20px;
}
.hero-collage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--brand-gradient);
  border-radius: 36px;
  transform: rotate(-3deg);
  opacity: 0.95;
  z-index: 0;
}
.hero-collage img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-height: 500px;
  width: 100%;
}
.hero-collage .floating-card {
  position: absolute;
  z-index: 2;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-collage .floating-card i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand-gradient);
  color: #fff;
  display: grid;
  place-items: center;
}
.hero-collage .floating-card strong {
  color: var(--brand-navy);
  display: block;
  font-family: var(--font-heading);
}
.hero-collage .floating-card span {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.hero-collage .card-top {
  top: 30px;
  left: -40px;
  animation: floaty 4s ease-in-out infinite;
}
.hero-collage .card-bottom {
  bottom: 30px;
  right: -40px;
  animation: floaty 5s ease-in-out infinite reverse;
}
@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 150px 0 90px;
  background:
    radial-gradient(circle at 80% 30%, rgba(216, 27, 96, 0.1), transparent 45%),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-purple-deep) 100%);
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 90%);
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  margin-bottom: 14px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
  margin: 0 auto;
}
.page-hero .position-relative {
  position: relative;
  z-index: 2;
}

.breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.breadcrumb-custom a {
  color: #fff;
}

/* ============================================================
   7. CARDS / FEATURES / VALUES
   ============================================================ */
.card-clean,
.feature-card,
.product-card,
.value-card,
.industry-card,
.contact-card,
.team-card,
.process-card,
.pricing-card,
.faq-shell,
.info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--t-base);
  box-shadow: var(--shadow-xs);
  height: auto;
}
.feature-card:hover,
.product-card:hover,
.value-card:hover,
.industry-card:hover,
.contact-card:hover,
.team-card:hover,
.info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(106, 27, 154, 0.18);
  box-shadow: var(--shadow-md);
}
.team-card {
  justify-content: center;
  align-items: center;
}
.icon-pill {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--brand-gradient-soft);
  color: var(--brand-purple);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: var(--t-base);
}
.value-card:hover .icon-pill,
.feature-card:hover .icon-pill,
.industry-card:hover .icon-pill {
  background: var(--brand-gradient);
  color: #fff;
  transform: rotate(-6deg);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.list-check li i {
  color: var(--brand-pink);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ============================================================
   8. PRODUCTS
   ============================================================ */
.product-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.product-filter button {
  padding: 9px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--t-base);
}
.product-filter button:hover {
  border-color: var(--brand-purple);
  color: var(--brand-purple);
}
.product-filter button.active {
  background: var(--brand-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.product-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card .product-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-soft);
}
.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img img {
  transform: scale(1.08);
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-purple);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}
.product-card .product-body {
  padding: 22px 24px 26px;
}
.product-card h5 {
  color: var(--brand-navy);
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.product-card p {
  font-size: 0.92rem;
  margin-bottom: 14px;
}
.product-card .product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--brand-pink);
}
.product-card .product-link i {
  transition: transform var(--t-fast);
}
.product-card .product-link:hover i {
  transform: translateX(4px);
}

.product-zoom {
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 48, 0.55);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: var(--t-base);
  color: #fff;
  font-size: 1.6rem;
}
.product-card:hover .product-zoom {
  opacity: 1;
}
/* ---- Product filter transitions ---- */
.product-item {
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.product-item.is-hidden {
  opacity: 0;
  transform: scale(0.94);
  pointer-events: none;
}
.product-item.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   9. STATS COUNTER
   ============================================================ */
.stats-band {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(216, 27, 96, 0.18),
      transparent 40%
    ),
    linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-purple-deep) 100%);
  color: #fff;
}
.stat-block {
  text-align: center;
  padding: 12px;
}
.stat-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: #fff;
  font-size: 1.4rem;
}
.counter-number {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  display: inline-block;
  line-height: 1;
}
.counter-suffix {
  font-family: var(--font-heading);
  color: var(--brand-pink);
  font-weight: 800;
}
.stat-label {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ============================================================
   10. INDUSTRIES SERVED
   ============================================================ */
.industry-card {
  text-align: center;
  padding: 32px 24px;
}
.industry-card .icon-pill {
  margin: 0 auto 20px;
}

/* ============================================================
   11. PROCESS / TIMELINE
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  transition: var(--t-base);
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(106, 27, 154, 0.18);
}
.process-step .step-no {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-glow);
}
.process-step h5 {
  color: var(--brand-navy);
}

/* ============================================================
   12. PRICING
   ============================================================ */
.pricing-card {
  padding: 36px 30px;
  text-align: center;
}
.pricing-card h4 {
  color: var(--brand-navy);
}
.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1;
  margin: 12px 0 4px;
}
.pricing-card .price small {
  font-size: 0.95rem;
  color: var(--color-muted);
  font-weight: 500;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  text-align: left;
  display: grid;
  gap: 12px;
}
.pricing-card ul li {
  display: flex;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-border);
  font-size: 0.94rem;
}
.pricing-card ul li i {
  color: var(--brand-pink);
  margin-top: 5px;
}
.pricing-card ul li:last-child {
  border-bottom: 0;
}

.pricing-card.featured {
  background: linear-gradient(
    140deg,
    var(--brand-navy) 0%,
    var(--brand-purple-deep) 100%
  );
  color: #fff;
  border: 0;
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured h4,
.pricing-card.featured .price {
  color: #fff;
}
.pricing-card.featured .price small {
  color: rgba(255, 255, 255, 0.7);
}
.pricing-card.featured ul li {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.pricing-card.featured ul li i {
  color: var(--brand-pink);
}
.pricing-card .badge-top {
  display: inline-block;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}

/* ============================================================
   13. TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 26px;
  font-family: Georgia, serif;
  font-size: 5rem;
  color: var(--brand-pink);
  opacity: 0.28;
  line-height: 1;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-meta img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--brand-pink);
}
.testimonial-meta strong {
  display: block;
  color: var(--brand-navy);
}
.testimonial-meta span {
  color: var(--color-muted);
  font-size: 0.88rem;
}

/* ============================================================
   14. GALLERY / LIGHTBOX
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 20, 48, 0.78));
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: var(--t-base);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay strong {
  color: #fff;
  font-family: var(--font-heading);
}
.gallery-overlay i {
  margin-left: auto;
  color: var(--brand-pink);
}

/* ============================================================
   15. FAQ ACCORDION
   ============================================================ */
.accordion-item {
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--brand-navy);
  padding: 22px 26px;
  background: #fff !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--brand-gradient-soft) !important;
  color: var(--brand-purple);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236a1b9a'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 01.708 0L8 10.293l5.646-5.647a.5.5 0 01.708.708l-6 6a.5.5 0 01-.708 0l-6-6a.5.5 0 010-.708z'/%3E%3C/svg%3E");
}
.accordion-body {
  padding: 0 26px 24px;
  color: var(--color-muted);
}

/* ============================================================
   16. CONTACT / FORM
   ============================================================ */
.contact-info-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: var(--shadow-xs);
  transition: var(--t-base);
  height: 100%;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(106, 27, 154, 0.2);
  box-shadow: var(--shadow-md);
}
.contact-info-card .ic {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-gradient);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card h5 {
  color: var(--brand-navy);
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-info-card p,
.contact-info-card a {
  color: var(--color-muted);
  font-size: 0.94rem;
  margin: 0;
}
.contact-info-card a:hover {
  color: var(--brand-pink);
}

.form-shell {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-label {
  font-weight: 600;
  color: var(--brand-navy);
  font-size: 0.92rem;
}
.form-control,
.form-select {
  min-height: 52px;
  border-radius: 14px;
  border: 1.5px solid var(--color-border);
  padding: 12px 16px;
  font-size: 0.96rem;
  transition: var(--t-fast);
}
textarea.form-control {
  min-height: 130px;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 0.2rem rgba(106, 27, 154, 0.14);
}

.map-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-height: 380px;
  border: 1px solid var(--color-border);
}
.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 380px;
}

/* ============================================================
   17. CTA STRIP
   ============================================================ */
.cta-strip {
  background: var(--brand-gradient);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.cta-strip::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  pointer-events: none;
}
.cta-strip h3,
.cta-strip p {
  color: #fff;
  position: relative;
  z-index: 1;
}

/* ============================================================
   18. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.72);
  padding-top: 80px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient-strip);
}
.site-footer h5 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.site-footer .brand-text strong {
  color: #fff;
}
.site-footer .brand-text small {
  color: rgba(255, 255, 255, 0.55);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}
.footer-list a:hover {
  color: var(--brand-pink);
  padding-left: 4px;
}

.footer-contact-line {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.82);
}
.footer-contact-line i {
  color: var(--brand-pink);
  margin-top: 5px;
}
.footer-contact-line a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer-contact-line a:hover {
  color: var(--brand-pink);
}

.social-links {
  display: flex;
  gap: 10px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: grid;
  place-items: center;
  transition: var(--t-base);
}
.social-links a:hover {
  background: var(--brand-gradient);
  transform: translateY(-3px);
  color: #fff;
}

.footer-bottom {
  margin-top: 50px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
}

/* ============================================================
   19. FLOATING BUTTONS (Back to top + Sticky CTA)
   ============================================================ */
.back-to-top,
.sticky-cta {
  position: fixed;
  z-index: 1050;
  transition: var(--t-base);
}
.back-to-top {
  right: 22px;
  bottom: 92px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  background: var(--brand-navy);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  box-shadow: var(--shadow-md);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--brand-purple);
  transform: translateY(-3px);
}

.sticky-cta {
  right: 22px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-gradient);
  color: #fff;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow-glow);
}
.sticky-cta:hover {
  color: #fff;
  transform: translateY(-3px);
}

.sticky-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 1050;
  font-size: 1.5rem;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition: var(--t-base);
}
.sticky-whatsapp:hover {
  color: #fff;
  transform: scale(1.05);
}

/* ============================================================
   20. RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-home {
    padding: 140px 0 80px;
  }
  .hero-collage {
    margin-top: 50px;
  }
  .section-space {
    padding: 80px 0;
  }
  .navbar-collapse {
    background: #fff;
    border-radius: 16px;
    padding: 18px;
    margin-top: 14px;
    box-shadow: var(--shadow-md);
  }
  .nav-link-custom::after {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .form-shell,
  .cta-strip {
    padding: 26px;
  }
  .section-space {
    padding: 70px 0;
  }
  .testimonial-card {
    padding: 28px;
  }
  .hero-collage .floating-card {
    display: none;
  }
  .sticky-cta span {
    display: none;
  }
  .sticky-cta {
    padding: 14px;
    border-radius: 50%;
  }
}

@media (max-width: 575.98px) {
  .brand-text small {
    display: none;
  }
  .preloader-icons span {
    width: 44px;
    height: 44px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.fa-shield-halved {
  color: #16a34a;
}
