/* ============================================
   SWIFTSHIFT PACKERS & MOVERS
   Comprehensive Stylesheet - All Pages
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #E67E22;
  --primary-dark: #D35400;
  --primary-light: #FFF3E0;
  --primary-50: #FFF8F0;
  --accent: #2563EB;
  --accent-dark: #1D4ED8;
  --accent-light: #EFF6FF;
  --success: #25D366;
  --success-dark: #1EBE5A;
  --dark: #0F172A;
  --text: #334155;
  --text-light: #64748B;
  --text-lighter: #94A3B8;
  --border: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--primary-dark);
}

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

ul, ol {
  list-style: none;
}

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

p {
  line-height: 1.7;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 900;
  color: var(--dark);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-white { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border: 2px solid #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
  background: var(--success);
  color: #fff;
}
.btn-whatsapp:hover {
  background: var(--success-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 12px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.navbar.scrolled .nav-logo {
  color: var(--dark);
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
}

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

.navbar.scrolled .nav-logo span.highlight {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}

.navbar.scrolled .nav-menu a {
  color: var(--text);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #fff;
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
  color: var(--primary);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.95);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}

.nav-phone:hover {
  color: #fff;
}

.nav-phone i {
  font-size: 1.1rem;
  color: var(--primary);
}

.navbar.scrolled .nav-phone {
  color: var(--dark);
}

.navbar.scrolled .nav-phone:hover {
  color: var(--primary);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--dark);
}

/* Mobile Menu Styles */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.show {
  display: block;
  opacity: 1;
}

.nav-menu.open {
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1001;
}

.nav-menu.open a {
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav-menu.open a:last-child {
  border-bottom: none;
}

.nav-mobile-cta {
  display: none !important;
}

.nav-mobile-cta a {
  display: none !important;
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(124,45,18,0.8) 50%, rgba(230,126,34,0.75) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(230,126,34,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(15,23,42,0.3));
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content {
  color: #fff;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.hero-badge i {
  color: var(--primary);
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.1;
  font-weight: 900;
}

.hero-content h1 span {
  color: var(--primary);
  display: block;
}

.hero-tagline {
  font-size: 1.35rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  display: block;
}

.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-top: 4px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  max-width: 680px;
  text-align: left;
}

.hero-desc {
  max-width: 620px;
  margin-left: 0;
  margin-right: 0;
}

.hero-buttons {
  justify-content: flex-start;
  margin-bottom: 24px;
}

.hero-support-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 0.92rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-support-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37,211,102,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-support-indicator i {
  display: none;
}

.hero-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  font-weight: 600;
}

.hero-contact-line a {
  color: #fff;
  font-weight: 700;
}

.hero-contact-line a:hover {
  color: var(--primary-light);
}

.hero-contact-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}

.hero-form-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 30px 80px rgba(15,23,42,0.32);
  color: var(--dark);
}

.hero-form-topline {
  width: 72px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.hero-form-card h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
  line-height: 1.15;
}

.hero-form-subtitle {
  margin-bottom: 14px;
  color: var(--text-light);
  font-size: 0.98rem;
}

.hero-form-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(230,126,34,0.12);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero-form-status i {
  color: var(--primary);
}

.hero-lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.hero-form-card .form-group {
  margin-bottom: 0;
}

.hero-form-card label {
  display: block;
  margin-bottom: 8px;
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-form-card .form-control {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,0.12);
  background: #fff;
  color: var(--dark);
  font-size: 0.98rem;
  box-shadow: 0 8px 20px rgba(15,23,42,0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-form-card .form-control:focus {
  border-color: rgba(230,126,34,0.7);
  box-shadow: 0 0 0 4px rgba(230,126,34,0.16);
  outline: none;
  transform: translateY(-1px);
}

.hero-form-card select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--dark) 50%), linear-gradient(135deg, var(--dark) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% - 3px), calc(100% - 16px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
}

.hero-submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  box-shadow: 0 16px 36px rgba(37,211,102,0.28);
}

.hero-form-privacy {
  margin: 2px 0 0;
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.hero-form-privacy i {
  color: var(--primary);
  margin-right: 6px;
}
/* ---------- Page Header (Inner Pages) ---------- */

.page-header {
  background: linear-gradient(135deg, rgba(15,23,42,0.95) 0%, rgba(230,126,34,0.8) 100%);
  color: #fff;
  padding: 100px 0 60px;
  text-align: center;
  margin-top: 60px;
}

.page-header h1 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 12px;
  font-weight: 900;
}

.page-header p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: rgba(255,255,255,0.9);
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb .separator {
  color: rgba(255,255,255,0.5);
}

.breadcrumb .current {
  color: rgba(255,255,255,0.7);
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0 auto 20px;
  border: 4px solid #fff;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step-card:hover .step-number {
  background: var(--primary);
  color: #fff;
  transform: scale(1.12);
  box-shadow: var(--shadow-lg);
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.step-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Pricing Section ---------- */
.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.pricing-info h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.pricing-info p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.pricing-highlights {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.pricing-highlight {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pricing-highlight i {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pricing-highlight strong {
  display: block;
  margin-bottom: 2px;
  color: var(--dark);
  font-weight: 700;
}

.pricing-highlight span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.pricing-table {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.pricing-table-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 24px 30px;
  text-align: center;
}

.pricing-table-header h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.pricing-table-header p {
  opacity: 0.85;
  font-size: 0.9rem;
}

.pricing-table-body {
  padding: 24px 30px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row .service-name {
  font-weight: 700;
  color: var(--dark);
}

.pricing-row .service-name i {
  color: var(--primary);
  margin-right: 8px;
}

.pricing-row .starts-from {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.05rem;
}

.pricing-note {
  padding: 16px 30px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(230, 126, 34, 0.2);
}

.pricing-note i {
  font-size: 1.1rem;
}

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 0;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card .service-price,
.service-card .btn {
  margin-left: 24px;
  margin-right: 24px;
}

.service-card .service-icon {
  margin-top: 24px;
}

.service-card .btn {
  margin-bottom: 24px;
  margin-top: auto;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card:hover .service-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-card .service-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--primary-light);
  border-radius: var(--radius);
  border: 1px solid rgba(230,126,34,0.2);
}

.service-price .price-label {
  font-size: 0.8rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.service-price .price-value {
  font-weight: 900;
  color: var(--primary);
  font-size: 1.15rem;
}

.service-card .btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 12px 24px;
}

/* ---------- WhatsApp Section ---------- */
.whatsapp-section {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 50%, #25D366 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.whatsapp-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%);
}

.whatsapp-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.whatsapp-info h2 {
  color: #fff;
  font-size: 2.25rem;
  margin-bottom: 16px;
  font-weight: 900;
}

.whatsapp-info p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.whatsapp-features {
  display: grid;
  gap: 16px;
  margin-bottom: 30px;
}

.whatsapp-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.whatsapp-feature i {
  color: #25D366;
  background: rgba(255,255,255,0.15);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.whatsapp-steps {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1px solid rgba(255,255,255,0.15);
}

.whatsapp-steps h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 900;
}

.wa-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.wa-step:last-child {
  margin-bottom: 0;
}

.wa-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.wa-step-text strong {
  display: block;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 800;
}

.wa-step-text span {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* ---------- Trust & Safety ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.trust-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.trust-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.trust-card:hover .trust-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

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

.trust-card p {
  color: var(--text-light);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ---------- About Section ---------- */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.about-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 900;
}

.about-info p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-features {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.about-feature i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* ---------- Compliance Panel ---------- */
.compliance-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.compliance-panel h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 900;
}

.compliance-panel p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

.compliance-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.compliance-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.6;
}

.compliance-list i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.compliance-note {
  background: #FFF8F0;
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.compliance-note h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 800;
}

.compliance-note p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 8px;
}

.compliance-note p:last-child {
  margin-bottom: 0;
}

.compliance-note a {
  color: var(--primary);
  font-weight: 700;
}

/* ---------- Coverage Section ---------- */
.coverage-grid,
.states-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.coverage-card,
.state-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 160px;
  justify-content: flex-start;
}

.coverage-card:hover,
.state-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
  background: rgba(230, 126, 34, 0.02);
}

.coverage-card .icon,
.state-card i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage-card h4,
.state-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 900;
  color: var(--dark);
}

.coverage-card p,
.state-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Responsive: 3 columns on tablet */
@media (max-width: 1024px) {
  .coverage-grid,
  .states-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Responsive: 2 columns on mobile */
@media (max-width: 768px) {
  .coverage-grid,
  .states-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

/* Responsive: 1 column on small mobile */
@media (max-width: 480px) {
  .coverage-grid,
  .states-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ---------- Contact Form Section ---------- */
.contact-page {
  padding-top: 40px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 900;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-methods {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-method-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-method h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-weight: 800;
}

.contact-method p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.contact-method a {
  color: var(--primary);
  font-weight: 700;
}

.contact-form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 900;
}

.form-subtitle {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-help {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

.form-divider {
  text-align: center;
  margin: 16px 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ---------- Service Detail Page ---------- */
.service-detail {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.service-detail-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.service-detail-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  font-weight: 900;
}

.service-detail-price {
  color: var(--text-light);
  font-size: 1rem;
}

.service-detail-price strong {
  color: var(--primary);
  font-weight: 900;
  font-size: 1.2rem;
}

.service-detail-content {
  line-height: 1.8;
}

.service-detail-content h3 {
  font-size: 1.3rem;
  margin-top: 28px;
  margin-bottom: 16px;
  font-weight: 900;
}

.service-detail-content ul {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.service-detail-content li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  line-height: 1.6;
}

.service-detail-content i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 900;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Policy Content ---------- */
.policy-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.policy-effective {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.policy-content h2 {
  font-size: 1.6rem;
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 900;
}

.policy-content h2:first-of-type {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 800;
}

.policy-content p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 16px;
  margin-left: 24px;
}

.policy-content li {
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.7;
}

.policy-content ul li::before {
  content: '•';
  margin-right: 12px;
  color: var(--primary);
  font-weight: 900;
}

.policy-content ol {
  list-style: decimal;
}

.policy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  overflow: hidden;
}

.policy-content thead {
  background: var(--primary-light);
}

.policy-content th {
  padding: 16px;
  text-align: left;
  font-weight: 800;
  color: var(--primary-dark);
  border-bottom: 2px solid var(--border);
}

.policy-content td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.policy-content tbody tr:hover {
  background: var(--bg-alt);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-dark);
  color: #fff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 16px;
  font-weight: 900;
  color: #fff;
}

.footer-links {
  display: grid;
  gap: 10px;
}

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

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

.footer-contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-disclosure {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

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

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-banner-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-banner-content a {
  color: var(--primary);
  font-weight: 700;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-decline {
  cursor: pointer;
}

/* ---------- Back to Top Button ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  pointer-events: none;
}

.back-to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-5px);
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-grid::before {
    display: none;
  }
  
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-content,
  .whatsapp-content,
  .about-preview,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .service-detail-header {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    display: none;
  }
  
  .nav-cta {
    display: none;
  }

  .hero .container {
    text-align: left;
    padding-top: 110px;
    padding-bottom: 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-support-strip {
    width: 100%;
    border-radius: 18px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .hero-stats {
    gap: 30px;
    justify-content: flex-start;
  }

  .hero-form-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .hero-form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .policy-content {
    padding: 24px;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: auto;
  }

  .hero .container {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1.1rem;
  }

  .hero-support-strip {
    font-size: 0.84rem;
    padding: 10px 12px;
  }

  .hero-form-card {
    padding: 20px 16px;
  }

  .hero-form-card h3 {
    font-size: 1.45rem;
  }

  .hero-form-card .form-control {
    min-height: 50px;
    padding: 13px 14px;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-stat .number {
    font-size: 2rem;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .btn-lg {
    padding: 14px 28px;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .coverage-grid {
    grid-template-columns: 1fr;
  }
  
  .page-header {
    padding: 80px 0 40px;
  }
  
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .page-header p {
    font-size: 1rem;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .policy-content {
    padding: 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
