/* ===================================
   NaxaInsure - Complete Stylesheet
   =================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --primary: #0000FF;
  --primary-light: #3333FF;
  --primary-dark: #0000B3;
  --primary-fg: #ffffff;
  --secondary: #FFCC00;
  --secondary-light: #FFD633;
  --secondary-dark: #E6B800;
  --secondary-fg: #1a1a00;
  --background: #ffffff;
  --foreground: #1F2937;
  --card: #ffffff;
  --muted: #F3F4F6;
  --muted-fg: #6B7280;
  --accent: #F3F4F6;
  --border: #E5E7EB;
  --destructive: #E74C3C;
  --radius: 0.75rem;
  /* Tailwind exact shadow values */
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1);
  --shadow-md: 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);
  --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background: var(--background);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
address { font-style: normal; }

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  font-size: inherit;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-muted { color: var(--muted-fg) !important; }

/* ============================
   HEADER
   ============================ */
.site-header {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--secondary);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.header-logo:hover { opacity: 0.9; }

.header-logo img {
  height: 44px;
  width: auto;
  border-radius: 0.5rem;
  box-shadow: var(--shadow-md);
  filter: invert(1);
  object-fit: contain;
  transition: box-shadow 0.3s;
}

.header-logo:hover img { box-shadow: var(--shadow-lg); }

.header-logo-text h1 {
  font-size: 1.375rem;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin: 0;
}

.header-logo-text span {
  font-size: 0.7rem;
  color: var(--secondary-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  gap: 2.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.nav-desktop a {
  color: var(--foreground);
  transition: color 0.2s;
  position: relative;
  padding: 0.25rem 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-desktop a:hover { color: var(--primary); }
.nav-desktop a:hover::after { width: 100%; }

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.5rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.mobile-menu-btn:hover { background: var(--accent); color: var(--primary); }
.mobile-menu-btn svg { width: 24px; height: 24px; }

.mobile-menu {
  display: none;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1.5rem 1.25rem;
}

.mobile-menu.active { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.875rem 0;
  color: var(--foreground);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.2s;
  border-bottom: 1px solid var(--accent);
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--primary); }

@media (min-width: 768px) {
  .nav-desktop { display: flex; }
  .mobile-menu-btn { display: none; }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--secondary-fg);
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
  box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
  background: var(--secondary-light);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  background: transparent;
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
  font-weight: 600;
}

.btn-secondary:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 0.875rem 2rem;
  font-size: 1.0625rem;
  box-shadow: var(--shadow-lg);
}

.btn-blue:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-blue:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
}

.btn-outline {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--foreground);
  padding: 0.5rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-outline svg { margin-right: 0.5rem; }

.btn-sm { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, #0f1b3d 100%);
  padding: 4rem 0;
  color: #fff;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.hero-left { flex: 1; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-stars {
  display: flex;
  gap: 0.125rem;
}

.hero-stars svg { width: 16px; height: 16px; fill: var(--secondary); color: var(--secondary); }

.hero-trust span { font-size: 0.875rem; font-weight: 500; color: var(--secondary); }

.hero h2 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 1.25rem; }
.hero h2 .highlight { color: var(--secondary); }

.hero-description {
  font-size: 1.125rem;
  color: rgba(191,219,254,0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-benefit-item svg { width: 20px; height: 20px; color: var(--secondary); flex-shrink: 0; }
.hero-benefit-item span { font-size: 0.875rem; font-weight: 600; }

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-contact-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(191,219,254,0.8);
  font-size: 0.875rem;
}

.hero-contact-info svg { width: 16px; height: 16px; }

.hero-right { flex: 1; position: relative; display: none; }

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(255,204,0,0.2), rgba(0,0,255,0.2));
  border-radius: 1.5rem;
  filter: blur(40px);
}

.hero-right img {
  position: relative;
  border-radius: 1rem;
  box-shadow: var(--shadow-2xl);
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 480px;
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--secondary);
  color: var(--secondary-fg);
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  box-shadow: var(--shadow-lg);
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .hero-benefits { grid-template-columns: repeat(3, 1fr); }
  .hero-cta { flex-direction: row; }
}

@media (min-width: 768px) {
  .hero { padding: 5rem 0; }
  .hero h2 { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero { padding: 6rem 0; }
  .hero-content { flex-direction: row; align-items: center; }
  .hero h2 { font-size: 3.5rem; }
  .hero-right { display: block; }
  .hero-description { font-size: 1.25rem; }
}

/* ============================
   BENEFITS SECTION
   ============================ */
.benefits {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.benefits-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.benefits-header h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.benefits-header p { font-size: 1.125rem; color: var(--muted-fg); max-width: 40rem; margin: 0 auto; }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: opacity 0.3s;
}

.benefit-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-icon {
  background: linear-gradient(135deg, rgba(0,0,255,0.08), rgba(0,0,255,0.03));
  border-radius: var(--radius);
  padding: 0.875rem;
  display: inline-flex;
  margin-bottom: 1.25rem;
  transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
  background: linear-gradient(135deg, rgba(0,0,255,0.15), rgba(0,0,255,0.08));
}

.benefit-icon svg { width: 28px; height: 28px; color: var(--primary); }

.benefit-highlight {
  display: inline-block;
  background: rgba(255,204,0,0.15);
  color: var(--secondary-fg);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
  font-family: 'Montserrat', sans-serif;
}

.benefit-card h3 { font-size: 1.125rem; margin-bottom: 0.625rem; }
.benefit-card p { color: var(--muted-fg); line-height: 1.6; font-size: 0.9375rem; }

.benefit-footer {
  margin-top: 1.25rem;
  padding-top: 0.875rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--secondary-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.benefit-footer svg { width: 14px; height: 14px; }

.benefits-cta { text-align: center; margin-top: 3.5rem; }

.benefits-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.benefits-cta-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.benefits-cta-box p { color: rgba(191,219,254,0.9); margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

.benefits-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) { .benefits-cta-buttons { flex-direction: row; } }
@media (min-width: 768px) {
  .benefits-header h2 { font-size: 2.25rem; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================
   CONTACT FORM
   ============================ */
.contact-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, rgba(0,0,255,0.03) 0%, rgba(255,204,0,0.03) 100%);
}

.contact-header { text-align: center; margin-bottom: 2.5rem; }
.contact-header h2 { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-header > p { font-size: 1.0625rem; color: var(--muted-fg); max-width: 38rem; margin: 0 auto; line-height: 1.6; }

.contact-checks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--muted-fg);
  flex-wrap: wrap;
}

.contact-check { display: flex; align-items: center; gap: 0.375rem; }
.contact-check svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.contact-form-wrapper { max-width: 52rem; margin: 0 auto; }

.contact-form-box {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  padding: 2rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.375rem;
  font-family: 'Montserrat', sans-serif;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--border);
  outline: none;
  transition: all 0.2s;
  font-size: 0.9375rem;
  background: #fff;
  color: var(--foreground);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,255,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-group .error-message {
  color: var(--destructive);
  font-size: 0.75rem;
  margin-top: 0.375rem;
  font-weight: 500;
}

/* --- Custom Select (Radix-style) --- */
.custom-select-wrapper { position: relative; }

.custom-select-trigger {
  width: 100%;
  padding: 0.625rem 0.875rem;
  padding-right: 2.5rem;
  border-radius: 0.5rem;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--foreground);
  cursor: pointer;
  display: flex;
  align-items: center;
  outline: none;
  transition: all 0.2s;
  min-height: 42px;
  text-align: left;
  line-height: 1.4;
}

.custom-select-trigger:focus,
.custom-select-trigger:active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,0,255,0.1);
}

.custom-select-trigger .placeholder { color: #9CA3AF; }

.custom-select-arrow {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted-fg);
  display: flex;
}

.custom-select-arrow svg { width: 16px; height: 16px; }

.custom-select-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 50;
  max-height: 260px;
  overflow-y: auto;
  padding: 0.25rem;
  animation: selectOpen 0.15s ease-out;
}

@keyframes selectOpen {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.custom-select-dropdown.open { display: block; }

.custom-select-option {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: background 0.1s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--foreground);
}

.custom-select-option:hover { background: var(--accent); }

.custom-select-option.selected {
  background: rgba(0,0,255,0.06);
  color: var(--primary);
  font-weight: 600;
}

.custom-select-option .check-icon { width: 16px; height: 16px; color: var(--primary); visibility: hidden; flex-shrink: 0; }
.custom-select-option.selected .check-icon { visibility: visible; }

/* --- Custom Checkbox (Radix-style) --- */
.custom-checkbox {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.custom-checkbox input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.custom-checkbox .checkbox-box {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  background: #fff;
  flex-shrink: 0;
}

.custom-checkbox input:hover + .checkbox-box { border-color: var(--primary); }
.custom-checkbox input:checked + .checkbox-box { background: var(--primary); border-color: var(--primary); }
.custom-checkbox input:focus-visible + .checkbox-box { box-shadow: 0 0 0 3px rgba(0,0,255,0.15); }

.custom-checkbox .checkbox-box svg {
  width: 14px;
  height: 14px;
  color: #fff;
  opacity: 0;
  transform: scale(0);
  transition: all 0.15s ease;
}

.custom-checkbox input:checked + .checkbox-box svg {
  opacity: 1;
  transform: scale(1);
}

/* --- Opt-in Boxes --- */
.optin-box {
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid;
  margin-top: 0.25rem;
}

.optin-alerts {
  background: linear-gradient(135deg, rgba(0,0,255,0.03), rgba(255,204,0,0.03));
  border-color: rgba(0,0,255,0.15);
}

.optin-promo {
  background: linear-gradient(135deg, rgba(255,204,0,0.03), rgba(0,0,255,0.03));
  border-color: rgba(255,204,0,0.15);
}

.optin-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.optin-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--foreground);
  cursor: pointer;
  margin-bottom: 0.375rem;
  display: block;
  font-family: 'Montserrat', sans-serif;
}

.optin-text {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.6;
}

.optin-text a { color: var(--primary); text-decoration: underline; }
.optin-text a:hover { color: var(--primary-dark); }

.submit-section { margin-top: 1.75rem; }

.submit-section .btn-blue {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.submit-trust {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--muted-fg);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
}

.submit-trust svg { width: 16px; height: 16px; color: var(--primary); }

/* --- Form Success --- */
.form-success {
  background: linear-gradient(135deg, rgba(0,0,255,0.06), rgba(255,204,0,0.06));
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(0,0,255,0.15);
  text-align: center;
}

.form-success-icon {
  background: rgba(0,0,255,0.12);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success-icon svg { width: 40px; height: 40px; color: var(--primary); }
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.form-success p { font-size: 1rem; margin-bottom: 0.75rem; color: var(--muted-fg); }

.form-success .ref-box {
  background: rgba(255,255,255,0.85);
  padding: 0.875rem;
  border-radius: 0.5rem;
  margin-bottom: 0.875rem;
  border: 1px solid var(--border);
}

.form-success .ref-box span { color: var(--primary); font-weight: 700; }

@media (min-width: 768px) {
  .contact-form-box { padding: 3rem; }
  .form-grid-2col { grid-template-columns: 1fr 1fr; }
  .contact-header h2 { font-size: 2.25rem; }
}

/* ============================
   MAP SECTION
   ============================ */
.map-section { padding: 4rem 0; background: #fff; }

.map-section-title { font-size: 1.75rem; text-align: center; margin-bottom: 2rem; }

.map-container { max-width: 48rem; margin: 0 auto; }

.map-visual {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, rgba(0,0,255,0.06), rgba(255,204,0,0.06));
  border-radius: var(--radius);
  border: 2px solid rgba(0,0,255,0.12);
  position: relative;
  overflow: hidden;
}

.map-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background: linear-gradient(rgba(0,0,255,0.08) 1px, transparent 1px),
              linear-gradient(90deg, rgba(0,0,255,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }

.map-marker-dot {
  width: 32px;
  height: 32px;
  background: var(--secondary);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: markerPulse 2s ease-in-out infinite;
}

.map-marker-dot svg { width: 14px; height: 14px; color: #fff; }

.map-ping {
  position: absolute;
  inset: 0;
  width: 32px;
  height: 32px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  animation: ping 1.5s ease-out infinite;
}

.map-ping-2 { border: 1px solid rgba(255,204,0,0.4); animation-delay: 0.5s; }

@keyframes markerPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
@keyframes ping { 0% { transform: scale(1); opacity: 0.8; } 100% { transform: scale(3); opacity: 0; } }

.map-address-card {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: 0.625rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
}

.map-address-inner { display: flex; align-items: flex-start; gap: 0.75rem; }

.map-address-icon {
  background: rgba(0,0,255,0.08);
  padding: 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.map-address-icon svg { width: 20px; height: 20px; color: var(--primary); }

.map-address-text h3 { color: var(--primary); font-size: 1rem; margin-bottom: 0.125rem; }
.map-address-text p { color: #374151; font-size: 0.8125rem; font-weight: 500; margin: 0; }

.map-contact-row { display: flex; gap: 1rem; margin-top: 0.625rem; font-size: 0.75rem; color: #6B7280; }
.map-contact-item { display: flex; align-items: center; gap: 0.25rem; }
.map-contact-item svg { width: 12px; height: 12px; }

.map-decorative-1 { position: absolute; top: 1rem; right: 1rem; width: 64px; height: 64px; background: rgba(0,0,255,0.04); border-radius: 50%; }
.map-decorative-2 { position: absolute; bottom: 5rem; right: 2rem; width: 32px; height: 32px; background: rgba(255,204,0,0.08); border-radius: 50%; }
.map-decorative-3 { position: absolute; top: 4rem; left: 2rem; width: 16px; height: 16px; background: rgba(0,0,255,0.12); border-radius: 50%; }

.map-below { text-align: center; margin-top: 1rem; }
.map-below p { font-size: 0.875rem; color: var(--muted-fg); }

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s;
}

.map-directions:hover { color: var(--primary-dark); }
.map-directions svg { width: 16px; height: 16px; }

@media (min-width: 768px) { .map-section-title { font-size: 2rem; } }

/* ============================
   FAQS SECTION
   ============================ */
.faqs {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
}

.faqs-header { text-align: center; margin-bottom: 3.5rem; }

.faqs-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.faqs-title-row svg { width: 32px; height: 32px; color: var(--primary); }
.faqs-title-row h2 { font-size: 2rem; }
.faqs-header p { font-size: 1.0625rem; color: var(--muted-fg); max-width: 40rem; margin: 0 auto; }

.faq-list {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-md); }

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: background 0.15s;
  cursor: pointer;
  gap: 1rem;
}

.faq-question:hover { background: rgba(0,0,255,0.02); }

.faq-question span {
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--foreground);
  transition: color 0.2s;
  flex: 1;
}

.faq-question:hover span { color: var(--primary); }

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,255,0.06);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-question:hover .faq-chevron { background: rgba(0,0,255,0.12); }
.faq-item.active .faq-chevron { background: var(--primary); }

.faq-chevron svg { width: 18px; height: 18px; color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active .faq-chevron svg { color: #fff; transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
  background: rgba(0,0,255,0.01);
}

.faq-item.active .faq-answer { display: block; }
.faq-answer-inner { padding-top: 1.25rem; }
.faq-answer p { color: var(--muted-fg); margin-bottom: 0.625rem; line-height: 1.6; font-size: 0.9375rem; }
.faq-answer ul, .faq-answer ol { list-style: disc inside; color: var(--muted-fg); margin-bottom: 0.625rem; }
.faq-answer ol { list-style: decimal inside; }
.faq-answer li { margin-bottom: 0.375rem; font-size: 0.9375rem; }
.faq-answer .faq-highlight { color: var(--primary); font-weight: 600; margin-top: 0.75rem; }
.faq-answer .faq-highlight-secondary { color: var(--secondary-dark); font-weight: 600; margin-top: 0.75rem; }

.faqs-cta { text-align: center; margin-top: 3.5rem; }

.faqs-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 1.25rem;
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow: var(--shadow-xl);
}

.faqs-cta-box svg.cta-icon { width: 48px; height: 48px; margin: 0 auto 1rem; color: var(--secondary); }
.faqs-cta-box h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.faqs-cta-box p { color: rgba(191,219,254,0.9); margin-bottom: 1.5rem; max-width: 36rem; margin-left: auto; margin-right: auto; }

.faqs-cta-buttons { display: flex; flex-direction: column; gap: 0.875rem; justify-content: center; align-items: center; }
.faqs-cta-footer { font-size: 0.75rem; color: rgba(147,197,253,0.8); margin-top: 1rem; }

@media (min-width: 640px) { .faqs-cta-buttons { flex-direction: row; } }
@media (min-width: 768px) { .faqs-title-row h2 { font-size: 2.25rem; } }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: linear-gradient(180deg, #111827 0%, #030712 100%);
  color: #fff;
}

.footer-cta-bar {
  background: rgba(0,0,255,0.08);
  border-bottom: 1px solid rgba(0,0,255,0.15);
  padding: 2.5rem 0;
}

.footer-cta-inner { text-align: center; }
.footer-cta-inner h3 { font-size: 1.5rem; color: var(--primary-light); margin-bottom: 0.5rem; }
.footer-cta-inner > p { font-size: 1rem; color: #9CA3AF; margin-bottom: 1.25rem; }

.footer-cta-actions { display: flex; flex-direction: column; gap: 1rem; justify-content: center; align-items: center; }

.footer-cta-phone { display: flex; align-items: center; gap: 0.5rem; color: var(--secondary); font-weight: 600; font-size: 1rem; }
.footer-cta-phone svg { width: 16px; height: 16px; }

.footer-main { padding: 3.5rem 0; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.footer-col h4 { font-size: 1rem; margin-bottom: 1.25rem; color: #fff; letter-spacing: 0.01em; }

.footer-company-desc { color: #9CA3AF; line-height: 1.6; margin-bottom: 1rem; font-size: 0.9375rem; }

.footer-badges { display: flex; gap: 1.25rem; font-size: 0.8125rem; color: #6B7280; }
.footer-badges span { display: flex; align-items: center; gap: 0.375rem; }
.footer-badges svg { width: 14px; height: 14px; }

.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a {
  color: #9CA3AF;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
}

.footer-links a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  transition: all 0.2s;
  flex-shrink: 0;
}

.footer-links a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-links a:hover::before { background: var(--secondary); }

.footer-contact-list { display: flex; flex-direction: column; gap: 1rem; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; }

.footer-contact-icon {
  background: rgba(0,0,255,0.15);
  padding: 0.5rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
}

.footer-contact-icon svg { width: 16px; height: 16px; color: var(--secondary); }

.footer-contact-label { font-size: 0.8125rem; color: #6B7280; }
.footer-contact-value { color: #E5E7EB; font-weight: 500; font-size: 0.9375rem; }
.footer-contact-sub { font-size: 0.75rem; color: #6B7280; }

.footer-disclaimer {
  margin-top: 1.5rem;
  padding: 0.875rem;
  background: rgba(0,0,255,0.06);
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,255,0.1);
}

.footer-disclaimer p { font-size: 0.75rem; color: #6B7280; line-height: 1.5; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; }

.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
.footer-copyright { font-size: 0.8125rem; color: #6B7280; }

.footer-bottom-links { display: flex; gap: 1.25rem; font-size: 0.8125rem; color: #6B7280; }
.footer-bottom-links a { color: var(--secondary); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--secondary-light); }

@media (min-width: 640px) { .footer-cta-actions { flex-direction: row; } }
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/* ============================
   LEGAL / POLICY PAGES
   ============================ */
.legal-page { min-height: 100vh; background: var(--background); }
.legal-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.legal-content { max-width: 52rem; margin: 0 auto; }

.legal-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.legal-header svg { width: 32px; height: 32px; color: var(--primary); flex-shrink: 0; }
.legal-header h1 { font-size: 1.75rem; color: var(--primary); }
.legal-header p { color: var(--muted-fg); font-size: 0.875rem; }

.legal-body h2 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.625rem; color: var(--foreground); margin-top: 2rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.0625rem; font-weight: 600; margin-bottom: 0.625rem; margin-top: 1.5rem; }
.legal-body p { color: var(--muted-fg); margin-bottom: 0.875rem; line-height: 1.7; font-size: 0.9375rem; }
.legal-body ul, .legal-body ol { list-style: disc inside; color: var(--muted-fg); margin-bottom: 0.875rem; padding-left: 0.25rem; }
.legal-body ol { list-style: decimal inside; }
.legal-body li { margin-bottom: 0.375rem; font-size: 0.9375rem; line-height: 1.6; }
.legal-body .updated { font-size: 1rem; margin-bottom: 1.5rem; }
.legal-body .italic { font-style: italic; }

/* Highlight Boxes */
.highlight-box { padding: 1.5rem; border-radius: var(--radius); border: 1px solid; margin-bottom: 1.75rem; }
.highlight-box-primary { background: rgba(0,0,255,0.03); border-color: rgba(0,0,255,0.12); }
.highlight-box-secondary { background: rgba(255,204,0,0.06); border-color: rgba(255,204,0,0.2); }
.highlight-box-green { background: #f0fdf4; border-color: #bbf7d0; }
.highlight-box-accent { background: var(--accent); border-color: var(--border); }
.highlight-box h2, .highlight-box h3 { margin-top: 0; margin-bottom: 0.625rem; }
.highlight-box-primary h2, .highlight-box-primary h3, .highlight-box-primary p.label { color: var(--primary); }
.highlight-box-secondary h2, .highlight-box-secondary h3 { color: var(--foreground); }
.highlight-box p { margin-bottom: 0.5rem; }
.highlight-box .bold-text { font-weight: 700; }
.highlight-box .check-list p { margin-bottom: 0.375rem; }

.contact-info-box {
  background: var(--accent);
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  line-height: 1.8;
  color: var(--muted-fg);
}

.contact-info-box strong.name { color: var(--primary); }
.contact-info-box strong.site { color: var(--secondary-dark); }

@media (min-width: 768px) { .legal-header h1 { font-size: 2.25rem; } }

/* ============================
   SUPPORT PAGE
   ============================ */
.support-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 2rem; }

.support-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.support-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.support-card-inner { display: flex; align-items: flex-start; gap: 0.875rem; }
.support-card-inner > svg { width: 24px; height: 24px; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.support-card h3 { font-size: 1.0625rem; margin-bottom: 0.375rem; }
.support-card p { color: var(--muted-fg); margin-bottom: 0.375rem; font-size: 0.875rem; }

.support-card a.phone-link { color: var(--primary); font-weight: 700; font-size: 1.25rem; transition: color 0.2s; }
.support-card a.phone-link:hover { color: var(--primary-dark); }
.support-card a.email-link { color: var(--primary); font-weight: 700; word-break: break-all; transition: color 0.2s; }
.support-card a.email-link:hover { color: var(--primary-dark); }

.support-card .hours {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted-fg);
}

.support-card .hours svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; }

.support-faq {
  background: rgba(255,204,0,0.04);
  border: 1px solid rgba(255,204,0,0.15);
  padding: 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.875rem;
}

.support-faq h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.support-faq p { color: var(--muted-fg); font-size: 0.9375rem; line-height: 1.6; }
.support-faq a { color: var(--primary); text-decoration: underline; }
.support-faq a:hover { color: var(--primary-dark); }

.support-cta {
  background: linear-gradient(135deg, rgba(0,0,255,0.03), rgba(255,204,0,0.03));
  border: 1px solid rgba(0,0,255,0.12);
  padding: 2rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}

.support-cta h2 { font-size: 1.375rem; margin-bottom: 0.75rem; margin-top: 0; }
.support-cta p { color: var(--muted-fg); margin-bottom: 1.25rem; }
.support-cta-buttons { display: flex; flex-direction: column; gap: 0.875rem; }

.support-footer-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.support-footer-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.support-footer-card p { color: var(--muted-fg); margin-bottom: 0.5rem; font-size: 0.9375rem; }

.support-footer-links { display: flex; justify-content: center; gap: 1rem; margin-top: 0.875rem; font-size: 0.875rem; }
.support-footer-links a { color: var(--primary); text-decoration: underline; }
.support-footer-links a:hover { color: var(--primary-dark); }

@media (min-width: 768px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .support-cta-buttons { flex-direction: row; }
}

/* ============================
   GET QUOTE PAGE
   ============================ */
.quote-hero { padding: 0; background: transparent; }
.quote-hero .contact-section { background: transparent; }

.quote-trust { padding: 4rem 0; background: #fff; }
.quote-trust h3 { text-align: center; font-size: 1.375rem; margin-bottom: 2rem; }

.quote-trust-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 48rem; margin: 0 auto; }

.quote-trust-item { text-align: center; }

.quote-trust-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
  transition: transform 0.3s;
}

.quote-trust-item:hover .quote-trust-circle { transform: scale(1.08); }

.quote-trust-circle.primary { background: rgba(0,0,255,0.08); }
.quote-trust-circle.secondary { background: rgba(255,204,0,0.12); }
.quote-trust-circle span { font-size: 1.375rem; font-weight: 700; }
.quote-trust-circle.primary span { color: var(--primary); }
.quote-trust-circle.secondary span { color: var(--secondary-dark); }
.quote-trust-item h4 { font-size: 1rem; margin-bottom: 0.375rem; }
.quote-trust-item p { color: var(--muted-fg); font-size: 0.875rem; }

@media (min-width: 768px) { .quote-trust-grid { grid-template-columns: repeat(3, 1fr); } }

/* ============================
   404 PAGE
   ============================ */
.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F9FAFB;
}

.not-found-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  margin: 0 1rem;
}

.not-found-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.not-found-header svg { width: 32px; height: 32px; color: var(--destructive); }
.not-found-header h1 { font-size: 1.5rem; color: #111827; }
.not-found-card p { font-size: 0.9375rem; color: #4B5563; line-height: 1.6; }

/* ============================
   TOAST NOTIFICATIONS
   ============================ */
.toast-container {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
}

.toast {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0.625rem;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 400px;
  pointer-events: auto;
  animation: toastIn 0.3s ease-out;
}

.toast-destructive { border-color: rgba(231,76,60,0.3); border-left: 4px solid var(--destructive); }

.toast-icon { flex-shrink: 0; margin-top: 1px; }
.toast-icon svg { width: 20px; height: 20px; }
.toast-destructive .toast-icon svg { color: var(--destructive); }

.toast-content h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.125rem; }
.toast-content p { font-size: 0.8125rem; color: var(--muted-fg); line-height: 1.4; }

.toast-close {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--muted-fg);
  border-radius: 0.25rem;
  transition: background 0.15s;
}

.toast-close:hover { background: var(--accent); }
.toast-close svg { width: 16px; height: 16px; }

.toast.hiding { opacity: 0; transform: translateX(100%); }

@keyframes toastIn { from { opacity: 0; transform: translateX(100%); } to { opacity: 1; transform: translateX(0); } }

/* ============================
   SPINNER
   ============================ */
@keyframes spin { to { transform: rotate(360deg); } }
.spinner { animation: spin 1s linear infinite; display: inline-block; }
