/* ============================================
   PUGLIA YACHT CHARTER — Design System
   Minimal luxury Mediterranean
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Tokens ---------- */
:root {
  --white: #FAF8F5;
  --white-pure: #ffffff;
  --sand: #E8DFD3;
  --sand-light: #F3EDE5;
  --navy: #1B2A4A;
  --navy-dark: #0F1A30;
  --navy-light: #2A3E66;
  --gold: #C5A572;
  --gold-light: #D4BA8E;
  --gold-dark: #A8894F;
  --text-dark: #1B2A4A;
  --text-body: #3D4A5C;
  --text-light: #6B7A8D;
  --overlay: rgba(15, 26, 48, 0.55);
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 20px rgba(27, 42, 74, 0.10);
  --shadow-lg: 0 8px 40px rgba(27, 42, 74, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600;
}

.section-subtitle {
  max-width: 620px;
  margin: 0.8rem auto 0;
  font-size: 1.05rem;
  color: var(--text-light);
  text-align: center;
}

/* ---------- Container ---------- */
.container {
  width: 92%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ---------- Section ---------- */
section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 50px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--white-pure);
}

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

.btn-outline {
  background: transparent;
  color: var(--white-pure);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white-pure);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white-pure);
}

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

.btn-wa {
  background: #25D366;
  color: var(--white-pure);
}

.btn-wa:hover {
  background: #1EBE5A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-wa svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 26, 48, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.7rem 0;
  box-shadow: var(--shadow-lg);
}

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

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white-pure);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

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

.lang-switch {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  overflow: visible;
  margin-left: 0.5rem;
  flex-shrink: 0;
}

.lang-switch button {
  padding: 0.3rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
  transition: var(--transition);
  letter-spacing: 0.05em;
}

.lang-switch button.active {
  background: var(--gold);
  color: var(--white-pure);
}

.nav-wa-btn {
  background: #25D366;
  color: var(--white-pure) !important;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.nav-wa-btn:hover {
  background: #1EBE5A;
}

.nav-wa-btn svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white-pure);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 26, 48, 0.35) 0%, rgba(15, 26, 48, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 1.5rem;
}

.hero-content h1 {
  color: var(--white-pure);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.18rem;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  max-width: 680px;
}

.hero-cta {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3.5rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 500;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.8;
}

/* ============================================
   EXPERIENCE
   ============================================ */
.experience {
  background: var(--white);
}

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

.exp-card {
  background: var(--white-pure);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232, 223, 211, 0.5);
}

.exp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.exp-card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.exp-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white-pure);
  fill: none;
  stroke-width: 1.8;
}

.exp-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.exp-card p {
  font-size: 0.92rem;
  color: var(--text-light);
}

.exp-hostess {
  margin-top: 2.5rem;
  text-align: center;
  font-style: italic;
  color: var(--text-body);
  font-size: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem;
  background: var(--sand-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

/* ============================================
   YACHT
   ============================================ */
.yacht {
  background: var(--sand-light);
}

.yacht-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.spec-item {
  text-align: center;
  padding: 1.4rem 1rem;
  background: var(--white-pure);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.spec-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 0.3rem;
}

.spec-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

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

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  position: relative;
}

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

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 26, 48, 0);
  transition: var(--transition);
}

.gallery-item:hover::after {
  background: rgba(15, 26, 48, 0.15);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white-pure);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}

.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
}

.lightbox-prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   ITINERARIES
   ============================================ */
.itineraries {
  background: var(--white);
}

.itin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.8rem;
}

.itin-card {
  background: var(--white-pure);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(232, 223, 211, 0.4);
}

.itin-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.itin-card-img {
  height: 180px;
  overflow: hidden;
}

.itin-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.itin-card:hover .itin-card-img img {
  transform: scale(1.06);
}

.itin-card-body {
  padding: 1.6rem;
}

.itin-card-body h3 {
  margin-bottom: 0.3rem;
}

.itin-duration {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.8rem;
}

.itin-card-body p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 0.8rem;
}

.itin-best {
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.itin-best svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   PACKAGES
   ============================================ */
.packages {
  background: var(--navy-dark);
  color: var(--white-pure);
}

.packages .section-header h2 {
  color: var(--white-pure);
}

.packages .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

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

.pkg-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.pkg-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.pkg-card-img {
  height: 220px;
  overflow: hidden;
}

.pkg-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.pkg-card:hover .pkg-card-img img {
  transform: scale(1.05);
}

.pkg-card-body {
  padding: 2rem;
}

.pkg-card-body h3 {
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  font-size: 1.25rem;
}

.pkg-card-body .pkg-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  font-style: italic;
}

.pkg-card-body p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.pkg-card-body .btn {
  width: 100%;
  justify-content: center;
}

.pkg-micro {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* ============================================
   INCLUDED / EXTRAS
   ============================================ */
.included {
  background: var(--white);
}

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.incl-col h3 {
  margin-bottom: 0.3rem;
  font-size: 1.3rem;
}

.incl-col .incl-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.incl-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--sand);
  font-size: 0.95rem;
}

.incl-list li svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.incl-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--text-light);
  font-style: italic;
}

/* ============================================
   AVAILABILITY
   ============================================ */
.availability {
  background: var(--sand-light);
}

.avail-form {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white-pure);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 165, 114, 0.15);
}

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

.avail-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--gold-dark);
  font-weight: 500;
}

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

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  background: var(--white);
}

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

.review-card {
  background: var(--white-pure);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(232, 223, 211, 0.4);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-stars {
  margin-bottom: 0.8rem;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-size: 0.95rem;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--sand-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--sand);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 0;
  background: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-light);
  fill: none;
  stroke-width: 2;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gold);
  border-color: var(--gold);
}

.faq-item.active .faq-icon svg {
  stroke: var(--white-pure);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 0 1.3rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--white);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white-pure);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact-info {
  padding-top: 1rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.contact-info-item svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item p {
  font-size: 0.92rem;
}

.contact-info-item a {
  color: var(--gold);
  font-weight: 500;
}

.contact-map {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.88rem;
}

.gdpr-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.gdpr-check input[type="checkbox"] {
  margin-top: 4px;
  accent-color: var(--gold);
}

.gdpr-check label {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
}

.contact-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white-pure);
  margin-bottom: 0.8rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-size: 0.82rem;
}

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

/* ============================================
   STICKY WHATSAPP
   ============================================ */
.wa-sticky {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: var(--white-pure);
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.9rem;
}

.wa-sticky:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.wa-sticky svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wa-sticky-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.wa-sticky-micro {
  font-size: 0.7rem;
  opacity: 0.8;
  font-weight: 400;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 26, 48, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    z-index: 999;
  }

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

  .nav-links a {
    font-size: 1.1rem;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .trust-badges {
    gap: 1rem;
  }

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

  .yacht-specs {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .wa-sticky span:not(.wa-sticky-micro) {
    display: none;
  }

  .wa-sticky {
    padding: 1rem;
    border-radius: 50%;
  }

  .wa-sticky-text {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

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

  .yacht-specs {
    grid-template-columns: 1fr 1fr;
  }
}