/* ==========================================================================
   DESIGN SYSTEM & CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Color Palette */
  --primary: #0aadff;
  --primary-rgb: 10, 173, 255;
  --primary-dark: #0b4f7a;
  --primary-dark-rgb: 11, 79, 122;
  --secondary: #c99669;
  --surface: #f4f4ed;
  --surface-white: #ffffff;
  --text-main: #2b3a4a;
  --text-muted: #64748b;
  --success: #10b981;
  --border-color: rgba(11, 79, 122, 0.12);
  
  /* Typography */
  --font-heading: 'Outfit', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  /* Shadows & Radius */
  --shadow-sm: 0 2px 8px rgba(11, 79, 122, 0.05);
  --shadow-md: 0 8px 24px rgba(11, 79, 122, 0.08);
  --shadow-lg: 0 16px 40px rgba(11, 79, 122, 0.12);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Layout */
  --container-max: 1200px;
  --header-height: 90px;
  --header-shrink-height: 70px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & GLOBAL STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-shrink-height);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--surface);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
}

p {
  font-weight: 400;
  color: var(--text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.py-3 { padding-top: 3rem; padding-bottom: 3rem; }
.text-muted { color: var(--text-muted); }
.hidden { display: none !important; }

/* Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

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

.align-center { align-items: center; }
.gap-2 { gap: 2rem; }
.gap-4 { gap: 4rem; }

/* Image Responsive utilities */
.img-responsive {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.rounded-lg { border-radius: var(--radius-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--surface);
}
::-webkit-scrollbar-thumb {
  background: rgba(11, 79, 122, 0.2);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  font-size: 15px;
}

.btn-primary {
  background-color: var(--primary-dark);
  color: var(--surface-white);
  box-shadow: 0 4px 14px rgba(11, 79, 122, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary);
  box-shadow: 0 6px 20px rgba(10, 173, 255, 0.35);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  color: var(--surface-white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--surface-white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

/* ==========================================================================
   GLASSMORPHISM PANEL
   ========================================================================== */
.glass-panel {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(244, 244, 237, 0.85); /* Porcelana with opacity */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: height var(--transition-normal), background-color var(--transition-normal);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo {
  height: 60px;
  width: auto;
  transition: height var(--transition-normal);
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.desktop-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15px;
  color: var(--primary-dark);
  position: relative;
}

.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-fast);
}

.desktop-nav a:hover {
  color: var(--primary);
}

.desktop-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.25rem;
}

.lang-btn {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
}

.lang-btn:hover {
  color: var(--primary-dark);
  background-color: rgba(11, 79, 122, 0.05);
}

.lang-btn.active {
  color: var(--surface-white);
  background-color: var(--primary-dark);
  pointer-events: none;
}

.lang-separator {
  color: var(--text-muted);
  opacity: 0.3;
  user-select: none;
}

/* Mobile drawer lang switcher styling */
.mobile-nav .lang-switch {
  margin: 1.5rem 0;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.mobile-nav .lang-btn {
  padding: 6px 12px;
}

/* Scroll Animation Trigger using @supports */
@keyframes shrinkHeader {
  to {
    height: var(--header-shrink-height);
    background-color: rgba(244, 244, 237, 0.95);
    box-shadow: var(--shadow-sm);
  }
}

@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  .main-header {
    animation: shrinkHeader auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 120px;
  }
}

/* Fallback class controlled by JS if scroll-timeline is unsupported */
.main-header.scrolled {
  height: var(--header-shrink-height);
  background-color: rgba(244, 244, 237, 0.95);
  box-shadow: var(--shadow-sm);
}

.main-header.scrolled .header-logo {
  height: 48px;
}

/* Hamburger button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-menu-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

@media (max-width: 992px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(11, 79, 122, 0.4);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background-color: var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  transition: right var(--transition-normal);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.mobile-logo {
  height: 40px;
  width: auto;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-dark);
  display: block;
  padding: 8px 0;
}

.mobile-nav a:hover {
  color: var(--primary);
}

.mobile-nav-footer {
  margin-top: auto;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
  padding-bottom: 4rem;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hero-card {
  max-width: 600px;
  padding: 3.5rem 2.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 173, 255, 0.12);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(10, 173, 255, 0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.icon-sparkle {
  color: var(--primary);
  animation: pulse 2s infinite alternate;
}

.hero-card h1 {
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
}

.hero-card p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  from { opacity: 0.6; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.1); }
}

/* ==========================================================================
   WHITE GLOVE SECTION (DIFERENCIADORES)
   ========================================================================== */
.white-glove-section {
  padding: 6rem 0;
  background-color: var(--surface-white);
}

.section-header {
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(10, 173, 255, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-text p {
  font-size: 15px;
}

.white-glove-visual {
  position: relative;
}

.glow-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.glow-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  animation: shine 4s infinite;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.badge-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 20px;
  border-radius: var(--radius-md);
}

.badge-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.badge-overlay p {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-main);
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.services-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

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

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

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .services-grid .service-card.featured {
    grid-row: span 2;
    align-self: center;
  }
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2rem;
  background-color: rgba(255, 255, 255, 0.7);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  border: 1px solid var(--border-color);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 173, 255, 0.35);
}

.service-card.featured {
  background-color: rgba(11, 79, 122, 0.02);
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.card-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background-color: var(--primary);
  color: var(--surface-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(10, 173, 255, 0.3);
}

.service-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background-color: var(--surface-white);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

.service-card.featured .service-header-icon {
  background-color: var(--primary-dark);
  color: var(--surface-white);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-features li {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-main);
}

.service-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
}

.service-card.featured .service-features li::before {
  color: var(--primary-dark);
}

.service-card .btn {
  width: 100%;
}

/* ==========================================================================
   SPECIAL CARE & PET FRIENDLY SECTIONS
   ========================================================================== */
.special-care-section {
  padding: 6rem 0;
  background-color: var(--surface-white);
}

.tag-accent {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.special-care-content h2,
.pet-friendly-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  max-width: 500px;
}

.special-care-content p,
.pet-friendly-content p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

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

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

.care-group-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background-color: var(--surface);
  border-left: 4px solid var(--primary);
}

.care-group-card h5 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.care-group-card p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.5;
}

.pet-friendly-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

.pet-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pet-benefits li {
  font-size: 14px;
  position: relative;
  padding-left: 2rem;
  color: var(--text-muted);
}

.pet-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230aadff'%3E%3Cpath d='M12 14c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm-6-2.5C6 9.57 7.57 8 9.5 8S13 9.57 13 11.5 11.43 15 9.5 15 6 13.43 6 11.5zm11 0c0-1.93 1.57-3.5 3.5-3.5S24 9.57 24 11.5s-1.57 3.5-3.5 3.5-3.5-1.57-3.5-3.5zm-5-6c0-1.38 1.12-2.5 2.5-2.5S17 4.12 17 5.5 15.88 8 14.5 8 12 6.88 12 5.5zm-6 0C6 4.12 7.12 3 8.5 3S11 4.12 11 5.5 9.88 8 8.5 8 6 6.88 6 5.5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.pet-benefits strong {
  display: block;
  color: var(--primary-dark);
  font-size: 15px;
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .reverse-mobile {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 6rem 0;
  background-color: var(--surface-white);
}

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

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

.testimonial-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-color);
  background-color: rgba(244, 244, 237, 0.25);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.rating {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  color: var(--text-main);
}

.testimonial-user {
  display: flex;
  flex-direction: column;
}

.testimonial-user strong {
  font-size: 15px;
  color: var(--primary-dark);
}

.testimonial-user span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

.contact-form-container {
  padding: 3rem 2.5rem;
}

.contact-form-container h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.contact-form-container p {
  font-size: 14px;
  margin-bottom: 2rem;
}

/* Forms Styling */
.modern-form, .booking-wizard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.form-group label.label-highlight {
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 8px;
  margin-bottom: 6px;
  line-height: 1.4;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--surface-white);
  font-family: var(--font-body);
  color: var(--text-main);
  outline: none;
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 173, 255, 0.15);
}

.form-helper {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
}

.form-feedback {
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.form-feedback.success {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-container h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.contact-info-container p {
  font-size: 15px;
  margin-bottom: 2.5rem;
}

.info-blocks {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.info-block {
  display: flex;
  gap: 1.25rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background-color: var(--surface-white);
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.info-block h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.info-block p {
  font-size: 14px;
  margin-bottom: 0;
  color: var(--text-muted);
}

.booking-notice-card {
  padding: 1.75rem;
  background-color: rgba(10, 173, 255, 0.03);
  border: 1px dashed var(--primary);
}

.booking-notice-card h5 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.booking-notice-card p {
  font-size: 13.5px;
  margin-bottom: 1rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.main-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  align-self: flex-start;
  filter: brightness(0) invert(1); /* Invert logo color for dark footer */
}

.footer-brand p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
}

.footer-links h4,
.footer-info h4 {
  font-size: 1.1rem;
  color: var(--surface-white);
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-info a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover,
.footer-info a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   MODAL / DIALOG DIALOG_CONTENT (Booking Simulator)
   ========================================================================== */
dialog {
  border: none;
  border-radius: var(--radius-md);
  max-width: 650px;
  width: 90%;
  margin: auto;
  box-shadow: 0 25px 50px -12px rgba(11, 79, 122, 0.25);
  background: var(--surface);
  overflow: hidden;
}

dialog::backdrop {
  background-color: rgba(11, 79, 122, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Animations for modern browser showModal */
dialog[open] {
  animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.dialog-content {
  display: flex;
  flex-direction: column;
  max-height: 85vh;
}

.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background-color: var(--surface-white);
  border-bottom: 1px solid var(--border-color);
}

.dialog-header h2 {
  font-size: 1.5rem;
}

.dialog-close {
  background: transparent;
  border: none;
  font-size: 1.75rem;
  color: var(--primary-dark);
  cursor: pointer;
  line-height: 1;
}

.dialog-close:hover {
  color: var(--primary);
}

/* Wizard Steps Indicator */
.booking-steps-indicator {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background-color: rgba(255, 255, 255, 0.5);
}

.step-indicator {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
}

@media (min-width: 576px) {
  .step-indicator {
    font-size: 13px;
    padding: 14px 10px;
  }
}

.step-indicator.active {
  color: var(--primary);
  border-color: var(--primary);
}

.booking-wizard {
  padding: 24px;
  overflow-y: auto;
  flex-grow: 1;
}

.wizard-step {
  display: none;
}

.wizard-step.active {
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.wizard-step h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.step-desc {
  font-size: 14px;
  margin-bottom: 1rem;
}

/* Radio Option Cards (Wizard step 1) */
.wizard-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

.wizard-card-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.wizard-card-option input {
  position: absolute;
  opacity: 0;
}

.card-option-content {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--surface-white);
  transition: all var(--transition-fast);
  height: 100%;
}

.wizard-card-option input:checked + .card-option-content {
  border-color: var(--primary);
  background-color: rgba(10, 173, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(10, 173, 255, 0.1);
}

.option-title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.option-desc {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Radio Option Tabs (Frecuencia) */
.wizard-grid-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

@media (min-width: 576px) {
  .wizard-grid-tabs {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wizard-tab-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.wizard-tab-option input {
  position: absolute;
  opacity: 0;
}

.tab-label {
  display: block;
  padding: 10px 4px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--surface-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  color: var(--primary-dark);
  transition: all var(--transition-fast);
}

.wizard-tab-option input:checked + .tab-label {
  border-color: var(--primary);
  background-color: var(--primary-dark);
  color: var(--surface-white);
}

/* Checkbox Addons (Wizard step 2) */
.addons-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkbox-option {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background-color: var(--surface-white);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.checkbox-option input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkbox-label-content {
  display: flex;
  flex-direction: column;
}

.checkbox-label-content strong {
  font-size: 14px;
  color: var(--primary-dark);
}

.checkbox-label-content span {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
}

.checkbox-option:has(input:checked) {
  border-color: var(--primary);
  background-color: rgba(10, 173, 255, 0.02);
}

/* Wizard actions footer */
.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Estimate Summary Card (Wizard step 4) */
.quote-display-card {
  background-color: var(--primary-dark);
  color: var(--surface-white);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.quote-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
}

.quote-row.sub-row {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.quote-row.summary-total {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 14px;
  padding-top: 12px;
  font-size: 22px;
  color: var(--primary);
}

.quote-disclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.3;
}

/* Success Details Box */
.success-icon {
  color: var(--success);
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.success-details-card {
  background-color: var(--surface-white);
  border: 1px solid var(--border-color);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.success-details-card p {
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--text-main);
}
.success-details-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   NEW IMPROVEMENTS & ADDITIONS (MERGED FROM DEMO)
   ========================================================================== */

/* Hero Stats Bar */
.hero-stats-bar {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background-color: var(--surface);
}

.about-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 16px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.about-content p.lead-text {
  font-size: 1.125rem;
  color: var(--primary-dark);
  font-weight: 500;
}

.about-visual {
  position: relative;
}

/* Why Choose Us Section */
.why-us-section {
  padding: 6rem 0;
  background-color: var(--surface-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(10, 173, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(10, 173, 255, 0.18);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--surface-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 79, 122, 0.08);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(11, 79, 122, 0.9) 0%, rgba(11, 79, 122, 0.4) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  color: var(--surface-white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Responsiveness adjustments for new components */
@media (max-width: 992px) {
  .hero-section {
    padding-bottom: 8rem;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
  }
  .hero-stats-bar {
    position: relative;
    bottom: auto;
    margin-top: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 576px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

