/* ================================================
   SCHWEDENHAUS SMÅLAND – Premium CSS
   Design: Refined Scandinavian Luxury
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ================================================ */

:root {
  /* Colors */
  --clr-bg: #faf9f7;
  --clr-bg-2: #f3f1ec;
  --clr-surface: #ffffff;
  --clr-text: #1a1a18;
  --clr-text-muted: #6b6b63;
  --clr-accent: #c8503a;        /* Swedish red */
  --clr-accent-light: #f5e8e4;
  --clr-forest: #2d4a2d;       /* Forest green */
  --clr-water: #2a5f8a;        /* Lake blue */
  --clr-gold: #b8a06a;
  --clr-border: #e8e4de;

  /* Season colors */
  --clr-low: #4a90d9;
  --clr-mid: #7ab87a;
  --clr-high: #e07a3d;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Radius */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.09);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

h2 em, h1 em {
  font-style: italic;
  color: var(--clr-accent);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-accent);
  background: var(--clr-accent-light);
  padding: 0.35em 1em;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ================================================
   LAYOUT
   ================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

section {
  padding: var(--sp-xl) 0;
}

.section-intro {
  text-align: center;
  margin-bottom: var(--sp-lg);
}

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--clr-text);
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.75; }

.logo-flag { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links li a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text);
  padding: 0.5rem 0.85rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav-links li a:hover {
  background: var(--clr-bg-2);
  color: var(--clr-accent);
}

.nav-cta {
  background: var(--clr-forest) !important;
  color: white !important;
  padding: 0.55rem 1.2rem !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--clr-accent) !important;
  color: white !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('/images/schwedenhaus-mieten-smaland.jpg') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,10,0.55) 0%,
    rgba(10,20,10,0.35) 50%,
    rgba(10,20,10,0.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: clamp(1rem, 5vw, 3rem);
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.85);
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  opacity: 0.88;
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

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

.hero-badges span {
  font-size: 0.85rem;
  font-weight: 500;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-whatsapp:hover { background: #20bb5a; color: white; }

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
}

.btn-email {
  background: var(--clr-water);
  color: white;
}

.btn-email:hover { background: #1e4d72; color: white; }

.btn-full { width: 100%; justify-content: center; }

/* ================================================
   USP STRIP
   ================================================ */
.usp-strip {
  padding: var(--sp-lg) 0;
  background: var(--clr-forest);
  color: white;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.usp-item {
  text-align: center;
  padding: 1.5rem;
}

.usp-item i {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.usp-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.usp-item p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.5;
}

/* ================================================
   WHY SECTION
   ================================================ */
.why-section {
  background: var(--clr-bg-2);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-text p {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
}

.why-list {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.why-list li i { color: var(--clr-forest); }

.why-img-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-stat {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease);
}

.why-stat:hover { transform: translateY(-4px); }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: var(--clr-accent);
  line-height: 1;
}

.stat-num small {
  font-size: 1.5rem;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-muted);
  margin-top: 0.4rem;
}

/* ================================================
   PHOTO GRID (Flip Cards)
   ================================================ */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.photo-card {
  cursor: pointer;
}

.photo-card-inner {
  position: relative;
  height: 240px;
  border-radius: var(--r-lg);
  /* NO overflow:hidden here — it breaks 3D preserve-3d in most browsers */
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
}

.photo-card:hover .photo-card-inner {
  transform: rotateY(180deg);
}

.photo-front, .photo-back {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;               /* overflow on the face, not the wrapper */
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.photo-front img, .photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.photo-front:hover img { transform: scale(1.04); }

.photo-back {
  transform: rotateY(180deg);
  background: var(--clr-forest);
}

.photo-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,40,20,0.95) 0%, rgba(20,40,20,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.photo-overlay.always {
  background: linear-gradient(to top, rgba(20,40,20,0.95) 0%, rgba(20,40,20,0.4) 100%);
  justify-content: center;
  align-items: center;
  text-align: center;
}

.photo-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  color: white;
}

.photo-overlay p {
  font-size: 0.88rem;
  opacity: 0.88;
  line-height: 1.5;
}

.photo-label {
  display: block;
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  letter-spacing: 0.03em;
}

/* ================================================
   ANGLER CTA
   ================================================ */
.angler-cta {
  margin-top: 3rem;
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--clr-water);
}

.angler-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.angler-icon { font-size: 2.5rem; }

.angler-cta h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.angler-cta p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.angler-cta .btn-outline {
  color: var(--clr-text);
  border-color: var(--clr-border);
  margin-left: auto;
  white-space: nowrap;
}

.angler-cta .btn-outline:hover {
  background: var(--clr-bg-2);
  border-color: var(--clr-accent);
  color: var(--clr-accent);
}

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section {
  background: var(--clr-bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.t-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border-bottom: 3px solid transparent;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--clr-accent);
}

.t-stars {
  color: var(--clr-gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.t-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--clr-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  quotes: "\201E" "\201C";
}

.t-card blockquote::before { content: open-quote; }
.t-card blockquote::after { content: close-quote; }

.t-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-forest);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
}

.t-author span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

/* ================================================
   PRICES
   ================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.price-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  border: 2px solid transparent;
}

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

.price-card.featured {
  border-color: var(--clr-accent);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--clr-accent);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--clr-accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 1em;
  border-radius: 100px;
}

.price-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.price-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--clr-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.price-amount span {
  font-size: 1rem;
  color: var(--clr-text-muted);
  font-family: var(--font-body);
}

.price-when {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

.price-features {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  padding-left: 1rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-forest);
  font-weight: 700;
}

.price-cta {
  text-align: center;
}

.price-cta p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  margin-bottom: 1.5rem;
}

/* ================================================
   CALENDAR
   ================================================ */
.avail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.cal-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

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

.cal-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.cal-btn {
  background: var(--clr-bg-2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: var(--clr-text);
}

.cal-btn:hover {
  background: var(--clr-accent);
  color: white;
  transform: scale(1.1);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 0.5rem;
}

.cal-weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-muted);
  padding: 0.4rem 0;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar div {
  text-align: center;
  padding: 0.6rem 0.3rem;
  border-radius: var(--r-sm);
  background: var(--clr-bg-2);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  cursor: default;
  transition: background 0.15s;
}

.calendar .booked {
  background: var(--clr-accent);
  color: white;
}

.low-season::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px solid rgba(74, 144, 217, 0.5);
  border-radius: 6px;
  pointer-events: none;
}

.high-season::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px solid rgba(224, 122, 61, 0.7);
  border-radius: 6px;
  pointer-events: none;
}

.mid-season::after {
  content: "";
  position: absolute;
  top: 2px; left: 2px; right: 2px; bottom: 2px;
  border: 2px dashed rgba(122, 184, 122, 0.6);
  border-radius: 6px;
  pointer-events: none;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border);
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.leg-dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  flex-shrink: 0;
}

.leg-dot.free { background: var(--clr-bg-2); border: 1px solid var(--clr-border); }
.leg-dot.booked { background: var(--clr-accent); }
.leg-dot.low { background: rgba(74,144,217,0.15); border: 2px solid rgba(74,144,217,0.5); }
.leg-dot.mid { background: rgba(122,184,122,0.15); border: 2px dashed rgba(122,184,122,0.6); }
.leg-dot.high { background: rgba(224,122,61,0.15); border: 2px solid rgba(224,122,61,0.7); }

/* ================================================
   CONTACT BOX
   ================================================ */
.contact-box {
  background: white;
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.contact-host {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.host-img {
  width: 120px;
  height: 120px;
  border-radius: var(--r-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.host-info h3 {
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.host-info strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.host-info p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
  margin-bottom: 0.5rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.contact-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--clr-border);
}

.contact-trust span {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.contact-trust i { color: var(--clr-forest); }

/* ================================================
   FAQ
   ================================================ */
.faq-section {
  background: var(--clr-bg-2);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: white;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item summary:hover { color: var(--clr-accent); }

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--clr-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ================================================
   FLOATING WHATSAPP
   ================================================ */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--clr-text);
  color: rgba(255,255,255,0.85);
  padding: 3rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 300px;
}

.footer-brand .logo-flag { font-size: 1.5rem; }
.footer-brand span { font-size: 1.1rem; font-weight: 600; color: white; }
.footer-brand p { font-size: 0.85rem; opacity: 0.6; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer-nav a:hover { color: white; }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  opacity: 0.55;
}

.footer-legal a { transition: opacity 0.2s; }
.footer-legal a:hover { opacity: 1; color: white; }

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-up { animation: fadeUp 0.9s var(--ease) both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.12s; }
.reveal.delay-2 { transition-delay: 0.24s; }
.reveal.delay-3 { transition-delay: 0.36s; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .avail-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    box-shadow: var(--shadow-md);
  }

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

  .nav-links li { width: 100%; }

  .nav-links li a {
    display: block;
    padding: 0.85rem 2rem;
    border-radius: 0;
  }

  .nav-cta {
    margin: 0.75rem 1.5rem 0;
    text-align: center;
    border-radius: 100px !important;
  }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .hero-actions { flex-direction: column; align-items: center; }

  .photo-grid { grid-template-columns: 1fr 1fr; }

  .usp-grid { grid-template-columns: 1fr 1fr; }

  .why-img-stack { grid-template-columns: 1fr 1fr; }

  .price-grid { grid-template-columns: 1fr 1fr; }

  .cal-box, .contact-box { padding: 1.5rem; }

  .float-wa { bottom: 1.5rem; right: 1.5rem; }

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

@media (max-width: 500px) {
  .photo-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .why-img-stack { grid-template-columns: 1fr 1fr; }
  .hero-badges { gap: 0.5rem; }
  .hero-badges span { font-size: 0.78rem; padding: 0.35rem 0.8rem; }
}
