/* ==========================================================================
   PROMOTION MONSTER - Luxury Tech Agency Design System
   Elite Royal Sapphire, Electric Amber & Obsidian Theme
   Ultra-Crisp Typography, Glassmorphism & High-Impact Animations
   ========================================================================== */

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

:root {
  /* Core Luxury Palette */
  --pm-obsidian: #030712;
  --pm-midnight: #070e24;
  --pm-navy: #0b1536;
  --pm-navy-light: #15224e;
  
  /* Primary Action - Electric Sapphire Blue */
  --pm-primary: #1d68f2;
  --pm-primary-hover: #1452cc;
  --pm-primary-light: #eff6ff;
  --pm-primary-glow: rgba(29, 104, 242, 0.35);

  /* High-Impact Accent - Radiant Electric Amber / Sunset Glow */
  --pm-accent: #ff6b00;
  --pm-accent-hover: #e55c00;
  --pm-accent-light: #fff4ec;
  --pm-accent-glow: rgba(255, 107, 0, 0.38);

  /* Secondary Vibrant Cyber Accents */
  --pm-cyan: #06b6d4;
  --pm-cyan-light: #ecfeff;
  --pm-cyan-glow: rgba(6, 182, 212, 0.3);
  --pm-purple: #8b5cf6;
  --pm-purple-glow: rgba(139, 92, 246, 0.3);
  --pm-green: #10b981;
  --pm-green-light: #ecfdf5;
  --pm-gold: #f59e0b;
  
  /* Crisp Light Surfaces - High Contrast & Maximum Legibility */
  --pm-dark: #0a1128;
  --pm-slate: #334155;
  --pm-body-text: #334155;
  --pm-muted: #64748b;
  --pm-border: #e2e8f0;
  --pm-border-light: #f1f5f9;
  --pm-border-hover: #cbd5e1;
  --pm-bg-light: #f8fafc;
  --pm-bg-card: #ffffff;
  --pm-white: #ffffff;

  /* Typography - Ultra Clear & Modern Tech Display */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevations */
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -3px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 38px -4px rgba(15, 23, 42, 0.11);
  --shadow-xl: 0 25px 60px -8px rgba(15, 23, 42, 0.16);
  --shadow-glow: 0 0 30px var(--pm-primary-glow);
  --shadow-accent-glow: 0 0 30px var(--pm-accent-glow);

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

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.18s ease;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   CSS Reset & Base Setup
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 450;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  color: var(--pm-body-text);
  background-color: #ffffff;
  line-height: 1.7;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Scroll Progress Bar at Top of Page */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3.5px;
  width: 0%;
  background: linear-gradient(90deg, #1d68f2, #06b6d4, #ff6b00);
  z-index: 999999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(29, 104, 242, 0.6);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--pm-dark);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.028em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--pm-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--pm-accent);
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--pm-primary) !important; }
.text-accent { color: var(--pm-accent) !important; }
.text-green { color: var(--pm-green) !important; }
.text-gold { color: var(--pm-gold) !important; }
.bg-light { background-color: var(--pm-bg-light); }
.bg-navy { background-color: var(--pm-midnight); color: #fff; }

.gradient-text {
  background: linear-gradient(135deg, #1d68f2 0%, #06b6d4 50%, #ff6b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-text-gold {
  background: linear-gradient(135deg, #ff8c00 0%, #f59e0b 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.section-padding {
  padding: 95px 0;
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(29, 104, 242, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  color: var(--pm-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 15px;
  border: 1px solid rgba(29, 104, 242, 0.25);
  box-shadow: 0 2px 10px rgba(29, 104, 242, 0.08);
}

.section-title {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.035em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--pm-muted);
  line-height: 1.65;
  font-weight: 400;
}

/* ==========================================================================
   Buttons & Interactive Elements
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

/* Primary High-Impact CTA Button (Vibrant Flame Amber) */
.btn-primary {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8500 50%, #e65100 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px var(--pm-accent-glow);
  border: none;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7a1a 0%, #ff6b00 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px var(--pm-accent-glow);
}

/* Secondary High-Trust Blue Button */
.btn-blue {
  background: linear-gradient(135deg, #1d68f2 0%, #2563eb 50%, #174dc0 100%);
  color: #ffffff;
  box-shadow: 0 6px 22px var(--pm-primary-glow);
  border: none;
}

.btn-blue:hover {
  background: linear-gradient(135deg, #2b74fa 0%, #1d68f2 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px var(--pm-primary-glow);
}

.btn-navy {
  background: var(--pm-navy);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-navy:hover {
  background: var(--pm-midnight);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(7, 14, 36, 0.35);
}

.btn-outline {
  background: transparent;
  border-color: var(--pm-primary);
  color: var(--pm-primary);
}

.btn-outline:hover {
  background: var(--pm-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.btn-outline-white:hover {
  background: #ffffff;
  color: var(--pm-midnight);
  border-color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1ebc59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Top Announcement & Contact Bar
   ========================================================================== */
.top-bar {
  background: var(--pm-obsidian);
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.top-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.18) 0%, rgba(245, 158, 11, 0.15) 100%);
  color: #ffaa66;
  border: 1px solid rgba(255, 107, 0, 0.35);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.76rem;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.75; }
}

.top-bar-link {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-link:hover {
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.top-bar-divider {
  color: rgba(255, 255, 255, 0.15);
}

.top-bar-right a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-bar-right a:hover {
  color: var(--pm-accent);
}

.top-bar-justdial {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #ff7700 0%, #ff5500 100%);
  color: #fff !important;
  font-weight: 800;
  padding: 2px 9px;
  border-radius: 4px;
  font-size: 0.75rem;
  box-shadow: 0 2px 10px rgba(255, 119, 0, 0.4);
}

/* ==========================================================================
   Header & Main Brand Navigation
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  z-index: 1000;
  transition: var(--transition);
}

.main-header.scrolled {
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  gap: 15px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  height: 62px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   Hero Section with Interactive Particle Canvas & Glowing Meshes
   ========================================================================== */
.hero-section {
  position: relative;
  background: radial-gradient(circle at 85% 15%, #10214d 0%, var(--pm-midnight) 45%, var(--pm-obsidian) 90%);
  color: #ffffff;
  padding: 100px 0 110px 0;
  overflow: hidden;
}

/* Animated HTML5 Particle Canvas Background */
#heroParticleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.hero-glow-blob {
  position: absolute;
  top: -15%;
  right: 0%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 104, 242, 0.28) 0%, rgba(6, 182, 212, 0.18) 35%, rgba(255, 107, 0, 0.1) 60%, transparent 75%);
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-blob-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22) 0%, rgba(29, 104, 242, 0.15) 40%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 22px;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-badge-top span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.hero-title {
  font-size: 3.4rem;
  line-height: 1.14;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -0.035em;
  font-weight: 900;
}

/* Dynamic Rotating Text in Hero */
.rotating-word-container {
  display: inline-block;
  position: relative;
  min-width: 280px;
  vertical-align: bottom;
}

.rotating-word {
  display: inline-block;
  background: linear-gradient(135deg, #ff8c00 0%, #ff5500 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #ffb380 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-trust-label {
  font-size: 0.76rem;
  color: #94a3b8;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Hero Quick Lead Card with 3D Glassmorphism */
.hero-card-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  backdrop-filter: blur(24px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(29, 104, 242, 0.15);
  position: relative;
  overflow: hidden;
}

.hero-card-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1d68f2, #06b6d4, #ff6b00);
}

.hero-card-box h3 {
  color: #ffffff;
  font-size: 1.45rem;
  margin-bottom: 8px;
  font-weight: 800;
}

.hero-card-box p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 22px;
}

.quick-form-group {
  margin-bottom: 14px;
}

.quick-form-input, .quick-form-select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(3, 7, 18, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
}

.quick-form-input:focus, .quick-form-select:focus {
  outline: none;
  border-color: var(--pm-accent);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.3);
  background: rgba(3, 7, 18, 0.85);
}

.quick-form-select option {
  background: var(--pm-midnight);
  color: #ffffff;
}

/* ==========================================================================
   Services Grid Section with 3D Card Spotlight & Tilt
   ========================================================================== */
.services-section {
  background: linear-gradient(180deg, #ffffff 0%, var(--pm-bg-light) 100%);
  position: relative;
}

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

.service-card {
  background: var(--pm-bg-card);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  text-align: center;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--pm-border);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1d68f2, #06b6d4, #ff6b00);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px -10px rgba(29, 104, 242, 0.16), 0 0 0 1px rgba(29, 104, 242, 0.2);
  border-color: rgba(29, 104, 242, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-illustration {
  width: 130px;
  height: 110px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-illustration {
  transform: scale(1.12) translateY(-4px);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--pm-dark);
  margin-bottom: 14px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-card-desc {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.68;
  font-weight: 450;
  margin-bottom: 22px;
  flex-grow: 1;
}

.service-card-features {
  width: 100%;
  border-top: 1px solid var(--pm-border-light);
  padding-top: 20px;
  margin-bottom: 24px;
  text-align: left;
}

.service-card-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #1e293b;
  margin-bottom: 10px;
  font-weight: 550;
}

.service-card-feature-item svg {
  width: 17px;
  height: 17px;
  color: var(--pm-green);
  flex-shrink: 0;
}

.service-card-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--pm-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  background: var(--pm-primary-light);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.service-card-btn:hover {
  background: var(--pm-primary);
  color: #ffffff;
  gap: 10px;
  box-shadow: 0 4px 18px var(--pm-primary-glow);
}

/* ==========================================================================
   Interactive Cost Estimator & Quote Calculator
   ========================================================================== */
.calculator-section {
  background: linear-gradient(135deg, var(--pm-obsidian) 0%, var(--pm-midnight) 100%);
  color: #ffffff;
  position: relative;
}

.calculator-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 42px;
  backdrop-filter: blur(24px);
  box-shadow: var(--shadow-xl);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
}

.calc-step-title {
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.calc-step-title .step-num {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #1d68f2 0%, #ff6b00 100%);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 2px 10px var(--pm-primary-glow);
}

.calc-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 28px;
}

.calc-option-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: #cbd5e1;
  font-size: 0.88rem;
  font-weight: 600;
  user-select: none;
}

.calc-option-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.calc-option-card.active {
  background: linear-gradient(135deg, #1d68f2 0%, #2563eb 100%);
  border-color: #1d68f2;
  color: #ffffff;
  box-shadow: 0 4px 20px var(--pm-primary-glow);
}

.calc-summary-box {
  background: rgba(3, 7, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.calc-price-display {
  text-align: center;
  margin: 20px 0;
}

.calc-price-display .price-label {
  font-size: 0.82rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.calc-price-display .price-val {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  margin: 6px 0;
  text-shadow: 0 0 25px rgba(29, 104, 242, 0.5);
}

.calc-price-display .price-sub {
  font-size: 0.84rem;
  color: #10b981;
  font-weight: 600;
}

/* ==========================================================================
   Why Choose Us & Justdial Trust
   ========================================================================== */
.why-us-section {
  background-color: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-us-badge-card {
  background: linear-gradient(135deg, var(--pm-midnight) 0%, var(--pm-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  color: #ffffff;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(29, 104, 242, 0.25);
}

.why-us-badge-card::after {
  content: '';
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
}

.jd-verified-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 25px;
}

.jd-verified-box img {
  height: 48px;
  width: auto;
}

.why-feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.why-feature-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--pm-bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--pm-border);
  transition: var(--transition);
}

.why-feature-card:hover {
  transform: translateX(8px);
  background: #ffffff;
  box-shadow: 0 12px 30px -5px rgba(29, 104, 242, 0.15);
  border-color: rgba(29, 104, 242, 0.4);
}

.why-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 104, 242, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--pm-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid rgba(29, 104, 242, 0.2);
}

.why-feature-info h4 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--pm-dark);
  margin-bottom: 6px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.why-feature-info p {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.62;
  font-weight: 450;
}

/* ==========================================================================
   Pricing Packages Table
   ========================================================================== */
.pricing-section {
  background: linear-gradient(180deg, var(--pm-bg-light) 0%, #ffffff 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background: var(--pm-bg-card);
  border: 1px solid var(--pm-border);
  border-radius: var(--radius-lg);
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
  transition: var(--transition);
  position: relative;
}

.pricing-card.popular {
  border: 2px solid var(--pm-accent);
  box-shadow: 0 24px 50px -10px rgba(255, 107, 0, 0.22), 0 0 0 1px rgba(255, 107, 0, 0.2);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px -6px rgba(15, 23, 42, 0.16);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 30px 65px -8px rgba(255, 107, 0, 0.3);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b00 0%, #ff8500 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--pm-accent-glow);
  animation: pulseGlowBadge 2.5s infinite;
}

@keyframes pulseGlowBadge {
  0%, 100% { transform: translateX(-50%) scale(1); box-shadow: 0 4px 16px var(--pm-accent-glow); }
  50% { transform: translateX(-50%) scale(1.05); box-shadow: 0 6px 22px rgba(255, 107, 0, 0.6); }
}

.pricing-plan-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--pm-dark);
  font-weight: 850;
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}

.pricing-plan-desc {
  font-size: 0.92rem;
  color: #475569;
  margin-bottom: 22px;
  line-height: 1.58;
  min-height: 44px;
}

.pricing-price-box {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--pm-border-light);
}

.pricing-amount {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 900;
  color: var(--pm-dark);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pricing-tax {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 5px;
  font-weight: 500;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-features-list li {
  font-size: 0.92rem;
  color: #1e293b;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 550;
  line-height: 1.5;
}

.pricing-features-list li.disabled {
  color: #94a3b8;
  text-decoration: line-through;
}

.pricing-features-list li .check-icon {
  color: var(--pm-green);
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
}

/* ==========================================================================
   Portfolio Showcase Section
   ========================================================================== */
.portfolio-section {
  background-color: #ffffff;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.portfolio-filter-btn {
  background: var(--pm-bg-light);
  border: 1px solid var(--pm-border);
  color: var(--pm-slate);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.portfolio-filter-btn.active, .portfolio-filter-btn:hover {
  background: linear-gradient(135deg, #1d68f2 0%, #2563eb 100%);
  color: #ffffff;
  border-color: #1d68f2;
  box-shadow: 0 4px 14px var(--pm-primary-glow);
}

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

.portfolio-card {
  background: var(--pm-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--pm-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px -5px rgba(29, 104, 242, 0.16);
  border-color: rgba(29, 104, 242, 0.35);
}

.portfolio-preview {
  height: 200px;
  background: linear-gradient(135deg, var(--pm-navy) 0%, var(--pm-obsidian) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.portfolio-preview-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}

.portfolio-info {
  padding: 24px;
}

.portfolio-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pm-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.portfolio-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.portfolio-desc {
  font-size: 0.88rem;
  color: var(--pm-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.portfolio-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.portfolio-tag-pill {
  font-size: 0.75rem;
  background: var(--pm-bg-light);
  color: var(--pm-slate);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--pm-border);
  font-weight: 600;
}

/* ==========================================================================
   Client Testimonials & Ratings (Justdial 4.8 / 5.0)
   ========================================================================== */
.testimonials-section {
  background: linear-gradient(180deg, var(--pm-bg-light) 0%, #ffffff 100%);
}

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

.testimonial-card {
  background: var(--pm-bg-card);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--pm-border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card:hover {
  box-shadow: 0 16px 36px -4px rgba(15, 23, 42, 0.12);
  border-color: rgba(29, 104, 242, 0.3);
}

.testimonial-rating {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.94rem;
  color: var(--pm-slate);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--pm-border-light);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d68f2 0%, #ff6b00 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pm-dark);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--pm-muted);
}

.testimonial-jd-tag {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff7700;
  background: #fff3e0;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ==========================================================================
   Lead Capture & Contact Form Section
   ========================================================================== */
.contact-section {
  background-color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-panel {
  background: linear-gradient(135deg, var(--pm-obsidian) 0%, var(--pm-midnight) 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(29, 104, 242, 0.25);
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1d68f2, #ff6b00);
}

.contact-info-panel h3 {
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-info-panel p {
  color: #94a3b8;
  font-size: 0.94rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(29, 104, 242, 0.15);
  color: #60a5fa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(29, 104, 242, 0.3);
}

.contact-detail-label {
  font-size: 0.78rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-detail-value {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
}

.contact-detail-value a {
  color: #ffffff;
}

.contact-detail-value a:hover {
  color: var(--pm-accent);
}

.contact-form-panel {
  background: var(--pm-bg-card);
  border: 1px solid var(--pm-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--pm-dark);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--pm-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--pm-dark);
  transition: var(--transition);
  background-color: var(--pm-bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--pm-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--pm-primary-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.footer {
  background: var(--pm-obsidian);
  color: #94a3b8;
  padding-top: 85px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 24px;
  color: #94a3b8;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 3px;
  background: linear-gradient(90deg, #1d68f2, #ff6b00);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

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

.footer-links li a {
  color: #94a3b8;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  font-weight: 500;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--pm-accent);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   Floating WhatsApp & Quick Dialer Widget
   ========================================================================== */
.floating-widgets {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.floating-btn.whatsapp {
  background: #25d366;
}

.floating-btn.call {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8500 100%);
  box-shadow: 0 6px 20px var(--pm-accent-glow);
}

.floating-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================================================
   Extraordinary Animations & Dynamic Scroll Transitions
   ========================================================================== */

/* 1. Scroll Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92) translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* 2. Floating Ambient Keyframe Animations */
@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(0.8deg);
  }
}

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

.animate-float {
  animation: floatSlow 5.5s ease-in-out infinite;
}

.animate-float-fast {
  animation: floatFast 3.5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.45;
  }
}

.hero-glow-blob {
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.hero-glow-blob-2 {
  animation: pulseGlow 10s ease-in-out infinite alternate-reverse;
}

/* 3. Button Shimmer Sweep Effect */
@keyframes shimmerSweep {
  0% {
    transform: translateX(-150%) rotate(30deg);
  }
  100% {
    transform: translateX(300%) rotate(30deg);
  }
}

.btn::after {
  content: '';
  position: absolute;
  top: -60%;
  left: -60%;
  width: 45%;
  height: 220%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-150%) rotate(30deg);
  pointer-events: none;
}

.btn:hover::after {
  animation: shimmerSweep 1.1s ease-in-out;
}

/* 4. WhatsApp & Live Indicator Radar Pulse */
@keyframes ripplePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.floating-btn.whatsapp {
  animation: ripplePulse 2.5s infinite;
}

/* 5. Live Status Radar Dot Animation */
@keyframes radarDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hero-badge-top span.dot {
  animation: radarDot 2s infinite;
}
