html,
body {
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   Propleadz - Main Stylesheet
   Brand Colors: Blue #225fad, Teal #00b1a1, 
   Gold #fab519, Dark Blue #284c71
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables (Light Theme) ---------- */
:root {
  /* Brand */
  --primary: #225fad;
  --primary-rgb: 34, 95, 173;
  --primary-dark: #1a4a88;
  --primary-light: #3a7bd5;
  --teal: #00b1a1;
  --teal-rgb: 0, 177, 161;
  --teal-dark: #009688;
  --teal-light: #26c6b8;
  --gold: #fab519;
  --gold-rgb: 250, 181, 25;
  --gold-dark: #e5a00e;
  --dark-blue: #284c71;
  --dark-blue-rgb: 40, 76, 113;

  /* Surfaces */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f0f4f8;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-glass: rgba(255, 255, 255, 0.7);
  --bg-hero: linear-gradient(135deg, #225fad 0%, #1a4a88 40%, #284c71 100%);

  /* Text */
  --text-primary: #1a1a2e;
  --text-secondary: #4a5568;
  --text-muted: #718096;
  --text-light: #a0aec0;
  --text-inverse: #ffffff;

  /* Borders / Shadows */
  --border-color: #e2e8f0;
  --border-light: #edf2f7;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px rgba(34, 95, 173, 0.15);

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Navbar */
  --navbar-bg: rgba(255, 255, 255, 0.92);
  --navbar-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* ---------- Dark Theme ---------- */
[data-theme="dark"] {
  --bg-primary: #0f1724;
  --bg-secondary: #151f30;
  --bg-tertiary: #1b2740;
  --bg-card: #1b2740;
  --bg-card-hover: #22304d;
  --bg-glass: rgba(15, 23, 36, 0.85);
  --bg-hero: linear-gradient(135deg, #0f1724 0%, #151f30 40%, #1b2740 100%);

  --text-primary: #e8ecf4;
  --text-secondary: #b0bec5;
  --text-muted: #78909c;
  --text-light: #546e7a;

  --border-color: #2a3a54;
  --border-light: #1e2d45;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(0, 177, 161, 0.15);

  --navbar-bg: rgba(15, 23, 36, 0.95);
  --navbar-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: var(--transition);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--teal);
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ---------- Utility ---------- */
.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .badge-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(0, 177, 161, 0.1);
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

[data-theme="dark"] .section-title .badge-label {
  background: rgba(0, 177, 161, 0.15);
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="dark"] .section-title h2 {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.section-title p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  text-decoration: none;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  color: #fff;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-teal-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(var(--teal-rgb), 0.3);
  text-decoration: none;
}

.btn-teal-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--teal-rgb), 0.4);
  color: #fff;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.gold-accent {
  color: var(--gold);
}

/* ---------- NAVBAR ---------- */
.navbar-main {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--navbar-shadow);
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1050;
  transition: var(--transition);
}

.navbar-main .navbar-brand img {
  height: 42px;
  transition: var(--transition);
}

/* Dual logo: light/dark */
.navbar-main .navbar-brand .logo-dark {
  display: none;
}

[data-theme="dark"] .navbar-main .navbar-brand .logo-light {
  display: none;
}

[data-theme="dark"] .navbar-main .navbar-brand .logo-dark {
  display: inline-block;
}

/* Feature category block */
.feature-category-block {
  margin-bottom: 20px;
}

.navbar-main .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb), 0.06);
}

.navbar-main .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1.2rem;
  transition: var(--transition);
  margin-right: 10px;
}

.theme-toggle:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.2);
}

.theme-toggle .fa-moon {
  display: inline;
}

.theme-toggle .fa-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .fa-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .fa-sun {
  display: inline;
}

/* Login Button */
.btn-login {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 0.9rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  border: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-decoration: none;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.35);
  color: #fff;
}

/* ---------- HERO ---------- */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(30px, -30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: 3.6rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--gold) 0%, #ffd54f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-buttons .btn-hero-primary {
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-blue);
  background: linear-gradient(135deg, var(--gold) 0%, #ffd54f 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px rgba(var(--gold-rgb), 0.35);
  text-decoration: none;
}

.hero-buttons .btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(var(--gold-rgb), 0.5);
  color: var(--dark-blue);
}

.hero-buttons .btn-hero-outline {
  padding: 15px 34px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.hero-buttons .btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Animated shapes in hero */
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 1;
}

.hero-shape-1 {
  width: 120px;
  height: 120px;
  background: var(--teal);
  top: 20%;
  right: 5%;
  animation: pulse 4s ease-in-out infinite;
}

.hero-shape-2 {
  width: 80px;
  height: 80px;
  background: var(--gold);
  bottom: 20%;
  right: 15%;
  animation: pulse 5s ease-in-out infinite 1s;
}

.hero-shape-3 {
  width: 60px;
  height: 60px;
  background: #fff;
  top: 40%;
  left: 50%;
  animation: pulse 6s ease-in-out infinite 2s;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.25;
  }
}

/* ---------- STATS COUNTER ---------- */
.stats-section {
  padding: 60px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

.stat-card:last-child::after {
  display: none;
}

.stat-card .stat-icon {
  font-size: 2rem;
  color: var(--teal);
  margin-bottom: 12px;
}

.stat-card .stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

[data-theme="dark"] .stat-card .stat-number {
  color: var(--primary-light);
}

.stat-card .stat-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 4px;
}

/* ---------- ABOUT CRM ---------- */
.about-section {
  background: var(--bg-primary);
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.about-card .icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.about-card .icon-wrap.blue {
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
}

.about-card .icon-wrap.teal {
  background: rgba(var(--teal-rgb), 0.1);
  color: var(--teal);
}

.about-card .icon-wrap.gold {
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
}

.about-card:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.about-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- FEATURES (TeleCRM Style) ---------- */
.features-section {
  background: var(--bg-secondary);
}

.features-category-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border-light);
}

.feature-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}

.feature-tag i {
  font-size: 0.95rem;
  opacity: 0.7;
}

.feature-tag .tag-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}

.feature-tag:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-tag.active {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 2px 10px rgba(var(--primary-rgb), 0.15);
}

/* Feature Detail Panel */
.feature-detail-panel {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  display: none;
  opacity: 0;
  transform: scale(0.95);
  position: relative;
  overflow: hidden;
}

.feature-detail-panel.active {
  display: block;
  animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.feature-detail-panel.closing {
  display: block;
  animation: zoomOut 0.3s ease-in forwards;
}

.feature-detail-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--teal), var(--gold));
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
}

.feature-detail-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-detail-panel h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.feature-detail-panel .feature-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.feature-detail-panel .feature-points {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.feature-detail-panel .feature-points li {
  padding: 8px 0;
  font-size: 1rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-detail-panel .feature-points li i {
  color: var(--teal);
  font-size: 0.9rem;
  margin-top: 5px;
  flex-shrink: 0;
}

.feature-detail-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-height: 400px;
  object-fit: contain;
}

.btn-request-demo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  text-decoration: none;
}

.btn-request-demo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
  color: #fff;
}

/* ---------- PRICING ---------- */
.pricing-section {
  background: var(--bg-primary);
}

.pricing-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
}

.pricing-card .plan-badge {
  display: inline-block;
  padding: 4px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 50px;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  margin-bottom: 16px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing-card .price {
  margin-bottom: 24px;
}

.pricing-card .price .amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
}

.pricing-card .price .period {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
  text-align: left;
  flex-grow: 1;
}

.pricing-card .features-list li {
  padding: 10px 0;
  font-size: 0.93rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card .features-list li:last-child {
  border-bottom: none;
}

.pricing-card .features-list li i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-card .btn-pricing {
  display: block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.pricing-card .btn-pricing:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.3);
}

.pricing-card.featured .btn-pricing {
  background: linear-gradient(135deg, var(--gold) 0%, #ffd54f 100%);
  border-color: var(--gold);
  color: var(--dark-blue);
}

.pricing-card.featured .btn-pricing:hover {
  box-shadow: 0 6px 20px rgba(var(--gold-rgb), 0.4);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--bg-secondary);
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--teal);
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-card .client-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.testimonial-card .client-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Swiper custom */
.swiper-pagination-bullet {
  background: var(--primary) !important;
  width: 10px !important;
  height: 10px !important;
}

.swiper-pagination-bullet-active {
  width: 28px !important;
  border-radius: 5px !important;
}

/* ---------- TEAM ---------- */
.team-section {
  background: var(--bg-primary);
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.team-card .team-photo-wrap {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--teal-rgb), 0.1));
}

.team-card .team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.team-card:hover .team-photo-wrap img {
  transform: scale(1.05);
}

.team-card .team-photo-wrap .social-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

.team-card:hover .social-overlay {
  opacity: 1;
  transform: translateY(0);
}

.social-overlay a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--transition);
}

.social-overlay a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.team-card .team-info {
  padding: 24px 20px;
}

.team-card .team-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .team-info span {
  font-size: 0.85rem;
  color: var(--teal);
  font-weight: 500;
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--bg-secondary);
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  color: #fff;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.contact-info-card>p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.contact-detail .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}

.contact-detail p,
.contact-detail a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.contact-detail a:hover {
  color: var(--gold);
}

.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.contact-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--teal);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
}

.form-floating .form-control,
.form-floating .form-select {
  background: var(--bg-secondary);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
  background: var(--bg-card);
}

.form-floating label {
  color: var(--text-muted);
}

/* ---------- FOOTER ---------- */
.footer-section {
  background: var(--dark-blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

[data-theme="dark"] .footer-section {
  background: #0a1018;
}

.footer-section h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
  z-index: 999;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.4);
}

/* ---------- PRELOADER ---------- */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--border-color);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark-blue) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--teal-rgb), 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  -webkit-text-fill-color: #fff;
}

.cta-section p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto 30px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 991px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 2.6rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .hero-image {
    margin-top: 40px;
    text-align: center;
  }

  .stat-card::after {
    display: none;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .contact-info-card {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .hero-section {
    text-align: center;
    padding-top: 100px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    margin: 0 auto 30px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .feature-detail-panel {
    padding: 30px 20px;
  }

  .pricing-card {
    padding: 30px 24px;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 24px;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .stat-card .stat-number {
    font-size: 2.2rem;
  }
}

@media (max-width: 575px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .feature-tag {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .pricing-card .price .amount {
    font-size: 2.2rem;
  }

  .navbar-main .navbar-brand img {
    height: 34px;
  }
}

/* ---------- Navbar toggler for mobile ---------- */
.navbar-toggler {
  border: 1.5px solid var(--border-color);
  padding: 6px 10px;
}

.navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 10px;
    box-shadow: var(--shadow-lg);
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .nav-actions {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    gap: 10px;
  }
}

/* PRIME / Featured Card (Enterprise) */
.pricing-card.prime-card {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  border: 2px solid var(--gold);
  color: #fff;
}

.pricing-card.prime-card h3 {
  color: #fff;
}

.pricing-card.prime-card .price .amount {
  color: #fff;
}

.pricing-card.prime-card .price .period {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.prime-card .price {
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.prime-card .features-list li {
  color: rgba(255, 255, 255, 0.85);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.prime-card .features-list li i {
  color: var(--gold);
}

.pricing-card.prime-card .btn-pricing {
  background: linear-gradient(135deg, var(--gold), #e6a817);
  color: #1e3a5f;
  border-color: var(--gold);
}

.prime-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--gold);
  color: #1e3a5f;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0 var(--radius-xl) 0 var(--radius-md);
  z-index: 2;
}

/* ---------- CONTACT FORM (iprosoftech style) ---------- */
.icon-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 6px;
  transition: var(--transition);
}

.icon-input-group:focus-within {
  border-bottom-color: var(--primary);
}

.icon-input-group i {
  font-size: 1.25rem;
  color: var(--text-secondary);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.icon-input-group .icon-input {
  border: none;
  border-radius: 0;
  padding: 10px 0;
  background: transparent;
  box-shadow: none !important;
  outline: none;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.icon-input-group .icon-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.icon-input-group .icon-input:focus {
  background: transparent;
  box-shadow: none !important;
}

/* Contact form validation */
.contact-field.has-error .icon-input-group {
  border-bottom-color: #d93025;
}

.contact-field.has-error .icon-input-group i {
  color: #d93025;
}

.contact-field .error-text {
  display: none;
  color: #d93025;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
}

.contact-field.has-error .error-text {
  display: block;
}

/* ---------- DEMO MODAL (MULTI-STEP) ---------- */
.custom-demo-modal {
  max-width: 460px;
}

.custom-demo-modal .modal-content {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  background: var(--bg-card);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

/* intl-tel-input full width */
.iti {
  width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: var(--bg-primary);
  border-right: 1px solid var(--border-light);
  border-top-left-radius: var(--radius-md);
  border-bottom-left-radius: var(--radius-md);
}

.iti__country-list {
  background-color: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
}

.iti__country.iti__highlight {
  background-color: var(--bg-primary);
}

/* Select2 Custom Styles */
.select2-container .select2-selection--single {
  height: 48px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 48px;
  color: var(--text-primary);
  padding-left: 15px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}

.select2-dropdown {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--primary);
  color: #fff;
}

.select2-results__option {
  color: var(--text-primary);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
}

/* Clear icon for select2 — bigger click area, spaced from arrow */
.select2-container--default .select2-selection--single .select2-selection__clear {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  font-weight: 700;
  color: #999;
  cursor: pointer;
  padding: 4px 8px;
  z-index: 5;
  line-height: 1;
}

.select2-container--default .select2-selection--single .select2-selection__clear:hover {
  color: #d93025;
}

.select2-container--default .select2-selection--single {
  position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-right: 55px;
}

.custom-demo-modal .modal-header {
  position: relative;
  padding: 30px 30px 10px;
}

.custom-demo-modal .modal-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.custom-demo-modal .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  background: transparent;
  opacity: 0.6;
  font-size: 1.2rem;
  transition: var(--transition);
}

.custom-demo-modal .btn-close:hover {
  opacity: 1;
  color: var(--primary);
}

.custom-demo-modal .form-step {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-demo-modal .form-label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.custom-demo-modal .form-control,
.custom-demo-modal .form-select {
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.custom-demo-modal .form-control:focus,
.custom-demo-modal .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.15);
  background-color: var(--bg-card);
}

.custom-demo-modal .form-check-label {
  color: var(--text-primary);
  font-weight: 500;
  cursor: pointer;
}

.custom-demo-modal .form-check-input {
  cursor: pointer;
}

.custom-demo-modal .d-none {
  display: none !important;
}

/* Custom Validation Styles */
.req-star {
  color: #d93025;
  font-weight: 700;
}

.demo-field.has-error .form-label {
  background-color: #fce8e6;
  color: #212529;
  padding: 4px 6px;
  border-radius: 3px;
  display: inline-block;
}

.error-text {
  display: none;
  color: #000;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
  margin-bottom: 8px;
}

.demo-field.has-error .error-text {
  display: block;
}

.demo-field.has-error .form-control,
.demo-field.has-error .form-select {
  border-color: #f5c6cb;
}

.demo-field.has-error .select2-container .select2-selection--single {
  border-color: #f5c6cb;
}