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

:root {
  --primary: #B03A2E;
  --primary-dark: #8B1A1A;
  --accent: #E67E22;
  --accent-light: #F0A500;
  --dark: #1a1a2e;
  --dark-nav: #2c2c2c;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --light-bg: #f8f4f0;
  --gray-bg: #f1f1f1;
  --border: #e0e0e0;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 35px rgba(0,0,0,0.15);
  --radius: 8px;
  --transition: all 0.3s ease;
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
}
.top-bar-item i {
  color: var(--primary);
  font-size: 14px;
}
.top-bar-phone {
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.top-bar-phone span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
}
.top-bar-phone a {
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}
.top-bar-phone a:hover { color: var(--accent); }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background: var(--dark-nav);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo img {
  height: 50px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-menu li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 14px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: var(--primary);
  color: var(--white);
}
.nav-menu > li > a i {
  font-size: 11px;
  margin-left: 3px;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  min-width: 200px;
  border-top: 3px solid var(--primary);
  z-index: 999;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.dropdown-menu li a:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 24px;
}
.nav-menu li.dropdown:hover .dropdown-menu { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 18px;
  padding: 6px 10px;
  border-radius: var(--radius);
  cursor: pointer;
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.85) 45%, rgba(176,58,46,0.3) 100%);
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 60px 40px 60px 60px;
  color: var(--white);
}
.hero-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}
.hero h1 strong {
  font-weight: 700;
  color: var(--white);
}
.hero-sub {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 15px;
  font-style: italic;
}
.hero-list {
  margin-bottom: 20px;
}
.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 8px;
  opacity: 0.95;
}
.hero-list li i {
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.hero-trust {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 28px;
}
.hero-trust i { margin-right: 6px; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176,58,46,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-orange {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-orange:hover {
  background: #d35400;
  border-color: #d35400;
  transform: translateY(-2px);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}
.btn-lg {
  padding: 16px 38px;
  font-size: 16px;
}
.inline-link {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1px solid transparent;
}
.inline-link:hover {
  border-bottom-color: var(--primary);
}

/* ===========================
   MARQUEE BANNER
=========================== */
.marquee-banner {
  background: var(--primary);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-content {
  display: inline-flex;
  animation: marquee 30s linear infinite;
}
.marquee-content span {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  padding: 0 50px;
  letter-spacing: 0.3px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===========================
   SECTIONS
=========================== */
.section {
  padding: 90px 0;
}
.bg-light { background: var(--light-bg); }
.section-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-tag.center { display: block; text-align: center; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title.center { text-align: center; }
.section-title strong { font-weight: 700; color: var(--dark); }
.section-desc {
  font-size: 16px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}
.section-desc.center { text-align: center; }

/* ===========================
   ABOUT SECTION
=========================== */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-text .section-title { margin-bottom: 20px; }
.about-text p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-video {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-video img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: var(--primary);
  color: var(--white);
  padding: 15px 22px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 15px rgba(176,58,46,0.5);
}
.badge-number {
  display: block;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 38px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
}
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===========================
   REVIEWS
=========================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.review-stars {
  color: #f0a500;
  margin-bottom: 14px;
  font-size: 15px;
  letter-spacing: 2px;
}
.review-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}
.reviewer strong {
  display: block;
  font-size: 14px;
  color: var(--dark);
}
.reviewer span {
  font-size: 12px;
  color: var(--text-light);
}
.review-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--dark);
  border-radius: 12px;
  padding: 30px;
}
.stat-item { text-align: center; }
.stat-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ===========================
   FEATURES
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.feature-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.feature-card h3 {
  font-size: 17px;
  color: var(--dark);
  padding: 18px 20px 8px;
  font-weight: 700;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-light);
  padding: 0 20px 20px;
  line-height: 1.7;
}

/* ===========================
   SERVICES
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-body {
  padding: 22px;
}
.service-body h3 {
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 10px;
  font-weight: 700;
}
.service-body h3 a:hover { color: var(--primary); }
.service-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.7;
}
.services-cta { text-align: center; }

/* ===========================
   TEAM
=========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.team-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top;
}
.team-body {
  padding: 22px;
}
.team-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.team-role {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
  background: #fde8e5;
  padding: 3px 10px;
  border-radius: 4px;
}
.team-body p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.7;
}

/* ===========================
   PATIENT CENTERED
=========================== */
.patient-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.patient-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.patient-img img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}
.patient-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 30px;
  line-height: 1.25;
}
.patient-text h2 strong { font-weight: 700; }
.patient-features { display: flex; flex-direction: column; gap: 20px; }
.pf-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pf-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
  font-size: 17px;
}
.pf-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
}
.pf-item p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   BRANDS
=========================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.brand-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.brand-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}
.brand-card img {
  height: 35px;
  width: auto;
  margin: 0 auto 10px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: var(--transition);
}
.brand-card:hover img { filter: grayscale(0%); }
.brand-card span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* ===========================
   STEPS
=========================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 35px 28px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}
.step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(176,58,46,0.4);
}
.step-icon {
  font-size: 42px;
  color: var(--accent);
  margin: 10px 0 18px;
}
.step-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===========================
   INSURANCE
=========================== */
.insurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 25px;
}
.ins-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.ins-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.ins-card i {
  font-size: 26px;
  color: var(--primary);
}
.ins-card span {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.ins-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-light);
}

/* ===========================
   MAP SECTION
=========================== */
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: start;
}
.map-info .section-tag { margin-bottom: 10px; }
.map-info h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  margin-bottom: 28px;
  color: var(--dark);
  line-height: 1.25;
}
.map-info h2 strong { font-weight: 700; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-list li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-list li strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.contact-list li p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-list li a {
  color: var(--primary);
  font-weight: 600;
}
.contact-list li a:hover { color: var(--accent); }
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.map-embed iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* ===========================
   FOOTER
=========================== */
.footer { background: var(--dark); }
.footer-top { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin: 18px 0 22px;
}
.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}
.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
  font-weight: 700;
}
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
  line-height: 1.6;
}
.footer-contact li i {
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact li a {
  color: rgba(255,255,255,0.65);
}
.footer-contact li a:hover { color: var(--accent); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a {
  color: var(--accent);
}
.footer-bottom a:hover { color: var(--white); }

/* ===========================
   PAGE HERO
=========================== */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1f?w=1400&q=80') center/cover no-repeat;
  opacity: 0.15;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 20px;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb a {
  color: var(--accent);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 10px; }

/* ===========================
   CONTACT FORM
=========================== */
.form-section {
  background: var(--white);
}
.form-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid 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: 14px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--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(176,58,46,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 15px; font-size: 16px; }

/* ===========================
   SERVICE PAGE CONTENT
=========================== */
.service-content {
  padding: 80px 0;
}
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}
.service-main h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.5vw, 36px);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--primary);
}
.service-main p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}
.service-main h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 30px 0 12px;
}
.service-main ul {
  list-style: none;
  margin-bottom: 25px;
}
.service-main ul li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.service-main ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sidebar-widget h4 {
  background: var(--primary);
  color: var(--white);
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 700;
}
.sidebar-widget ul {
  padding: 10px 0;
}
.sidebar-widget ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
}
.sidebar-widget ul li a:hover {
  background: var(--light-bg);
  color: var(--primary);
  padding-left: 26px;
}
.sidebar-widget ul li a i { color: var(--primary); font-size: 12px; }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.sidebar-cta h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}
.sidebar-cta p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.6;
}
.sidebar-cta .btn { width: 100%; text-align: center; }

/* ===========================
   ABOUT PAGE
=========================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-story-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-story-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.value-card i {
  font-size: 34px;
  color: var(--primary);
  margin-bottom: 12px;
}
.value-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .patient-inner { grid-template-columns: 1fr; gap: 40px; }
  .map-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .review-stats { grid-template-columns: repeat(2, 1fr); }
  .insurance-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--dark-nav);
    padding: 20px;
    gap: 0;
    z-index: 999;
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { width: 100%; padding: 12px 16px; }
  .nav-toggle { display: block; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: rgba(255,255,255,0.05); border-radius: 0; }
  .dropdown-menu li a { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.1); }
  .top-bar-inner { flex-direction: column; gap: 5px; align-items: flex-start; }
  .top-bar-phone { align-items: flex-start; }
  .hero { min-height: 70vh; }
  .hero-content { padding: 40px 20px; max-width: 100%; }
  .hero h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .review-stats { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .review-stats { grid-template-columns: 1fr; }
  .insurance-grid { grid-template-columns: 1fr 1fr; }
}
