/* ============================================
   All Star Trade Pros - Custom Styles
   Colors: Red (#EE3837) + Navy (#41476C)
   Fonts: Syne (display) + Outfit (body)
   ============================================ */

:root {
  --primary: #EE3837;
  --primary-dark: #C42E2D;
  --primary-light: #FF5A59;
  --secondary: #41476C;
  --secondary-dark: #2D3250;
  --secondary-light: #565D87;
  --dark: #1A1D2E;
  --dark-alt: #242842;
  --light: #F4F5FA;
  --light-alt: #EAEDF5;
  --white: #FFFFFF;
  --text: #2A2D3E;
  --text-light: #6B7082;
  --text-on-dark: #C8CCDB;
  --star-gold: #FFD93D;
  --shadow-sm: 0 2px 8px rgba(26,29,46,0.06);
  --shadow-md: 0 8px 24px rgba(26,29,46,0.10);
  --shadow-lg: 0 16px 48px rgba(26,29,46,0.14);
  --shadow-xl: 0 24px 64px rgba(26,29,46,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color 0.15s ease; }
a:hover { color: var(--primary-dark); }
a:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 2px; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: 68ch; }

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 10000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s ease;
  min-height: 48px;
  min-width: 48px;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--star-gold); outline-offset: 2px; }
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(238,56,55,0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(238,56,55,0.4);
  transform: translateY(-2px);
}

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

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

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

/* ---- Section Utilities ---- */
.section { padding: 80px 0; }
.section-dark { background: var(--dark); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-light { background: var(--light); }
.section-navy { background: var(--secondary); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy p { color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-label .star { color: var(--star-gold); font-size: 1.1em; }
.section-dark .section-label { color: var(--primary-light); }

.section-title { margin-bottom: 16px; }
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-dark .section-subtitle { color: var(--text-on-dark); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---- Header / Navbar ---- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,29,46,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(26,29,46,0.98);
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 44px;
  width: auto;
  display: block;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 16px;
  color: var(--text-on-dark);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
  text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  display: none;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--primary-light); }
.nav-phone svg { flex-shrink: 0; }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  left: 0;
  transition: all 0.3s ease;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 2px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.35s var(--ease-out);
    border-bottom: 2px solid var(--primary);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; }
  .nav-links a { padding: 12px 16px; display: block; font-size: 1rem; }
  .nav-cta { display: block; margin-top: 8px; }
  .nav-phone { display: none; }
}

@media (min-width: 901px) {
  .nav-cta-desktop { display: inline-flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,29,46,0.92) 0%, rgba(65,71,108,0.80) 50%, rgba(26,29,46,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238,56,55,0.15);
  border: 1px solid rgba(238,56,55,0.3);
  color: var(--primary-light);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s var(--ease-out) both;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.1s both;
}
.hero h1 .accent { color: var(--primary); }
.hero-text {
  color: var(--text-on-dark);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.3s both;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  animation: fadeSlideUp 0.6s var(--ease-out) 0.4s both;
}
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: var(--text-on-dark);
  margin-top: 4px;
}

/* ---- Trust Bar ---- */
.trust-bar {
  padding: 48px 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-alt);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 56px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.95rem;
}
.trust-item .icon {
  width: 44px;
  height: 44px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---- Services Overview ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,29,46,0.6) 0%, transparent 60%);
}
.service-card-body {
  padding: 24px;
}
.service-card-body h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.service-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  transition: gap 0.2s ease;
}
.service-card-link:hover { gap: 10px; }

/* ---- Why Choose Us ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(238,56,55,0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all 0.3s var(--ease-out);
}
.why-item:hover .why-icon {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05);
}
.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.why-item p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Service Plan Banner ---- */
.plan-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}
.plan-banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
}
.plan-banner-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
}
.plan-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.plan-content h2 { color: var(--white); margin-bottom: 16px; }
.plan-content p { color: var(--text-on-dark); margin-bottom: 24px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}
.plan-price .amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: var(--star-gold);
  line-height: 1;
}
.plan-price .period { color: var(--text-on-dark); font-size: 1.1rem; }
.plan-benefits {
  list-style: none;
  margin-bottom: 32px;
}
.plan-benefits li {
  color: var(--text-on-dark);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.plan-benefits li::before {
  content: '\2713';
  color: var(--star-gold);
  font-weight: 800;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .plan-banner-inner { grid-template-columns: 1fr; padding: 32px 24px; gap: 24px; }
  .plan-banner-img { height: 200px; }
}

/* ---- Service Areas ---- */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  list-style: none;
}
.areas-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  padding: 10px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}
.areas-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.areas-list li .pin { color: var(--primary); font-size: 1.1rem; }
.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
}
#map { width: 100%; height: 100%; }

@media (max-width: 768px) {
  .areas-grid { grid-template-columns: 1fr; }
  .map-container { height: 300px; }
}

/* ---- CTA Section ---- */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(238,56,55,0.92) 0%, rgba(196,46,45,0.95) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-content h2 { color: var(--white); margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.9); margin: 0 auto 32px; font-size: 1.1rem; }
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- Contact Form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-alt);
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(238,56,55,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-detail .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(238,56,55,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  flex-shrink: 0;
  font-size: 1.2rem;
}
.contact-detail .detail-text { color: var(--text-on-dark); }
.contact-detail .detail-text strong { color: var(--white); display: block; margin-bottom: 2px; }
.contact-detail .detail-text a { color: var(--text-on-dark); }
.contact-detail .detail-text a:hover { color: var(--primary-light); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

#form-status {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  display: none;
  font-weight: 500;
}
#form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
#form-status.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ---- About Page ---- */
.about-hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--dark);
}
.about-hero h1 { color: var(--white); }
.about-hero p { color: var(--text-on-dark); }

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-text h2 { margin-bottom: 20px; }
.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--primary);
  transition: all 0.3s var(--ease-out);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.value-card h3 { margin-bottom: 8px; color: var(--secondary); }
.value-card p { color: var(--text-light); font-size: 0.95rem; }

@media (max-width: 768px) {
  .about-content { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ---- Services Page ---- */
.service-section { scroll-margin-top: 80px; }
.service-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}
.service-header.reverse { direction: rtl; }
.service-header.reverse > * { direction: ltr; }
.service-header-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-md);
}
.service-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.service-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease-out);
  border: 1px solid transparent;
}
.service-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.service-item h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--secondary);
}
.service-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}
.key-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.key-points li {
  background: var(--light);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .service-header { grid-template-columns: 1fr; }
  .service-header.reverse { direction: ltr; }
  .service-header-img { height: 220px; }
}

/* ---- Service Plan Page ---- */
.plan-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}
.plan-hero h1 { color: var(--white); }
.plan-hero p { color: var(--text-on-dark); max-width: 600px; }

.plan-details {
  max-width: 800px;
  margin: 0 auto;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px;
  box-shadow: var(--shadow-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: -60px;
  z-index: 2;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--star-gold));
}
.plan-card .price-display {
  margin: 24px 0;
}
.plan-card .price-display .dollar {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  color: var(--primary);
  line-height: 1;
}
.plan-card .price-display .per-month {
  font-size: 1.2rem;
  color: var(--text-light);
}
.plan-features {
  list-style: none;
  max-width: 400px;
  margin: 32px auto;
  text-align: left;
}
.plan-features li {
  padding: 14px 0;
  border-bottom: 1px solid var(--light-alt);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
}
.plan-features li::before {
  content: '\2713';
  background: var(--primary);
  color: var(--white);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo {
  margin-bottom: 16px;
}
.footer-brand p {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer h4 {
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: var(--text-on-dark);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}
.footer-links a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Page Header (inner pages) ---- */
.page-header {
  position: relative;
  padding: 140px 0 60px;
  background: var(--dark);
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(238,56,55,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-on-dark);
  margin-bottom: 12px;
}
.page-header .breadcrumb a { color: var(--text-on-dark); }
.page-header .breadcrumb a:hover { color: var(--white); }
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: var(--text-on-dark); max-width: 600px; font-size: 1.1rem; }

/* ---- Animations ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.from-left { transform: translateX(-24px); }
.reveal.from-right { transform: translateX(24px); }
.reveal.scale-up { transform: scale(0.95); }
.reveal.visible {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(7) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(8) { transition-delay: 0.4s; }
.stagger-children .reveal:nth-child(9) { transition-delay: 0.45s; }
.stagger-children .reveal:nth-child(10) { transition-delay: 0.5s; }
.stagger-children .reveal:nth-child(11) { transition-delay: 0.55s; }
.stagger-children .reveal:nth-child(12) { transition-delay: 0.6s; }

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { min-height: 70vh; padding: 100px 0 60px; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-items-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .plan-card { padding: 32px 20px; }
}
