/* ==========================================================================
   CLÍNICA VETERINÀRIA ACE - CORE STYLE SYSTEM
   ========================================================================== */

:root {
  /* Brand Colors (Extracted from the Storefront Sign Blue) */
  --primary-blue: #009BD9;
  --primary-blue-hover: #0080B5;
  --dark-text: #1C1B1F;
  --body-text: #4E4B54;
  --border-light: #E1DFE3;
  
  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-warm-beige: #F2F7FA;  /* Cool Ice-Blue/Gray background */
  --bg-team-blue: #EBF3F7;    /* Soft blue cards */
  --badge-bg: #E1EFF7;        /* Soft blue badge */
  
  /* Fonts */
  --font-main: 'Plus Jakarta Sans', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & FOUNDATIONS
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
}

button, input, select, textarea {
  font-family: inherit;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark-text);
  letter-spacing: -0.03em;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 100px; /* Perfect pill */
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 155, 217, 0.2);
}

.btn-secondary {
  background-color: var(--bg-white);
  color: var(--dark-text);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: #F8F7F9;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark-text);
  border: 1px solid var(--dark-text);
  padding: 10px 22px;
  font-size: 14px;
}

.btn-outline:hover {
  background-color: var(--dark-text);
  color: var(--bg-white);
}

.btn-full-width {
  width: 100%;
}

.btn-with-arrow {
  gap: 12px;
  padding-right: 8px; /* Room for the circle arrow */
}

.circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--bg-white);
  color: var(--primary-blue);
  border-radius: 50%;
  font-size: 16px;
  font-weight: bold;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition-smooth);
  height: 80px;
  display: flex;
  align-items: center;
}

.main-header.scrolled {
  height: 70px;
  border-bottom: 1px solid rgba(128, 128, 128, 0.2);
  background-color: rgba(var(--bg-white-rgb, 255, 255, 255), 0.7);
  backdrop-filter: blur(16px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-cross {
  width: 30px;
  height: 30px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.logo-brand-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-text);
  letter-spacing: -0.03em;
}

.logo-subtext {
  font-size: 10px;
  font-weight: 600;
  color: var(--body-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
  color: var(--body-text);
  position: relative;
  transition: var(--transition-smooth);
  padding: 8px 0;
}

.nav-item:hover, .nav-item.active {
  color: var(--dark-text);
  font-weight: 600;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding-top: 150px;
  padding-bottom: 80px;
  position: relative;
  background-color: var(--bg-white);
  overflow: hidden;
}

/* Center Align the Text */
.hero-text-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
  position: relative;
  z-index: 5;
}

.badge-country {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--badge-bg);
  border: 1px solid var(--border-light);
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--body-text);
  margin-bottom: 36px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-actions-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* Google Reviews trust badge */
.google-reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--bg-white);
  padding: 8px 18px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(28, 27, 31, 0.05);
  border: 1px solid var(--border-light);
}

.google-badge-icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
}

.google-svg {
  width: 100%;
  height: 100%;
}

.google-badge-stars {
  color: #FBBC05;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 1px;
}

.google-badge-text {
  font-size: 13px;
  color: var(--body-text);
}

.google-badge-text strong {
  color: var(--dark-text);
}

.reviews-count {
  color: #7A7880;
}

/* Decorative SVGs absolute positioning */
.hero-squiggle-left {
  position: absolute;
  top: 160px;
  left: calc(50% - 460px);
  width: 80px;
  height: 50px;
  pointer-events: none;
  z-index: 2;
}

.hero-paw-bg-right {
  position: absolute;
  top: 150px;
  right: calc(50% - 440px);
  width: 140px;
  height: 140px;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

/* Hero Images Row (left rounded, center oval, right rounded) */
.hero-images-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  position: relative;
  z-index: 5;
}

.hero-img-card {
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.hero-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-left {
  width: 260px;
  height: 380px;
  border-radius: 40px;
  transform: translateY(20px);
}

.card-center {
  width: 440px;
  height: 280px;
  border-radius: 140px; /* Horizontal Oval Frame */
  transform: translateY(-10px);
}

.card-right {
  width: 260px;
  height: 380px;
  border-radius: 40px;
  transform: translateY(20px);
}

.hero-squiggle-center {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  pointer-events: none;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-title {
  font-size: 40px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--body-text);
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-blue);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1);
  background-color: var(--primary-blue);
  color: #fff;
}

.service-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--badge-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.service-icon {
  font-size: 28px;
}

.service-card-title {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card-desc {
  color: var(--body-text);
  font-size: 15px;
  margin-bottom: 24px;
}

.service-link {
  font-weight: 700;
  color: var(--primary-blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition-smooth);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.service-link:hover {
  gap: 12px;
}

/* ==========================================================================
   ABOUT US SECTION (Unified White Card inside Blue-Ice Background)
   ========================================================================== */

.about-section {
  padding: 100px 0;
  background-color: var(--bg-warm-beige); /* Ice blue background */
}

.about-card {
  background-color: var(--bg-white);
  border-radius: 40px;
  padding: 56px;
  box-shadow: 0 20px 50px rgba(28, 27, 31, 0.03);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr;
  gap: 56px;
  align-items: center;
}

.about-visuals {
  width: 100%;
  height: 520px;
  border-radius: 28px;
  overflow: hidden;
}

.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-title {
  font-size: 44px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-desc {
  color: var(--body-text);
  font-size: 16px;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* Metrics Row */
.about-metrics-row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  background-color: var(--bg-warm-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.metric-text strong {
  font-size: 18px;
  font-weight: 800;
}

.metric-text span {
  font-size: 13px;
  color: var(--body-text);
}

/* Checklist items with custom circles */
.about-features {
  list-style: none;
  margin-bottom: 36px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  background-color: var(--primary-blue); /* Blue Circle matching storefront */
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Bottom CTA block */
.about-cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.client-avatars {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-group {
  display: flex;
}

.avatar-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  object-fit: cover;
  margin-left: -12px;
}

.avatar-item:first-child {
  margin-left: 0;
}

.avatar-next-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--dark-text);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text);
  transition: var(--transition-smooth);
}

.avatar-next-btn svg {
  width: 16px;
  height: 16px;
}

.avatar-next-btn:hover {
  background-color: var(--dark-text);
  color: var(--bg-white);
}

/* ==========================================================================
   TEAM SECTION (Solid soft blue cards, white tags, arrow link)
   ========================================================================== */

.team-section {
  padding: 100px 0;
  background-color: var(--bg-white);
}

.team-header-layout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}

.team-titles {
  max-width: 550px;
}

.team-title-text {
  font-size: 40px;
  line-height: 1.2;
}

.team-filters {
  display: flex;
  gap: 8px;
}

.filter-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-white);
  color: var(--body-text);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-tab:hover {
  background-color: #F8F7F9;
}

.filter-tab.active {
  background-color: var(--dark-text); /* Black active pill */
  color: var(--bg-white);
  border-color: var(--dark-text);
}

/* Team Grid and Warm Blue Card Layout */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background-color: var(--bg-team-blue); /* Solid blue-beige card */
  border-radius: 28px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(28, 27, 31, 0.05);
}

.team-card.hidden {
  display: none;
}

.team-img-wrapper {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 8px 6px;
}

.team-text-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.team-member-name {
  font-size: 17px;
  font-weight: 700;
}

.team-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 4px 10px;
  background-color: var(--bg-white); /* White badge inside card */
  color: var(--body-text);
  font-size: 11px;
  font-weight: 600;
  border-radius: 100px;
}

.team-action-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: var(--dark-text); /* Black circular icon button */
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.team-action-btn svg {
  width: 16px;
  height: 16px;
}

.team-action-btn:hover {
  background-color: var(--primary-blue);
  transform: scale(1.1);
}

/* ==========================================================================
   BOOKING SECTION & FORM
   ========================================================================== */

.booking-section {
  padding: 100px 0;
  background-color: var(--bg-warm-beige);
}

.booking-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.booking-title {
  font-size: 40px;
  margin-bottom: 20px;
}

.booking-desc {
  color: var(--body-text);
  font-size: 16px;
  margin-bottom: 32px;
}

.clinic-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(28, 27, 31, 0.1);
}

.font-warning {
  color: var(--primary-blue);
}

.booking-form-wrapper {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: 32px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  font-size: 14px;
  background-color: #FAF9FB;
  color: var(--dark-text);
  outline: none;
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-blue);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(0, 155, 217, 0.1);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.margin-top-sm {
  margin-top: 8px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.main-footer {
  background-color: #121114;
  color: #B1AEB7;
  padding: 80px 0 30px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-brand .logo-text {
  color: var(--bg-white);
}

.footer-tagline {
  line-height: 1.6;
}

.footer-links h3, .footer-newsletter h3 {
  color: var(--bg-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a:hover {
  color: var(--bg-white);
}

.contact-details li {
  line-height: 1.6;
}

.footer-newsletter p {
  margin-bottom: 18px;
  line-height: 1.5;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background-color: #242228;
  color: var(--bg-white);
  font-size: 13px;
  outline: none;
}

.newsletter-form button {
  padding: 12px 20px;
  background-color: var(--primary-blue);
  color: var(--bg-white);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.newsletter-form button:hover {
  background-color: var(--primary-blue-hover);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #242228;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a:hover {
  color: var(--bg-white);
}

/* ==========================================================================
   BOOKING CONFIRMATION MODAL & ANIMATIONS
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(28, 27, 31, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--bg-white);
  border-radius: 32px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
  transform: translateY(30px);
  transition: var(--transition-smooth);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.modal-overlay.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  color: var(--body-text);
  line-height: 1;
}

.modal-icon-success {
  font-size: 56px;
  margin-bottom: 20px;
}

.modal-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.modal-text {
  color: var(--body-text);
  margin-bottom: 24px;
  font-size: 15px;
}

.summary-details {
  background-color: var(--bg-warm-beige);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  border-bottom: 1px dashed rgba(28, 27, 31, 0.08);
  padding-bottom: 8px;
}

.summary-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.summary-lbl {
  font-weight: 700;
  color: var(--body-text);
}

.summary-val {
  font-weight: 600;
  color: var(--dark-text);
}

/* ==========================================================================
   SCROLL REVEAL UTILITIES
   ========================================================================== */

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PREMIUM FEATURES (MAPS, WHATSAPP, MODALS)
   ========================================================================== */
.maps-section iframe {
  display: block;
  filter: grayscale(0.2);
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  animation: pulse-wa 2s infinite;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.modal-service {
  padding: 0;
  overflow: hidden;
  text-align: left;
}
.modal-service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.modal-service .modal-title {
  padding: 24px 24px 0 24px;
}
.modal-service .modal-text {
  padding: 0 24px;
  margin-bottom: 16px;
}
.modal-features {
  list-style: none;
  padding: 0 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--dark-text);
  font-weight: 500;
}
.btn-service-to-book {
  border-radius: 0;
  padding: 18px;
  font-size: 16px;
}
.modal-service .modal-close {
  background-color: rgba(0,0,0,0.5);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

/* ==========================================================================
   MOBILE MENU OVERLAY & HAMBURGER
   ========================================================================== */

.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;
}

.hamburger-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--dark-text);
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
  transform: translateY(-10px);
}

.mobile-menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.mobile-nav-item {
  font-size: 24px;
  font-weight: 700;
  color: var(--body-text);
  transition: var(--transition-smooth);
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--dark-text);
}

.btn-mobile-book {
  margin-top: 16px;
  font-size: 18px;
  padding: 16px 36px;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }
  .hero-images-row {
    gap: 16px;
  }
  .card-left, .card-right {
    width: 200px;
    height: 300px;
  }
  .card-center {
    width: 320px;
    height: 220px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-visuals {
    height: 380px;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .booking-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .main-header {
    height: 70px;
  }
  .nav-links {
    display: none;
  }
  .hamburger-btn {
    display: flex;
    margin-left: 12px;
  }
  .header-actions {
    display: flex;
    align-items: center;
  }
  #btn-contact-header {
    display: none; /* Hide phone button on very small screens to make room for logo/burger */
  }
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero-title {
    font-size: 38px;
  }
  .hero-images-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .card-left, .card-right, .card-center {
    width: 100%;
    max-width: 350px;
    height: 250px;
    transform: none !important;
    border-radius: 24px;
  }
  .hero-squiggle-center {
    display: none;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .about-card {
    padding: 32px;
  }
  .about-title {
    font-size: 30px;
  }
  .about-cta-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-header-layout {
    flex-direction: column;
    align-items: flex-start;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-form-wrapper {
    padding: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
