/* ============================================================
   SwizzleServe v2 – Complete Rebuild
   Layout inspired by reference images
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #ea580c;
  --primary-dark: #c2410c;
  --secondary-1: #832165;
  --secondary-2: #491345;
  --text-dark: #333333;
  --text-body: #555555;
  --text-muted: #888888;
  --white: #ffffff;
  --off-white: #faf9f7;
  --light-bg: #f5f3f0;
  --dark-bg: #1a1a1a;
  --border: #e8e4df;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 50px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --radius: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --gradient: linear-gradient(135deg, var(--secondary-1), var(--secondary-2));
  --gradient-primary: linear-gradient(135deg, #ea580c, #f97316);
}

/* ---------- Global Focus & Active Outlines ---------- */
:focus {
  outline: 2px solid var(--secondary-1);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--secondary-1);
  outline-offset: 2px;
}

:active {
  outline-color: var(--primary);
}

:focus-within {
  outline-color: var(--secondary-1);
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  outline: none;
  border-color: var(--secondary-1);
  box-shadow: 0 0 0 3px rgba(131, 33, 101, 0.12);
}

a:focus-visible {
  outline: 2px solid var(--secondary-1);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--secondary-1);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(131, 33, 101, 0.15);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.3px;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; transition: all 0.3s ease; }
section { padding: 80px 0; position: relative; }

/* ---------- Typography Utilities ---------- */
.section-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-heading {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-heading .accent {
  color: var(--primary);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

.section-desc.centered {
  margin: 0 auto;
}

/* Decorative line divider (ref2 style) */
.heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}

.heading-divider .line {
  width: 60px;
  height: 1px;
  background: var(--border);
}

.heading-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* ---------- Buttons ---------- */
.btn-main {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 15px 36px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 0.3px;
}

.btn-main:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(234,88,12,0.3);
}

.btn-main-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 13px 34px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-main-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 15px 36px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-white:hover {
  background: var(--off-white);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 13px 34px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.35s ease;
}

.btn-white-outline:hover {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--white);
}

/* ---------- Navbar ---------- */
/* ---------- Modern Glassmorphism Navbar ---------- */
.navbar {
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.04);
  padding: 12px 0;
}

/* ---------- Nav links – pill style with flow indicator ---------- */
.navbar .navbar-nav {
  gap: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  padding: 4px;
  position: relative;
}

/* Flowing pill indicator */
.navbar .nav-pill-indicator {
  position: absolute;
  top: 4px;
  left: 0;
  height: calc(100% - 8px);
  border-radius: 100px;
  background: var(--gradient);
  box-shadow: 0 2px 12px rgba(131, 33, 101, 0.3);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  pointer-events: none;
}

.navbar.scrolled .navbar-nav {
  background: var(--off-white);
  border-color: rgba(0, 0, 0, 0.06);
}

.navbar .nav-link {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding: 8px 20px !important;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 100px;
  z-index: 1;
  background: transparent !important;
}

.navbar .nav-link:hover {
  color: var(--white);
}

.navbar .nav-link.active {
  color: var(--white);
}

/* When pill moves away from active link */
.navbar .nav-link.active.pill-away {
  color: rgba(255, 255, 255, 0.75);
}

.navbar.scrolled .nav-link.active.pill-away {
  color: var(--text-body);
}

/* Remove old underline indicator */
.navbar .nav-link.active::after {
  display: none;
}

/* Scrolled state nav links */
.navbar.scrolled .nav-link {
  color: var(--text-body);
}

.navbar.scrolled .nav-link:hover {
  color: var(--white);
}

.navbar.scrolled .nav-link.active {
  color: var(--white);
}

.navbar.scrolled .nav-pill-indicator {
  box-shadow: 0 2px 12px rgba(131, 33, 101, 0.25);
}

/* ---------- Brand ---------- */
.navbar-brand img {
  height: 44px;
  width: auto;
  transition: filter 0.3s ease;
}

.navbar:not(.scrolled) .navbar-brand img {
  filter: brightness(0) invert(1);
}

/* ---------- CTA Button ---------- */
.navbar .btn-main {
  padding: 10px 26px;
  font-size: 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ---------- Mobile toggler ---------- */
.navbar-toggler {
  border: none;
  padding: 6px 10px;
  color: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-toggler {
  color: var(--text-dark);
}

.navbar-toggler:focus { box-shadow: none; }

/* ============================================================
   HERO – Full-width bg image, centered bold text, 80vh
   ============================================================ */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background:
    linear-gradient(
      160deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.70) 50%,
      rgba(73, 19, 69, 0.50) 100%
    ),
    url('../images/home-banner.webp') center center / cover no-repeat;
  background-color: var(--dark-bg); /* fallback */
}

/* Subtle grain overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.015) 2px,
    rgba(0,0,0,0.015) 4px
  );
  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Hero two-column row */
.hero-row {
  min-height: 80vh;
}

/* Inner wrapper */
.hero-inner {
  text-align: left;
  padding: 150px 0 80px;
  max-width: 580px;
}

/* ---------- Hero visual (phone mockup + floating icons) ---------- */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ---------- Phone wrapper (icons are relative to this) ---------- */
.hero-phone {
  position: relative;
}

/* ---------- Hero Mockup Image ---------- */
.hero-mockup-img {
  width: 300px;
  height: auto;
  display: block;
  z-index: 1;
  position: relative;
  filter: drop-shadow(0 32px 60px rgba(0, 0, 0, 0.35));
}

/* ---------- Floating icons (positioned relative to .hero-phone) ---------- */
.hero-float-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.16);
  z-index: 3;
  will-change: transform;
}

.hero-float-icon i {
  font-size: 1.75rem;
  color: #ea580c;
  line-height: 1;
}

/* Icon positions — tight to mockup, slightly overlapping edges */
.icon-qr       { top: 8%;     left: -28px; }
.icon-menu     { top: 42%;    right: -32px; }
.icon-mobile   { bottom: 22%; left: -28px; }
.icon-settings { bottom: 10%; right: -28px; }

/* Overline badge */
.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  padding: 10px 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-overline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block;
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(234,88,12,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(234,88,12,0); }
}

/* Headline — large, bold, white */
.hero-title {
  font-size: 5rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 30px;
  letter-spacing: -1.5px;
}

.hero-title-accent {
  position: relative;
  color: var(--primary);
  display: inline-block;
}

/* Decorative underline on accent word */
.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--gradient);
  border-radius: 3px;
  opacity: 0.5;
}

/* Subtext */
.hero-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 0 30px;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  justify-content: flex-start;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
}

.btn-hero-cta {
  padding: 16px 40px;
  font-size: 1rem;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 6px 24px rgba(234,88,12,0.35);
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-hero-cta:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 10px 36px rgba(234,88,12,0.45);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.35);
  padding: 14px 36px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.35s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.btn-hero-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

/* Trust line */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}

.hero-trust-avatars {
  display: flex;
}

.hero-trust-avatars span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.2);
  margin-left: -8px;
}

.hero-trust-avatars span:first-child {
  margin-left: 0;
}

.hero-trust-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

.hero-trust-text strong {
  color: rgba(255,255,255,0.9);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: heroScrollPulse 2s ease-in-out infinite;
}

@keyframes heroScrollPulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.4; height: 28px; }
}

.hero-scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   PLATFORM FEATURES – Dark icon grid
   ============================================================ */
.platform-features {
  background: var(--dark-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.platform-features::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(234,88,12,0.06) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.platform-features .section-tag {
  color: var(--primary);
}

.platform-features .section-heading {
  color: var(--white);
}

.platform-features .section-desc {
  color: rgba(255,255,255,0.55);
}

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

.pf-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 0.4s ease;
  text-align: center;
}

.pf-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(234,88,12,0.3);
  transform: translateY(-4px);
}

.pf-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(234,88,12,0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.pf-card h5 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.pf-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   ACTION BAR – Floating strip (ref1 "Book a Table" style)
   ============================================================ */
.action-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  padding: 0;
}

.action-bar-inner {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.action-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.action-item .action-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: rgba(234,88,12,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.action-item h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--text-dark);
}

.action-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  margin: 0;
  color: var(--text-muted);
}

.action-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ============================================================
   INTRO – Centered heading with decorative divider (ref2)
   ============================================================ */
.intro-section {
  background: var(--white);
  text-align: center;
}

.intro-section .section-heading {
  max-width: 700px;
  margin: 0 auto 20px;
}

/* ============================================================
   ABOUT / STORY – Image left, text right (ref1+ref2)
   ============================================================ */
/* ---------- Story section ---------- */
.story-section {
  background: #fff;
  padding: 80px 0;
}

/* Tag label */
.story-tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  padding-left: 32px;
}

.story-tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background: var(--primary);
}

/* Heading */
.story-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #333;
  line-height: 1.25;
  margin-bottom: 28px;
}

.story-heading-accent {
  color: var(--primary);
  position: relative;
}

.story-heading-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 3px;
  background: rgba(234, 88, 12, 0.2);
  border-radius: 2px;
}

/* Paragraphs */
.story-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #666;
  line-height: 1.85;
  margin-bottom: 20px;
}

.story-text:last-of-type {
  margin-bottom: 32px;
}

/* Image */
.story-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.1),
    0 4px 16px rgba(0, 0, 0, 0.05);
}

.story-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

/* Mini highlights */
.story-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.story-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #faf9f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 10px;
  padding: 10px 18px;
  transition: all 0.3s ease;
}

.story-highlight:hover {
  border-color: rgba(234, 88, 12, 0.25);
  box-shadow: 0 4px 16px rgba(234, 88, 12, 0.08);
}

.story-highlight i {
  color: var(--primary);
  font-size: 1.1rem;
}

.story-highlight span {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #333;
}

/* ============================================================
   DARK SHOWCASE – Full dark bg section (ref1 style)
   ============================================================ */

/* ============================================================
   HOW IT WORKS – Horizontal steps + gradient progress bar
   ============================================================ */
.hiw {
  background: #ffffff;
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hiw-hd {
  margin-bottom: 72px;
}

/* ---------- Track wrapper ---------- */
.hiw-track {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

/* ---------- Gradient progress bar (icon-center to icon-center) ---------- */
.hiw-bar {
  position: absolute;
  top: 100px;
  left: calc(16.66%);
  right: calc(16.66%);
  height: 3px;
  background: #ebe7e3;
  border-radius: 3px;
  z-index: 0;
  overflow: hidden;
}

.hiw-bar-fill {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #832165, #ea580c, #491345);
  background-size: 200% 100%;
  animation: hiwGradientMove 6s linear infinite;
}

@keyframes hiwGradientMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* ---------- Steps row ---------- */
.hiw-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

/* ---------- Individual step ---------- */
.hiw-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  opacity: 0.4;
  transition: opacity 0.45s ease;
}

.hiw-step.is-active,
.hiw-step.is-completed {
  opacity: 1;
}

/* ---------- Step number ---------- */
.hiw-num {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.hiw-step.is-active .hiw-num {
  opacity: 1;
}

/* ---------- Round icon ---------- */
.hiw-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gradient);
  margin-bottom: 28px;
  position: relative;
  transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}

.hiw-icon::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.4s ease;
}

.hiw-icon i {
  font-size: 1.75rem;
  color: #fff;
  line-height: 1;
  transition: color 0.4s ease;
}

/* Active state */
.hiw-step.is-active .hiw-icon {
  background: var(--gradient);
  transform: scale(1.15);
  box-shadow: 0 10px 32px rgba(131, 33, 101, 0.35);
}

.hiw-step.is-active .hiw-icon::after {
  border-color: rgba(131, 33, 101, 0.25);
}

.hiw-step.is-active .hiw-icon i {
  color: #fff;
}

/* Completed state */
.hiw-step.is-completed .hiw-icon {
  background: var(--gradient);
  box-shadow: 0 4px 16px rgba(131, 33, 101, 0.2);
}

.hiw-step.is-completed .hiw-icon::after {
  border-color: rgba(131, 33, 101, 0.15);
}

.hiw-step.is-completed .hiw-icon i {
  color: #fff;
}

/* Hover preview state (desktop only, set via JS) */
.hiw-step.is-hover-preview {
  opacity: 0.8;
}

.hiw-step.is-hover-preview .hiw-icon {
  background: var(--gradient);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(131, 33, 101, 0.25);
}

.hiw-step.is-hover-preview .hiw-icon::after {
  border-color: rgba(234, 88, 12, 0.12);
}

.hiw-step.is-hover-preview .hiw-icon i {
  color: #fff;
}

/* ---------- Step text ---------- */
.hiw-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.hiw-desc {
  font-size: 0.88rem;
  color: #999;
  line-height: 1.75;
  margin: 0 auto;
  max-width: 240px;
  transition: color 0.3s ease;
}

.hiw-step.is-active .hiw-desc,
.hiw-step.is-completed .hiw-desc {
  color: #666;
}

/* ---------- Tablet ---------- */
@media (max-width: 991.98px) {
  .hiw {
    padding: 80px 0;
  }

  .hiw-hd {
    margin-bottom: 56px;
  }

  .hiw-icon {
    width: 60px;
    height: 60px;
  }

  .hiw-icon i {
    font-size: 1.3rem;
  }

  .hiw-step {
    padding: 0 12px;
  }

  .hiw-desc {
    font-size: 0.82rem;
    max-width: 200px;
  }
}

/* ---------- Mobile: vertical stack ---------- */
@media (max-width: 767.98px) {
  .hiw-steps {
    flex-direction: column;
    align-items: center;
    gap: 44px;
  }

  .hiw-step {
    opacity: 1;
    padding: 0;
  }

  .hiw-bar {
    display: none;
  }

  .hiw-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
    background: var(--primary);
    transform: none;
    box-shadow: none;
  }

  .hiw-icon::after {
    display: none;
  }

  .hiw-icon i {
    font-size: 1.25rem;
    color: #fff;
  }

  .hiw-desc {
    color: #666;
    max-width: 320px;
  }

  .hiw-num {
    opacity: 1;
  }
}

@media (max-width: 575.98px) {
  .hiw-title {
    font-size: 1.08rem;
  }

  .hiw-desc {
    font-size: 0.84rem;
  }

  .hiw-icon {
    width: 48px;
    height: 48px;
  }

  .hiw-icon i {
    font-size: 1.1rem;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .hiw-icon,
  .hiw-icon::after,
  .hiw-step,
  .hiw-num,
  .hiw-bar-fill {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
   FEATURES – Grouped card grid layout
   ============================================================ */
#features {
  background: var(--off-white);
}

/* ---------- Features section ---------- */
.feat-section {
  background: #fff;
  padding: 80px 0;
}

.feat-block {
  margin-bottom: 80px;
}

.feat-block:last-child {
  margin-bottom: 0;
}

/* Image wrapper */
.feat-img-wrap {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.08),
    0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.feat-img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Label pill */
.feat-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(234, 88, 12, 0.08);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 18px;
}

.feat-label i {
  font-size: 0.9rem;
}

/* Title + subtitle */
.feat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.feat-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: #777;
  margin-bottom: 24px;
}

/* Bullet list */
.feat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feat-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feat-list li:last-child {
  border-bottom: none;
}

.feat-list li i {
  color: var(--primary);
  font-size: 1.05rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================================================
   GALLERY – Grid of feature previews (ref1 gallery style)
   ============================================================ */
.gallery-section {
  background: var(--white);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.span-2 {
  grid-column: span 2;
}

.gallery-item-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  transition: all 0.4s;
  position: relative;
}

.gallery-item-inner .gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
  backdrop-filter: blur(4px);
}

.gallery-item-inner .gallery-label {
  text-align: center;
}

.gallery-item-inner .gallery-label h6 {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0 0 2px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.gallery-item-inner .gallery-label span {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
}

.gallery-item:hover .gallery-item-inner {
  transform: scale(1.03);
}

/* ============================================================
   PRICING
   ============================================================ */
#pricing {
  background: var(--off-white);
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-ribbon {
  position: absolute;
  top: 22px;
  right: -32px;
  background: var(--primary);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 42px;
  transform: rotate(45deg);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-plan-name {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-plan-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-amount {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-amount .currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.pricing-amount .period {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
}

.pricing-features li i.bi-check2 {
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
}

.pricing-features li i.bi-x-lg {
  color: #d1d5db;
  font-size: 0.85rem;
}

.pricing-features li.disabled {
  color: #c5c5c5;
}

.pricing-card .btn-main,
.pricing-card .btn-main-outline {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS (ref2 style)
   ============================================================ */
#testimonials {
  background: var(--white);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  height: 100%;
  transition: all 0.3s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.testimonial-quote {
  font-size: 1.8rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 14px;
  font-family: Georgia, serif;
}

.testimonial-card .review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-info h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 2px;
}

.testimonial-info span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ============================================================
   STATS BAR – Horizontal numbers (ref2 awards style)
   ============================================================ */
.stats-bar {
  background: var(--off-white);
  padding: 56px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-block {
  text-align: center;
  padding: 10px 20px;
}

.stat-block h3 {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.stat-block p {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

/* ============================================================
   CTA BANNER – Full-width gradient (ref2 red banner)
   ============================================================ */
.cta-banner {
  background: var(--gradient);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  top: -300px;
  right: -200px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -200px;
  left: -100px;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 3.2rem;
  margin-bottom: 18px;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  font-family: 'Inter', sans-serif;
}

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

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: var(--white);
}

.contact-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  height: 100%;
}

.contact-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(234,88,12,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-card h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 4px;
}

.contact-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.contact-form-wrapper .form-control {
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  background: var(--off-white);
  transition: all 0.3s;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(234,88,12,0.08);
  background: var(--white);
}

.contact-form-wrapper .form-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-form-wrapper textarea {
  min-height: 130px;
  resize: vertical;
}

/* ============================================================
   FOOTER – Dark multi-column (ref1 style)
   ============================================================ */
.site-footer {
  background: var(--dark-bg);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.6);
}

.footer-brand-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-logo {
  height: 42px;
  filter: brightness(0) invert(1);
  margin-bottom: 18px;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  transition: all 0.3s;
}

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

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

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

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom p {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  cursor: pointer;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .hero-title { font-size: 3.4rem; }
  .hero-subtext { font-size: 1.1rem; margin: 0 auto 44px; }
  .hero-inner { padding: 130px 0 72px; text-align: center; max-width: 820px; margin: 0 auto; }
  .hero-cta-row { justify-content: center; }
  .hero-trust { justify-content: center; }
  .section-heading { font-size: 2.6rem; }
  .story-content { text-align: center; }
  .story-tag { margin-left: auto; margin-right: auto; }
  .story-highlights { justify-content: center; }
  .story-heading { font-size: 2.3rem; }
  .cta-banner h2 { font-size: 2.6rem; }

  .navbar .navbar-nav {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    gap: 2px;
  }

  .navbar .nav-pill-indicator {
    display: none;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px;
    border-radius: 16px;
    margin-top: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(0,0,0,0.06);
  }

  .navbar-collapse .nav-link {
    color: var(--text-dark) !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
  }

  .navbar-collapse .nav-link:hover {
    background: var(--off-white) !important;
    color: var(--text-dark) !important;
  }

  .navbar-collapse .nav-link.active {
    color: var(--white) !important;
    background: var(--gradient) !important;
  }

  .action-bar-inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 28px;
  }

  .action-divider { display: none; }
  .action-item { min-width: 45%; }


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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 160px);
  }

  .gallery-item.span-2 { grid-column: span 1; }

  section { padding: 64px 0; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.6rem; letter-spacing: -0.5px; }
  .hero-subtext { font-size: 1rem; }
  .hero-inner { padding: 120px 0 64px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .hero-cta-row a { width: 100%; max-width: 320px; justify-content: center; text-align: center; }
  .hero-trust { flex-direction: column; gap: 8px; }
  .hero-scroll-indicator { display: none; }
  .section-heading { font-size: 2.1rem; }
  .cta-banner h2 { font-size: 2.1rem; }


  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, 140px);
  }

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

  .pricing-card { padding: 32px 24px; }
  .contact-form-wrapper { padding: 30px 24px; }

  .stat-block h3 { font-size: 2rem; }
  .stats-bar { padding: 40px 0; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 2.2rem; }
  .hero-overline { font-size: 0.65rem; padding: 8px 16px; letter-spacing: 1.5px; }
  .navbar-brand img { height: 36px; }

  .action-item { min-width: 100%; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-grid .gallery-item { height: 160px; }

  .feat-title { font-size: 1.5rem; }
  .feat-block { margin-bottom: 60px; }
}


/* ============================================================
   INNER PAGE HERO BANNER – Modern Design
   ============================================================ */
.page-hero {
  position: relative;
  padding: 144px 0 56px;
  overflow: hidden;
  background-color: var(--dark-bg);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: inherit;
  z-index: 0;
}

/* Animated gradient mesh overlay */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(131,33,101,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(234,88,12,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 80%, rgba(73,19,69,0.3) 0%, transparent 60%);
  z-index: 1;
  animation: heroMeshShift 12s ease-in-out infinite alternate;
}

@keyframes heroMeshShift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* Floating decorative shapes */
.page-hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-shapes .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: #fff;
}

.page-hero-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -120px;
  right: -80px;
  animation: shapeFloat1 8s ease-in-out infinite alternate;
}

.page-hero-shapes .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -60px;
  left: 10%;
  animation: shapeFloat2 10s ease-in-out infinite alternate;
}

.page-hero-shapes .shape-3 {
  width: 120px;
  height: 120px;
  top: 30%;
  left: -30px;
  border-radius: 30%;
  transform: rotate(45deg);
  animation: shapeFloat3 6s ease-in-out infinite alternate;
}

@keyframes shapeFloat1 {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-20px, 30px) scale(1.08); }
}

@keyframes shapeFloat2 {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(15px, -20px); }
}

@keyframes shapeFloat3 {
  0%   { transform: rotate(45deg) translate(0, 0); }
  100% { transform: rotate(55deg) translate(10px, -10px); }
}

/* Glassmorphism accent line at bottom */
.page-hero-glass-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 30%, rgba(234,88,12,0.4) 50%, rgba(255,255,255,0.2) 70%, transparent 100%);
  z-index: 3;
}

/* Container */
.page-hero .container {
  position: relative;
  z-index: 2;
}

/* Tag pill */
.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,88,12,0.12);
  border: 1px solid rgba(234,88,12,0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50px;
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-hero-tag i {
  font-size: 0.9rem;
}

/* Title */
.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

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

/* Subtitle */
.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* Breadcrumb – glass pill */
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 10px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.page-breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.page-breadcrumb a:hover {
  color: var(--primary);
}

.page-breadcrumb .sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.7rem;
}

.page-breadcrumb .current {
  color: var(--primary);
  font-weight: 600;
}

/* Stats row under hero */
.page-hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.page-hero-stat {
  text-align: center;
}

.page-hero-stat h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.page-hero-stat span {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .page-hero-title { font-size: 3rem; }
  .page-hero-stats { gap: 32px; }
  .page-hero-stat h4 { font-size: 1.5rem; }
}

@media (max-width: 767.98px) {
  .page-hero { padding: 120px 0 44px; }
  .page-hero-title { font-size: 2.4rem; letter-spacing: -0.5px; }
  .page-hero-sub { font-size: 1rem; }
  .page-hero-stats { gap: 24px; flex-wrap: wrap; }
  .page-hero-stat h4 { font-size: 1.3rem; }
  .page-hero-shapes .shape-1 { width: 250px; height: 250px; }
  .page-hero-shapes .shape-3 { display: none; }
}


/* ============================================================
   FEATURES PAGE
   ============================================================ */

/* Features page hero bg */
.page-features .page-hero {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.72) 50%, rgba(131,33,101,0.45) 100%),
    url('../images/feature-banner.webp') center center / cover no-repeat;
}

/* Feature icon grid */
.feat-grid-section {
  padding: 100px 0;
  background: #fff;
}

.feat-icon-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.feat-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  border-color: rgba(234,88,12,0.2);
}

.feat-icon-card .fic-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(234,88,12,0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.feat-icon-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.feat-icon-card p {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* ========== ADMIN COMPARE ========== */
.admin-compare {
  padding: 80px 0;
  background: #fff;
}

.admin-compare .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234,88,12,0.08);
  color: #ea580c;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.admin-compare .section-label i {
  font-size: 0.85rem;
}

.admin-compare .compare-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 14px;
  line-height: 1.2;
}

.admin-compare .compare-heading .accent {
  color: #ea580c;
}

.admin-compare .compare-desc {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.admin-card {
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
  transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2px;
}

.admin-card.super {
  background: linear-gradient(135deg, #832165, #ea580c);
}

.admin-card.restaurant {
  background: linear-gradient(135deg, #ea580c, #f97316, #fbbf24);
}

.admin-card-inner {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.admin-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1), 0 8px 20px rgba(234,88,12,0.06);
  padding: 2.5px;
}

.admin-card-image {
  position: relative;
  margin: 14px 14px 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #832165, #491345);
}

.admin-card.restaurant .admin-card-image {
  background: linear-gradient(135deg, #ea580c, #f97316);
}

.admin-card.super .admin-card-image {
  box-shadow: 0 4px 20px rgba(131,33,101,0.15);
}

.admin-card.restaurant .admin-card-image {
  box-shadow: 0 4px 20px rgba(234,88,12,0.1);
}

.admin-card-image img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.admin-card:hover .admin-card-image img {
  transform: scale(1.03);
}

.admin-card:hover .admin-card-image {
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.admin-card-body {
  padding: 24px 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.admin-card-body .admin-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.admin-card:hover .admin-icon {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

.admin-card.super .admin-icon {
  background: linear-gradient(135deg, #832165, #491345);
  color: #fff;
}

.admin-card.restaurant .admin-icon {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
}

.admin-card-body h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 6px;
}

.admin-card-body .admin-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.6;
}

.admin-card-body .admin-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(0,0,0,0.06), rgba(0,0,0,0.02));
  margin-bottom: 20px;
}

.admin-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.admin-feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #444;
  border-radius: 10px;
  transition: background 0.3s ease;
}

.admin-feature-list li:hover {
  background: rgba(234,88,12,0.04);
}

.admin-feature-list li + li {
  margin-top: 2px;
}

.admin-feature-list li .check-wrap {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-card.super .admin-feature-list li .check-wrap {
  background: rgba(131,33,101,0.08);
}

.admin-card.restaurant .admin-feature-list li .check-wrap {
  background: rgba(234,88,12,0.08);
}

.admin-card.super .admin-feature-list li .check-wrap i {
  color: #832165;
  font-size: 0.8rem;
}

.admin-card.restaurant .admin-feature-list li .check-wrap i {
  color: #ea580c;
  font-size: 0.8rem;
}

@media (max-width: 991px) {
  .admin-compare .compare-heading {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .admin-compare {
    padding: 70px 0;
  }
  .admin-compare .compare-heading {
    font-size: 1.7rem;
  }
  .admin-compare .compare-desc {
    font-size: 0.95rem;
    margin-bottom: 40px;
  }
  .admin-card-image {
    margin: 12px 12px 0;
  }
  .admin-card-body {
    padding: 20px 22px 32px;
  }
  .admin-feature-list li {
    padding: 10px 8px;
  }
}


/* ============================================================
   PRICING PAGE
   ============================================================ */

/* Pricing page hero bg */
.page-pricing .page-hero {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.7) 50%, rgba(73,19,69,0.5) 100%),
    url('../images/pricing-banner.webp') center center / cover no-repeat;
}

/* Pricing Page Section */
.pricing-page-section {
  padding: 80px 0 90px;
  background: linear-gradient(180deg, #fff 0%, var(--off-white) 100%);
  position: relative;
}

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

.pricing-header .section-heading {
  margin-bottom: 12px;
}

.pricing-header .section-desc {
  margin: 0 auto;
}

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 50px;
  padding: 8px 24px;
  margin-top: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.billing-toggle span {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #aaa;
  transition: color 0.3s;
}

.billing-toggle .form-check-input {
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.billing-toggle .form-check-input:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.billing-toggle .save-badge {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--primary), #f97316);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
}

/* Pricing Cards */
.pricing-card-v2 {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--border);
  transition: background 0.4s ease;
}

.pricing-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: transparent;
}

.pricing-card-v2:hover::before {
  background: linear-gradient(135deg, var(--secondary-1), var(--secondary-2));
}

/* Featured (gradient) card */
.pricing-card-v2.featured {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 24px 64px rgba(131,33,101,0.25);
  transform: scale(1.04);
  overflow: hidden;
}

.pricing-card-v2.featured::before {
  display: none;
}

.pricing-card-v2.featured::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.pricing-card-v2.featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 28px 72px rgba(131,33,101,0.3);
}

.pricing-card-v2.featured .plan-name,
.pricing-card-v2.featured .plan-price,
.pricing-card-v2.featured .plan-price .currency {
  color: #fff;
}

.pricing-card-v2.featured .plan-desc {
  color: rgba(255,255,255,0.7);
}

.pricing-card-v2.featured .plan-divider {
  background: rgba(255,255,255,0.15);
}

.pricing-card-v2.featured .plan-feature {
  color: rgba(255,255,255,0.85);
}

.pricing-card-v2.featured .plan-feature i.bi-check-circle-fill {
  color: #fff;
}

.pricing-card-v2.featured .plan-feature i.bi-x-circle {
  color: rgba(255,255,255,0.3);
}

.pricing-card-v2.featured .plan-feature.disabled {
  color: rgba(255,255,255,0.35);
}

.pricing-card-v2.featured .plan-period {
  color: rgba(255,255,255,0.6);
}

.pricing-card-v2.featured .btn-main {
  background: #fff;
  color: var(--secondary-1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.pricing-card-v2.featured .btn-main:hover {
  background: var(--off-white);
  color: var(--secondary-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

/* Popular badge */
.popular-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

/* Plan icon */
.plan-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.plan-icon.starter {
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
}

.plan-icon.pro {
  background: rgba(234,88,12,0.12);
  color: var(--primary);
}

.plan-icon.enterprise {
  background: rgba(131,33,101,0.1);
  color: var(--secondary-1);
}

.pricing-card-v2.featured .plan-icon.pro {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

/* Plan name */
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.plan-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Price */
.plan-price {
  font-family: 'Outfit', sans-serif;
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.plan-price .currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-muted);
}

.plan-period {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

/* Plan divider */
.plan-divider {
  width: 100%;
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin-bottom: 28px;
}

/* Plan features list */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex-grow: 1;
}

.plan-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-body);
}

.plan-feature i.bi-check-circle-fill {
  color: #22c55e;
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-feature i.bi-x-circle {
  color: #d1d5db;
  font-size: 1rem;
  flex-shrink: 0;
}

.plan-feature.disabled {
  color: #c5c5c5;
}

/* Pricing CTA button */
.pricing-card-v2 .btn {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 14px 28px;
}

.pricing-card-v2.featured .btn-main {
  box-shadow: 0 8px 28px rgba(234,88,12,0.35);
}

/* Trust strip */
.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-trust-item i {
  font-size: 1.3rem;
  color: var(--primary);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-item {
  background: var(--off-white);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 16px;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(234,88,12,0.15);
  box-shadow: 0 4px 20px rgba(234,88,12,0.06);
}

.faq-item h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h5::before {
  content: '\F270';
  font-family: 'bootstrap-icons';
  color: var(--primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  padding-left: 30px;
}

@media (max-width: 991.98px) {
  .pricing-card-v2.featured {
    transform: scale(1);
  }
  .pricing-card-v2.featured:hover {
    transform: translateY(-8px);
  }
  .pricing-trust { gap: 24px; flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 767.98px) {
  .pricing-card-v2 { padding: 32px 24px; }
  .plan-price { font-size: 2.8rem; }
  .pricing-trust { flex-direction: column; align-items: center; gap: 16px; }
}


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* Contact page hero bg */
.page-contact .page-hero {
  background:
    linear-gradient(160deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.7) 50%, rgba(73,19,69,0.5) 100%),
    url('../images/contact-banner.webp') center center / cover no-repeat;
}

/* Contact page section */
.contact-page-section {
  padding: 80px 0;
  background: #fff;
}

/* Contact heading override */
.contact-page-section .section-heading {
  font-size: 2.2rem;
}

/* Map section */
.map-section {
  padding: 0;
  background: var(--off-white);
}

.map-section iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* Contact form button */
.contact-submit-btn {
  justify-content: center;
}

/* CTA container z-index */
.cta-container-rel {
  position: relative;
  z-index: 1;
}

/* Hero trust avatar colors */
.hero-trust-avatar-1 { background: #ea580c; }
.hero-trust-avatar-2 { background: #832165; }
.hero-trust-avatar-3 { background: #491345; }
.hero-trust-avatar-4 { background: #c2410c; }

@media (max-width: 767.98px) {
  .map-section iframe { height: 300px; }
}
