/* =============================
   RAMYAA NET — MAIN STYLESHEET (LIGHT THEME)
   ============================= */

/* ---- Google Fonts Fallback / CSS Variables ---- */
:root {
  /* Brand Colors */
  --blue:    #0ea5e9;
  --blue-dark:#0284c7;
  --cyan:    #06b6d4;
  --green:   #10b981;
  --green-light:#34d399;
  --white:   #ffffff;
  
  /* Backgrounds & Text */
  --bg-main:   #ffffff;
  --bg-card:   #f8fafc;
  --bg-card2:  #f1f5f9;
  --border:    rgba(0, 0, 0, 0.08);
  --border2:   rgba(0, 0, 0, 0.12);
  --text:      #0f172a;
  --text-muted:#475569;

  /* Geometry */
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  /* Animation */
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 20px 40px rgba(14, 165, 233, 0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Inter', sans-serif;
  background: var(--bg-main);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- GRADIENT TEXT ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- SECTION BADGE ---- */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ---- SECTION HEADER ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  color: #0f172a;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: var(--blue-dark); /* Solid dark header to match logo background */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.scrolled {
  background: var(--blue-dark); /* Solid dark header to match un-scrolled state exactly */
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.nav-container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
/* Use the image logo provided by user */
.nav-logo img {
  height: 48px; /* adjust size based on the actual logo aspect ratio */
  width: auto;
  border-radius: 8px; /* Smooth corners if there's any slight color mismatch */
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}
.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.nav-links a.active {
  color: #ffffff;
  background: var(--blue);
}

.btn-nav {
  background: var(--blue);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-nav:hover {
  background: var(--blue-dark);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.2);
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 28px;
  height: 2px;
  background: #ffffff;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #f8fafc;
}
/* HERO SLIDER */
.slider-container {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  background: #f8fafc;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s;
}
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}
.slide.active .slide-bg {
  transform: scale(1);
}
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  pointer-events: none;
}
.slider-btn {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  backdrop-filter: blur(4px);
  color: var(--blue-dark);
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.slider-btn:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dots .dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.slider-dots .dot:hover {
  background: rgba(14, 165, 233, 0.6);
}
.slider-dots .dot.active {
  background: var(--blue);
  transform: scale(1.2);
  border-color: #fff;
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}/* PROMO SLIDER & LAYOUT */
.promo-slider {
  position: relative;
  min-height: 550px; /* Reduced from 80vh */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-main);
  margin-top: 80px; /* space for navbar */
}
.slide-content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
  padding-top: 20px;
  padding-bottom: 40px; /* Reduced padding */
}
.slide-image-col {
  flex: 1;
  display: flex;
  justify-content: center;
}
.blob-mask {
  width: 400px;
  height: 400px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  animation: morph 8s ease-in-out infinite;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 10px rgba(255,255,255,0.2), 0 20px 40px rgba(0,0,0,0.2);
}
@keyframes morph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
  34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
  67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}
.slide-text-col {
  flex: 1;
  color: #fff;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.slide-tagline {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slide-banner {
  background: #fff;
  color: var(--blue-dark);
  padding: 10px 40px;
  font-size: 1.5rem;
  font-weight: 700;
  transform: skewX(-15deg);
  display: inline-block;
  margin-bottom: 10px;
}
.slide-price {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  margin: 10px 0;
  text-shadow: 4px 4px 0px rgba(0,0,0,0.1);
}
.slide-price .unit {
  font-size: 3rem;
  font-weight: 700;
  margin-left: 10px;
}
.slide-desc {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 15px;
}
.slide-tc {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Background Shapes */
.shape-1, .shape-2 {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}
.shape-1 {
  width: 500px; height: 500px;
  border-radius: 20px;
  transform: rotate(45deg);
  top: -100px; left: -100px;
}
.shape-2 {
  width: 800px; height: 800px;
  border-radius: 30px;
  transform: rotate(15deg);
  bottom: -400px; right: -200px;
}

@media (max-width: 992px) {
  .slide-content { flex-direction: column-reverse; text-align: center; justify-content: center; padding-top: 80px; }
  .slide-text-col { align-items: center; text-align: center; }
  .blob-mask { width: 300px; height: 300px; }
  .slide-tagline { font-size: 2rem; }
  .slide-price { font-size: 5rem; }
  .slide-price .unit { font-size: 2rem; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255, 255, 255, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInDown 0.9s ease 0.1s both;
  color: #0f172a;
}
.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInDown 1s ease 0.2s both;
}
.hero-desc strong { color: var(--blue-dark); }
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 72px;
  animation: fadeInDown 1.1s ease 0.3s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--cyan) 100%);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  background: #fff;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  border: 1px solid var(--border2);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeInDown 1.2s ease 0.4s both;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  width: fit-content;
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-unit {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  display: inline;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border2);
}

/* Page Header (for subpages) */
.page-header {
  padding: 160px 0 80px;
  background: var(--bg-card);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url('hero_bg_light.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  pointer-events: none;
}
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 16px;
  position: relative;
}
.page-header p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ============================================================
   SECTIONS GENERAL
   ============================================================ */
.section {
  padding: 100px 0;
}
.bg-light { background: var(--bg-main); }
.bg-gray { background: var(--bg-card); }

/* ============================================================
   WHY US / FEATURES
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow-hover);
}
.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--blue);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 12px; color: #0f172a; }
.feature-card p  { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  align-items: start;
}
.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(14, 165, 233, 0.2);
}
.service-card--featured {
  border-color: rgba(14, 165, 233, 0.4);
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.03) 0%, #ffffff 100%);
}
.service-badge-featured {
  position: absolute;
  top: 24px; right: 24px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.03em;
}
.service-icon {
  width: 72px; height: 72px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 20px;
  color: var(--blue);
}
.service-icon svg { width: 36px; height: 36px; }
.service-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #0f172a;
}
.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.service-features li {
  color: var(--text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-features li::before {
  content: '✓';
  color: var(--green);
  font-size: 14px;
  font-weight: bold;
  background: rgba(16, 185, 129, 0.15);
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-service {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-service:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* ============================================================
   PLANS
   ============================================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}
.plan-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: var(--shadow-hover);
}
.plan-card--featured {
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
  background: linear-gradient(160deg, #ffffff 0%, rgba(14, 165, 233, 0.02) 100%);
}
.plan-card--featured .plan-speed-badge {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  border-color: transparent;
}
.plan-speed-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  background: rgba(241, 245, 249, 1);
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
}
.plan-speed {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.speed-num {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: #0f172a;
  letter-spacing: -0.04em;
}
.plan-card--featured .speed-num {
  background: linear-gradient(135deg, var(--blue-dark), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.speed-unit {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
}
.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex: 1;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}
.plan-features .check {
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}
.btn-plan {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 50px;
  background: #f1f5f9;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  transition: var(--transition);
  margin-top: auto;
}
.btn-plan:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}
.plan-card--featured .btn-plan {
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
}
.plans-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 16px;
}

/* ============================================================
   OTT SECTION
   ============================================================ */
.ott-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.ott-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.ott-card:hover {
  transform: translateY(-6px);
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: var(--shadow-hover);
}
.ott-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1;
}
.ott-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #0f172a;
}
.ott-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.ott-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #ffffff;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(14, 165, 233, 0.08);
}
.ott-cta-text h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
}
.ott-cta-text p { color: var(--text-muted); font-size: 1.05rem; }

/* ============================================================
   FRANCHISE
   ============================================================ */
.franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.franchise-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #0f172a;
}
.franchise-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.franchise-benefits {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.franchise-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.benefit-icon {
  font-size: 1.6rem;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.franchise-benefit strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}
.franchise-benefit span {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.franchise-card-visual {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}
.fv-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.fv-icon { font-size: 3rem; }
.fv-title { font-size: 1.3rem; font-weight: 800; color: #0f172a; }
.fv-sub { color: var(--blue); font-size: 0.95rem; font-weight: 600; }
.fv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.fv-stat {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fv-stat-val {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}
.fv-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}
.fv-cta-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}
.contact-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateX(4px);
  box-shadow: var(--shadow-hover);
}
.contact-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.contact-icon svg { width: 24px; height: 24px; }
.contact-card h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: #0f172a; }
.contact-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }
.contact-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}
.contact-link:hover { color: var(--blue-dark); text-decoration: underline; }
.gmb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(66, 133, 244, 0.1);
  border: 1px solid rgba(66, 133, 244, 0.2);
  color: #4285f4;
  padding: 16px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  transition: var(--transition);
}
.gmb-btn:hover {
  background: #4285f4;
  color: #fff;
  transform: translateY(-2px);
}
.contact-form {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.contact-form h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: #0f172a;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.3);
}
.form-success {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--green);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}
.form-success.show { display: block; }

/* OTT MARQUEE */
.marquee-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  /* Fading edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
.ott-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1.1;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
}
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 15px)); } /* 50% of track width minus half gap */
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0f172a; color: #f1f5f9; border-top: none; }
.footer-top { padding: 80px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
.footer-brand { max-width: 300px; }
.footer-logo { margin-bottom: 24px; display: inline-flex; } /* Removed invert filter */
.footer-logo img { height: 48px; width: auto; }
.footer-tagline {
  font-size: 1rem;
  color: #cbd5e1;
  margin-bottom: 12px;
}
.footer-company {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 28px;
  line-height: 1.5;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}
.footer-social a svg { width: 20px; height: 20px; }
.footer-social a:hover {
  background: var(--blue);
  transform: translateY(-3px);
}
.footer-links-col h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links-col ul a {
  font-size: 0.95rem;
  color: #cbd5e1;
  transition: var(--transition);
}
.footer-links-col ul a:hover { color: var(--cyan); padding-left: 6px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 20px; }
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--cyan); }
.footer-contact-list a { color: #cbd5e1; transition: var(--transition); }
.footer-contact-list a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
  background: #020617;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.9rem; color: #94a3b8; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: waBounce 2s ease 3s 2;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
@keyframes waBounce {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.1); }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .franchise-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; flex-direction: column; width: 100%; align-items: flex-start; padding: 24px; }
  .stat { align-items: flex-start; padding: 16px 0; }
  .stat-divider { width: 100%; height: 1px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: #ffffff; padding: 24px; gap: 12px; border-bottom: 1px solid var(--border); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
  .nav-links.open { display: flex; }
  .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hamburger span { background: #0f172a; }
  .nav-container { position: relative; }

  .services-grid, .plans-grid, .ott-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ott-cta-box { flex-direction: column; padding: 32px; text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  
  .page-header { padding: 120px 0 60px; }
  .section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .contact-form, .ott-cta-box, .franchise-card-visual { padding: 32px 20px; }
  .service-card, .plan-card { padding: 32px 24px; }
}
