/* ============================================
   RANIBAGAN DIAGNOSTIC CENTER — STYLESHEET
   Design: Soft Clinical Luxury
   Colors: Deep Teal + Warm Gold + Clean White
============================================ */

/* --- CSS VARIABLES --- */
:root {
  --teal:       #0a5c63;
  --teal-light: #138c95;
  --teal-pale:  #e8f6f7;
  --gold:       #c9973a;
  --gold-light: #f0c76a;
  --white:      #ffffff;
  --off-white:  #f8fcfd;
  --gray-100:   #f2f5f5;
  --gray-300:   #d0dada;
  --gray-500:   #7a9090;
  --gray-700:   #3a5050;
  --dark:       #0d2b2b;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito Sans', sans-serif;
  --radius:     12px;
  --shadow-sm:  0 2px 12px rgba(10,92,99,0.08);
  --shadow-md:  0 8px 32px rgba(10,92,99,0.14);
  --shadow-lg:  0 20px 60px rgba(10,92,99,0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--teal-light); border-radius: 3px; }

/* --- PRELOADER --- */
.preloader {
  position: fixed; inset: 0;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-cross {
  width: 50px; height: 50px;
  position: relative; margin: 0 auto 16px;
  animation: spin 1.5s linear infinite;
}
.preloader-cross span {
  position: absolute; background: var(--gold);
  border-radius: 3px;
}
.preloader-cross span:nth-child(1) { width: 4px; height: 50px; left: 23px; top: 0; }
.preloader-cross span:nth-child(2) { width: 50px; height: 4px; top: 23px; left: 0; }
.preloader-inner p {
  color: var(--gray-300); font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- CONTAINER --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* --- TYPOGRAPHY --- */
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-light);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: italic;
  color: var(--teal);
}
.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 0.5rem;
}
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.text-center { text-align: center; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,92,99,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--teal);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,151,58,0.4);
}
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.82rem; }

/* ============================================
   NAVBAR
============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 0.6rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
}
.logo-icon svg { width: 40px; height: 40px; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-sub {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-500);
}
.navbar:not(.scrolled) .logo-name,
.navbar:not(.scrolled) .logo-sub { color: var(--white); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
}
.navbar:not(.scrolled) .nav-link { color: rgba(255,255,255,0.9); }
.nav-link:hover, .nav-link.active { color: var(--teal); }
.navbar:not(.scrolled) .nav-link:hover,
.navbar:not(.scrolled) .nav-link.active { color: var(--white); background: rgba(255,255,255,0.15); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--gold); border-radius: 50%;
}

.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.85rem; font-weight: 700;
  color: var(--teal);
  transition: var(--transition);
}
.navbar:not(.scrolled) .nav-phone { color: var(--white); }
.nav-phone:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.navbar:not(.scrolled) .hamburger span { background: var(--white); }
.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); }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  background: url('https://images.unsplash.com/photo-1631217868264-e5b90bb7e133?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,40,40,0.88) 0%, rgba(10,92,99,0.75) 60%, rgba(10,92,99,0.5) 100%);
}
.hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  padding-top: 8rem; padding-bottom: 6rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.pulse-dot {
  width: 8px; height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(240,199,106,0.5); }
  50% { box-shadow: 0 0 0 8px rgba(240,199,106,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  flex-wrap: wrap;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-number sup { font-size: 1rem; }
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0.25rem;
}
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.2); }
.hero-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* ============================================
   TRUST STRIP
============================================ */
.trust-strip {
  background: var(--teal);
  padding: 1.25rem 0;
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem 3rem;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.9);
  font-size: 0.88rem; font-weight: 600;
}
.trust-svg {
  width: 18px; height: 18px;
  stroke: var(--gold-light);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SNAP
============================================ */
.about-snap { background: var(--off-white); }
.about-snap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.img-stack {
  position: relative;
  padding-bottom: 3rem;
  padding-right: 3rem;
}
.img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.img-accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.img-badge {
  position: absolute;
  top: 1.5rem; left: -1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.img-badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.img-badge-text { font-size: 0.7rem; opacity: 0.9; }
.about-snap-text p {
  color: var(--gray-500);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.check-list { margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: 0.6rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
.check-icon {
  width: 22px; height: 22px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
  font-weight: 700;
}

/* ============================================
   SERVICES
============================================ */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.6rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-link:hover { color: var(--gold); letter-spacing: 1px; }

/* ============================================
   HOW IT WORKS
============================================ */
.how-section {
  background: var(--teal-pale);
  position: relative;
  overflow: hidden;
}
.how-bg-shape {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(19,140,149,0.12) 0%, transparent 70%);
}
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step-card {
  flex: 1; min-width: 200px; max-width: 250px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  color: rgba(10,92,99,0.1);
  position: absolute; top: 0.5rem; right: 1rem;
  line-height: 1;
}
.step-icon {
  font-size: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  width: 70px; height: 70px;
  background: var(--white);
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  box-shadow: var(--shadow-sm);
}
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem;
}
.step-card p { font-size: 0.85rem; color: var(--gray-500); }
.step-connector {
  width: 60px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-light) 0, var(--teal-light) 6px, transparent 6px, transparent 12px);
  flex-shrink: 0;
}

/* ============================================
   GALLERY
============================================ */
.gallery-section { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1rem;
}
.gallery-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: var(--transition);
  filter: brightness(0.95);
}
.gallery-img:hover { filter: brightness(1.05); transform: scale(1.02); }
.gallery-img-large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials-section { background: var(--off-white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gray-700);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testimonial-author span { font-size: 0.78rem; color: var(--gray-500); }

/* ============================================
   CTA SECTION
============================================ */
.cta-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1530026405186-ed1f139313f3?w=1400&q=80') center/cover no-repeat;
  padding: 6rem 0;
  overflow: hidden;
}
.cta-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,40,40,0.92), rgba(10,92,99,0.85));
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; flex-wrap: wrap;
}
.cta-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--white);
  margin-bottom: 0.75rem;
}
.cta-text p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   FOOTER
============================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo { margin-bottom: 1.25rem; }
.footer-logo .logo-name,
.footer-logo .logo-sub { color: var(--white); }
.footer-logo .logo-sub { color: rgba(255,255,255,0.5); }
.footer-tagline { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--teal); color: var(--white); }
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  margin-bottom: 1rem; font-size: 0.85rem; line-height: 1.6;
}
.footer-contact svg { flex-shrink: 0; margin-top: 2px; stroke: var(--gold-light); }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; }

/* ============================================
   FLOATING CTA (Mobile)
============================================ */
.fab-call {
  position: fixed; right: 1.5rem; bottom: 2rem;
  width: 56px; height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(10,92,99,0.45);
  z-index: 900;
  animation: pulse-fab 3s ease infinite;
}
@keyframes pulse-fab {
  0%, 100% { box-shadow: 0 4px 20px rgba(10,92,99,0.45); }
  50% { box-shadow: 0 4px 30px rgba(10,92,99,0.7); }
}

/* ============================================
   PAGE HERO (inner pages)
============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal) 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1581594693702-fbdc51b2763b?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700; color: var(--white); line-height: 1.1;
  margin-bottom: 1rem;
}
.page-hero-title em { font-style: italic; color: var(--gold-light); }
.page-hero-desc { color: rgba(255,255,255,0.78); font-size: 1rem; max-width: 500px; }
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-top: 2rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}
.contact-info-card {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; margin-bottom: 0.5rem;
}
.contact-info-card > p { font-size: 0.9rem; opacity: 0.8; margin-bottom: 2rem; }
.info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 2rem; }
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { stroke: var(--gold-light); }
.info-item strong { display: block; font-size: 0.85rem; margin-bottom: 0.25rem; }
.info-item span, .info-item a {
  font-size: 0.9rem; opacity: 0.85; line-height: 1.5;
  color: inherit;
}
.info-item a:hover { color: var(--gold-light); }
.hours-grid {
  background: rgba(255,255,255,0.1);
  border-radius: 10px; padding: 1.25rem;
  display: grid; gap: 0.5rem;
}
.hour-row { display: flex; justify-content: space-between; font-size: 0.85rem; }
.hour-row span:last-child { color: var(--gold-light); font-weight: 600; }
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem;
}
.contact-form-wrap > p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 2rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.8rem; font-weight: 700; color: var(--gray-700); letter-spacing: 0.5px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-300);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--dark);
  transition: var(--transition);
  background: var(--off-white);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(10,92,99,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-section { padding-bottom: 0; }
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 400px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================
   ABOUT PAGE
============================================ */
.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.value-card:hover { box-shadow: var(--shadow-md); border-bottom-color: var(--teal); transform: translateY(-4px); }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.85rem; color: var(--gray-500); }

/* ============================================
   SERVICES PAGE
============================================ */
.services-list { display: flex; flex-direction: column; gap: 2rem; }
.service-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem;
  padding: 2rem; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-300); transition: var(--transition);
}
.service-row:hover { box-shadow: var(--shadow-md); border-color: var(--teal-pale); }
.service-row-icon {
  width: 70px; height: 70px; background: var(--teal-pale);
  border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 2rem;
}
.service-row-body h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.service-row-body p { font-size: 0.9rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.test-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.test-tag {
  background: var(--teal-pale); color: var(--teal);
  font-size: 0.72rem; font-weight: 700; padding: 0.3rem 0.75rem;
  border-radius: 50px; letter-spacing: 0.5px;
}

/* ============================================
   ANIMATIONS
============================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0; transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-snap-grid { gap: 3rem; }
}
@media (max-width: 900px) {
  .about-snap-grid { grid-template-columns: 1fr; }
  .about-snap-images { order: -1; }
  .img-main { height: 300px; }
  .img-badge { left: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gallery-img-large { grid-column: 1/-1; grid-row: auto; }
  .steps-grid { gap: 0; }
  .step-connector { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
@media (max-width: 768px) {
  .navbar { padding: 0.75rem 0; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
    z-index: 998;
  }
  .nav-links.open { right: 0; }
  .nav-link { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-700) !important; border-radius: 0; }
  .hamburger { display: flex; }
  .nav-phone { display: none; }
  .navbar:not(.scrolled) .nav-logo .logo-name { color: var(--white); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .fab-call { display: flex; }
  .service-row { grid-template-columns: 1fr; }
  .service-row-icon { width: 55px; height: 55px; font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
}
