/* =========================================
   Villa Simba — Chiclana de la Frontera
   ========================================= */

:root {
  --color-primary: #0e5a5b;
  --color-primary-dark: #0a4142;
  --color-accent: #d98a4f;
  --color-accent-dark: #c07437;
  --color-sand: #f7f2ea;
  --color-ink: #1c2a2a;
  --color-ink-soft: #4a5a5a;
  --color-white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(14, 40, 40, 0.08);
  --shadow-strong: 0 20px 45px rgba(14, 40, 40, 0.18);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Poppins', sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.header-inner.container { max-width: 1320px; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; line-height: 1.15; }

.section-tag {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 10px;
}

.center { text-align: center; margin-left: auto; margin-right: auto; }

section h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  color: var(--color-primary-dark);
  margin-bottom: 18px;
}

section > .container > h2.center,
.about-text h2,
.location-text h2 {
  max-width: 720px;
}

section p { color: var(--color-ink-soft); font-size: 1.02rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 12px 24px rgba(217, 138, 79, 0.35);
}
.btn-primary:hover { background: var(--color-accent-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: var(--color-white);
}
.location .btn-outline, .about .btn-outline {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.location .btn-outline:hover, .about .btn-outline:hover { background: rgba(14,90,91,0.08); }
.btn-whatsapp {
  background: #25D366;
  color: var(--color-white);
  padding: 10px 20px;
  font-size: 0.9rem;
}
.btn-whatsapp:hover { background: #1ebe5a; transform: translateY(-2px); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.0);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  padding: 22px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-soft);
  padding: 12px 0;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-white);
  transition: color 0.3s ease;
}
.site-header.scrolled .logo { color: var(--color-primary-dark); }
.logo span { color: var(--color-accent); }

.main-nav {
  display: flex;
  gap: 20px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}
.site-header.scrolled .main-nav a { color: var(--color-ink); }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}
.main-nav a:hover::after { width: 100%; }

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.76rem;
  font-weight: 600;
  flex-shrink: 0;
}
.lang-switcher a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.75);
  padding: 3px 6px;
  border-radius: 4px;
  transition: color 0.25s ease, background 0.25s ease;
}
.lang-switcher .flag {
  display: block;
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}
.site-header.scrolled .lang-switcher a { color: var(--color-ink-soft); }
.lang-switcher a:hover { color: var(--color-white); background: rgba(255,255,255,0.15); }
.site-header.scrolled .lang-switcher a:hover { color: var(--color-primary-dark); background: rgba(14,90,91,0.08); }
.lang-switcher a.lang-current {
  color: var(--color-accent);
  background: rgba(217,138,79,0.15);
}
.site-header.scrolled .lang-switcher a.lang-current { color: var(--color-accent-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 26px;
  background: var(--color-white);
  transition: all 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--color-ink); }
.nav-toggle.open span { background: var(--color-ink); }

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center 80%;
  display: flex;
  align-items: center;
  color: var(--color-white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,25,25,0.55) 0%, rgba(10,25,25,0.35) 45%, rgba(10,25,25,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; margin: 0 auto; }
.hero .eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 0 6px 30px rgba(0,0,0,0.25);
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 640px;
  margin: 0 auto 34px;
  color: rgba(255,255,255,0.92);
}
.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-discount-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 auto 38px;
  padding: 10px 20px 10px 16px;
  border-radius: 100px;
  background: rgba(217, 138, 79, 0.16);
  border: 1px solid rgba(217, 138, 79, 0.55);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero-discount-badge:hover { transform: translateY(-2px); background: rgba(217, 138, 79, 0.26); }
.hero-discount-pulse {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 0 rgba(217, 138, 79, 0.7);
  animation: dotPulse 2.2s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(217, 138, 79, 0.6); }
  70% { box-shadow: 0 0 0 9px rgba(217, 138, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 138, 79, 0); }
}
.hero-discount-percent {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-left: 8px;
}
.hero-discount-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
}
@media (prefers-reduced-motion: reduce) {
  .hero-discount-pulse { animation: none; }
}
@media (max-width: 640px) {
  .hero-discount-badge { flex-wrap: wrap; justify-content: center; text-align: center; padding: 12px 18px 12px 22px; }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(20px, 5vw, 56px);
  flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-accent);
}
.hero-stat span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.85);
}
.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 20px;
  z-index: 2;
}
.scroll-down span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: var(--color-white);
  border-radius: 50%;
  animation: scrollDown 1.6s infinite;
}
@keyframes scrollDown {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ===== Savings banner ===== */
.savings-banner {
  background: var(--color-accent);
  color: var(--color-white);
}
.savings-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  text-align: center;
  padding: 14px 24px;
}
.savings-inner p {
  color: var(--color-white);
  font-size: 0.95rem;
  margin: 0;
}
.savings-inner strong { font-weight: 700; }
.savings-percent {
  display: inline-block;
  font-weight: 800;
  font-size: 1.15em;
  color: var(--color-primary-dark);
  background: var(--color-white);
  padding: 1px 8px;
  border-radius: 6px;
  margin: 0 1px;
}
.savings-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
}
.savings-actions a {
  color: var(--color-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.savings-actions a:hover { opacity: 0.85; }
.savings-actions .dot { opacity: 0.7; }

/* ===== About ===== */
.about { padding: 110px 0; background: var(--color-white); }
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.about-text p { margin-bottom: 18px; }
.about-highlights { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--color-ink);
}
.hl-icon { font-size: 1.2rem; }
.about-gallery {
  position: relative;
  display: grid;
  gap: 18px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  height: 420px;
  width: 100%;
  object-fit: cover;
}
.about-img-small {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  height: 180px;
  width: 60%;
  object-fit: cover;
  position: absolute;
  bottom: -30px;
  right: -20px;
  border: 6px solid var(--color-white);
}

/* ===== Services ===== */
.services { padding: 110px 0; background: var(--color-sand); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 50px;
}
.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 34px 26px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.service-icon { font-size: 2.4rem; margin-bottom: 14px; }
.service-card h3 { font-size: 1.15rem; color: var(--color-primary-dark); margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.service-card p { font-size: 0.92rem; }

/* ===== Testimonials ===== */
.testimonials { padding: 110px 0; background: var(--color-sand); }

.rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 50px;
  flex-wrap: wrap;
}
.rating-stars { color: var(--color-accent); font-size: 1.2rem; letter-spacing: 2px; }
.rating-text { color: var(--color-ink-soft); font-size: 0.95rem; }
.rating-text strong { color: var(--color-primary-dark); }

.testimonial-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 4px 20px;
  flex: 1;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  flex: 0 0 100%;
  max-width: 100%;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 34px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--color-sand);
  line-height: 1;
  z-index: 0;
}
.testimonial-stars { color: var(--color-accent); letter-spacing: 2px; margin-bottom: 14px; position: relative; }
.testimonial-card p {
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  flex: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.95rem; color: var(--color-primary-dark); }
.testimonial-author span { font-size: 0.82rem; color: var(--color-ink-soft); }

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  color: var(--color-primary-dark);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.carousel-btn:hover { background: var(--color-accent); color: var(--color-white); transform: scale(1.06); }

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.testimonial-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(14, 90, 91, 0.2);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  border: none;
  padding: 0;
}
.testimonial-dots .dot.active { background: var(--color-accent); transform: scale(1.25); }

@media (min-width: 720px) {
  .testimonial-card { flex: 0 0 calc(50% - 11px); max-width: calc(50% - 11px); }
}
@media (min-width: 1080px) {
  .testimonial-card { flex: 0 0 calc(33.333% - 15px); max-width: calc(33.333% - 15px); }
}
@media (max-width: 640px) {
  .testimonials { padding: 72px 0; }
  .carousel-btn { display: none; }
}

/* ===== Gallery ===== */
.gallery { padding: 110px 0; background: var(--color-white); }
.gallery-grid {
  margin-top: 50px;
  columns: 4 220px;
  column-gap: 18px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-strong); }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-caption {
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-ink);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 20, 0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-content {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--color-white);
  font-size: 2.2rem;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-close { top: 18px; right: 28px; font-size: 2.6rem; }
.lightbox-prev { left: 12px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }
.lightbox-next { right: 12px; top: 50%; transform: translateY(-50%); font-size: 1.8rem; }

/* ===== Location ===== */
.location { padding: 110px 0; background: var(--color-sand); }
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.location-text p { margin-bottom: 24px; }
.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  height: 380px;
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== Contact ===== */
.contact { padding: 110px 0; background: var(--color-primary-dark); color: var(--color-white); }
.contact h2 { color: var(--color-white); }
.contact-lead { max-width: 520px; margin: 0 auto 50px; color: rgba(255,255,255,0.8); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.contact-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); }
.contact-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; }
.contact-card p { color: rgba(255,255,255,0.8); font-size: 0.92rem; word-break: break-word; }
.contact-card-static { cursor: default; }

/* ===== FAQ ===== */
.faq { padding: 110px 0; background: var(--color-white); }

.faq-list {
  max-width: 780px;
  margin: 50px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: var(--color-sand);
  border: 1px solid rgba(14, 90, 91, 0.1);
  border-radius: var(--radius-md);
  padding: 4px 26px;
  transition: background 0.25s ease;
}
.faq-item[open] { background: var(--color-white); box-shadow: var(--shadow-soft); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  flex-shrink: 0;
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item p {
  padding-bottom: 22px;
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
  line-height: 1.7;
}

@media (max-width: 640px) {
  .faq { padding: 72px 0; }
  .faq-item { padding: 4px 18px; }
  .faq-item summary { font-size: 0.96rem; }
}

/* ===== Contact form ===== */
.contact-form-wrap {
  max-width: 680px;
  margin: 56px auto 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-intro { text-align: center; margin-bottom: 28px; }
.contact-form-intro h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-white);
  margin-bottom: 8px;
}
.contact-form-intro p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-row .form-field { margin-bottom: 0; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
}
.form-field input,
.form-field textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.12);
}
.form-field textarea { resize: vertical; min-height: 100px; }
.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

@media (max-width: 640px) {
  .contact-form-wrap { padding: 26px 20px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

/* ===== Footer ===== */
.site-footer { background: #08282a; color: rgba(255,255,255,0.75); padding: 50px 0 28px; }
.footer-inner { text-align: center; }
.footer-brand { font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-white); margin-bottom: 8px; }
.footer-brand span { color: var(--color-accent); }
.footer-links { display: flex; justify-content: center; gap: 24px; margin: 20px 0; flex-wrap: wrap; }
.footer-links a { font-size: 0.9rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--color-accent); }
.footer-copy { font-size: 0.8rem; margin-top: 10px; color: rgba(255,255,255,0.5); }
.footer-legal { display: flex; justify-content: center; gap: 14px; margin-top: 8px; font-size: 0.78rem; }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color 0.2s ease; }
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: var(--color-white);
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 900;
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ================= Responsive ================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-gallery { margin-top: 20px; }
  .about-img-small { display: none; }
  .location-inner { grid-template-columns: 1fr; }
}

@media (max-width: 1120px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(78vw, 340px);
    background: var(--color-white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.35s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .main-nav.open { right: 0; }
  .main-nav a { color: var(--color-ink); font-size: 1.15rem; }
  .nav-toggle { display: flex; }
  .header-actions { display: none; }
  .gallery-grid { columns: 2 200px; }
}

@media (max-width: 480px) {
  .logo { font-size: 1.4rem; }
  .lang-switcher { gap: 1px; }
  .lang-switcher a { padding: 3px 4px; }
  .lang-switcher .lang-code { display: none; }
  .lang-switcher .flag { font-size: 1.1rem; }
}

@media (max-width: 640px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-stats { gap: 22px; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .about, .services, .gallery, .location, .contact { padding: 72px 0; }
  section h2 { font-size: 1.9rem; }
}
