/* ==========================================================================
   WebsiteLive.today — Clean Electric Orange & White Theme (With Multi-Language Support)
   High-Contrast Modern Aesthetic with Standout Branding & Bento Box Layouts
   ========================================================================== */

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

:root {
  /* Electric Orange & White Palette */
  --color-bg-body: #FFFFFF;
  --color-bg-surface: #FFFFFF;
  --color-bg-subtle: #FAFAFC;
  
  --color-primary: #EA580C;
  --color-primary-hover: #C2410C;
  --color-primary-light: #FFF7ED;
  --color-primary-border: #FFEDD5;
  --color-primary-glow: rgba(234, 88, 12, 0.2);
  
  --color-whatsapp: #22C55E;
  --color-whatsapp-hover: #16A34A;
  
  --color-text-main: #0F172A;
  --color-text-muted: #475569;
  --color-text-light: #64748B;
  
  --color-border: #E2E8F0;
  --color-border-hover: #CBD5E1;
  
  /* Bento Warm Pastel Fills */
  --bento-orange-bg: #FFF7ED;
  --bento-orange-border: #FED7AA;
  --bento-amber-bg: #FEF3C7;
  --bento-amber-border: #FDE68A;
  --bento-peach-bg: #FFF1F2;
  --bento-peach-border: #FECDD3;

  /* Typography */
  --font-family-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-family-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 9999px;

  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 30px -10px rgba(0, 0, 0, 0.12);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family-body);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  touch-action: manipulation;
}

/* Touch Zoom Protection for buttons, sections, cards, and images */
.section, .card, .btn, .bento-card, .portfolio-card, header, footer, img {
  touch-action: manipulation;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.5rem);
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 0.85rem;
}

h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--color-text-muted);
  margin-bottom: 1.15rem;
  font-size: 1.025rem;
  line-height: 1.65;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Announcement Bar */
.announcement-bar {
  background: #0F172A;
  color: #F8FAFC;
  font-size: 0.875rem;
  padding: 0.65rem 0;
  text-align: center;
}

.announcement-bar strong {
  color: #FB923C;
}

.announcement-bar a {
  color: #FFEDD5;
  font-weight: 600;
  margin-left: 6px;
}

.announcement-bar a:hover {
  text-decoration: underline;
}

/* Language Selector Component */
.lang-selector {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  margin-left: 10px;
  vertical-align: middle;
}

.mobile-lang-icon-btn {
  display: none !important; /* Hidden on Desktop */
}

.lang-select-dropdown {
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-family: var(--font-family-body);
  font-size: 0.825rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
}

.lang-select-dropdown option {
  background: #0F172A;
  color: #FFFFFF;
}

/* Header Navigation */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* Standout Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon-box {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #EA580C 0%, #C2410C 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.logo-title {
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: #0F172A;
  line-height: 1;
}

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

.logo-standout-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #EA580C;
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  margin-top: 3px;
}

.logo-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #EA580C;
  border-radius: 50%;
  animation: pulse-glow 1.8s infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(234, 88, 12, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

/* Nav Links */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

/* Mobile Toggle & Drawer — ALWAYS HIDDEN ON DESKTOP */
.mobile-toggle {
  display: none !important;
}

.mobile-drawer {
  display: none !important;
}

/* Buttons — IndiaNIC Enterprise Grade Polish */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family-body);
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--radius-md);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1.5px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  user-select: none;
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.btn-md {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
}

.btn-lg {
  padding: 0.95rem 2.2rem;
  font-size: 1.05rem;
}

/* IndiaNIC Light Sweep Shimmer Animation on Primary Buttons */
.btn-primary {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(234, 88, 12, 0.38);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.65s ease;
  opacity: 0;
  pointer-events: none;
}

.btn-primary:hover::after {
  left: 130%;
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(234, 88, 12, 0.5);
  background: linear-gradient(135deg, #FB923C 0%, #C2410C 100%);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-text-main);
  border-color: #FED7AA;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}

.btn-outline:hover {
  background: #FFF7ED;
  border-color: #EA580C;
  color: #EA580C;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.18);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(34, 197, 94, 0.35);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-whatsapp::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 45%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  transition: all 0.65s ease;
  opacity: 0;
  pointer-events: none;
}

.btn-whatsapp:hover::after {
  left: 130%;
  opacity: 1;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #4ADE80 0%, #15803D 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.48);
}

/* Hero Section */
.hero-section {
  padding: 4.5rem 0 3.5rem 0;
  background: radial-gradient(circle at 50% 0%, #FFF7ED 0%, #FFFFFF 70%);
}

.hero-section .container {
  max-width: 1340px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-title {
  font-size: clamp(2.5rem, 4.8vw, 3.65rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.text-gradient {
  color: #EA580C;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.hero-preview-wrapper {
  position: relative;
  width: 100%;
}

.preview-card-desktop {
  background: #FFFFFF;
  border: 2.5px solid #FED7AA !important;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(15, 23, 42, 0.22), 0 10px 25px rgba(234, 88, 12, 0.14) !important;
  transition: all 0.35s ease;
}

.preview-card-desktop:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 65px rgba(15, 23, 42, 0.28), 0 14px 30px rgba(234, 88, 12, 0.2) !important;
}

.preview-browser-header {
  background: #F1F5F9;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--color-border);
}

.preview-browser-header .dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.preview-browser-header .dot.red { background: #EF4444; }
.preview-browser-header .dot.yellow { background: #F59E0B; }
.preview-browser-header .dot.green { background: #22C55E; }

.browser-address {
  background: #FFFFFF;
  color: #64748B;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 6px;
  border: 1px solid #E2E8F0;
}

.preview-body {
  padding: 1.25rem;
}

.preview-hero-mock {
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 10px;
}

.preview-hero-mock h4 {
  font-size: 1rem;
  color: #9A3412;
  margin-bottom: 2px;
}

.preview-hero-mock p {
  font-size: 0.75rem;
  color: #C2410C;
  margin-bottom: 0;
}

.preview-mock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.preview-mock-card {
  background: #FAFAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 8px;
  font-size: 0.7rem;
}

.preview-card-mobile {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 175px;
  background: #FFFFFF;
  border: 2px solid #EA580C;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-lg);
}

.mobile-inner {
  font-size: 0.7rem;
}

.mobile-wa-bar {
  background: #22C55E;
  color: white;
  font-weight: 700;
  font-size: 0.65rem;
  text-align: center;
  padding: 3px;
  border-radius: 4px;
  margin-top: 4px;
}

/* Sections & Badges */
.section {
  padding: 4.75rem 0;
  position: relative;
}

.section-subtle {
  background-color: var(--color-bg-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.75rem auto;
}

.section-tag {
  margin-bottom: 0.65rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-primary {
  background: #FFF7ED;
  color: #EA580C;
  border: 1px solid #FFEDD5;
}

.badge-amber {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.badge-whatsapp {
  background: #DCFCE7;
  color: #15803D;
  border: 1px solid #86EFAC;
}

/* Bento Grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.bento-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.bento-card.bg-mild-orange {
  background: var(--bento-orange-bg);
  border-color: var(--bento-orange-border);
}

.bento-card.bg-mild-amber {
  background: var(--bento-amber-bg);
  border-color: var(--bento-amber-border);
}

.bento-card.bg-mild-peach {
  background: var(--bento-peach-bg);
  border-color: var(--bento-peach-border);
}

.bento-metric {
  font-family: var(--font-family-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #EA580C;
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Process Steps Component Styling */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.process-step {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: #FED7AA;
  box-shadow: var(--shadow-md);
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: white;
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

/* FAQ Accordion Component Styling */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: #CBD5E1;
}

.faq-item.open {
  border-color: #FFEDD5;
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: #FFFFFF;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-text-main);
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  transition: transform 0.25s ease;
  color: #EA580C;
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
  display: none;
  border-top: 1px dashed #F1F5F9;
  padding-top: 1rem;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Portfolio Filter Buttons Component Styling */
.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-family-body);
  font-size: 0.9rem;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover, .filter-btn.active {
  background: #FFF7ED;
  border-color: #FFEDD5;
  color: #EA580C;
  transform: translateY(-1px);
}

/* Legal Pages Component Styling */
.legal-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 2rem;
}

.legal-section h2 {
  font-size: 1.35rem;
  color: #0F172A;
  margin-bottom: 0.75rem;
  border-bottom: 2px solid #FFF7ED;
  padding-bottom: 0.5rem;
}

.legal-section p, .legal-section ul {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-section ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

.legal-section li {
  margin-bottom: 0.4rem;
}

/* Cards Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-border);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #FFF7ED;
  border: 1px solid #FFEDD5;
  color: #EA580C;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon.whatsapp-icon {
  background: #DCFCE7;
  border-color: #86EFAC;
  color: #16A34A;
}

/* Portfolio Cards */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.portfolio-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.portfolio-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.portfolio-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0.85rem 0;
}

.portfolio-tag {
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--color-bg-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.popular {
  border: 2px solid #EA580C;
  box-shadow: var(--shadow-md);
  background: #FFF7ED;
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #EA580C;
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
}

.pricing-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.pricing-price {
  font-family: var(--font-family-heading);
  font-size: 2rem;
  font-weight: 800;
  color: #EA580C;
  margin-top: 0.35rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-features li {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li i {
  color: #EA580C;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* City Pills */
.city-pill-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.city-pill {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.city-pill:hover {
  background: #FFF7ED;
  border-color: #FFEDD5;
  color: #EA580C;
  transform: translateY(-2px);
}

/* Forms & Inputs */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  color: var(--color-text-main);
  font-family: var(--font-family-body);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.22s ease;
}

.form-control:focus {
  outline: none;
  border-color: #EA580C;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.25rem;
}

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

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F1F5F9;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: #FFF7ED;
  color: #EA580C;
}

/* Footer */
.footer {
  background: #0F172A;
  color: #F8FAFC;
  padding: 4rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: #FB923C;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #94A3B8;
}

/* Floating WhatsApp Button — Stacked above Live Support */
.floating-whatsapp {
  position: fixed;
  bottom: 86px;
  right: 24px;
  z-index: 990;
  width: 48px;
  height: 48px;
  background: #22C55E;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(34, 197, 94, 0.45);
  transition: all 0.25s ease;
  text-decoration: none;
}

.floating-whatsapp i, .floating-whatsapp svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background: #16A34A;
}

/* IndiaNIC Style Live Human Support Chat Widget */
.live-chat-trigger {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 995;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: #FFFFFF;
  padding: 6px 16px 6px 6px;
  border-radius: 40px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.35), 0 4px 14px rgba(234, 88, 12, 0.25);
  border: 1.5px solid rgba(254, 215, 170, 0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-chat-trigger:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.45), 0 6px 20px rgba(234, 88, 12, 0.35);
  border-color: #EA580C;
}

.live-chat-avatar-wrap {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.live-chat-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #EA580C;
}

.live-chat-status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11px;
  height: 11px;
  background: #22C55E;
  border: 2px solid #0F172A;
  border-radius: 50%;
}

.live-chat-badge-unread {
  position: absolute;
  top: -4px;
  left: -4px;
  background: #EF4444;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #0F172A;
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(239, 68, 68, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.live-chat-label {
  display: flex;
  flex-direction: column;
}

.live-chat-name {
  font-size: 0.825rem;
  font-weight: 700;
  line-height: 1.1;
  color: #FFFFFF;
}

.live-chat-sub {
  font-size: 0.685rem;
  color: #22C55E;
  font-weight: 600;
}

/* Floating Chat Drawer Window */
.chat-window-box {
  position: fixed;
  bottom: 84px;
  right: 24px;
  width: 370px;
  max-width: calc(100vw - 32px);
  height: 510px;
  max-height: calc(100vh - 105px);
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.32);
  border: 1.5px solid #FED7AA;
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: chatPopUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes chatPopUp {
  0% { opacity: 0; transform: translateY(20px) scale(0.95); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

.chat-window-header {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  color: white;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(254, 215, 170, 0.2);
}

.chat-header-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.chat-header-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #EA580C;
  object-fit: cover;
}

.chat-header-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}

.chat-header-status {
  font-size: 0.7rem;
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
}

.chat-window-close {
  background: transparent;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.chat-window-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.15);
}

.chat-body-messages {
  flex: 1;
  padding: 14px;
  overflow-y: auto;
  background: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  max-width: 88%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.865rem;
  line-height: 1.45;
  animation: fadeInMsg 0.25s ease;
}

@keyframes fadeInMsg {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

.chat-msg.agent {
  align-self: flex-start;
  background: #FFFFFF;
  color: #0F172A;
  border: 1px solid #E2E8F0;
  border-top-left-radius: 2px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.chat-msg.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  color: #FFFFFF;
  border-top-right-radius: 2px;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
}

.chat-quick-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.chat-chip-btn {
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  color: #EA580C;
  font-size: 0.775rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.chat-chip-btn:hover {
  background: #EA580C;
  color: #FFFFFF;
  border-color: #EA580C;
}

.chat-input-bar {
  padding: 10px 12px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-input-field {
  flex: 1;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 8px 14px;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.chat-input-field:focus {
  border-color: #EA580C;
}

.chat-send-btn {
  background: #EA580C;
  color: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-send-btn:hover {
  background: #C2410C;
  transform: scale(1.05);
}

/* Mobile Action Bar */
.mobile-action-bar {
  display: none;
}

/* Responsive Media Queries — MOBILE & TABLET */
@media (max-width: 992px) {
  .nav-desktop {
    display: none !important;
  }

  /* Show hamburger button alongside phone and whatsapp buttons in header top right corner */
  .mobile-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.65rem;
    border: 1px solid #FED7AA !important;
    color: #EA580C !important;
    background: #FFF7ED !important;
    border-radius: var(--radius-md);
    cursor: pointer;
  }
  .mobile-toggle:hover {
    background: #EA580C !important;
    color: #FFFFFF !important;
  }

  /* Hide Get Started text button on top header on small mobile to keep top-right clean with 3 icon buttons */
  .btn-get-started-desktop {
    display: none !important;
  }

  /* Completely hide black top announcement bar on mobile view */
  .announcement-bar {
    display: none !important;
  }

  /* Compact & Scaled Brand Logo for Mobile View */
  .brand-logo {
    gap: 8px !important;
  }
  .logo-icon-box {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
  }
  .logo-title {
    font-size: 1.1rem !important;
  }
  .logo-standout-badge {
    font-size: 0.56rem !important;
    padding: 1px 6px !important;
    margin-top: 1px !important;
  }

  /* Compact Mobile Language Icon Button next to Call Icon */
  .mobile-lang-icon-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.6rem;
    border: 1px solid #FED7AA !important;
    color: #EA580C !important;
    background: #FFF7ED !important;
    border-radius: var(--radius-md);
    cursor: pointer;
  }
  .mobile-lang-icon-btn:hover {
    background: #EA580C !important;
    color: #FFFFFF !important;
  }
  .mobile-lang-icon-btn:hover .lang-code-tag {
    color: #FFFFFF !important;
  }

  /* Mobile Drawer Overlay Slide-out */
  .mobile-drawer {
    display: flex !important;
    position: fixed;
    top: 0;
    right: -100%;
    width: 310px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile browser bars */
    background: #FFFFFF;
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.25);
    z-index: 9999;
    padding: 1.25rem 1.25rem 2.5rem 1.25rem !important; /* Lift bottom buttons up for comfortable tapping */
    flex-direction: column;
    overflow-y: auto;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-drawer.open {
    right: 0 !important;
  }

  .mobile-drawer-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    z-index: 9998;
  }

  .mobile-drawer-backdrop.open {
    display: block !important;
  }

  /* Mobile Drawer Bottom Action Buttons Box — Lifted up for easy tapping */
  .mobile-drawer-actions {
    margin-top: auto;
    padding-top: 0.85rem;
    padding-bottom: 2.5rem !important; /* Lifts the 3 buttons up comfortably above mobile browser bars */
    border-top: 1px solid #FFEDD5;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 0.25rem;
  }

  .mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .mobile-nav-item:hover, .mobile-nav-item.active {
    background: #FFF7ED;
    color: #EA580C;
  }

  .mobile-drawer-close {
    background: #F1F5F9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748B;
    transition: all 0.2s ease;
  }
  .mobile-drawer-close:hover {
    background: #FEE2E2;
    color: #EF4444;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .bento-grid, .grid-3, .grid-4, .pricing-grid, .process-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mobile-action-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #FFFFFF;
    border-top: 1px solid var(--color-border);
    padding: 8px 12px;
    gap: 8px;
  }

  .action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 700;
  }

  .call-btn { background: #F1F5F9; color: #0F172A; }
  .wa-btn { background: #22C55E; color: white; }
  .quote-btn { background: #EA580C; color: white; }

  .floating-whatsapp {
    bottom: 70px;
  }
}

@media (max-width: 576px) {
  .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .legal-box {
    padding: 1.5rem 1rem;
  }
}
