/* ============================================================
   Arizona's Vision Eye Care Center — Main Stylesheet
   Design System: Colors, Typography, Layout, Components
   ============================================================ */

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

/* ---------- CSS Variables ---------- */
:root {
  --primary:       #a0291d;
  --primary-dark:  #7e1e14;
  --primary-light: #c43528;
  --accent:        #e8a020;
  --accent-hover:  #d08c10;
  --navy:          #1a2d4e;
  --navy-light:    #243a62;
  --text-dark:     #1e2535;
  --text-body:     #4a5162;
  --text-light:    #6e7688;
  --bg-white:      #ffffff;
  --bg-light:      #f8f6f3;
  --bg-gray:       #f0eeeb;
  --border:        #e2e0dc;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 6px 24px rgba(0,0,0,.12);
  --shadow-lg:     0 12px 40px rgba(0,0,0,.16);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --transition:    all .3s ease;
  --max-width:     1240px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility Classes ---------- */
.section-pad     { padding: 80px 0; }
.section-pad-sm  { padding: 56px 0; }
.text-center     { text-align: center; }
.text-primary    { color: var(--primary); }
.text-accent     { color: var(--accent); }
.text-navy       { color: var(--navy); }
.bg-light        { background: var(--bg-light); }
.bg-navy         { background: var(--navy); }
.bg-primary      { background: var(--primary); }

.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

.section-subtitle.centered { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-lg { padding: 17px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: .85rem; }

/* ---------- Top Utility Bar ---------- */
.top-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar-left { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--accent); font-size: .85rem; }
.top-bar a:hover { color: var(--accent); }

/* Social Icons in top bar */
.social-icons { display: flex; align-items: center; gap: 10px; }
.social-icons a {
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .75rem;
  transition: var(--transition);
}
.social-icons a:hover { background: var(--accent); color: #fff; }

/* ---------- Main Header / Navigation ---------- */
.site-header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.site-logo { flex-shrink: 0; }
.site-logo img { height: 56px; width: auto; }

/* Primary Navigation */
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; align-items: center; gap: 2px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .88rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  position: relative;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > a.active {
  color: var(--primary);
  background: rgba(160,41,29,.06);
}

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin-left: 5px;
  font-size: .75rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: .875rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-menu li:last-child a { border-bottom: none; }
.dropdown-menu li a:hover {
  background: var(--bg-light);
  color: var(--primary);
  padding-left: 26px;
}

.header-cta { margin-left: 12px; }

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

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 80px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav ul li a {
  display: block;
  color: rgba(255,255,255,.9);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.mobile-nav ul li a:hover { color: var(--accent); }
.mobile-nav .mobile-cta { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #1e3a68 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(232,160,32,.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(160,41,29,.1) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
}
.hero-content { max-width: 640px; }
.hero-eyebrow { color: var(--accent); margin-bottom: 14px; font-size: .8rem; letter-spacing: .14em; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero h1 span { color: var(--accent); }
.hero-desc {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
  max-width: 520px;
}
.hero-bullets {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 36px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.88);
  font-size: .95rem;
}
.hero-bullets li i { color: var(--accent); font-size: 1rem; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero stats bar */
.hero-stats {
  background: var(--primary);
  padding: 28px 0;
}
.hero-stats .container {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  display: block;
}
.stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ---------- Services Section ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(160,41,29,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.service-icon i { font-size: 1.6rem; color: var(--primary); }
.service-card:hover .service-icon { background: var(--primary); }
.service-card:hover .service-icon i { color: #fff; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-link {
  font-family: 'Poppins', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex; align-items: center; gap: 5px;
}
.service-link i { font-size: .75rem; transition: var(--transition); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ---------- About / Why Choose Us ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  display: block;
}
.about-badge .label { font-size: .78rem; opacity: .85; text-transform: uppercase; letter-spacing: .06em; }

.features-list { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(160,41,29,.08);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon i { color: var(--primary); font-size: .95rem; }
.feature-text h4 { font-size: .95rem; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
.feature-text p { font-size: .875rem; color: var(--text-light); line-height: 1.65; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::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%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Reviews Section ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.review-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars i { color: var(--accent); font-size: .95rem; }
.review-text { font-size: .9rem; color: var(--text-body); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .9rem; color: var(--text-dark); }
.reviewer-label { font-size: .78rem; color: var(--text-light); }

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.step-card { text-align: center; padding: 32px 24px; }
.step-number {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.step-card p { font-size: .9rem; color: var(--text-light); line-height: 1.75; }

/* ---------- Insurance / Partners ---------- */
.insurance-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  margin-top: 40px;
  padding: 32px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.insurance-logos .ins-item {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  background: var(--bg-light);
  text-align: center;
}

/* ---------- Service Page Hero ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
  font-size: .83rem;
  color: rgba(255,255,255,.6);
}
.breadcrumb a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: .7rem; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.05rem; max-width: 580px; line-height: 1.8; margin-bottom: 28px; }

/* ---------- Service Content Layout ---------- */
.service-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.service-main h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 16px; color: var(--navy); }
.service-main h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 12px; color: var(--text-dark); }
.service-main p { margin-bottom: 16px; line-height: 1.8; color: var(--text-body); }
.service-main ul { margin: 12px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.service-main ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .95rem; color: var(--text-body);
}
.service-main ul li i { color: var(--primary); flex-shrink: 0; margin-top: 4px; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.sidebar-card.primary-bg {
  background: var(--primary);
  border-color: var(--primary);
}
.sidebar-card.primary-bg h3,
.sidebar-card.primary-bg p { color: #fff; }
.sidebar-card.primary-bg h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.sidebar-card.primary-bg p { opacity: .9; font-size: .9rem; margin-bottom: 18px; }
.sidebar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 14px; color: var(--text-dark); }
.sidebar-hours li {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
}
.sidebar-hours li:last-child { border-bottom: none; }
.sidebar-hours li span:first-child { font-weight: 500; color: var(--text-dark); }
.sidebar-hours li span:last-child { color: var(--text-light); }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; }
.contact-info-list li { display: flex; align-items: flex-start; gap: 12px; font-size: .875rem; }
.contact-info-list li i { color: var(--primary); margin-top: 3px; }
.contact-info-list a { color: var(--text-body); }
.contact-info-list a:hover { color: var(--primary); }

/* ---------- Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  height: 240px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo-placeholder {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
}
.team-photo-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.6); }
.team-info { padding: 24px; }
.team-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.team-info .role { font-size: .85rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: .875rem; color: var(--text-light); line-height: 1.7; }

/* ---------- Contact Page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap { }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  font-family: 'Poppins', sans-serif;
  font-size: .83rem;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(160,41,29,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-panel { }
.contact-info-panel h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; color: var(--text-dark); }
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--border);
}
.info-card .icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.info-card .icon-wrap i { color: #fff; font-size: 1.1rem; }
.info-card h4 { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.info-card p, .info-card a { font-size: .9rem; color: var(--text-body); line-height: 1.6; }
.info-card a:hover { color: var(--primary); }
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-top: 24px;
}
.map-wrap iframe { display: block; width: 100%; height: 340px; }

/* ---------- About Page ---------- */
.mission-section { }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(160,41,29,.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon i { font-size: 1.4rem; color: var(--primary); }
.value-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.value-card p { font-size: .875rem; color: var(--text-light); line-height: 1.7; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 50px; width: auto; filter: brightness(0) invert(1) opacity(.9); }
.footer-about-text { font-size: .88rem; line-height: 1.8; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--accent);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '\f054';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .6rem;
  color: var(--accent);
}
.footer-links a:hover { color: var(--accent); transform: translateX(4px); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; }
.footer-contact-list li i { color: var(--accent); margin-top: 4px; font-size: .85rem; }
.footer-contact-list a { color: rgba(255,255,255,.7); }
.footer-contact-list a:hover { color: var(--accent); }
.footer-bottom {
  padding: 18px 0;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Highlight Banner (info strip) ---------- */
.info-strip {
  background: var(--accent);
  padding: 12px 0;
  text-align: center;
}
.info-strip p {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: .9rem;
}
.info-strip a { color: #fff; text-decoration: underline; }

/* ---------- Divider ---------- */
.section-divider {
  width: 60px; height: 3px;
  background: var(--primary);
  border-radius: 3px;
  margin-bottom: 20px;
}
.section-divider.centered { margin: 0 auto 20px; }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ---------- Success/Alert ---------- */
.alert-success {
  background: #d4edda; color: #155724;
  border: 1px solid #c3e6cb;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: .9rem;
  display: none;
}
.alert-success.show { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-grid { gap: 40px; }
  .service-content { grid-template-columns: 1fr 300px; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  .about-grid { grid-template-columns: 1fr; }
  .about-badge { bottom: 16px; right: 16px; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-content { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section-pad { padding: 56px 0; }
  .hero { min-height: auto; }
  .hero .container { padding: 56px 24px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .top-bar .container { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cta-band .cta-buttons { flex-direction: column; align-items: center; }
  .hero-stats .container { justify-content: center; gap: 32px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
