/* =========================================================
   BREETI.IN — Main Stylesheet
   Palette: Deep Ocean Navy / Sun Gold / Terracotta / Sea Teal / Cream
   Type: Playfair Display (display) + Poppins (body)
   ========================================================= */

:root{
  --ocean:        #0E3A53;
  --ocean-dark:   #082537;
  --gold:         #D9A544;
  --gold-light:   #F0C874;
  --terracotta:   #C1652F;
  --sea:          #2E8C99;
  --cream:        #FBF7EF;
  --cream-soft:   #F3ECDC;
  --ink:          #1E2A32;
  --ink-soft:     #57666D;
  --white:        #FFFFFF;
  --star:         #FFB400;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', Arial, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(14,58,83,0.10);
  --shadow-md: 0 10px 30px rgba(14,58,83,0.16);
  --shadow-lg: 0 20px 50px rgba(14,58,83,0.22);

  --container: 1180px;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family: inherit; cursor:pointer; border:none; background:none; }
.container{ width:92%; max-width: var(--container); margin:0 auto; }

h1,h2,h3,h4{ font-family: var(--font-display); color: var(--ocean); line-height:1.2; font-weight:700; }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.75rem; letter-spacing:2.5px; text-transform:uppercase;
  color: var(--terracotta); font-weight:600; margin-bottom:10px;
}
.eyebrow::before{ content:""; width:26px; height:2px; background:var(--terracotta); display:inline-block; }

.section{ padding: 88px 0; }
.section-tight{ padding: 56px 0; }
.section-head{ max-width: 620px; margin-bottom: 46px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color: var(--ink-soft); margin-top:14px; font-size:1.02rem; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior:auto !important; }
}

:focus-visible{ outline: 3px solid var(--sea); outline-offset: 3px; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 30px; border-radius: 50px;
  font-weight:600; font-size:0.95rem; letter-spacing:0.3px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space:nowrap;
}
.btn-primary{ background: var(--terracotta); color:var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background:#A6521F; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold{ background: var(--gold); color: var(--ocean-dark); box-shadow: var(--shadow-sm); }
.btn-gold:hover{ background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline{ border:2px solid var(--white); color: var(--white); }
.btn-outline:hover{ background: var(--white); color: var(--ocean); transform: translateY(-2px); }
.btn-outline-dark{ border:2px solid var(--ocean); color: var(--ocean); }
.btn-outline-dark:hover{ background: var(--ocean); color:var(--white); }
.btn-whatsapp{ background:#25D366; color:var(--white); box-shadow: var(--shadow-sm); }
.btn-whatsapp:hover{ background:#1DA851; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 20px; font-size:0.85rem; }

/* =========================================================
   TOP BAR
   ========================================================= */
.topbar{
  background: var(--ocean-dark); color: var(--cream-soft);
  font-size:0.82rem;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding:8px 0; gap:12px; flex-wrap:wrap; }
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar-left a{ display:inline-flex; align-items:center; gap:6px; opacity:.92; transition:opacity .2s; }
.topbar-left a:hover{ opacity:1; color:var(--gold-light); }
.topbar-social{ display:flex; gap:12px; }
.topbar-social a{
  width:26px; height:26px; border-radius:50%; border:1px solid rgba(255,255,255,.35);
  display:flex; align-items:center; justify-content:center; font-size:0.75rem;
  transition: all .2s ease;
}
.topbar-social a:hover{ background: var(--gold); border-color:var(--gold); color:var(--ocean-dark); }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  background: var(--white);
  position: sticky; top:0; z-index:500;
  box-shadow: 0 2px 14px rgba(14,58,83,0.08);
}
.site-header.nav-open{
  z-index: 1600;
}
.site-header .container{ display:flex; align-items:center; justify-content:space-between; padding:16px 0; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:52px; height:52px; border-radius:50%;
  background: linear-gradient(135deg, var(--sea), var(--ocean));
  display:flex; align-items:center; justify-content:center;
  color:var(--gold-light); font-family:var(--font-display); font-weight:700; font-size:1.35rem;
  box-shadow: var(--shadow-sm);
}
.brand-text .brand-name{ font-family:var(--font-display); font-size:1.55rem; font-weight:700; color:var(--ocean); line-height:1; }
.brand-text .brand-tag{ font-size:0.68rem; letter-spacing:2px; text-transform:uppercase; color:var(--terracotta); font-weight:600; }

.main-nav ul{ display:flex; gap:8px; align-items:center; }
.main-nav a{
  padding:10px 16px; font-weight:600; font-size:0.93rem; color: var(--ink);
  border-radius: 50px; transition: all .2s ease; position:relative;
}
.main-nav a:hover, .main-nav a.active{ background: var(--cream-soft); color: var(--ocean); }
.header-cta{ display:flex; align-items:center; gap:12px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 700;
}
.nav-toggle span {
  position: absolute;
  left: 9px;
  width: 26px;
  height: 3px;
  background: var(--ocean);
  border-radius: 3px;
  transition: all 0.4s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

/* Active State (X animation) */
.nav-toggle.active span {
  background: var(--gold-light);
}
.nav-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 980px){
  .header-cta .btn span.btn-label{ display:none; }
  .header-cta .btn{ padding:12px 16px; }
}

@media (max-width: 860px){
  .topbar { display: none !important; }
  .nav-toggle{ display:block; }
  .main-nav{
    position:fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    max-width: none;
    background: rgba(251, 247, 239, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 40px;
    z-index: 1500;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: none;
  }
  .main-nav.open{ transform: translateY(0); }
  .main-nav ul{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:22px;
    width:100%;
    text-align:center;
  }
  .main-nav a{
    color: var(--ocean);
    width: auto;
    padding: 10px 20px;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    opacity: 0.7;
    transition: all 0.3s ease;
    background: none;
  }
  .main-nav a:hover, .main-nav a.active{
    background: none;
    color: var(--terracotta);
    opacity: 1;
    transform: scale(1.08);
  }
  .nav-overlay{ display:none; position:fixed; inset:0; background:rgba(8,37,55,.55); z-index: 1400; }
  .nav-overlay.open{ display:block; }
  .nav-close {
    display: flex !important;
    position: absolute;
    top: 26px;
    right: 28px;
    color: var(--ocean);
    font-size: 1.6rem;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.25s ease;
  }
  .nav-close::before {
    content: "CLOSE";
    font-size: 0.75rem;
    margin-right: 2px;
  }
  .nav-close:hover {
    opacity: 1;
    color: var(--terracotta);
  }
}
@media (min-width:861px){ .nav-close{ display:none; } }

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero{ position:relative; height: 86vh; min-height:560px; max-height:820px; overflow:hidden; background: var(--ocean-dark); }
.hero-slides{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0; opacity:0; transition: opacity 1.2s ease;
  background-size:cover; background-position:center;
}
.hero-slide.active{ opacity:1; }
.hero-slide::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(8,37,55,.55) 0%, rgba(8,37,55,.35) 40%, rgba(8,37,55,.85) 100%);
}
.hero-content{
  position:relative; z-index:5; height:100%; display:flex; flex-direction:column;
  justify-content:center; color:var(--white); max-width:720px;
}
.hero-content .eyebrow{ color: var(--gold-light); }
.hero-content .eyebrow::before{ background: var(--gold-light); }
.hero-content h1{ color:var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom:18px; }
.hero-content h1 em{ font-style:italic; color: var(--gold-light); }
.hero-content p{ font-size:1.08rem; opacity:.92; max-width:560px; margin-bottom:32px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }

.hero-rating-badge{
  position:absolute; right:6%; bottom:38px; z-index:6;
  background: rgba(255,255,255,.96); border-radius: var(--radius-md);
  padding:18px 24px; box-shadow: var(--shadow-lg);
  display:flex; align-items:center; gap:14px;
}
.hero-rating-badge .stars{ color: var(--star); font-size:1.1rem; letter-spacing:2px; }
.hero-rating-badge .num{ font-family:var(--font-display); font-size:1.5rem; color:var(--ocean); font-weight:700; }
.hero-rating-badge .label{ font-size:0.78rem; color:var(--ink-soft); }
@media (max-width:700px){ .hero-rating-badge{ display:none; } }

.hero-dots{ position:absolute; left:50%; bottom:20px; transform:translateX(-50%); z-index:6; display:flex; gap:9px; }
.hero-dots button{ width:9px; height:9px; border-radius:50%; background: rgba(255,255,255,.5); transition: all .25s ease; }
.hero-dots button.active{ background: var(--gold); width:26px; border-radius:6px; }

.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:6;
  width:46px; height:46px; border-radius:50%; background: rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.4); color:var(--white); display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; transition: background .2s ease;
}
.hero-arrow:hover{ background: rgba(255,255,255,.35); }
.hero-arrow.prev{ left:24px; } .hero-arrow.next{ right:24px; }
@media (max-width:700px){ .hero-arrow{ display:none; } }

/* =========================================================
   DESTINATION STRIP
   ========================================================= */
.dest-strip{ background: var(--white); padding:26px 0; border-bottom:1px solid var(--cream-soft); }
.dest-strip .container{ display:flex; justify-content:space-between; gap:18px; flex-wrap:wrap; }
.dest-chip{
  display:flex; align-items:center; gap:10px; font-weight:600; color:var(--ocean);
  padding:10px 18px; border-radius:50px; background: var(--cream-soft); transition: all .2s ease; font-size:0.92rem;
}
.dest-chip:hover{ background: var(--gold); color: var(--ocean-dark); transform: translateY(-2px); }
.dest-chip .flag{ font-size:1.15rem; }

@media (max-width: 600px) {
  .dest-strip .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .dest-chip {
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.88rem;
    width: 100%;
  }
  .dest-chip:nth-child(1),
  .dest-chip:nth-child(2),
  .dest-chip:nth-child(5) {
    grid-column: span 2;
  }
}

/* =========================================================
   PACKAGE CARDS
   ========================================================= */
.pkg-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap:34px; }
.pkg-card{
  background: var(--white); border-radius: var(--radius-md); overflow:hidden;
  box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease;
  display:flex; flex-direction:column;
}
.pkg-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pkg-slider{ position:relative; height:230px; overflow:hidden; }
.pkg-slide{ position:absolute; inset:0; opacity:0; transition: opacity .8s ease; background-size:cover; background-position:center; }
.pkg-slide.active{ opacity:1; }
.pkg-badge{
  position:absolute; top:14px; left:14px; z-index:4; background: var(--terracotta); color:var(--white);
  font-size:0.72rem; font-weight:700; letter-spacing:0.5px; padding:6px 14px; border-radius:50px;
}
.pkg-rating{
  position:absolute; top:14px; right:14px; z-index:4; background: rgba(255,255,255,.95);
  border-radius:50px; padding:5px 11px; font-size:0.75rem; font-weight:700; color:var(--ocean);
  display:flex; align-items:center; gap:5px;
}
.pkg-rating .stars{ color: var(--star); }
.pkg-dots{ position:absolute; bottom:12px; left:50%; transform:translateX(-50%); z-index:4; display:flex; gap:6px; }
.pkg-dots span{ width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,.6); transition:all .2s ease; }
.pkg-dots span.active{ background:var(--gold); width:16px; border-radius:4px; }
.pkg-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:4; width:32px; height:32px; border-radius:50%;
  background: rgba(8,37,55,.4); color:var(--white); display:flex; align-items:center; justify-content:center; font-size:0.9rem;
  opacity:0; transition: opacity .2s ease;
}
.pkg-slider:hover .pkg-nav{ opacity:1; }
.pkg-nav.prev{ left:10px; } .pkg-nav.next{ right:10px; }

.pkg-body{ padding:22px 24px 24px; display:flex; flex-direction:column; gap:12px; flex:1; }
.pkg-body h3{ font-size:1.28rem; }
.pkg-meta{ display:flex; gap:14px; flex-wrap:wrap; font-size:0.82rem; color: var(--ink-soft); }
.pkg-meta span{ display:flex; align-items:center; gap:6px; }
.pkg-highlights{ font-size:0.88rem; color: var(--ink-soft); }
.pkg-footer{
  display:flex; align-items:center; justify-content:space-between; margin-top:auto;
  padding-top:16px; border-top:1px dashed var(--cream-soft); gap:10px;
}
.pkg-price .from{ font-size:0.72rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:1px; display:block; }
.pkg-price .amount{ font-family: var(--font-display); font-size:1.3rem; color: var(--terracotta); font-weight:700; }
.pkg-price .amount small{ font-size:0.7rem; color:var(--ink-soft); font-weight:400; font-family: var(--font-body); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(230px,1fr)); gap:28px; }
.why-card{ text-align:center; padding:34px 22px; background:var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform .25s ease; }
.why-card:hover{ transform: translateY(-6px); }
.why-icon{
  width:64px; height:64px; margin:0 auto 18px; border-radius:50%;
  background: linear-gradient(135deg, var(--sea), var(--ocean)); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-size:1.6rem;
}
.why-card h4{ font-size:1.05rem; margin-bottom:8px; }
.why-card p{ font-size:0.88rem; color:var(--ink-soft); }

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band{ background: var(--ocean); color:var(--white); padding:50px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:24px; text-align:center; }
.stat-num{ font-family: var(--font-display); font-size:2.4rem; color: var(--gold-light); font-weight:700; }
.stat-label{ font-size:0.85rem; opacity:.85; letter-spacing:0.5px; margin-top:4px; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-track{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px; }
.testi-card{
  background: var(--white); border-radius: var(--radius-md); padding:30px 26px; box-shadow: var(--shadow-sm);
  position:relative;
}
.testi-quote{ font-size:2.4rem; color: var(--gold); font-family: var(--font-display); line-height:0; position:relative; top:16px; }
.testi-stars{ color: var(--star); font-size:0.9rem; margin-bottom:10px; }
.testi-text{ color: var(--ink-soft); font-size:0.94rem; margin-bottom:20px; }
.testi-person{ display:flex; align-items:center; gap:12px; }
.testi-avatar{
  width:46px; height:46px; border-radius:50%; background: var(--cream-soft); color:var(--ocean);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700;
}
.testi-name{ font-weight:600; font-size:0.92rem; color:var(--ocean); }
.testi-trip{ font-size:0.78rem; color:var(--ink-soft); }

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner{
  background: linear-gradient(120deg, var(--terracotta), var(--gold));
  border-radius: var(--radius-lg); padding:52px 44px; color:var(--white);
  display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap;
}
.cta-banner h2{ color:var(--white); font-size:1.9rem; margin-bottom:8px; }
.cta-banner p{ opacity:.92; }
.cta-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{ display:grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows:190px; gap:16px; }
.gallery-item{ border-radius: var(--radius-sm); overflow:hidden; position:relative; cursor:pointer; }
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .5s ease; }
.gallery-item:hover img{ transform: scale(1.1); }
.gallery-item .tag{
  position:absolute; left:12px; bottom:12px; background: rgba(8,37,55,.7); color:var(--white);
  font-size:0.75rem; padding:5px 12px; border-radius:50px; font-weight:600; opacity:0; transition: opacity .3s ease;
}
.gallery-item:hover .tag{ opacity:1; }
.gallery-item.big{ grid-column: span 2; grid-row: span 2; }
@media (max-width:900px){ .gallery-grid{ grid-template-columns: repeat(2,1fr); } .gallery-item.big{ grid-column:span 2; grid-row:span 1; } }
@media (max-width:560px){ .gallery-grid{ grid-template-columns: repeat(1,1fr); } .gallery-item.big{ grid-column:span 1; } }

.gallery-filters{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:30px; }
.gfilter{ padding:9px 20px; border-radius:50px; background:var(--white); font-weight:600; font-size:0.85rem; border:1px solid var(--cream-soft); transition: all .2s ease; }
.gfilter.active, .gfilter:hover{ background: var(--ocean); color:var(--white); border-color:var(--ocean); }

/* Lightbox */
.lightbox{ position:fixed; inset:0; background:rgba(8,37,55,.92); display:none; align-items:center; justify-content:center; z-index:1000; padding:30px; }
.lightbox.open{ display:flex; }
.lightbox img{ max-width:90vw; max-height:85vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close{ position:absolute; top:24px; right:32px; color:var(--white); font-size:2rem; }

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.page-hero{
  background: linear-gradient(120deg, var(--ocean-dark), var(--ocean));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color:var(--white); padding:120px 0 70px; text-align:center; position:relative; overflow:hidden;
}
.page-hero::before{
  content:""; position:absolute; inset:0; opacity:.15;
  background-image: radial-gradient(circle at 20% 30%, var(--gold) 0, transparent 45%), radial-gradient(circle at 80% 70%, var(--sea) 0, transparent 45%);
}
.page-hero h1{ color:var(--white); font-size: clamp(2rem,4.5vw,3rem); position:relative; }
.breadcrumb{ position:relative; margin-top:10px; font-size:0.88rem; opacity:.85; }
.breadcrumb a{ color: var(--gold-light); }

.about-grid{ display:grid; grid-template-columns: 1.05fr 0.95fr; gap:60px; align-items:center; }
.about-media{ position:relative; }
.about-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width:100%; height:460px; object-fit:cover; }
.about-media-tag{
  position:absolute; bottom:-24px; left:-24px; background: var(--white); border-radius: var(--radius-md);
  padding:18px 22px; box-shadow: var(--shadow-lg); max-width:220px;
}
.about-media-tag .num{ font-family:var(--font-display); font-size:1.8rem; color:var(--terracotta); font-weight:700; }
.about-media-tag .lbl{ font-size:0.78rem; color:var(--ink-soft); }
.about-copy p{ color: var(--ink-soft); margin-bottom:16px; }
.about-values{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:26px; }
.about-value{ display:flex; gap:12px; align-items:flex-start; }
.about-value .ico{ width:38px; height:38px; border-radius:50%; background:var(--cream-soft); color:var(--terracotta); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.about-value h5{ font-size:0.95rem; color:var(--ocean); margin-bottom:2px; }
.about-value p{ font-size:0.82rem; margin:0; }

@media (max-width:860px){ .about-grid{ grid-template-columns:1fr; } .about-media img{ height:340px; } }

.team-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:26px; }
.team-card{ text-align:center; background:var(--white); border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); }
.team-card img{ height:230px; object-fit:cover; width:100%; }
.team-card .tbody{ padding:18px; }
.team-card h4{ font-size:1rem; }
.team-card span{ font-size:0.8rem; color:var(--terracotta); font-weight:600; }

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap:44px; }
.contact-info-card{ background: var(--ocean); color:var(--white); border-radius: var(--radius-lg); padding:40px 34px; }
.contact-info-card h3{ color:var(--white); margin-bottom:18px; }
.contact-info-card p{ opacity:.85; font-size:0.92rem; margin-bottom:26px; }
.contact-line{ display:flex; gap:14px; align-items:flex-start; margin-bottom:22px; }
.contact-line .ico{
  width:42px; height:42px; border-radius:50%; background: rgba(255,255,255,.12); color: var(--gold-light);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.contact-line .txt strong{ display:block; font-size:0.9rem; margin-bottom:2px; }
.contact-line .txt span, .contact-line .txt a{ font-size:0.88rem; opacity:.85; }
.contact-social{ display:flex; gap:12px; margin-top:24px; }
.contact-social a{
  width:40px; height:40px; border-radius:50%; background: rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center;
  transition: all .2s ease; color:var(--white);
}
.contact-social a:hover{ background: var(--gold); color:var(--ocean-dark); }

.contact-form{ background: var(--white); border-radius: var(--radius-lg); padding:40px 36px; box-shadow: var(--shadow-sm); }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:0.84rem; font-weight:600; color: var(--ocean); margin-bottom:7px; }
.field input, .field select, .field textarea{
  width:100%; padding:13px 16px; border-radius: var(--radius-sm); border:1.5px solid var(--cream-soft);
  background: var(--cream); font-family: inherit; font-size:0.92rem; color:var(--ink); transition: border-color .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color: var(--sea); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }
.form-note{ font-size:0.78rem; color:var(--ink-soft); margin-top:10px; }

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

.map-wrap{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); margin-top:50px; height:380px; }
.map-wrap iframe{ width:100%; height:100%; border:0; }

/* =========================================================
   PACKAGES PAGE FILTERS
   ========================================================= */
.pkg-filters{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:40px; }
.pfilter{
  padding:11px 22px; border-radius:50px; background:var(--white); font-weight:600; font-size:0.88rem;
  border:1.5px solid var(--cream-soft); transition: all .2s ease; display:flex; align-items:center; gap:8px;
}
.pfilter.active, .pfilter:hover{ background: var(--terracotta); color:var(--white); border-color:var(--terracotta); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--ocean-dark); color: rgba(255,255,255,.78); padding-top:70px; }
.footer-grid{ display:grid; grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr; gap:40px; padding-bottom:50px; }
.footer-brand .brand-name{ color:var(--white); font-family:var(--font-display); font-size:1.5rem; }
.footer-brand .brand-tag{ color: var(--gold-light); font-size:0.72rem; letter-spacing:2px; text-transform:uppercase; font-weight:600; }
.footer-about{ font-size:0.87rem; margin:16px 0 20px; max-width:320px; }
.footer-social{ display:flex; gap:10px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center;
  transition: all .2s ease;
}
.footer-social a:hover{ background: var(--gold); color:var(--ocean-dark); }
.footer-col h5{ color:var(--white); font-family:var(--font-body); font-size:0.95rem; margin-bottom:20px; letter-spacing:0.5px; }
.footer-col ul li{ margin-bottom:12px; }
.footer-col a{ font-size:0.87rem; transition: color .2s ease; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-contact li{ display:flex; gap:10px; font-size:0.87rem; margin-bottom:16px; align-items:flex-start; }
.footer-bottom{ border-top:1px solid rgba(255,255,255,.1); padding:22px 0; text-align:center; font-size:0.82rem; }
.footer-bottom span{ color: var(--gold-light); }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* =========================================================
   FLOATING WHATSAPP BUTTON
   ========================================================= */
.wa-float{
  position:fixed; right:24px; bottom:24px; z-index:400;
  width:60px; height:60px; border-radius:50%; background:#25D366; color:var(--white);
  display:flex; align-items:center; justify-content:center; font-size:1.7rem;
  box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover{ background:#1DA851; }
@keyframes wa-pulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.55); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
.wa-tooltip{
  position:absolute; right:70px; bottom:14px; background:var(--white); color:var(--ink);
  padding:8px 14px; border-radius:8px; font-size:0.8rem; font-weight:600; white-space:nowrap;
  box-shadow: var(--shadow-sm); opacity:0; pointer-events:none; transition: opacity .25s ease;
}
.wa-float:hover .wa-tooltip{ opacity:1; }
@media (max-width:600px){ .wa-float{ width:52px; height:52px; font-size:1.4rem; right:16px; bottom:16px; } .wa-tooltip{ display:none; } }

/* =========================================================
   UTILITIES
   ========================================================= */
.bg-soft{ background: var(--cream-soft); }
.bg-white{ background: var(--white); }
.text-center{ text-align:center; }
.mt-40{ margin-top:40px; }
.reveal{ opacity:0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.show{ opacity:1; transform:none; }

/* =========================================================
   REGISTRATION POPUP MODAL
   ========================================================= */
.reg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 37, 55, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}
.reg-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.reg-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  box-shadow: var(--shadow-lg);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255,255,255,0.8);
}
.reg-overlay.open .reg-modal {
  transform: scale(1) translateY(0);
}
.reg-header {
  background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
  color: var(--white);
  padding: 28px 36px;
  position: relative;
}
.reg-header h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.reg-header p {
  font-size: 0.85rem;
  color: var(--gold-light);
  opacity: 0.9;
}
.reg-close {
  position: absolute;
  top: 24px;
  right: 28px;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s, transform 0.2s;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  z-index: 10;
}
.reg-close:hover {
  opacity: 1;
  transform: rotate(90deg);
  background: rgba(255,255,255,0.2);
}
.reg-body {
  padding: 36px;
}
.reg-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.reg-form .field {
  margin-bottom: 20px;
}
.reg-form .field.full-width {
  grid-column: span 2;
}
.reg-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean);
  margin-bottom: 7px;
}
.reg-form input, .reg-form select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-soft);
  background: var(--cream);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--ink);
  transition: all 0.25s ease;
}
.reg-form input:focus, .reg-form select:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(193, 101, 47, 0.12);
  outline: none;
}
.reg-submit-btn {
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.reg-submit-btn:hover {
  background: #1DA851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
.reg-submit-btn i {
  font-size: 1.2rem;
}
.reg-note {
  font-size: 0.76rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 14px;
}

@media (max-width: 600px) {
  .reg-modal {
    border-radius: var(--radius-md);
  }
  .reg-header {
    padding: 24px 28px;
  }
  .reg-body {
    padding: 24px;
  }
  .reg-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .reg-form .field.full-width {
    grid-column: span 1;
  }
}

