/* Reset & Global Styles */
:root {
  --primary-accent: #e3000f;
  --primary-accent-dark: #b3000c;
  --primary-blue: #1a202c;
  --primary-blue-dark: #000000;
  --bg-light: #f7fafc;
  --bg-blue-light: #fff5f5;
  --border-blue: #fed7d7;
  --text-dark: #0f172a;
  --text-light: #475569;
  --white: #ffffff;
  --star-yellow: #fbbf24;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-accent: 0 8px 30px rgba(227, 0, 15, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.grid { display: grid; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.hidden { display: none; }

/* Typography */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(to right, var(--primary-blue), var(--primary-blue-dark));
  color: var(--white);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-brand {
  display: flex;
  align-items: center;
}

.header-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  margin-right: 1rem;
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

.header-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
}

.rating {
  display: flex;
  align-items: center;
}

.rating-star { color: var(--star-yellow); margin-right: 0.25rem; }
.rating-count { font-size: 0.75rem; opacity: 0.9; margin-left: 0.25rem; }

.header-contact {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.header-phone {
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: var(--primary-accent);
}

.btn-call {
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.btn-call:hover {
  background-color: var(--primary-accent-dark);
  color: var(--white);
  transform: scale(1.05);
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.6)), url('hero-bg.png');
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 8rem 1.5rem 6rem;
  z-index: 1;
}

.hero-bg-shape {
  display: none;
}

.hero-content {
  max-width: 52rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--bg-blue-light);
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  border: 1px solid var(--border-blue);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--primary-accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 0, 15, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(227, 0, 15, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(227, 0, 15, 0); }
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

@media (min-width: 640px) {
  .hero-title { font-size: 4.25rem; }
}

.hero-subtitle {
  font-size: 1.35rem;
  color: #e2e8f0;
  margin-bottom: 2rem;
  max-width: 44rem;
  font-weight: 400;
}

.hero-feature {
  display: inline-block;
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 800;
  border: none;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-accent);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  padding: 1.1rem 2.5rem;
  border-radius: 9999px;
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--primary-accent-dark);
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.hero-btn:hover {
  transform: translateY(-2px);
  background-color: #ff3344;
  box-shadow: 0 8px 0 var(--primary-accent-dark);
}

.hero-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--primary-accent-dark);
}

.hero-guarantee {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  color: #e2e8f0;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.text-accent { color: var(--primary-accent-dark); }

/* Features Banner */
.features-banner {
  background-color: var(--primary-blue-dark);
  color: var(--white);
  padding: 3.5rem 1.5rem;
}

.features-banner-intro {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.features-icon-large {
  display: none;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  font-weight: bold;
}

@media (min-width: 640px) {
  .features-icon-large { display: flex; }
  .features-banner-intro { align-items: center; }
}

.features-text {
  font-size: 1.25rem;
  font-weight: 400;
  color: #e2e8f0;
  max-width: 60rem;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  color: var(--primary-accent);
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.feature-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Services */
.services {
  padding: 6rem 1.5rem;
  background-color: var(--white);
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-blue-dark);
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background-color: var(--bg-light);
  border: 1px solid var(--border-blue);
  transition: all 0.3s;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-blue);
}

.service-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.bg-accent-light { background-color: #fee2e2; color: var(--primary-accent-dark); }
.bg-blue-light-box { background-color: var(--bg-blue-light); color: var(--primary-blue); }

.service-card:hover .bg-accent-light { background-color: var(--primary-accent); color: var(--primary-blue-dark); }
.service-card:hover .bg-blue-light-box { background-color: var(--primary-blue); color: var(--white); }

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-light);
  font-size: 1rem;
}

/* Health Services */
.health-services {
  padding: 6rem 1.5rem;
  background-color: var(--bg-blue-light);
}

.health-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

@media (min-width: 768px) {
  .health-grid { grid-template-columns: repeat(2, 1fr); }
}

.health-card {
  padding: 2.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}

.health-card-white { background-color: var(--white); border: 1px solid var(--border-blue); }
.health-card-accent { background-color: var(--primary-blue-dark); color: var(--white); }

.health-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.bg-accent-faded { background-color: #fee2e2; color: var(--primary-accent-dark); }
.bg-white-faded { background-color: rgba(255, 255, 255, 0.1); color: var(--primary-accent); }

.health-title-dark { font-size: 1.35rem; font-weight: 800; color: var(--primary-blue-dark); margin-bottom: 0.75rem; }
.health-title-light { font-size: 1.35rem; font-weight: 800; color: var(--white); margin-bottom: 0.75rem; }

.health-desc-dark { color: var(--text-light); line-height: 1.6; }
.health-desc-light { color: #cbd5e1; line-height: 1.6; }

/* Floating Mobile CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  padding: 0 1.5rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .floating-cta { display: none; }
}

.floating-btn {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  height: 4rem;
  width: 100%;
  max-width: 28rem;
  border-radius: 9999px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: var(--shadow-accent);
  animation: subtle-pulse 2s infinite;
  letter-spacing: 0.05em;
}

/* Zone Map */
.zone-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.zone-title-wrapper {
  position: relative;
  text-align: center;
  margin-bottom: 3rem;
}

.zone-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-blue-dark);
  position: relative;
  z-index: 1;
}

.zone-title-underline {
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 0.35rem;
  background-color: var(--primary-accent);
  z-index: 0;
  border-radius: 2px;
}

.zone-desc {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 3rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

.cities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto 2.5rem auto;
}

@media (min-width: 768px) {
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

.city-card {
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-blue);
  font-weight: 700;
  color: var(--primary-blue-dark);
}

.address-info {
  text-align: center;
  margin-bottom: 2.5rem;
}

.map-container {
  position: relative;
  width: 100%;
  height: 24rem;
  background-color: #e2e8f0;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  outline: none;
}

@media (min-width: 768px) {
  .map-container { height: 28rem; }
}

.map-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(2px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  pointer-events: none;
}

.map-container:focus-within .map-overlay {
  opacity: 0;
}

.map-container iframe {
  pointer-events: none;
}

.map-container:focus-within iframe {
  pointer-events: auto;
}

.map-btn {
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  font-weight: 800;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  pointer-events: auto;
}

/* Gallery */
.gallery-section {
  padding: 5rem 1.5rem;
  background-color: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.gallery-img-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  height: 20rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-img-wrapper:hover img {
  transform: scale(1.05);
}

.gallery-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.95), transparent);
  padding: 2rem 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  color: var(--white);
  pointer-events: none;
}

.gallery-overlay-title {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--primary-accent);
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.gallery-overlay-phone {
  font-weight: 700;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Reviews */
.reviews-section {
  padding: 5rem 1.5rem;
  background-color: var(--white);
}

.reviews-badge-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: var(--bg-light);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-blue);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  display: flex;
  flex-direction: column;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-blue);
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-card-dark {
  background-color: var(--primary-blue-dark);
  color: var(--white);
  border: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.review-stars { color: var(--star-yellow); font-size: 1.1rem; }
.review-date { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.review-date-light { color: #94a3b8; }

.review-content {
  flex-grow: 1;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
}

.review-content-light { color: #cbd5e1; }

.review-author {
  font-weight: 800;
  color: var(--primary-blue-dark);
  font-size: 1.1rem;
}

.review-author-light { color: var(--white); }

.reviews-link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: var(--primary-blue);
  text-decoration: none;
  border-bottom: 2px solid var(--primary-accent);
  padding-bottom: 0.25rem;
  margin-top: 2.5rem;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.reviews-link:hover {
  color: var(--primary-blue-dark);
}

/* Final CTA */
.final-cta {
  position: relative;
  overflow: hidden;
  background-color: var(--primary-blue-dark);
  padding: 6rem 1.5rem;
  color: var(--white);
  text-align: center;
}

.final-cta-bg {
  position: absolute;
  top: -5rem;
  right: -2rem;
  font-size: 24rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 60rem;
  margin: 0 auto;
}

.final-cta-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .final-cta-title { font-size: 3.5rem; }
}

.final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-accent);
  color: var(--primary-blue-dark);
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  font-size: 1.35rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 0 var(--primary-accent-dark);
  margin-top: 2.5rem;
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.final-btn:hover {
  transform: translateY(-2px);
  background-color: #34d399;
  box-shadow: 0 8px 0 var(--primary-accent-dark);
}

.final-btn:active {
  transform: translateY(4px);
  box-shadow: 0 2px 0 var(--primary-accent-dark);
}

/* Footer */
.footer {
  background-color: #020617;
  color: var(--white);
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-col h3 {
  font-size: 1.35rem;
  margin-bottom: 1.5rem;
  color: var(--primary-accent);
}

.footer-col p {
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  color: #94a3b8;
}

.footer-links li { margin-bottom: 0.75rem; font-weight: 500; }

.footer-call {
  display: inline-flex;
  align-items: center;
  color: var(--primary-accent);
  font-weight: 800;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: color 0.3s;
  font-size: 1.2rem;
}

.footer-call:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
