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

/* --- Google Fonts & Variables --- */
@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');

:root {
  --primary: #1a3a5c;
  --primary-dark: #0f2540;
  --accent: #2e9dd4;
  --accent-light: #5bb8e8;
  --gold: #c9a84c;
  --light-bg: #f4f8fb;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-gray: #555e6d;
  --text-light: #7a8499;
  --border: #d8e3ec;
  --shadow: 0 4px 24px rgba(26,58,92,0.10);
  --shadow-md: 0 8px 40px rgba(26,58,92,0.14);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --header-height: 80px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  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 { font-family: 'Playfair Display', serif; line-height: 1.3; color: var(--primary); }

/* --- 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) !important; }
.text-accent { color: var(--accent); }
.text-gold { color: var(--gold); }
.bg-light { background: var(--light-bg); }
.bg-primary { background: var(--primary); }
.bg-primary-dark { background: var(--primary-dark); }

/* Section Labels */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(46,157,212,0.10);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-sub {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(46,157,212,0.30);
}
.btn-primary:hover {
  background: #1b85bb;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,157,212,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(201,168,76,0.30);
}
.btn-gold:hover {
  background: #b8962e;
  transform: translateY(-2px);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar i { color: var(--accent); margin-right: 5px; }
.top-bar .social-links a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: var(--transition);
}
.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 20px rgba(26,58,92,0.10);
  transition: var(--transition);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}
.logo img { height: 52px; width: auto; }
.logo:hover { opacity: 0.9; }

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--accent);
  background: rgba(46,157,212,0.08);
}
/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  min-width: 230px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  z-index: 200;
  padding: 8px 0;
  animation: fadeDown 0.2s ease;
}
@keyframes fadeDown { from { opacity:0; transform:translateY(-8px); } to { opacity:1; transform:translateY(0); } }
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--accent);
  padding-left: 26px;
}
.dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
  opacity: 0.6;
}

/* CTA Button in Nav */
.nav-cta { margin-left: 8px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1e5080 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?w=1600&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(46,157,212,0.15) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.10) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 24px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46,157,212,0.20);
  border: 1px solid rgba(46,157,212,0.40);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-badge i { font-size: 14px; color: var(--gold); }
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span { color: var(--accent-light); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-points li i { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.hero-trust-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.hero-trust-text {
  font-size: 13px;
  color: rgba(255,255,255,0.80);
  line-height: 1.5;
}
/* Hero Right - Visual Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.16); transform: translateX(6px); }
.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.hero-card-text h4 { color: var(--white); font-size: 15px; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 3px; }
.hero-card-text p { color: rgba(255,255,255,0.70); font-size: 13px; margin: 0; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--accent);
  padding: 28px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
  padding: 10px;
}
.stat-num {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   ABOUT SECTION (HOME)
   ============================================================ */
.about-home .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--transition);
}
.about-img-main:hover img { transform: scale(1.03); }
.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  min-width: 130px;
}
.about-badge-float .num {
  font-size: 36px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  line-height: 1;
}
.about-badge-float .lbl { font-size: 12px; opacity: 0.9; margin-top: 3px; }
.about-content { padding-right: 10px; }
.about-content p {
  color: var(--text-gray);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.about-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.about-feat-item i { color: var(--accent); font-size: 16px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.service-card-img {
  position: relative;
  overflow: hidden;
  height: 190px;
  background: var(--light-bg);
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}
.service-card-body {
  padding: 30px 22px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--primary); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-choose .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.why-img img {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(46,157,212,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.why-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.why-text p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--primary-dark); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub { color: rgba(255,255,255,0.70); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.test-stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.test-text {
  font-size: 14.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 16px;
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.test-info h5 {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.test-info span { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 28px auto 16px;
  border: 4px solid var(--accent);
  background: var(--light-bg);
}
.team-card h3 {
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 13.5px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-card p {
  font-size: 14px;
  color: var(--text-gray);
  padding: 0 20px 24px;
  line-height: 1.7;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, #1a6fa0 100%);
  padding: 70px 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); font-size: clamp(26px, 4vw, 40px); margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: var(--white); color: var(--accent); }
.btn-white:hover { background: var(--light-bg); transform: translateY(-2px); }

/* ============================================================
   HOURS & INFO BAR
   ============================================================ */
.info-bar {
  background: var(--light-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}
.info-bar .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.info-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  flex-shrink: 0;
}
.info-text h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}
.info-text p, .info-text a {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
}
.info-text a:hover { color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.80);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-about .logo img { height: 44px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-about p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-widget h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 16px; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer-contact-list i { color: var(--accent); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.65); }
.footer-contact-list a:hover { color: var(--accent-light); }
.footer-hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-hours-list li span:last-child { color: var(--accent-light); font-weight: 600; }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.50); }
.footer-bottom a { color: rgba(255,255,255,0.60); }
.footer-bottom a:hover { color: var(--accent-light); }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1516914589923-f105f1535f88?w=1400&q=70') center/cover no-repeat;
  opacity: 0.10;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.80);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.60);
  margin-bottom: 14px;
}
.breadcrumb a { color: var(--accent-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { font-size: 10px; }

/* ============================================================
   SERVICE PAGE LAYOUT
   ============================================================ */
.service-page .container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.service-content h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 18px;
  color: var(--primary);
}
.service-content h3 {
  font-size: 22px;
  margin: 30px 0 12px;
  color: var(--primary);
}
.service-content p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}
.service-content ul {
  list-style: none;
  margin-bottom: 20px;
}
.service-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 10px;
  line-height: 1.7;
}
.service-content ul li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.service-content .highlight-box {
  background: var(--light-bg);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.service-content .highlight-box p { margin: 0; color: var(--primary); font-weight: 500; }
.service-img-wrap { margin: 28px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-img-wrap img { width: 100%; height: 300px; object-fit: cover; transition: var(--transition); }
.service-img-wrap:hover img { transform: scale(1.03); }
.anchor-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.anchor-link:hover { color: var(--primary); }

/* SIDEBAR */
.sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-widget-header {
  background: var(--primary);
  color: var(--white);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
}
.sidebar-widget-body { padding: 18px 20px; }
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-gray);
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item i { color: var(--accent); font-size: 18px; width: 20px; text-align: center; }
.sidebar-contact-item a { color: var(--accent); font-weight: 600; }
.sidebar-contact-item a:hover { color: var(--primary); }
.sidebar-services li { margin-bottom: 8px; }
.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  font-weight: 500;
}
.sidebar-services a:hover,
.sidebar-services a.active {
  background: var(--accent);
  color: var(--white);
}
.sidebar-services a i { font-size: 14px; }
.cta-widget {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  color: var(--white);
}
.cta-widget h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-widget p { font-size: 14px; color: rgba(255,255,255,0.80); margin-bottom: 18px; line-height: 1.7; }
.cta-widget .btn { width: 100%; justify-content: center; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; height: 420px; object-fit: cover; }
.about-story h2 { margin-bottom: 20px; }
.about-story p { color: var(--text-gray); font-size: 16px; line-height: 1.85; margin-bottom: 16px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  margin: 0 auto 18px;
}
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-gray); font-size: 16px; line-height: 1.8; margin-bottom: 28px; }
.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(46,157,212,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-detail-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.contact-detail-item p, .contact-detail-item a {
  font-size: 14.5px;
  color: var(--text-gray);
  line-height: 1.7;
}
.contact-detail-item a:hover { color: var(--accent); }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-size: 22px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--primary);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text-dark);
  background: var(--light-bg);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(46,157,212,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-section .map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 50px;
}
.map-section iframe { width: 100%; height: 420px; display: block; }

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

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-family: 'Inter', sans-serif;
}
.step-card h3 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.step-card p { font-size: 14.5px; color: var(--text-gray); line-height: 1.75; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px; }
  .hero-right { display: none; }
  .about-home .container { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap { max-width: 540px; margin: 0 auto; }
  .why-choose .container { grid-template-columns: 1fr; gap: 40px; }
  .why-img { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .service-page .container { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-story .container { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .info-bar .container { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 768px) {
  .top-bar .top-bar-left { display: none; }
  .nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0; right: 0;
    background: var(--white);
    padding: 20px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    z-index: 999;
    gap: 4px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 12px 16px; font-size: 15px; }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--light-bg);
    border-radius: var(--radius-sm);
    animation: none;
    display: none;
    margin-top: 4px;
  }
  .dropdown.mobile-open .dropdown-menu { display: block; }
  .hamburger { display: flex; }
  .nav-cta { margin: 8px 0 0; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; margin: 48px auto 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-features { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .section-pad { padding: 60px 0; }
  .hero .container { padding: 50px 20px; }
}
