/* ============================================
   El Caché 10 Barbershop - Styles
   Mobile-first, responsive design
   ============================================ */

/* CSS Custom Properties - Gold, Black, Navy, Red - Urban Premium Dominican */
:root {
  --color-gold: #d4af37;
  --color-gold-dark: #b8962e;
  --color-gold-light: #e8c547;
  --color-black: #0a0a0a;
  --color-navy: #0f172a;
  --color-navy-light: #1e293b;
  --color-red: #c41e3a;
  --color-red-dark: #a01830;
  --color-primary: var(--color-gold);
  --color-primary-dark: var(--color-gold-dark);
  --color-primary-light: var(--color-gold-light);
  --color-dark: var(--color-black);
  --color-dark-alt: var(--color-navy);
  --color-text: var(--color-navy);
  --color-text-light: #475569;
  --color-bg: #ffffff;
  --color-bg-alt: #f1f5f9;
  --color-border: #e2e8f0;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Oswald', sans-serif;
  --font-hero: 'Bebas Neue', Impact, sans-serif;
  --shadow-sm: 0 2px 8px rgba(10, 10, 10, 0.12);
  --shadow-md: 0 4px 24px rgba(10, 10, 10, 0.15);
  --shadow-lg: 0 8px 48px rgba(10, 10, 10, 0.2);
  --transition: 0.3s ease;
  --radius: 6px;
  --radius-lg: 10px;
  --space: 1rem;
  --space-lg: 2rem;
  --header-height: 72px;
}

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-black);
  outline-offset: 2px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  font-weight: 500;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

ul {
  list-style: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--color-gold-dark);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--color-bg);
  border: 2px solid var(--color-bg);
}

.btn-secondary:hover {
  background: var(--color-bg);
  color: var(--color-navy);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--color-gold);
  height: var(--header-height);
  min-height: 56px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.nav-logo-text span {
  color: var(--color-gold);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-bg);
  transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--color-navy);
  flex-direction: column;
  padding: 1.5rem;
  gap: 0;
  display: none;
  box-shadow: var(--shadow-lg);
}

.nav-links.is-open {
  display: flex;
}

.nav-links a {
  display: block;
  padding: 1rem;
  color: var(--color-bg);
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links a:hover {
  color: var(--color-gold);
}

.nav-links .btn {
  margin-top: 0.5rem;
  margin-left: 1rem;
}

/* Hero - Logo como fondo de pantalla */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a0a0a;
  background-image: url('../images/logo.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(var(--header-height) + 2rem) 1.5rem 2rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.5) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(10, 10, 10, 0.55) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  z-index: 1;
  background: rgba(10, 10, 10, 0.35);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-brand-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.hero-logo {
  width: clamp(100px, 20vw, 160px);
  height: auto;
  max-height: 160px;
  object-fit: contain;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(0, 0, 0, 0.6), 0 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-brand-name span {
  color: var(--color-gold);
}

.hero-location {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-family: var(--font-hero);
  font-size: clamp(3.5rem, 15vw, 8rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
  display: block;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 0 3px rgba(0, 0, 0, 0.7), 0 4px 12px rgba(0, 0, 0, 0.6);
}

.hero-tagline span {
  color: var(--color-gold-light);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.95), 0 0 0 3px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.4);
}

.hero h1 .hero-brand {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9), 0 0 0 2px rgba(0, 0, 0, 0.5);
}

.hero h1 .hero-brand span {
  color: var(--color-gold-light);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.25rem;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(0, 0, 0, 0.5);
}

.hero-highlight-dot {
  color: var(--color-gold);
  font-weight: 700;
  margin: 0 0.125rem;
}

.hero-address {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.85);
}

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

.btn-hero-primary {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-black);
  border: 2px solid var(--color-gold);
}

.btn-hero-primary:hover {
  background: transparent;
  color: var(--color-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn-hero-secondary {
  padding: 1.125rem 2.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--color-red);
  color: #fff;
  border: 2px solid var(--color-red);
}

.btn-hero-secondary:hover {
  background: var(--color-red-dark);
  color: #fff;
  border-color: var(--color-red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 30, 58, 0.4);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.875rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 2.5rem;
  font-size: 1.0625rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle a {
  color: var(--color-gold);
  font-weight: 600;
}

.section-subtitle a:hover {
  text-decoration: underline;
}

/* Intro */
.intro {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.intro-logo {
  max-width: 200px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
}

.intro-text {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Services */
.services {
  background: var(--color-bg-alt);
}

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

.service-category-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--color-gold);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-category-card:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.service-category-card:hover::before {
  opacity: 1;
}

.service-category-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.25rem;
  padding: 12px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
}

.service-category-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
}

.service-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}

.service-category-desc {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.service-category-list {
  list-style: none;
}

.service-category-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
}

.service-category-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--color-red);
  border-radius: 50%;
}

.service-category-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.875rem;
  background: var(--color-red);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
}

/* Gallery */
.gallery {
  background: var(--color-bg-alt);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 0.75rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

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

.gallery-icon {
  position: relative;
  width: 56px;
  height: 56px;
  background: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.gallery-icon::before {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid var(--color-black);
  border-radius: 2px;
}

.gallery-item:hover .gallery-icon {
  transform: scale(1.1);
}

/* Gallery grid variants - tall & wide */
.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

@media (max-width: 479px) {
  .nav-logo {
    height: 44px;
  }

  .nav-logo-text {
    font-size: 1rem;
  }

  .hero-logo {
    width: clamp(80px, 22vw, 120px);
  }

  .gallery-item-tall {
    grid-row: span 1;
  }

  .gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-grid {
    grid-auto-rows: minmax(140px, auto);
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  text-align: center;
}

/* Contact */
.contact {
  background: var(--color-bg);
}

.contact-card {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(145deg, var(--color-navy) 0%, #0a0f1a 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: var(--shadow-lg);
}

.contact-main h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.contact-tagline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-cta-primary:hover {
  background: var(--color-gold-light);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
}

.btn-cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border: 2px solid #25d366;
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-cta-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.contact-address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.5;
  transition: color var(--transition);
}

.contact-address:hover {
  color: var(--color-gold);
}

.contact-address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-hours {
  margin-bottom: 1.5rem;
}

.contact-hours h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.contact-hours ul {
  list-style: none;
}

.contact-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-hours li span {
  font-weight: 700;
  color: #fff;
  min-width: 5rem;
}

.contact-hours-note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
}

.contact-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--color-gold);
}

.contact-instagram:hover {
  text-decoration: underline;
}

.contact-instagram .instagram-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Booking Section */
.booking {
  background: linear-gradient(180deg, var(--color-bg-alt) 0%, var(--color-bg) 100%);
}

.booking-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
  background: var(--color-bg);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(10, 10, 10, 0.08);
}

.booking-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
  color: var(--color-text);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  transition: border-color var(--transition);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-row .booking-field {
  margin-bottom: 0;
}

.booking-row .booking-field input {
  margin-bottom: 0;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25d366;
  color: #fff;
  border: 2px solid #25d366;
  margin-top: 0.5rem;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  border-color: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Map */
.contact-map-wrapper {
  margin-top: 2rem;
}

.contact-map-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-navy);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.map-link {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1rem;
  background: var(--color-gold);
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius);
  z-index: 2;
}

.map-link:hover {
  background: var(--color-gold-dark);
  color: var(--color-black);
}

.contact-map-cta {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* Footer */
.footer {
  background: var(--color-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 2.5rem 0;
  border-top: 2px solid var(--color-gold);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-content p {
  font-size: 0.875rem;
}

.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold);
  font-weight: 600;
}

.footer-instagram:hover {
  color: var(--color-gold-light);
}

.footer-instagram .instagram-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.5rem;
  font-size: 0.875rem;
}

.footer-legal a {
  color: var(--color-gold);
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-legal span {
  color: rgba(255, 255, 255, 0.5);
}

.footer-update {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Legal pages */
.legal-page {
  padding-top: calc(var(--header-height) + 3rem);
}

.legal-page h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.legal-page h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-page p,
.legal-page li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.legal-page ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-update {
  font-size: 0.8125rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.legal-page a {
  color: var(--color-gold);
}

.legal-page a:hover {
  text-decoration: underline;
}

.legal-back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.gallery-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--color-gold);
}

.gallery-instagram .instagram-icon {
  width: 1rem;
  height: 1rem;
}

@media (max-width: 480px) {
  .booking-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Tablet & Up (768px)
   ============================================ */
@media (min-width: 768px) {
  .nav-logo {
    height: 56px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    background: transparent;
    display: flex;
    flex-direction: row;
    padding: 0;
    gap: 2rem;
    box-shadow: none;
  }

  .nav-links a {
    padding: 0.5rem 0;
    border-bottom: none;
    font-size: 0.9375rem;
  }

  .nav-links .btn {
    margin: 0;
    margin-left: 0.5rem;
  }

  .services-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

}

/* ============================================
   Desktop (1024px)
   ============================================ */
@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }

  .contact-card {
    padding: 3rem 2.5rem;
  }

  .services-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .map-wrapper {
    height: 450px;
  }

  .section {
    padding: 5rem 0;
  }
}

/* ============================================
   Large Desktop (1200px)
   ============================================ */
@media (min-width: 1200px) {
  .services-categories {
    gap: 2.5rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
