/* ==========================================================================
   INDIAN WEB DESIGN AGENCY LANDING PAGE - GOOGLE ADS PPC CONVERSION STYLES
   Theme: Pure White with Neon Glowing Buttons & Corporate Agency Accents
   Typography: Poppins (Google Fonts)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  --bg-main: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.95);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #64748b;
  --text-inverse: #ffffff;
  
  /* Primary Indian Agency Brand Colors */
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  
  /* Neon Glow Colors */
  --neon-whatsapp: #25d366;
  --neon-whatsapp-glow: rgba(37, 211, 102, 0.6);
  --neon-call: #06b6d4;
  --neon-call-glow: rgba(6, 182, 212, 0.6);
  --neon-primary-glow: rgba(37, 99, 235, 0.6);
  
  --border-light: #e2e8f0;
  --border-focus: #3b82f6;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 35px -10px rgba(15, 23, 42, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --max-width: 1240px;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

.bg-subtle {
  background-color: var(--bg-subtle);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY & NEON GLOWING BUTTONS
   -------------------------------------------------------------------------- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 50%, var(--neon-call) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.dynamic-typewriter {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
  vertical-align: bottom;
}

/* Neon Glowing Buttons with Animations */
.btn-neon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-neon-call {
  background: linear-gradient(135deg, #06b6d4 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 0 20px var(--neon-call-glow), 0 0 40px rgba(6, 182, 212, 0.3);
  animation: neonPulseCall 2.5s infinite alternate;
}

.btn-neon-call:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px var(--neon-call-glow), 0 0 60px rgba(6, 182, 212, 0.6);
  color: #ffffff;
}

.btn-neon-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 0 20px var(--neon-whatsapp-glow), 0 0 40px rgba(37, 211, 102, 0.3);
  animation: neonPulseWhatsapp 2.5s infinite alternate;
}

.btn-neon-whatsapp:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 30px var(--neon-whatsapp-glow), 0 0 60px rgba(37, 211, 102, 0.6);
  color: #ffffff;
}

.btn-icon-animated {
  font-size: 1.3rem;
  display: inline-block;
  animation: pulseIcon 1.5s infinite ease-in-out;
}

/* --------------------------------------------------------------------------
   4. NAVIGATION BAR WITH BUSINESS LOGO & CALL ACTIONS
   -------------------------------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.85rem 0;
  transition: all 0.3s ease;
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--text-main);
}

.logo-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--neon-call) 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

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

.agency-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-left: 0.5rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

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

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

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--text-main);
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. HIGH-CONVERSION HERO SECTION
   -------------------------------------------------------------------------- */
.hero {
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.06) 0%, transparent 60%),
              radial-gradient(circle at 10% 90%, rgba(6, 182, 212, 0.06) 0%, transparent 60%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.corporate-badge-bar {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 1.25rem;
  background-color: var(--primary-light);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: 3.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-neon-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.proof-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.proof-val {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.1;
}

.proof-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Quick Form Card Above The Fold */
.hero-form-card {
  background: var(--bg-card);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.15);
  position: relative;
  transition: all 0.3s ease;
}

.hero-form-card:hover {
  border-color: var(--border-focus);
}

.form-header-badge {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid rgba(37, 99, 235, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.form-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background-color: var(--bg-subtle);
  color: var(--text-main);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* --------------------------------------------------------------------------
   6. SERVICES SHOWCASE WITH REAL BROWSER FRAME PREVIEWS
   -------------------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

/* Browser Frame Box for Real Website Screenshots */
.browser-frame-box {
  background: #0f172a;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border-light);
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
  position: relative;
}

.browser-frame-header {
  background: #1e293b;
  padding: 0.5rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.browser-dot.red { background-color: #ef4444; }
.browser-dot.yellow { background-color: #f59e0b; }
.browser-dot.green { background-color: #10b981; }

.browser-url-text {
  font-size: 0.725rem;
  color: #94a3b8;
  margin-left: 0.5rem;
  font-family: monospace;
}

.card-preview-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .card-preview-image,
.work-card:hover .card-preview-image {
  transform: scale(1.05);
}

.service-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.service-features i {
  color: #10b981;
}

/* --------------------------------------------------------------------------
   7. WORK SHOWCASE / PORTFOLIO WITH REAL BROWSER PREVIEWS
   -------------------------------------------------------------------------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-body {
  padding: 1.5rem;
}

.work-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.work-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.work-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   8. GOOGLE REVIEWS SHOWCASE (MATCHING USER SCREENSHOT EXACTLY)
   -------------------------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.google-review-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.google-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.1);
  border-color: #cbd5e1;
}

.review-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.reviewer-header-info {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Avatar Circles matching SK in user screenshot */
.reviewer-avatar-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-sk { background-color: #e0f2fe; color: #0284c7; }
.avatar-rs { background-color: #eff6ff; color: #2563eb; }
.avatar-ss { background-color: #dcfce7; color: #16a34a; }
.avatar-ak { background-color: #fef3c7; color: #d97706; }

.reviewer-fullname {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
  line-height: 1.2;
}

.reviewer-role {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 0.15rem;
}

.google-g-icon {
  width: 32px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #4285f4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stars-gold-row {
  color: #fbbc04;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.15rem;
}

.google-review-text {
  font-size: 0.975rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.google-review-text strong {
  color: #0f172a;
  font-weight: 700;
}

.review-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.85rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #16a34a;
  font-weight: 600;
}

.review-time {
  color: #94a3b8;
}

/* --------------------------------------------------------------------------
   9. POPUP CONSULTATION MODAL (ONLY 1 TAGLINE + 2 BUTTONS)
   -------------------------------------------------------------------------- */
.consultation-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
  padding: 1.5rem;
}

.consultation-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.consultation-popup-card {
  background: #ffffff;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.75rem 2rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.4);
  position: relative;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

.consultation-popup-overlay.active .consultation-popup-card {
  transform: scale(1);
}

.popup-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-muted);
  cursor: pointer;
}

.popup-tagline {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2rem;
  line-height: 1.25;
}

.popup-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.popup-buttons-stack .btn-neon {
  width: 100%;
  padding: 1.1rem 1.5rem;
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   10. FLOATING ACTION WIDGETS
   -------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.3s ease;
}

.floating-btn-whatsapp {
  background-color: var(--neon-whatsapp);
  box-shadow: 0 0 20px var(--neon-whatsapp-glow);
}

.floating-btn-call {
  background-color: var(--primary);
  box-shadow: 0 0 20px var(--neon-primary-glow);
}

.floating-btn:hover {
  transform: scale(1.15);
}

/* --------------------------------------------------------------------------
   11. FOOTER
   -------------------------------------------------------------------------- */
.footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 4rem 0 2rem 0;
}

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

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   12. KEYFRAME ANIMATIONS & FULL MOBILE RESPONSIVENESS
   -------------------------------------------------------------------------- */
@keyframes neonPulseCall {
  0% { box-shadow: 0 0 15px rgba(6, 182, 212, 0.5); }
  100% { box-shadow: 0 0 35px rgba(6, 182, 212, 0.9), 0 0 60px rgba(37, 99, 235, 0.6); }
}

@keyframes neonPulseWhatsapp {
  0% { box-shadow: 0 0 15px rgba(37, 211, 102, 0.5); }
  100% { box-shadow: 0 0 35px rgba(37, 211, 102, 0.9), 0 0 60px rgba(16, 185, 129, 0.6); }
}

@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Mobile & Tablet Responsive Media Queries */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .corporate-badge-bar {
    margin: 0 auto 1.25rem auto;
  }

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

  .hero-social-proof {
    justify-content: center;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .nav-cta-btn {
    display: none;
  }

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

@media (max-width: 640px) {
  .section-padding {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 7rem;
    padding-bottom: 3.5rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .hero-neon-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-neon-ctas .btn-neon {
    width: 100%;
  }

  .services-grid, .work-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }

  .hero-form-card {
    padding: 1.5rem;
  }

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

  .floating-actions {
    bottom: 1.25rem;
    right: 1.25rem;
    gap: 0.75rem;
  }

  .floating-btn {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .consultation-popup-card {
    padding: 2rem 1.5rem;
  }

  .popup-tagline {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
