/* ==========================================================================
   Webguard Info Solutions - Human-Centric Tech Help Design System
   Google Policy Compliant & Elevated Visual Aesthetic
   ========================================================================== */

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

:root {
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Palette - Warm Slate & Vibrant Blue */
  --primary-950: #090d16;
  --primary-900: #0f172a;
  --primary-800: #1e293b;
  --primary-700: #334155;
  
  --brand-blue: #2563eb;
  --brand-blue-hover: #1d4ed8;
  --brand-blue-light: #eff6ff;
  --brand-cyan: #0284c7;
  
  --emerald: #059669;
  --emerald-light: #ecfdf5;
  --amber: #d97706;
  --amber-light: #fffbeb;
  
  --surface-bg: #f8fafc;
  --surface-card: #ffffff;
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --border-subtle: #e2e8f0;
  --border-highlight: #bfdbfe;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 48px -12px rgba(15, 23, 42, 0.18);

  --radius-sm: 0.5rem;
  --radius-md: 0.85rem;
  --radius-lg: 1.25rem;
  --radius-full: 9999px;
  
  --transition-smooth: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--surface-bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-space {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

/* Google Policy Prominent Disclosure Banner */
.compliance-banner {
  background-color: #1e293b;
  color: #f1f5f9;
  font-size: 0.825rem;
  padding: 0.6rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.compliance-banner a {
  color: #93c5fd;
  text-decoration: underline;
}

/* Header Navbar */
.header-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

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

.logo-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--primary-950);
  white-space: nowrap;
}

.logo-brand i {
  color: var(--brand-blue);
  background: var(--brand-blue-light);
  padding: 0.3rem 0.4rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-700);
  transition: var(--transition-smooth);
}

.nav-menu a:hover {
  color: var(--brand-blue);
}

.phone-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--brand-blue-hover);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-highlight);
  transition: var(--transition-smooth);
}

.phone-badge:hover {
  background: var(--brand-blue);
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* Primary Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ffffff;
  border-color: var(--border-subtle);
  color: var(--primary-800);
}

.btn-secondary:hover {
  background-color: var(--surface-bg);
  border-color: var(--primary-700);
}

.btn-full {
  width: 100%;
}

/* Floating Call Button */
.floating-call-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.4rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: var(--transition-smooth);
  border: 2px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
}

.floating-call-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.55);
  color: #ffffff;
}

.floating-call-btn i {
  font-size: 1.1rem;
  animation: pulseCall 2s infinite;
}

@keyframes pulseCall {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

/* Hero Section */
.hero-wrapper {
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 50%, #0369a1 100%);
  color: #ffffff;
  padding-top: 4.5rem;
  padding-bottom: 5.5rem;
  position: relative;
  overflow: hidden;
}

.hero-wrapper::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-text-box h1 {
  color: #ffffff;
  font-size: 2.85rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-text-box h1 span.highlight-text {
  color: #38bdf8;
}

.hero-text-box p.lead {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.human-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.human-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.02rem;
  color: #f1f5f9;
}

.human-bullets li i {
  color: #34d399;
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.hero-disclaimer-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 1.5rem;
}

.hero-disclaimer-box a {
  color: #60a5fa;
  text-decoration: underline;
}

/* Hero Form Container */
.form-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-xl);
  border-top: 6px solid var(--brand-blue);
}

.form-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  text-align: center;
}

.form-card p.sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.15rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-800);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--surface-bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--brand-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.privacy-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.75rem;
  display: block;
}

/* Section Header Layout */
.section-head {
  max-width: 720px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-head .pill-tag {
  display: inline-block;
  background-color: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.section-head h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* How We Help Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-highlight);
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.service-box p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.human-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.human-list li {
  font-size: 0.88rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}

.human-list li i {
  color: var(--emerald);
}

/* Interactive Estimator / Wizard */
.estimator-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.chip-item {
  background: var(--surface-bg);
  border: 2px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.chip-item:hover, .chip-item.selected {
  border-color: var(--brand-blue);
  background: var(--brand-blue-light);
}

.chip-item i {
  font-size: 1.6rem;
  color: var(--brand-blue);
  margin-bottom: 0.5rem;
}

.chip-item h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.chip-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.price-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.price-card.featured {
  border: 2px solid var(--brand-blue);
  box-shadow: var(--shadow-xl);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-blue);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.85rem;
  border-radius: var(--radius-full);
}

.price-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-950);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.amount span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-card p.desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

/* FAQ Details */
.faq-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-box summary {
  padding: 1.25rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-950);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.faq-box summary::-webkit-details-marker {
  display: none;
}

.faq-box summary i {
  color: var(--brand-blue);
  transition: transform 200ms ease;
}

.faq-box[open] summary i {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Policy Document Styling */
.policy-hero {
  background: var(--primary-950);
  color: #ffffff;
  padding: 3.5rem 0;
}

.policy-hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.policy-container {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-top: -2rem;
  box-shadow: var(--shadow-md);
}

.policy-container h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--primary-950);
  border-bottom: 2px solid var(--brand-blue-light);
  padding-bottom: 0.4rem;
}

.policy-container p, .policy-container ul {
  font-size: 0.96rem;
  color: var(--text-body);
  margin-bottom: 1.1rem;
  line-height: 1.7;
}

.policy-container ul {
  padding-left: 1.5rem;
}

.policy-callout {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin: 1.5rem 0;
}

.policy-callout h4 {
  color: #b45309;
  margin-bottom: 0.3rem;
}

.policy-callout p {
  color: #92400e;
  margin-bottom: 0;
  font-size: 0.9rem;
}

/* Footer Section */
.footer-wrap {
  background-color: var(--primary-950);
  color: #94a3b8;
  padding-top: 4rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-col p {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.65;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-disclaimer-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 2rem;
  text-align: justify;
}

.footer-disclaimer-box strong {
  color: #cbd5e1;
}

/* Mobile Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .floating-call-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.75rem 1.2rem;
    font-size: 0.88rem;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle-btn {
    display: block;
  }

  .hero-text-box h1 {
    font-size: 2.1rem;
  }

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