/*
Theme Name: Caribbean Haven v18
Theme URI: https://the-caribbean-haven.fr
Author: The Caribbean Haven
Description: Theme haut de gamme pour The Caribbean Haven Conciergerie
Version: 18.0
Text Domain: caribbean-haven
*/

/* ══════════════════════════════════════════════════════════
   TROPICAL SUNSET PALETTE
══════════════════════════════════════════════════════════ */
:root {
  --sand-light: #FDF8F3;
  --sand: #F5E6D3;
  --sand-warm: #E8D4BC;
  --gold: #C9A962;
  --gold-dark: #B8954E;
  --coral: #E8967A;
  --coral-soft: #F4B8A8;
  --sunset-peach: #FFDDC1;
  --teal: #1B5E6B;
  --teal-dark: #134950;
  --teal-light: #2A7A8A;
  --white: #FFFFFF;
  --text-dark: #2D3B3E;
  --text-muted: #5A6B6E;
  
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', -apple-system, sans-serif;
  
  --section-padding: clamp(80px, 12vh, 140px);
  --container-width: 1280px;
  --radius: 24px;
  --radius-sm: 14px;
  
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--sand-light);
  overflow-x: hidden;
}

/* ══════════════════════════════════════════════════════════
   UTILITY
══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════════════════════
   HERO - TROPICAL SUNSET BEACH
══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Video Background */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(253, 248, 243, 0.3) 0%,
    rgba(253, 248, 243, 0.1) 30%,
    rgba(27, 94, 107, 0.2) 70%,
    rgba(27, 94, 107, 0.4) 100%
  );
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px 40px;
}

.hero__logo {
  width: clamp(208px, 34vw, 352px);
  height: auto;
  margin-bottom: 8px;
  animation: fadeInDown 1s var(--ease-smooth) 0.2s both;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.12));
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 500;
  color: var(--teal-dark);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  animation: fadeInUp 1s var(--ease-smooth) 0.4s both;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
  max-width: 540px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 1s var(--ease-smooth) 0.6s both;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s var(--ease-smooth) 0.8s both;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s var(--ease-smooth);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(27, 94, 107, 0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(27, 94, 107, 0.45);
  background: var(--teal-dark);
}

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

.btn--secondary:hover {
  background: var(--teal);
  color: var(--white);
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.5);
}

.btn__arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Scroll hint */
.hero__scroll {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 100 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px;
  animation: fadeInUp 1s var(--ease-smooth) 1.2s both;
}

.hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--teal);
  border-radius: 12px;
  position: relative;
  background: transparent;
}

.hero__scroll-icon::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--teal);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

.hero__scroll-text {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

@keyframes scrollBounce {
  0%, 100% { top: 8px; opacity: 1; }
  50% { top: 18px; opacity: 0.4; }
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease-smooth);
}

.nav.scrolled {
  background: rgba(253, 248, 243, 0.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(45, 59, 62, 0.08);
  padding: 10px 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav__logo-img {
  height: 48px;
  width: auto;
  transition: transform 0.3s;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-dark);
  letter-spacing: 0.01em;
}

.nav__logo:hover .nav__logo-img {
  transform: scale(1.03);
}

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav__link {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s var(--ease-smooth);
}

.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--teal);
  transition: all 0.3s;
}

@media (max-width: 640px) {
  .nav__logo-text { display: none; }
}

@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links, .nav__cta-wrap { 
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }
  .nav__links.active, .nav__cta-wrap.active { display: flex; }
}

/* ══════════════════════════════════════════════════════════
   SECTIONS COMMON
══════════════════════════════════════════════════════════ */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--sand { background: var(--sand-light); }
.section--cream { background: var(--sand); }
.section--teal {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 55px;
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.section__label::before,
.section__label::after {
  content: '';
  width: 35px;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.2;
  margin-bottom: 14px;
}

.section--teal .section__title { color: var(--white); }
.section--teal .section__label { color: var(--gold); }

.section__subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

.section--teal .section__subtitle {
  color: rgba(255, 255, 255, 0.8);
}

/* ══════════════════════════════════════════════════════════
   SERVICES - WITH REAL IMAGES
══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 45px rgba(45, 59, 62, 0.08);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--coral));
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 60px rgba(45, 59, 62, 0.14);
}

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

.service-card__image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 94, 107, 0.15), transparent 50%);
}

.service-card__content {
  padding: 28px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 10px;
}

.service-card__text {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.service-card__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--coral-soft);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17L4 12' stroke='%231B5E6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* ══════════════════════════════════════════════════════════
   ZONES - WITH MAPS
══════════════════════════════════════════════════════════ */
.zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}

@media (max-width: 900px) { .zones-grid { grid-template-columns: 1fr; } }

.zone-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.zone-card__map {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.zone-card__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.zone-card__map::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19, 73, 80, 0.6), transparent 60%);
}

.zone-card__content {
  padding: 30px;
}

.zone-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.zone-card__title-dot {
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.zone-group {
  margin-bottom: 20px;
}

.zone-group:last-child { margin-bottom: 0; }

.zone-group__label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-soft);
  margin-bottom: 10px;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zone-tag {
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
}

.zone-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════════════ */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-wrapper { grid-template-columns: 1fr; gap: 45px; }
}

.about-content__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
}

.about-content__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--teal-dark);
  line-height: 1.25;
  margin-bottom: 22px;
}

.about-content__text {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.about-content__highlight {
  background: linear-gradient(90deg, var(--coral-soft), var(--sunset-peach));
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  margin-top: 22px;
  border-left: 4px solid var(--coral);
}

.about-content__highlight p {
  margin: 0;
  color: var(--teal-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.about-visual {
  position: relative;
}

.about-visual__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(45, 59, 62, 0.18);
}

.about-visual__frame img {
  width: 100%;
  height: auto;
  display: block;
}

.about-visual__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 35px;
}

.stat {
  text-align: center;
  padding: 20px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.stat__label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 6px;
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════
   CLIENTS SECTION
══════════════════════════════════════════════════════════ */
.clients-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 55px;
  align-items: center;
}

@media (max-width: 900px) { .clients-wrapper { grid-template-columns: 1fr; } }

.clients-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(232, 150, 122, 0.25);
}

.clients-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.clients-content__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 28px;
}

.clients-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.client-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 25px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.client-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.client-item__icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-item__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
}

.client-item__content strong {
  display: block;
  color: var(--teal-dark);
  font-size: 1rem;
  margin-bottom: 5px;
}

.client-item__content span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--sand-warm), var(--sand));
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Palm trees in CTA section */
.cta-section .palm {
  position: absolute;
  bottom: -30px;
  width: clamp(100px, 14vw, 180px);
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

.cta-section .palm--left {
  left: -10px;
  animation: palmSway 6s ease-in-out infinite;
  transform-origin: bottom center;
}

.cta-section .palm--right {
  right: -10px;
  animation: palmSwayRight 7s ease-in-out infinite;
  transform-origin: bottom center;
}

.cta-section .palm svg {
  width: 100%;
  height: auto;
  fill: var(--teal-dark);
}

@keyframes palmSway {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(2deg); }
}

@keyframes palmSwayRight {
  0%, 100% { transform: rotate(3deg) scaleX(-1); }
  50% { transform: rotate(-2deg) scaleX(-1); }
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::before {
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, var(--coral-soft) 0%, transparent 70%);
  opacity: 0.4;
}

.cta-section::after {
  bottom: -80px;
  right: -80px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  opacity: 0.25;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin: 0 auto;
}

.cta-content__icon {
  width: 70px;
  height: 70px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.cta-content__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--teal);
}

.cta-content__title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.6rem);
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 14px;
}

.cta-content__text {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 65px 0 28px;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 900px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__top { grid-template-columns: 1fr; } }

.footer__brand { max-width: 260px; }

.footer__logo {
  height: 110px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer__title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  transition: all 0.3s;
}

.footer__links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.footer__copy { font-size: 0.82rem; }

.footer__legal {
  display: flex;
  gap: 22px;
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.3s;
}

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

/* ══════════════════════════════════════════════════════════
   FLOATING CTA
══════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.9);
  transition: all 0.4s var(--ease-bounce);
}

.floating-cta.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.floating-cta__btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--teal);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 50px;
  box-shadow: 0 10px 35px rgba(27, 94, 107, 0.4);
  transition: all 0.3s var(--ease-smooth);
}

.floating-cta__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 45px rgba(27, 94, 107, 0.5);
  background: var(--teal-dark);
}

.floating-cta__btn svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS ON SCROLL
══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.7s var(--ease-smooth);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════════════════════
   CONTACT MODAL
══════════════════════════════════════════════════════════ */
.contact-modal {
  display: none !important;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(27, 94, 107, 0.75);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.contact-modal.active {
  display: flex !important;
}

.contact-modal__content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 70px rgba(0,0,0,0.3);
  animation: modalSlideIn 0.4s var(--ease-smooth);
}

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

.contact-modal__header {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius) var(--radius) 0 0;
  position: relative;
}

.contact-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal__close:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

.contact-modal__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin: 0 0 8px 0;
}

.contact-modal__subtitle {
  opacity: 0.9;
  font-size: 0.95rem;
}

.contact-modal__body {
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--teal-dark);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-label span {
  color: var(--coral);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E8D4BC;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s;
  background: var(--sand-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 94, 107, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

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

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

.form-success {
  display: none !important;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: white;
  padding: 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.form-success.show {
  display: block;
  animation: slideIn 0.4s var(--ease-smooth);
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Success banner */
.success-banner {
  display: none;
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 20px 40px;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(16, 185, 129, 0.4);
  animation: successSlideIn 0.5s var(--ease-bounce);
  max-width: 90%;
  text-align: center;
}

.success-banner.show {
  display: block;
}

@keyframes successSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-40px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

.success-banner__icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
  line-height: 32px;
  font-size: 20px;
}

.success-banner__text {
  display: inline-block;
  vertical-align: middle;
  font-weight: 600;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════════════════
   PACK CARDS - PREMIUM DESIGN
══════════════════════════════════════════════════════════ */
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
  align-items: stretch;
}

.pack-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px 35px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(27, 94, 107, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.pack-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.pack-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(27, 94, 107, 0.18);
}

.pack-card:hover::before {
  transform: scaleX(1);
}

.pack-card--silver {
  border-color: rgba(27, 94, 107, 0.15);
}

.pack-card--gold {
  border-color: var(--gold);
  background: linear-gradient(165deg, #FFFEFB 0%, #FFF9EE 100%);
}

.pack-card--gold::before {
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
}

.pack-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  min-height: 40px;
  display: flex;
  align-items: center;
}

.pack-card--gold .pack-card__title {
  color: var(--gold-dark);
}

.pack-card__tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.5;
  min-height: 45px;
}

.pack-card__pricing {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 14px;
  padding: 22px 20px;
  margin-bottom: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pack-card__pricing::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 40%,
    rgba(255,255,255,0.1) 50%,
    transparent 60%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.pack-card--gold .pack-card__pricing {
  background: linear-gradient(135deg, var(--gold) 0%, #A67C3D 100%);
}

.pack-card__pricing-label {
  display: block;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: white;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.pack-card__pricing-percent {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.pack-card__pricing-detail {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  position: relative;
  z-index: 1;
}

.pack-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.pack-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  letter-spacing: 0.01em;
  line-height: 1.45;
  transition: transform 0.3s ease, background 0.3s ease;
}

.pack-card__list li:last-child {
  border-bottom: none;
}

.pack-card:hover .pack-card__list li {
  transform: translateX(4px);
}

.pack-card__check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pack-card:hover .pack-card__check {
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(27, 94, 107, 0.3);
}

.pack-card--gold .pack-card__check {
  background: var(--gold);
}

.pack-card--gold:hover .pack-card__check {
  box-shadow: 0 3px 10px rgba(201, 169, 98, 0.4);
}

.pack-card__check svg {
  width: 11px;
  height: 11px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
}

@media (max-width: 1024px) {
  .packs-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .pack-card {
    padding: 30px 25px;
  }
  
  .pack-card__title {
    font-size: 1.4rem;
    min-height: auto;
  }
  
  .pack-card__tagline {
    min-height: auto;
  }
  
  .pack-card__pricing {
    min-height: 90px;
  }
  
  .pack-card__pricing-percent {
    font-size: 1.4rem;
  }
}
