/* ==========================================================================
   POTLAM.COM - MODERN DESIGN SYSTEM & UI REVAMP
   Theme: Royal Blue Modern Tech & SaaS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Color Palette */
  --primary-rgb: 10, 77, 178;
  --primary: #0a4db2;
  --primary-dark: #07357c;
  --primary-deep: #052453;
  --primary-light: #2563eb;
  --primary-soft: #eff6ff;
  
  --accent-cyan: #00b4d8;
  --accent-cyan-rgb: 0, 180, 216;
  --accent-cyan-light: #e0f2fe;
  
  --accent-amber: #f59e0b;
  --accent-amber-light: #fef3c7;
  --accent-emerald: #10b981;
  --accent-emerald-light: #d1fae5;
  --accent-rose: #ef4444;
  --accent-rose-light: #fee2e2;

  /* Surfaces & Backgrounds */
  --bg-main: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-dark-hero: #07152b;
  --bg-dark-card: #0c2040;
  --bg-footer: #051326;

  /* Text Colors */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-light: #e2e8f0;
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-card-hover: rgba(10, 77, 178, 0.25);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 12px -1px rgba(10, 77, 178, 0.08), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 28px -4px rgba(10, 77, 178, 0.12), 0 4px 10px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px -8px rgba(10, 77, 178, 0.18);
  --shadow-glow: 0 0 24px rgba(0, 180, 216, 0.35);

  /* Transitions */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

html {
  scroll-behavior: smooth;
}

#pricing {
  scroll-margin-top: 90px;
}

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

body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--text-dark);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 0;
  text-transform: none !important;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-fast);
}
a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* ==========================================================================
   NAVIGATION BAR (MODERN GLASS NAVBAR)
   ========================================================================== */
.potlam-navbar {
  background: rgba(7, 21, 43, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem 1.5rem;
  transition: var(--transition-smooth);
  z-index: 1050;
}

.potlam-navbar.scrolled {
  background: rgba(7, 21, 43, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  padding: 0.65rem 1.5rem;
}

.potlam-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none !important;
}

.potlam-brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.potlam-brand:hover img {
  transform: scale(1.03);
}

.potlam-nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.potlam-nav-link:hover,
.potlam-nav-link.active {
  color: #ffffff !important;
}

.potlam-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--primary-light));
  border-radius: 4px;
}

.navbar-actions-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta-btn {
  background: linear-gradient(135deg, #0a4db2 0%, #00b4d8 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.35);
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
  color: #ffffff !important;
}

.nav-cta-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-right: 10px;
}

.nav-cta-outline:hover {
  border-color: var(--accent-cyan);
  background: rgba(0, 180, 216, 0.1);
  color: var(--accent-cyan) !important;
}

/* ==========================================================================
   HERO BANNER & CAROUSEL
   ========================================================================== */
.hero-wrapper {
  background: radial-gradient(circle at 80% 20%, #0e2a56 0%, #07152b 70%);
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 70px;
  color: #ffffff;
}

.hero-wrapper::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.18) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(10, 77, 178, 0.25) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  color: var(--accent-cyan);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, #38bdf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.hero-desc {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 580px;
  text-align: justify;
  text-justify: inter-word;
}

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

/* Modern SaaS Hero Mockup Frame & Slider */
.hero-mockup-frame {
  position: relative;
  background: rgba(12, 32, 64, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 35px rgba(0, 180, 216, 0.25);
  overflow: hidden;
  padding: 12px 14px 14px;
}

.mockup-window-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 6px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-address-bar {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 0.78rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-screen-area {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: #06152b;
}

.hero-slide-item {
  height: 380px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at center, #0f2c5e 0%, #06152b 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.hero-slide-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.hero-slide-item:hover img {
  transform: scale(1.02);
}

.hero-mockup-frame .carousel-indicators {
  bottom: 8px;
  margin-bottom: 0;
  z-index: 15;
}

.hero-mockup-frame .carousel-indicators li {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.45);
  border: none;
}

.hero-mockup-frame .carousel-indicators .active {
  width: 22px;
  border-radius: 4px;
  background-color: var(--accent-cyan);
}

.hero-mockup-frame .carousel-control-prev,
.hero-mockup-frame .carousel-control-next {
  width: 38px;
  height: 38px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(7, 21, 43, 0.75);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0.85;
  transition: var(--transition-fast);
  margin: 0 10px;
  z-index: 15;
}

.hero-mockup-frame .carousel-control-prev:hover,
.hero-mockup-frame .carousel-control-next:hover {
  background: var(--primary);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.4);
}

.hero-mockup-frame .carousel-control-prev-icon,
.hero-mockup-frame .carousel-control-next-icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   PAGE BANNER (INNER PAGES)
   ========================================================================== */
.page-hero-banner {
  background: radial-gradient(circle at 75% 30%, #0d2a58 0%, #07152b 75%);
  padding: 125px 0 55px;
  position: relative;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-banner h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: #94a3b8;
}

.page-hero-breadcrumb a {
  color: var(--accent-cyan);
  text-decoration: none;
}
.page-hero-breadcrumb a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   SECTION HEADERS & MODERN CARDS
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
}

.section-title b,
.section-title strong {
  color: var(--primary);
  font-family: inherit !important;
}

.about-story-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.85;
  text-align: justify;
  text-justify: inter-word;
}

.about-story-text p {
  margin-bottom: 1.25rem;
  text-align: justify;
}

.about-story-text strong {
  color: var(--primary-dark);
}

.about-story-text a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.about-story-text a:hover {
  color: var(--accent-cyan);
}

.legal-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-body);
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0.75rem auto 0;
}

/* Modern Card System */
.potlam-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 2rem 1.5rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  height: 100%;
  width: 100%;
}

.potlam-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.potlam-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 0;
}

.potlam-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-card-hover);
}

.contact-info-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.contact-info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 77, 178, 0.25);
}

/* What We Include Equal Height Cards */
.include-feature-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 100%;
  min-height: 84px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.include-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 77, 178, 0.25);
}

.include-feature-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.include-feature-card:hover .include-feature-icon {
  background: var(--primary);
  color: #ffffff;
}

.include-feature-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Feature Icon Card */
.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 77, 178, 0.2);
}

.feature-icon-wrapper {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-cyan) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 16px rgba(10, 77, 178, 0.25);
}

.feature-box-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text-dark);
}

.feature-box-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==========================================================================
   OUR RESTAURANTS SHOWCASE
   ========================================================================== */
.restaurant-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.restaurant-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 77, 178, 0.25);
}

.restaurant-card-img-wrap {
  position: relative;
  height: 190px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 1rem;
}

.restaurant-card-img-wrap img {
  max-height: 140px;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.restaurant-card:hover .restaurant-card-img-wrap img {
  transform: scale(1.06);
}

.restaurant-card-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.restaurant-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.restaurant-card-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.restaurant-card-desc * {
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
}

.restaurant-card-desc p {
  margin-bottom: 0.25rem;
}

.restaurant-card-desc p:last-child {
  margin-bottom: 0;
}

.restaurant-card-btn {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  text-align: center;
  border: 1px solid rgba(10, 77, 178, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.restaurant-card-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  height: 100%;
}

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

.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 28px;
  right: -38px;
  width: 160px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 24px;
  text-transform: uppercase;
  transform: rotate(45deg);
  transform-origin: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  pointer-events: none;
  z-index: 2;
}

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

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin: 1.25rem 0;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.75rem 0 2.25rem;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--text-body);
  margin-bottom: 1.1rem;
  line-height: 1.4;
  min-height: 44px;
}

/* Feature Checkbox Status Icons */
.feature-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.75rem;
}

.feature-check.available {
  background: #ecfdf5;
  color: #059669;
  border: 1.5px solid #a7f3d0;
}

.feature-check.unavailable {
  background: #f1f5f9;
  color: #94a3b8;
  border: 1.5px solid #e2e8f0;
}

.feature-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.feature-title {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.feature-subtext {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.pricing-features li.unavailable .feature-title {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #cbd5e1;
}

.pricing-features li.unavailable .feature-subtext {
  color: #a0aec0;
}

.pricing-features li .badge-status {
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 6px;
  font-weight: 600;
  margin-left: auto;
  min-width: 86px;
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.badge-status.badge-included {
  background: #ecfdf5;
  color: #059669;
}

.badge-status.badge-excluded {
  background: #f1f5f9;
  color: #64748b;
}

/* ==========================================================================
   STATS COUNTER BAR (GLOWING BLUE GLASS)
   ========================================================================== */
.stats-bar-wrapper {
  background: linear-gradient(135deg, #071936 0%, #0a316c 50%, #071936 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-xl), 0 0 35px rgba(10, 77, 178, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   ADVANTAGE GRID
   ========================================================================== */
.advantage-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  height: 100%;
  display: flex;
  gap: 16px;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 77, 178, 0.25);
}

.advantage-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.advantage-card:hover .advantage-icon {
  background: var(--primary);
  color: #ffffff;
}

.advantage-content p {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0;
  line-height: 1.5;
}

/* ==========================================================================
   FORMS & INPUTS (Sleek Modern UI)
   ========================================================================== */
.potlam-form-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  display: block;
}

.potlam-input,
.form-control {
  height: 48px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  padding: 0.6rem 1rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition-fast);
  background-color: #f8fafc;
}

textarea.potlam-input,
textarea.form-control {
  height: auto;
  min-height: 120px;
}

.potlam-input:focus,
.form-control:focus {
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(10, 77, 178, 0.12);
  outline: none;
}

.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.85rem;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 4px 14px rgba(10, 77, 178, 0.3);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(10, 77, 178, 0.45);
  color: #ffffff !important;
}

.btn-secondary-custom {
  background: #ffffff;
  color: var(--primary) !important;
  border: 1.5px solid var(--primary);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-secondary-custom:hover {
  background: var(--primary-soft);
  transform: translateY(-2px);
}

.btn-sms-trigger {
  background: var(--accent-cyan);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  border: none;
  padding: 0 1.25rem;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.btn-sms-trigger:hover {
  background: #0096b7;
  color: #ffffff;
}

/* ==========================================================================
   FOOTER (EXECUTIVE DARK NAVY)
   ========================================================================== */
.potlam-footer {
  background: var(--bg-footer);
  color: #cbd5e1;
  padding: 4.5rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-brand img {
  height: 45px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2.5px;
  background: var(--accent-cyan);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.92rem;
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.footer-contact-item i {
  color: var(--accent-cyan);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  background: #020b18;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  margin-top: 3.5rem;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-bottom a {
  color: #94a3b8;
}
.footer-bottom a:hover {
  color: #ffffff;
}

/* Floating Action Dock */
.floating-demo-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  animation: floatBounce 3s ease-in-out infinite;
}

.floating-demo-btn {
  background: linear-gradient(135deg, #0a4db2 0%, #00b4d8 100%);
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.65rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.floating-demo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 180, 216, 0.6);
  color: #ffffff !important;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ==========================================================================
   RESPONSIVE UTILITIES & TWEAKS
   ========================================================================== */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(7, 21, 43, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  }

  .navbar-nav .nav-item {
    margin-bottom: 0.35rem;
  }

  .navbar-actions-group {
    flex-direction: column !important;
    align-items: stretch !important;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    gap: 12px !important;
  }

  .navbar-actions-group .nav-cta-outline {
    width: 100%;
    margin-right: 0 !important;
    margin-bottom: 10px;
    padding: 0.65rem 1.25rem;
    text-align: center;
  }

  .navbar-actions-group .nav-cta-btn {
    width: 100%;
    margin-bottom: 0;
    padding: 0.65rem 1.25rem;
    text-align: center;
  }

  .hero-title { font-size: 2.5rem; }
  .hero-card-slider .carousel-item { height: 320px; }
  .stats-bar-wrapper { padding: 2rem 1rem; }
  .stat-number { font-size: 2.25rem; }
  .stat-item:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.08); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
}

@media (max-width: 767.98px) {
  .hero-title { font-size: 2.1rem; }
  .section-title { font-size: 1.85rem; }
  .potlam-form-card { padding: 1.5rem; }
  .hero-wrapper { padding-top: 85px; }
  .page-hero-banner { padding: 100px 0 40px; }
  .page-hero-banner h1 { font-size: 2.1rem; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS (SMOOTH & SYNCHRONIZED)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ==========================================================================
   MODERN CUSTOM TOAST & ALERT SYSTEM
   ========================================================================== */
.potlam-toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 420px;
  width: calc(100% - 48px);
}

.potlam-toast {
  pointer-events: auto;
  background: rgba(7, 21, 43, 0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #ffffff;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 180, 216, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  position: relative;
  overflow: hidden;
}

.potlam-toast.show {
  transform: translateX(0);
  opacity: 1;
}

.potlam-toast-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.potlam-toast.success .potlam-toast-icon {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.potlam-toast.error .potlam-toast-icon {
  background: rgba(239, 68, 68, 0.2);
  color: #f87171;
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.potlam-toast.info .potlam-toast-icon,
.potlam-toast.warning .potlam-toast-icon {
  background: rgba(0, 180, 216, 0.2);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.potlam-toast-body {
  flex-grow: 1;
}

.potlam-toast-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #ffffff;
}

.potlam-toast-message {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.4;
}

.potlam-toast-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}

.potlam-toast-close:hover {
  color: #ffffff;
}

.potlam-toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--primary));
  width: 100%;
  animation: toastProgress 4.5s linear forwards;
}

@keyframes toastProgress {
  0% { width: 100%; }
  100% { width: 0%; }
}

/* ==========================================================================
   OPEN-SOURCE "I'M NOT A ROBOT" VERIFICATION WIDGET
   ========================================================================== */
.potlam-captcha-widget {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  width: 100%;
  max-width: 330px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: var(--transition-fast);
}

.potlam-captcha-widget:hover {
  border-color: #94a3b8;
  background: #ffffff;
}

.captcha-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.captcha-box {
  width: 28px;
  height: 28px;
  border: 2px solid #94a3b8;
  border-radius: 4px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s ease;
}

.captcha-checkbox-wrap:hover .captcha-box {
  border-color: var(--primary);
}

.captcha-check-icon {
  color: #10b981;
  font-size: 1.15rem;
  display: none;
}

.captcha-spinner {
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(10, 77, 178, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: captchaSpin 0.7s linear infinite;
  display: none;
}

@keyframes captchaSpin {
  to { transform: rotate(360deg); }
}

.potlam-captcha-widget.verifying .captcha-box {
  border-color: var(--primary);
}

.potlam-captcha-widget.verifying .captcha-spinner {
  display: block;
}

.potlam-captcha-widget.verified {
  border-color: rgba(16, 185, 129, 0.5);
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12);
}

.potlam-captcha-widget.verified .captcha-box {
  border-color: #10b981;
  background: #ecfdf5;
}

.potlam-captcha-widget.verified .captcha-check-icon {
  display: block;
}

.captcha-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.captcha-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.65rem;
  color: #94a3b8;
  border-left: 1px solid #e2e8f0;
  padding-left: 12px;
  line-height: 1.2;
}

.captcha-brand {
  font-weight: 800;
  color: var(--primary);
  font-size: 0.72rem;
  letter-spacing: -0.01em;
}


