/* ==========================================================================
   Fibre Cloud Network - Premium CSS Design System
   ========================================================================== */

/* Import Premium Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:ital,wght@0,100..900;1,100..900&display=swap');

/* Core Variables */
:root {
  /* Colors */
  --primary: #0038A8;          /* Royal Blue */
  --primary-light: #2E5BFF;
  --primary-dark: #002570;
  --primary-rgb: 0, 56, 168;

  --secondary: #FF6600;        /* Orange */
  --secondary-light: #FF8C39;
  --secondary-dark: #D14F00;
  --secondary-rgb: 255, 102, 0;

  --white: #FFFFFF;
  
  /* Grays */
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  /* Premium Backgrounds */
  --bg-dark: #060913;
  --bg-dark-card: rgba(13, 20, 38, 0.6);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.06);
  --neon-orange-shadow: 0 0 25px rgba(255, 102, 0, 0.35);
  --neon-blue-shadow: 0 0 25px rgba(0, 56, 168, 0.35);

  /* Font Families */
  --font-headings: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--gray-900);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

/* ==========================================================================
   Typography & Helper Utilities
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, #FF8C39 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 650px;
  margin: 0 auto 50px auto;
  text-align: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  border: none;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 56, 168, 0.25);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

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

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

/* Glassmorphism Class */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background: #000000;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

header.scrolled .nav-links a:hover {
  color: var(--white);
}

header.scrolled .nav-toggle span {
  background: var(--white);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

header.scrolled .navbar {
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 48px;
  width: 220px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  position: relative;
  padding: 8px 0;
}

header.dark-hero-nav:not(.scrolled) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary);
}

header.dark-hero-nav:not(.scrolled) .nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--gray-900);
  border-radius: 3px;
  transition: all 0.3s ease;
}

header.dark-hero-nav:not(.scrolled) .nav-toggle span {
  background: var(--white);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  background-color: var(--bg-dark);
  background-image: linear-gradient(rgba(6, 9, 19, 0.85), rgba(6, 9, 19, 0.95)), url('assets/hero_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 130px 0 70px 0;
  min-height: 75vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(0, 56, 168, 0.25) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(255, 102, 0, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

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

.hero-badges {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.badge-24h {
  background: linear-gradient(135deg, rgba(0, 56, 168, 0.3) 0%, rgba(46, 91, 255, 0.3) 100%);
  border: 1px solid rgba(46, 91, 255, 0.4);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #38BDF8;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(0, 56, 168, 0.15);
}

.badge-24h svg {
  fill: currentColor;
}

.badge-support {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.25) 0%, rgba(255, 140, 57, 0.25) 100%);
  border: 1px solid rgba(255, 102, 0, 0.35);
  padding: 6px 14px;
  border-radius: 30px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #FB923C;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

.hero-content h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.15rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.hero-service-title {
  font-family: var(--font-headings);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 35px;
}

.hero-service-title span {
  display: inline-block;
  padding: 2px 10px;
}

.hero-service-title .orange-text {
  color: var(--secondary);
  text-shadow: 0 0 15px rgba(255, 102, 0, 0.3);
}

.hero-service-title .blue-text {
  color: #38BDF8;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.3);
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-support-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.hero-support-tag strong {
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 56, 168, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(800px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-img-container:hover {
  transform: perspective(800px) rotateY(0deg) translateY(-5px);
}

.hero-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 9, 19, 0.8) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating animation details */
.float-element {
  position: absolute;
  background: var(--bg-dark-card);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: float 4s ease-in-out infinite alternate;
}

.float-element.fe-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0.5s;
}

.float-element.fe-2 {
  bottom: 12%;
  right: -20px;
  animation-delay: 1.5s;
}

.fe-icon {
  width: 36px;
  height: 36px;
  border-radius: 50px;
  background: rgba(255, 102, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: bold;
}

.fe-icon.blue {
  background: rgba(46, 91, 255, 0.2);
  color: #38BDF8;
}

.fe-text span {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fe-text strong {
  font-family: var(--font-headings);
  font-size: 0.95rem;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

/* ==========================================================================
   Plans Section
   ========================================================================== */
.plans {
  padding: 100px 0;
  background: var(--gray-50);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}

.plan-card {
  padding: 40px 32px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.plan-card.featured {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,247,242,0.95) 100%);
  border: 2px solid var(--secondary);
  box-shadow: 0 20px 45px rgba(255, 102, 0, 0.08);
  transform: scale(1.05);
  z-index: 2;
}

.plan-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
}

.plan-header {
  margin-bottom: 24px;
  border-bottom: 1.5px solid var(--gray-200);
  padding-bottom: 24px;
}

.plan-card.featured .plan-header {
  border-bottom-color: rgba(255, 102, 0, 0.15);
}

.plan-price {
  font-family: var(--font-headings);
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.plan-card.featured .plan-price {
  color: var(--secondary-dark);
}

.plan-price span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-600);
}

.plan-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.plan-features li {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-700);
}

.plan-features li .icon {
  width: 22px;
  height: 22px;
  border-radius: 50px;
  background: rgba(0, 56, 168, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.plan-card.featured .plan-features li .icon {
  background: rgba(255, 102, 0, 0.15);
  color: var(--secondary);
}

.plan-channels-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-100);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-800);
  border: 1px solid var(--gray-200);
}

.plan-card.featured .plan-channels-badge {
  background: rgba(255, 102, 0, 0.05);
  border-color: rgba(255, 102, 0, 0.15);
  color: var(--secondary-dark);
}

.plan-channels-badge svg {
  color: #FFB300;
}

.plan-tv-logos {
  display: flex;
  gap: 8px;
  align-items: center;
}

.tv-logo-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid currentColor;
}

.tv-sun {
  color: #ED1C24;
  border-color: #ED1C24;
}

.tv-vijay {
  color: #FF6600;
  border-color: #FF6600;
}

.plan-action {
  width: 100%;
}

.plan-card.featured .btn {
  background: var(--secondary);
}

.plan-card.featured .btn:hover {
  background: var(--secondary-dark);
  box-shadow: 0 8px 20px rgba(209, 79, 0, 0.25);
}

/* ==========================================================================
   OTT & Fire TV Offer
   ========================================================================== */
.offer {
  padding: 100px 0;
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.offer::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.offer-card {
  background: linear-gradient(135deg, rgba(13, 20, 38, 0.9) 0%, rgba(20, 32, 64, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}

.offer-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.offer-tag {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 24px;
}

.offer-title {
  color: var(--white);
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.offer-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.offer-price-box {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 28px;
  border-radius: 16px;
  width: fit-content;
}

.price-original {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.4);
}

.price-original span {
  text-decoration: line-through;
  font-weight: 700;
}

.price-now {
  font-family: var(--font-headings);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--secondary-light);
}

.deposit-text {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  display: block;
  margin-top: 4px;
}

.offer-ott-partners {
  margin-top: 35px;
}

.ott-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: block;
}

/* Simulated brand OTT logos strip */
.ott-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ott-logo-mock {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

.ott-prime { color: #00A8E1; border-color: rgba(0, 168, 225, 0.3); }
.ott-hotstar { color: #008E97; border-color: rgba(0, 142, 151, 0.3); }
.ott-sunnxt { color: #ED1C24; border-color: rgba(237, 28, 36, 0.3); }
.ott-zee5 { color: #A138A7; border-color: rgba(161, 56, 167, 0.3); }

.offer-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.offer-img-box {
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: float 4s ease-in-out infinite alternate;
}

.offer-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.25) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.features {
  padding: 100px 0;
  background: var(--white);
}

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

.feature-card {
  padding: 32px 24px;
  text-align: left;
  border: 1px solid var(--gray-200);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.01);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 56, 168, 0.08);
  border-color: rgba(0, 56, 168, 0.15);
}

.feature-image-wrapper {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid var(--gray-200);
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.feature-card:hover .feature-image-wrapper img {
  transform: scale(1.06);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ==========================================================================


/* ==========================================================================
   Coverage Map Section
   ========================================================================== */
.coverage {
  padding: 100px 0;
  background: var(--white);
}

.coverage-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.coverage-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray-200);
}

.coverage-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.coverage-ping {
  width: 14px;
  height: 14px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.coverage-ping::after {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  width: 24px;
  height: 24px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation: ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.coverage-address h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 2px;
}

.coverage-address p {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.coverage-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.coverage-content p {
  font-size: 1.05rem;
  color: var(--gray-700);
  margin-bottom: 30px;
}

.address-highlight-card {
  background: linear-gradient(135deg, rgba(0, 56, 168, 0.03) 0%, rgba(0, 56, 168, 0.08) 100%);
  border: 1.5px dashed var(--primary);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 35px;
}

.address-highlight-card h4 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.address-highlight-card p {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
}

/* ==========================================================================
   Partners Strip
   ========================================================================== */
.partners {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.partners-title {
  text-align: center;
  font-size: 0.8rem;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.partners-strip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.partner-logo-item {
  height: 48px;
  opacity: 0.65;
  filter: grayscale(100%);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}

.partner-logo-item.lg {
  height: 56px;
}

/* ==========================================================================
   Contact & Lead Form Section
   ========================================================================== */
.contact {
  padding: 40px 0 100px 0;
  background: var(--gray-50);
}

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

.contact-form-card {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-form-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 12px;
  border: 1.5px solid var(--gray-300);
  background: var(--gray-50);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 56, 168, 0.1);
}

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

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.support-card {
  padding: 32px;
  background: var(--primary);
  color: var(--white);
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 56, 168, 0.15);
  position: relative;
  overflow: hidden;
}

.support-card::before {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.support-card h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.support-card p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.support-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-actions .btn {
  width: 100%;
  justify-content: center;
}

.map-placeholder-card {
  height: 250px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
  border: 1px solid var(--gray-200);
  background-color: var(--gray-200);
  position: relative;
}

.map-placeholder-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 48px;
  width: 220px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer-col h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-address {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: var(--white);
}

/* ==========================================================================
   Responsive Design Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-badges {
    justify-content: center;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-img-container {
    transform: none;
  }
  .hero-img-container:hover {
    transform: translateY(-5px);
  }
  
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-card.featured {
    transform: none;
    grid-column: span 2;
    order: -1;
  }

  .offer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .offer-card {
    padding: 40px;
  }

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



  .coverage-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  .nav-links, .nav-cta .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  /* Mobile Menu Styles when active */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #000000;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
    z-index: 999;
  }
  .nav-links.active a {
    color: rgba(255, 255, 255, 0.85) !important;
  }
  .nav-links.active a:hover {
    color: var(--white) !important;
  }
  
  .hero {
    padding: 120px 0 80px 0;
  }
  .hero-content h1 {
    font-size: 2.75rem;
  }
  .hero-service-title {
    font-size: 1.35rem;
    letter-spacing: 2px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
  }
  .plan-card.featured {
    grid-column: span 1;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.25rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn {
    width: 100%;
  }
  
  .offer-price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
  }
  .offer-title {
    font-size: 2rem;
  }
  

}

/* ==========================================================================
   Admin Dashboard & Portal Styles
   ========================================================================== */
.admin-body {
  background-color: var(--gray-100);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Login Overlay */
.login-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark);
  background-image: linear-gradient(135deg, rgba(6,9,19,0.95), rgba(0,37,112,0.85));
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.login-card {
  max-width: 400px;
  width: 100%;
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(13, 20, 38, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.login-card .logo {
  height: 48px;
  margin: 0 auto 24px auto;
}

.login-card h2 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.login-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.login-card .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.login-card .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(255, 102, 0, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.login-error-msg {
  color: #EF4444;
  font-size: 0.85rem;
  margin-top: 10px;
  display: none;
}

/* Dashboard Layout */
.admin-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.admin-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-user-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 56, 168, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.admin-main {
  flex: 1;
  padding: 40px 0;
}

/* Analytics Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 120px;
}

.stat-box-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.stat-box-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-box-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.stat-trend {
  color: #10B981;
  font-weight: 600;
}

/* Dashboard Filter Bar */
.filter-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  margin-bottom: 24px;
}

.filter-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-search-col {
  flex: 1;
  min-width: 250px;
}

.filter-select-col {
  min-width: 180px;
}

.filter-actions-col {
  display: flex;
  gap: 12px;
  margin-left: auto;
}

/* Leads Table Styles */
.table-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  overflow: hidden;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.admin-table th {
  background: var(--gray-50);
  padding: 16px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--gray-200);
  letter-spacing: 0.5px;
}

.admin-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.9rem;
  color: var(--gray-800);
  vertical-align: middle;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tbody tr:hover {
  background-color: rgba(0, 56, 168, 0.01);
}

.lead-client-info div {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 2px;
}

.lead-client-info strong {
  font-size: 0.95rem;
  color: var(--gray-900);
}

/* Status Badges */
.badge-status {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.badge-status.new {
  background: rgba(0, 56, 168, 0.1);
  color: var(--primary);
}

.badge-status.in-progress {
  background: rgba(255, 102, 0, 0.1);
  color: var(--secondary-dark);
}

.badge-status.completed {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

/* Small Button Styling */
.btn-sm {
  padding: 8px 12px;
  font-size: 0.8rem;
  border-radius: 8px;
}

.btn-danger-outline {
  background: transparent;
  color: #EF4444;
  border: 1.5px solid #EF4444;
}

.btn-danger-outline:hover {
  background: #EF4444;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.15);
}

.btn-status-toggle {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--gray-800);
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  font-weight: 600;
}

.btn-status-toggle:focus {
  border-color: var(--primary);
}

.table-empty-state {
  padding: 60px 20px !important;
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
}

.table-empty-state svg {
  color: var(--gray-300);
  margin-bottom: 12px;
}

/* Responsive Admin Breakpoints */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .filter-search-col, .filter-select-col {
    width: 100%;
  }
  .filter-actions-col {
    margin-left: 0;
    width: 100%;
    justify-content: flex-end;
  }
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 100px; /* Shifted up to make room for chatbot button */
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 24px rgba(255, 102, 0, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-dark);
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(209, 79, 0, 0.45);
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 96px; /* Shifted up on mobile */
    right: 20px;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   AI Chatbot Widget Styles
   ========================================================================== */
.chatbot-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: var(--font-body);
}

.chatbot-launcher {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 56, 168, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.chatbot-launcher:hover {
  transform: scale(1.08) translateY(-2px);
  background: var(--primary-light);
  box-shadow: 0 12px 30px rgba(46, 91, 255, 0.45);
}

.chatbot-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--secondary);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 10px;
  border: 2px solid var(--white);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.chatbot-window {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 360px;
  height: 480px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  background: var(--primary-dark);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.chatbot-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-headings);
}

.status-indicator {
  font-size: 0.7rem;
  color: #10B981; /* Green */
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
  display: inline-block;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.chatbot-close-btn:hover {
  color: var(--white);
}

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

.chat-message {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.88rem;
  line-height: 1.45;
}

.chat-message.bot {
  background: var(--white);
  color: var(--gray-800);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.chat-message.user {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 56, 168, 0.15);
}

.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  border: 1px solid var(--gray-200);
  align-self: flex-start;
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: var(--gray-600);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-5px); }
}

.chatbot-quick-replies {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: #F8FAFC;
  overflow-x: auto;
  border-top: 1px solid var(--gray-200);
  white-space: nowrap;
  scrollbar-width: none;
}

.chatbot-quick-replies::-webkit-scrollbar {
  display: none;
}

.quick-reply-btn {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 0.8rem;
  color: var(--gray-700);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quick-reply-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.chatbot-input-area {
  padding: 12px 16px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-input-area input {
  flex: 1;
  border: 1px solid var(--gray-200);
  background: var(--gray-50);
  padding: 10px 16px;
  border-radius: 24px;
  font-size: 0.88rem;
  outline: none;
  transition: all var(--transition-fast);
}

.chatbot-input-area input:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 56, 168, 0.08);
}

#chatbot-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

#chatbot-send-btn:hover {
  background: var(--secondary-dark);
  transform: scale(1.05);
}

@media (max-width: 480px) {
  .chatbot-window {
    width: calc(100vw - 40px);
    right: -10px;
    height: 420px;
  }
}
