/* =============================================
   Arizona's Vision Eye Care Center - Main Stylesheet
   ============================================= */

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

/* --- CSS Variables --- */
:root {
  --primary: #1a3a6b;
  --primary-dark: #122a52;
  --primary-light: #2a5298;
  --accent: #e8a020;
  --accent-dark: #c8881a;
  --accent-light: #f0b84a;
  --text-dark: #1a1a2e;
  --text-medium: #444466;
  --text-light: #6b7280;
  --white: #ffffff;
  --bg-light: #f7f9fc;
  --bg-section: #eef2f8;
  --border: #dde3ed;
  --shadow-sm: 0 2px 8px rgba(26,58,107,0.08);
  --shadow-md: 0 4px 20px rgba(26,58,107,0.12);
  --shadow-lg: 0 8px 40px rgba(26,58,107,0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; }

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.bg-primary { background: var(--primary); }
.bg-light { background: var(--bg-light); }
.bg-section { background: var(--bg-section); }

.section-tag {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-title.white { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
  margin: 0 auto 40px;
}
.section-subtitle.left { margin-left: 0; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,160,32,0.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: var(--white); }

/* =============================================
   TOP BAR
   ============================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 2px solid var(--accent);
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent); }
.top-bar i { margin-right: 5px; color: var(--accent); }
.top-bar .social-links { display: flex; gap: 10px; }
.top-bar .social-links a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.top-bar .social-links a:hover { background: var(--accent); color: var(--white); }

/* =============================================
   HEADER / NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 15px rgba(26,58,107,0.1);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 25px rgba(26,58,107,0.18); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.logo img { height: 52px; width: auto; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}
.logo-text span { color: var(--accent); display: block; font-size: 0.75rem; font-family: var(--font-body); letter-spacing: 1px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > ul { display: flex; align-items: center; gap: 4px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; gap: 4px;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active { color: var(--primary); background: var(--bg-section); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  border-top: 3px solid var(--accent);
  z-index: 999;
}
.dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 14px;
  font-size: 0.88rem;
  color: var(--text-medium);
  border-radius: var(--radius-sm);
}
.dropdown-menu li a:hover { background: var(--bg-section); color: var(--primary); padding-left: 20px; }

.header-cta .btn { padding: 10px 22px; font-size: 0.88rem; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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.03'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  padding: 80px 0;
}
.hero-tag {
  display: inline-block;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.4);
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title span { color: var(--accent-light); }
.hero-desc {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  max-width: 520px;
}
.hero-bullets {
  margin-bottom: 34px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.hero-bullets li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}
.hero-badge-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.hero-badge-text strong { display: block; color: var(--white); font-size: 1rem; }

/* Hero Right Decorative Element */
.hero-right {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 550px;
  height: 550px;
  opacity: 0.08;
  pointer-events: none;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.92rem;
}
.announcement-bar a { color: var(--white); text-decoration: underline; }

/* =============================================
   ABOUT SECTION (Home)
   ============================================= */
.about-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-home-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-home-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-stats {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(26,58,107,0.92);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-item strong { font-size: 1.6rem; color: var(--accent); display: block; font-weight: 800; }
.stat-item span { font-size: 0.78rem; opacity: 0.85; }
.about-home-text .section-tag { text-align: left; }
.about-home-text .section-title { text-align: left; }
.about-home-text p { color: var(--text-medium); margin-bottom: 16px; }
.about-features {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature-text h4 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 4px; }
.about-feature-text p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* =============================================
   SERVICES GRID
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 70px;
  height: 70px;
  background: var(--bg-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: var(--white); }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 18px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
}
.service-link:hover { color: var(--accent); }
.service-link i { font-size: 0.75rem; transition: var(--transition); }
.service-link:hover i { transform: translateX(4px); }

/* =============================================
   REVIEWS / TESTIMONIALS
   ============================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.review-stars { color: var(--accent); font-size: 1rem; margin-bottom: 14px; }
.review-text { font-size: 0.92rem; color: var(--text-medium); margin-bottom: 18px; font-style: italic; line-height: 1.7; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-section);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.reviewer-info span { font-size: 0.8rem; color: var(--text-light); }
.reviews-overall {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.reviews-score { font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.reviews-meta strong { display: block; font-size: 1rem; }
.reviews-meta span { font-size: 0.85rem; opacity: 0.8; }

/* =============================================
   WHY CHOOSE US / FEATURES
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.feature-item:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,160,32,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.5rem;
  color: var(--accent);
}
.feature-item h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 8px; }
.feature-item p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }

/* =============================================
   TEAM SECTION
   ============================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-img-wrap {
  background: var(--bg-section);
  padding: 32px;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 auto;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.team-info { padding: 22px; }
.team-info h3 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: 4px; }
.team-info .role { color: var(--accent); font-size: 0.85rem; font-weight: 600; display: block; margin-bottom: 10px; }
.team-info p { font-size: 0.88rem; color: var(--text-light); }

/* =============================================
   HOW TO GET STARTED
   ============================================= */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: center;
  position: relative;
  transition: var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); }
.step-number {
  width: 52px;
  height: 52px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 18px;
  font-family: var(--font-heading);
}
.step-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--text-dark); }
.step-card p { font-size: 0.88rem; color: var(--text-light); }

/* =============================================
   INSURANCE SECTION
   ============================================= */
.insurance-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
}
.insurance-logo {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 22px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-medium);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.insurance-logo:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '👁';
  position: absolute;
  font-size: 300px;
  opacity: 0.03;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-title span { color: var(--accent-light); }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}
.cta-phone i { color: var(--accent); }
.cta-phone:hover { color: var(--accent); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #0d1f3c;
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo img { height: 44px; margin-bottom: 18px; }
.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-about p { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); }
.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.footer-links a:hover { color: var(--accent); padding-left: 5px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}
.footer-contact-icon {
  color: var(--accent);
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 18px;
}
.footer-contact-item p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-hours-table { font-size: 0.88rem; }
.footer-hours-table tr td { padding: 4px 0; color: rgba(255,255,255,0.65); }
.footer-hours-table tr td:last-child { color: rgba(255,255,255,0.85); font-weight: 500; padding-left: 12px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links a:hover { color: var(--accent); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='10'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.4); }
.breadcrumb .current { color: var(--accent); }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
}

/* =============================================
   SERVICE PAGE CONTENT
   ============================================= */
.service-page-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.service-content-main h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--primary);
  margin: 32px 0 14px;
}
.service-content-main h2:first-child { margin-top: 0; }
.service-content-main p { color: var(--text-medium); margin-bottom: 16px; line-height: 1.8; }
.service-content-main ul {
  list-style: none;
  margin: 16px 0;
}
.service-content-main ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--text-medium);
}
.service-content-main ul li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-section);
}
.sidebar-cta {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.sidebar-cta p { font-size: 0.88rem; color: rgba(255,255,255,0.8); margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 12px; }
.sidebar-phone { color: var(--accent); font-size: 1.1rem; font-weight: 700; display: block; }
.service-links-list li { margin-bottom: 8px; }
.service-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.service-links-list a:hover { border-color: var(--primary); color: var(--primary); background: var(--bg-section); }
.service-links-list a i { color: var(--accent); font-size: 0.8rem; }
.ext-link-box {
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  margin: 24px 0;
  font-size: 0.9rem;
  color: var(--text-medium);
}
.ext-link-box a { color: var(--primary); font-weight: 600; }
.ext-link-box a:hover { color: var(--accent); }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mission-text h2 { font-family: var(--font-heading); font-size: 1.7rem; color: var(--primary); margin-bottom: 16px; }
.mission-text p { color: var(--text-medium); margin-bottom: 14px; line-height: 1.8; }
.values-list { margin-top: 24px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.value-icon {
  width: 42px;
  height: 42px;
  background: var(--bg-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.value-text h4 { font-size: 0.95rem; margin-bottom: 4px; }
.value-text p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: var(--white);
  height: fit-content;
}
.contact-info-card h3 { font-size: 1.3rem; margin-bottom: 24px; color: var(--white); }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text { color: rgba(255,255,255,0.8); }
.contact-detail-text strong { display: block; color: var(--white); font-size: 0.9rem; margin-bottom: 4px; }
.contact-detail-text p, .contact-detail-text a { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.contact-detail-text a:hover { color: var(--accent); }
.contact-hours-table { font-size: 0.9rem; width: 100%; }
.contact-hours-table td { padding: 4px 0; color: rgba(255,255,255,0.75); }
.contact-hours-table td:last-child { color: rgba(255,255,255,0.9); font-weight: 500; text-align: right; }
.contact-social { display: flex; gap: 10px; margin-top: 22px; }
.contact-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.contact-social a:hover { background: var(--accent); color: var(--white); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { font-size: 1.3rem; color: var(--primary); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 48px;
}
.map-container iframe { width: 100%; display: block; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-home { gap: 40px; }
  .service-page-content { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
}

@media (max-width: 768px) {
  .top-bar { display: none; }
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--white); z-index: 9999; flex-direction: column; justify-content: center; align-items: center; padding: 40px 24px; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; width: 100%; gap: 0; }
  .main-nav > ul > li > a { padding: 14px 0; font-size: 1rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .dropdown-menu { position: static; box-shadow: none; opacity: 1; visibility: visible; transform: none; border: none; border-left: 3px solid var(--accent); border-radius: 0; padding: 0 0 0 16px; display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
  .hero { min-height: 500px; }
  .hero-content { padding: 60px 0; }
  .hero-right { display: none; }
  .about-home { grid-template-columns: 1fr; }
  .about-home-image { display: none; }
  .about-stats { position: static; margin-top: 16px; }
  .about-mission { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reviews-overall { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .section-pad { padding: 55px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* =============================================
   MISC ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fadeInUp 0.6s ease forwards; }

/* Map embed responsive */
.map-responsive { position: relative; padding-bottom: 42%; height: 0; overflow: hidden; border-radius: var(--radius-lg); }
.map-responsive iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
