/* ============================================================
   DUBROVNIK YACHT CHARTER 4 ALL
   White Luxury Design System
   Palette: Warm White · Warm Black · Gold · Soft Beige
   ============================================================ */

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

/* ── Variables ──────────────────────────────────────────── */
:root {
  --bg:          #FAFAF8;
  --white:       #FFFFFF;
  --ink:         #1A1A18;
  --ink-60:      rgba(26,26,24,0.6);
  --ink-30:      rgba(26,26,24,0.3);
  --ink-10:      rgba(26,26,24,0.08);
  --gold:        #C9A84C;
  --gold-lt:     #E8D5A3;
  --gold-bg:     rgba(201,168,76,0.08);
  --border:      #E4DDD0;
  --border-lt:   #F0EBE3;
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Montserrat', Arial, sans-serif;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.7; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ── Typography ─────────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.heading-xl {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
}
.heading-lg {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.heading-md {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.heading-sm {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--ink);
}
.body-lg { font-size: 1.05rem; color: var(--ink-60); line-height: 1.85; font-weight: 300; }
.body-md { font-size: 0.9rem;  color: var(--ink-60); line-height: 1.8; }
.text-gold { color: var(--gold); }
.italic { font-style: italic; }

/* ── Divider ────────────────────────────────────────────── */
.rule { width: 48px; height: 1px; background: var(--gold); display: block; }
.rule-center { margin: 0 auto; }
.rule-lg { width: 80px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover { background: #2d2d2a; transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover { background: #b8973e; transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover { background: #1ebe57; transform: translateY(-1px); }

/* ── Nav ────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.5rem 3rem;
  transition: all 0.4s ease;
  display: flex; align-items: center; justify-content: space-between;
}
#navbar.scrolled {
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(16px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--border-lt);
  box-shadow: 0 2px 40px rgba(0,0,0,0.04);
}
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo-text { font-family: var(--serif); font-size: 1rem; font-weight: 400; color: var(--white); letter-spacing: 0.05em; transition: color 0.4s; }
#navbar.scrolled .nav-logo-text { color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-link {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); transition: color 0.3s;
}
#navbar.scrolled .nav-link { color: var(--ink-60); }
.nav-link:hover { color: var(--gold) !important; }
.nav-cta {
  font-family: var(--sans); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white); transition: all 0.3s;
}
#navbar.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav-cta:hover { background: var(--gold); border-color: var(--gold); color: var(--white) !important; }

/* Mobile nav */
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); margin: 5px 0; transition: background 0.4s; }
#navbar.scrolled .nav-hamburger span { background: var(--ink); }
#mobile-menu {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 200;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
#mobile-menu.open { display: flex; }
.mobile-nav-close { position: absolute; top: 1.5rem; right: 2rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--ink); }
.mobile-nav-link { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--ink); }
.mobile-nav-link:hover { color: var(--gold); }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #0d1f35 0%, #1a3a5c 40%, #0a1520 100%);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: opacity 1s ease;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,20,0.35) 0%,
    rgba(10,15,20,0.2) 40%,
    rgba(10,15,20,0.6) 80%,
    rgba(10,15,20,0.85) 100%
  );
}
.hero-content {
  position: relative; z-index: 10;
  text-align: center; max-width: 860px;
  padding: 0 2rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid rgba(201,168,76,0.5);
  padding: 0.45rem 1.25rem;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 0.3s forwards;
}
.hero-badge span { font-family: var(--sans); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-lt); }
.hero-badge-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero-title {
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 1.1s ease 0.5s forwards;
}
.hero-subtitle {
  font-family: var(--sans); font-size: 1rem; font-weight: 300; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7); margin-top: 1.25rem; line-height: 1.7;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 0.8s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 1s ease 1.1s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; z-index: 10;
  animation: fadeUp 1s ease 1.5s both;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.7));
  animation: scrollDrop 2s ease-in-out infinite;
}
.hero-scroll-label { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* Hero stats bar */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; justify-content: center; gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,15,20,0.6); backdrop-filter: blur(12px);
}
.hero-stat {
  padding: 1.25rem 3rem; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-family: var(--serif); font-size: 1.75rem; font-weight: 300; color: var(--gold-lt); display: block; line-height: 1; }
.hero-stat-label { font-family: var(--sans); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 0.35rem; display: block; }

/* ── Section wrapper ────────────────────────────────────── */
.section { padding: 7rem 0; }
.section-sm { padding: 4rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container-wide { max-width: 1440px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header .rule { margin: 1.25rem auto; }

/* ── About ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
}
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8e0d5 0%, #d4c9bc 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 30px 30px 80px rgba(0,0,0,0.1);
}
.about-accent {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--white); border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.about-accent-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--gold); line-height: 1; }
.about-accent-label { font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-60); margin-top: 0.3rem; }
.about-text { display: flex; flex-direction: column; gap: 1.5rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.about-feature { padding: 1.25rem; border: 1px solid var(--border-lt); }
.about-feature-icon { font-size: 1.25rem; margin-bottom: 0.5rem; }
.about-feature-name { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--ink); }
.about-feature-desc { font-family: var(--sans); font-size: 0.75rem; color: var(--ink-60); margin-top: 0.2rem; }

/* ── Services ───────────────────────────────────────────── */
.services-bg { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-lt); }
.service-card {
  background: var(--white); padding: 2.5rem 2rem;
  transition: background 0.3s;
}
.service-card:hover { background: var(--bg); }
.service-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.service-name { font-family: var(--serif); font-size: 1.25rem; font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; }
.service-desc { font-family: var(--sans); font-size: 0.85rem; color: var(--ink-60); line-height: 1.7; }

/* ── Packages ───────────────────────────────────────────── */
.packages-featured { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 4rem; }
.pkg {
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative; background: var(--white);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex; flex-direction: column;
}
.pkg:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.08); transform: translateY(-4px); }
.pkg-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.pkg-badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-family: var(--sans); font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.25rem 1rem; white-space: nowrap;
}
.pkg-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.pkg-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; color: var(--ink); margin-bottom: 0.25rem; }
.pkg-duration { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.pkg-desc { font-family: var(--sans); font-size: 0.87rem; color: var(--ink-60); line-height: 1.7; margin-bottom: 1.25rem; }
.pkg-includes { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; flex: 1; }
.pkg-includes li { font-family: var(--sans); font-size: 0.83rem; color: var(--ink-60); padding-left: 1rem; position: relative; }
.pkg-includes li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-size: 0.7rem; top: 0.1rem; }
.pkg-addons { font-family: var(--sans); font-size: 0.75rem; color: var(--gold); padding: 0.75rem 0 0; border-top: 1px solid var(--border-lt); margin-top: 1.25rem; }
.pkg-cta { display: block; text-align: center; margin-top: 1.5rem; }

/* Mini packages */
.packages-mini { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-lt); margin-top: 1px; }
.pkg-mini {
  background: var(--white); padding: 1.5rem;
  transition: background 0.3s;
}
.pkg-mini:hover { background: var(--bg); }
.pkg-mini-icon { font-size: 1.25rem; margin-bottom: 0.6rem; }
.pkg-mini-name { font-family: var(--serif); font-size: 1rem; color: var(--ink); margin-bottom: 0.2rem; }
.pkg-mini-dur { font-family: var(--sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.pkg-mini-desc { font-family: var(--sans); font-size: 0.8rem; color: var(--ink-60); }

/* Add-ons */
.addons { background: var(--ink); padding: 4rem 0; }
.addons-grid { display: flex; flex-wrap: wrap; gap: 1px; background: rgba(255,255,255,0.08); }
.addon { background: var(--ink); flex: 1; min-width: 150px; padding: 1.5rem 1.25rem; text-align: center; transition: background 0.3s; }
.addon:hover { background: rgba(255,255,255,0.04); }
.addon-label { font-family: var(--sans); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); }

/* ── Gallery ────────────────────────────────────────────── */
.gallery-bg { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 340px 280px;
  gap: 8px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; }
.gallery-item:nth-child(1) { grid-column: 1/8; grid-row: 1; }
.gallery-item:nth-child(2) { grid-column: 8/13; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 1/5; grid-row: 2; }
.gallery-item:nth-child(4) { grid-column: 5/9; grid-row: 2; }
.gallery-item:nth-child(5) { grid-column: 9/13; grid-row: 2; }

.gallery-img, .gallery-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img,
.gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-placeholder { background: linear-gradient(135deg, #e8e2d8 0%, #d4ccc0 100%); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.75rem; }
.gallery-placeholder-label { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-30); text-align: center; padding: 0 1rem; }

.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1rem;
  background: linear-gradient(to top, rgba(10,10,8,0.7), transparent);
  font-family: var(--sans); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transform: translateY(100%); transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ── Video Section ──────────────────────────────────────── */
.videos-bg { background: var(--ink); }
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.video-card { position: relative; overflow: hidden; cursor: pointer; }
.video-card-inner { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.video-el {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.video-card:hover .video-el { transform: scale(1.03); }
.video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a2535, #0d1a28);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem;
  transition: background 0.3s;
}
.video-card:hover .video-placeholder { background: linear-gradient(135deg, #1f2e40, #121f30); }
.video-play {
  width: 64px; height: 64px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}
.video-card:hover .video-play { border-color: var(--gold); background: rgba(201,168,76,0.15); }
.video-play-icon { color: var(--gold); font-size: 1rem; margin-left: 3px; }
.video-prompt { font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.25); text-align: center; padding: 0 2rem; font-style: italic; }
.video-info { padding: 1rem 1.5rem; background: rgba(255,255,255,0.03); }
.video-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 400; color: rgba(255,255,255,0.85); }
.video-sub { font-family: var(--sans); font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 0.25rem; }

/* ── Blog ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--border-lt); transition: box-shadow 0.3s; cursor: pointer; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 16px 50px rgba(0,0,0,0.07); }
.blog-img-wrap { aspect-ratio: 16/9; overflow: hidden; background: linear-gradient(135deg, #e8e2d8, #d4ccc0); }
.blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img { transform: scale(1.05); }
.blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--ink-30); }
.blog-body { padding: 1.75rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.blog-title { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--ink); line-height: 1.35; margin-bottom: 0.75rem; }
.blog-excerpt { font-family: var(--sans); font-size: 0.83rem; color: var(--ink-60); line-height: 1.7; flex: 1; }
.blog-meta { font-family: var(--sans); font-size: 0.7rem; color: var(--ink-30); margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--border-lt); display: flex; gap: 0.5rem; }

/* ── Reviews ────────────────────────────────────────────── */
.reviews-bg { background: var(--white); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review { border-top: 2px solid var(--gold-lt); padding: 2rem 0; }
.review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.2em; margin-bottom: 1.25rem; }
.review-quote { font-family: var(--serif); font-size: 1.1rem; font-weight: 300; font-style: italic; color: var(--ink); line-height: 1.8; margin-bottom: 1.5rem; }
.review-author { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; color: var(--ink); letter-spacing: 0.05em; }
.review-origin { font-family: var(--sans); font-size: 0.72rem; color: var(--ink-60); margin-top: 0.25rem; }

/* ── Contact ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon { width: 36px; height: 36px; background: var(--gold-bg); border: 1px solid var(--gold-lt); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-label { font-family: var(--sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.contact-value { font-family: var(--sans); font-size: 0.9rem; color: var(--ink); margin-top: 0.2rem; }
.contact-value a { color: inherit; transition: color 0.2s; }
.contact-value a:hover { color: var(--gold); }

/* Form */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-bottom: 0.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { font-family: var(--sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-60); }
.form-input {
  background: var(--bg); border: 1px solid var(--border);
  padding: 0.85rem 1rem; font-family: var(--sans); font-size: 0.9rem;
  color: var(--ink); outline: none; transition: border-color 0.25s;
  -webkit-appearance: none;
}
.form-input:focus { border-color: var(--gold); }
.form-input::placeholder { color: var(--ink-30); }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner { background: var(--ink); padding: 6rem 0; text-align: center; }
.cta-banner .heading-lg { color: var(--white); max-width: 600px; margin: 0 auto; }
.cta-banner .body-lg { color: rgba(255,255,255,0.55); max-width: 480px; margin: 1.5rem auto 0; }
.cta-banner-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2.5rem; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────── */
footer { background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--serif); font-size: 1.15rem; font-weight: 300; color: rgba(255,255,255,0.9); margin-bottom: 1rem; }
.footer-tagline { font-family: var(--sans); font-size: 0.82rem; color: rgba(255,255,255,0.35); line-height: 1.7; }
.footer-heading { font-family: var(--sans); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-link { font-family: var(--sans); font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-link:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-family: var(--sans); font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ── Floating Buttons ───────────────────────────────────── */
.float-stack { position: fixed; bottom: 2rem; right: 2rem; z-index: 90; display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }

/* ── Shared FAB base ─────────────────────────────── */
.whatsapp-float,
.chat-bubble-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 172px;
  height: 50px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: transform 0.22s cubic-bezier(.34,1.56,.64,1), box-shadow 0.22s ease;
  will-change: transform;
}

/* ── Book Now (WhatsApp) — verde brillante ────────── */
.whatsapp-float {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(34,197,94,0.42), 0 1px 4px rgba(0,0,0,0.12);
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(34,197,94,0.52), 0 2px 8px rgba(0,0,0,0.12);
}
/* subtle pulse to draw attention */
@keyframes fab-pulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(34,197,94,0.42), 0 0 0 0 rgba(34,197,94,0.35); }
  50%       { box-shadow: 0 4px 18px rgba(34,197,94,0.42), 0 0 0 8px rgba(34,197,94,0); }
}
.whatsapp-float { animation: fab-pulse 3s ease-in-out infinite; }
.whatsapp-float:hover { animation: none; }

/* ── Ask Us (Chat) — dark luxury ─────────────────── */
.chat-bubble-btn {
  background: rgba(26,26,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  border: 1px solid rgba(201,168,76,0.5);
  box-shadow: 0 4px 18px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.06);
}
.chat-bubble-btn:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28), 0 0 0 1px rgba(201,168,76,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
}

.chat-bubble-btn svg, .whatsapp-float svg { flex-shrink: 0; }

/* ── Chat Window ────────────────────────────────────────── */
.chat-window {
  position: fixed; bottom: 8rem; right: 2rem; z-index: 200;
  width: 360px; max-width: calc(100vw - 2rem);
  background: var(--white); border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0,0,0,0.15);
  display: flex; flex-direction: column; max-height: 520px;
}
.chat-window.hidden { display: none; }
.chat-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem; border-bottom: 1px solid var(--border-lt);
  background: var(--bg);
}
.chat-header-info { display: flex; align-items: center; gap: 0.75rem; }
.chat-avatar { width: 36px; height: 36px; background: var(--gold-bg); border: 1px solid var(--gold-lt); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.chat-agent-name { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.chat-agent-status { font-family: var(--sans); font-size: 0.68rem; color: #25D366; }
.chat-close-btn { background: none; border: none; cursor: pointer; color: var(--ink-60); font-size: 0.9rem; padding: 4px; transition: color 0.2s; }
.chat-close-btn:hover { color: var(--ink); }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 250px; max-height: 320px; }
.chat-messages::-webkit-scrollbar { width: 3px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); }
.chat-msg { max-width: 86%; padding: 0.65rem 0.9rem; font-family: var(--sans); font-size: 0.85rem; line-height: 1.55; }
.chat-msg-agent { background: var(--bg); border: 1px solid var(--border-lt); color: var(--ink); align-self: flex-start; }
.chat-msg-user { background: var(--ink); color: rgba(255,255,255,0.9); align-self: flex-end; }
.chat-msg-typing { background: var(--bg); border: 1px solid var(--border-lt); color: var(--ink-30); align-self: flex-start; font-style: italic; }
.chat-input-row { display: flex; border-top: 1px solid var(--border-lt); }
.chat-input { flex: 1; background: transparent; border: none; padding: 0.9rem 1rem; font-family: var(--sans); font-size: 0.85rem; color: var(--ink); outline: none; }
.chat-input::placeholder { color: var(--ink-30); }
.chat-send { background: var(--ink); border: none; color: var(--white); padding: 0.9rem 1rem; cursor: pointer; transition: background 0.2s; display: flex; align-items: center; }
.chat-send:hover { background: var(--gold); }
.chat-footer { padding: 0.4rem 1rem; font-family: var(--sans); font-size: 0.62rem; color: var(--ink-30); text-align: center; border-top: 1px solid var(--border-lt); }

/* ── Animations ─────────────────────────────────────────── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollDrop {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

[data-reveal] { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal="left"] { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal].visible { opacity: 1; transform: translate(0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .packages-featured { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 3rem; }
  .packages-mini { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-rows: 240px 200px; }
}
@media (max-width: 768px) {
  #navbar { padding: 1.2rem 1.5rem; }
  #navbar.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .section { padding: 4rem 0; }
  .hero-stats { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .packages-mini { grid-template-columns: 1fr; }
  .blog-grid, .reviews-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(1), .gallery-item:nth-child(2), .gallery-item:nth-child(3), .gallery-item:nth-child(4), .gallery-item:nth-child(5) { grid-column: auto; grid-row: auto; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stat { padding: 1rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/3 !important; }
}
