/* Premier Mobile Detailing Pros - Fortune 500 Premium Design */

:root {
  --midnight: #0A1628;
  --navy: #1B2A4A;
  --royal-blue: #1E40AF;
  --electric-blue: #3B82F6;
  --cyan-accent: #06B6D4;
  --gold: #F59E0B;
  --gold-light: #FBBF24;
  --charcoal: #1F2937;
  --slate: #475569;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-blue: 0 10px 40px rgba(30,64,175,0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
}

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

h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.75rem; margin-bottom: 1.25rem; }
h3 { font-size: 2rem; margin-bottom: 1rem; }
h4 { font-size: 1.5rem; margin-bottom: 0.875rem; }

p { margin-bottom: 1.25rem; font-size: 1.125rem; }

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

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

ul { list-style: none; }

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ========================================
   HEADER
======================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.25rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-blue));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 900;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-text .brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
}

.logo-text .brand-tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

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

nav a {
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  font-size: 0.95rem;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  color: var(--electric-blue);
}

.cta-phone {
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-blue)) !important;
  color: white !important;
  padding: 0.75rem 1.75rem !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(59,130,246,0.3);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(59,130,246,0.4);
}

.cta-phone::after {
  display: none !important;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: var(--charcoal);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(27,42,74,0.9));
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59,130,246,0.15), transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(6,182,212,0.1), transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  animation: slideInUp 1s ease;
}

.hero h1 {
  color: white;
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.35rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.6;
}

.hero-features {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 0.95rem;
}

.hero-feature-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Inner Hero (for sub pages) */
.inner-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(10,22,40,0.95), rgba(27,42,74,0.9));
  color: white;
  padding-top: 120px;
  padding-bottom: 3rem;
  position: relative;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(59,130,246,0.12), transparent 50%);
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.inner-hero h1 {
  color: white;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.inner-hero h1 .highlight {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inner-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.breadcrumb {
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

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

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  margin: 0 0.5rem;
}

.breadcrumb .current {
  color: var(--gold);
}

/* ========================================
   BUTTONS
======================================== */
.btn {
  padding: 1.125rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--midnight);
  box-shadow: 0 6px 25px rgba(245,158,11,0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(245,158,11,0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  color: var(--navy);
  transform: translateY(-3px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-blue));
  color: white;
  box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(30,64,175,0.35);
}

/* ========================================
   TRUST BAR
======================================== */
.trust-bar {
  background: white;
  padding: 2.5rem 0;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 5;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--electric-blue);
  font-family: 'Sora', sans-serif;
}

.trust-label {
  color: var(--slate);
  font-weight: 500;
  font-size: 0.95rem;
}

/* ========================================
   SECTION HEADERS
======================================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-label {
  color: var(--electric-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  display: block;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--slate);
  font-size: 1.15rem;
}

/* ========================================
   PROCESS / HOW IT WORKS
======================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.process-card {
  background: white;
  padding: 3rem 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.process-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--electric-blue);
}

.process-number {
  position: absolute;
  top: -25px;
  left: 2.5rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-blue));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 6px 20px rgba(59,130,246,0.3);
}

.process-card h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

/* ========================================
   SERVICES GRID
======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  position: relative;
}

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

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.service-content {
  padding: 2.5rem;
}

.service-card h3 {
  color: var(--navy);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-link {
  color: var(--electric-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.service-link:hover {
  gap: 1rem;
  color: var(--royal-blue);
}

/* ========================================
   CITIES GRID
======================================== */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.city-card {
  background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(6,182,212,0.05));
  padding: 2rem;
  border-radius: 16px;
  border: 2px solid rgba(59,130,246,0.2);
  transition: all 0.3s ease;
  text-align: center;
  display: block;
}

.city-card:hover {
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-blue));
  color: white;
  transform: scale(1.03);
  box-shadow: var(--shadow-blue);
}

.city-card h3 {
  color: var(--navy);
  transition: color 0.3s ease;
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.city-card:hover h3 {
  color: white;
}

.city-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.city-card:hover p {
  color: rgba(255,255,255,0.9);
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonials {
  background: var(--light-gray);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  position: relative;
}

.quote-icon {
  font-size: 4rem;
  color: var(--electric-blue);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--charcoal);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-image {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.author-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.author-location {
  color: var(--slate);
  font-size: 0.9rem;
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

/* ========================================
   WHY CHOOSE US / FEATURES
======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  background: white;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.5rem;
}

.feature-card h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--slate);
  font-size: 1rem;
  margin-bottom: 0;
}

/* ========================================
   CONTACT FORM SECTION
======================================== */
.contact-section {
  background: linear-gradient(135deg, var(--midnight), var(--navy));
  color: white;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2,
.contact-info h3 {
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  padding: 3rem;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.15);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.95);
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  color: var(--charcoal);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 4px rgba(245,158,11,0.1);
}

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

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

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

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}

/* SMS Compliance */
.sms-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  margin-top: 0.75rem;
}

.sms-disclaimer a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
}

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--electric-blue), var(--royal-blue));
  color: white;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05), transparent 70%);
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ========================================
   FOOTER
======================================== */
footer {
  background: var(--midnight);
  color: white;
  padding: 4rem 0 2rem;
}

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

.footer-about h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.footer-about p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-about a {
  color: var(--electric-blue);
}

.footer-about a:hover {
  color: var(--gold);
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--electric-blue);
  padding-left: 5px;
}

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

.footer-bottom a {
  color: rgba(255,255,255,0.6);
}

.footer-bottom a:hover {
  color: var(--electric-blue);
}

/* ========================================
   BLOG STYLES
======================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

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

.blog-card-image {
  height: 220px;
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.blog-card-content {
  padding: 2rem;
}

.blog-card-meta {
  color: var(--slate);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.blog-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}

.blog-card-content h3 a {
  color: var(--navy);
}

.blog-card-content h3 a:hover {
  color: var(--electric-blue);
}

.blog-card-content p {
  color: var(--slate);
  font-size: 1rem;
  line-height: 1.6;
}

/* Blog Post */
.blog-post {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 3rem;
}

.blog-meta {
  color: var(--slate);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blog-content h3 {
  color: var(--royal-blue);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.blog-content p {
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.blog-content ul,
.blog-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.blog-content li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.blog-content ol li {
  list-style: decimal;
}

.blog-cta {
  background: linear-gradient(135deg, var(--navy), var(--royal-blue));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
}

.blog-cta h3 {
  color: white;
  margin-bottom: 1rem;
}

.blog-cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* ========================================
   LEGAL / PRIVACY / TERMS
======================================== */
.legal-content {
  padding: 4rem 0;
}

.legal-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-wrapper h2 {
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.legal-wrapper h3 {
  color: var(--royal-blue);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.legal-wrapper p {
  line-height: 1.8;
  color: var(--charcoal);
}

.legal-wrapper ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-wrapper li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  list-style: disc;
  color: var(--charcoal);
}

.last-updated {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--light-gray);
}

/* ========================================
   CONTENT PAGE LAYOUTS (Services, Cities, Locations)
======================================== */
.page-content {
  padding: 5rem 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-main h2 {
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.content-main h3 {
  color: var(--royal-blue);
  margin-top: 2rem;
}

.content-main p {
  line-height: 1.8;
}

.content-main ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.content-main li {
  margin-bottom: 0.5rem;
  list-style: disc;
  line-height: 1.7;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.sidebar-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--midnight), var(--navy));
  color: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

.sidebar-cta h3 {
  color: white;
  margin-bottom: 0.75rem;
}

.sidebar-cta p {
  opacity: 0.9;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* FAQ Accordion */
.faq-section {
  margin-top: 3rem;
}

.faq-item {
  border: 2px solid rgba(59,130,246,0.1);
  border-radius: 16px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59,130,246,0.3);
}

.faq-question {
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  background: white;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--electric-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--slate);
  line-height: 1.7;
}

/* ========================================
   RELATED LINKS GRID
======================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-link {
  display: block;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.related-link:hover {
  background: white;
  border-color: var(--electric-blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  color: var(--electric-blue);
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center { text-align: center; }
.text-blue { color: var(--electric-blue); }
.bg-light { background: var(--light-gray); }
.bg-dark { background: var(--midnight); color: white; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-4 { margin-top: 4rem; }

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 968px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }

  nav {
    display: none;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
  }

  nav.active {
    display: block !important;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }

  nav li {
    width: 100%;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
  }

  nav li:last-child {
    border-bottom: none;
    padding-top: 1rem;
  }

  .mobile-menu-btn { display: flex; }

  .hero {
    padding-top: 140px;
    min-height: 100vh;
  }

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

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
  }

  .hero-features {
    justify-content: center;
  }

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

  .trust-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

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

  .sidebar {
    position: static;
  }

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

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

  .inner-hero h1 {
    font-size: 2.25rem;
  }
}

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

  h1 { font-size: 1.875rem; }

  .hero {
    padding-top: 130px;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-feature {
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }

  .trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .trust-number {
    font-size: 2rem;
  }

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

  .inner-hero h1 {
    font-size: 1.75rem;
  }

  .testimonial-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
