:root{
  --green:#07502b;
  --green-dark:#04361e;
  --green-2:#0b6b3a;
  --gold:#f4bd18;
  --cream:#f8f5eb;
  --white:#fff;
  --ink:#14221a;
  --muted:#6b756f;
  --line:#e7e7df;
  --shadow:0 15px 45px rgba(4,48,27,.10);
  --radius:16px;
}

/* =========================================================
   GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

body{
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.65;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

img,
video,
iframe{
  max-width:100%;
}

img{
  display:block;
}

button,
input,
select,
textarea{
  font-family:inherit;
}

.container{
  width:min(1180px,92%);
  max-width:100%;
  margin:auto;
}


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar{
  background:#063b20;
  color:#fff;
  font-size:12px;
}

.topbar-inner{
  min-height:35px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
}

.top-info,
.social-mini{
  display:flex;
  align-items:center;
  gap:16px;
}

.top-info a{
  color:#fff;
}

.social-mini a{
  width:22px;
  height:22px;
  border:1px solid rgba(255,255,255,.4);
  border-radius:50%;
  display:grid;
  place-items:center;
  font-weight:700;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header{
  background:#fff;
  position:relative;
  z-index:20;
}

.header-main{
  height:210px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  min-width:0;
  width:100%;
  max-width:100%;
}

.brand{
  display:flex;
  align-items:center;
  gap:28px;
  min-width:0;
}

.brand img{
  width:200px;
  height:255px;
  object-fit:contain;
  position:relative;
  z-index:5;
  flex-shrink:0;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.brand-copy strong{
  font-size:52px;
  line-height:.95;
  color:var(--green);
  font-weight:800;
  letter-spacing:-2px;
}

.brand-copy b{
  font-size:29px;
  color:var(--green);
  line-height:1.2;
  letter-spacing:.3px;
}

.brand-copy span{
  font-family:"Playfair Display",serif;
  font-style:italic;
  color:#58705f;
  margin-top:8px;
  font-size:17px;
}

.header-call{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.call-icon{
  width:52px;
  height:52px;
  border:1px solid #b9cdbf;
  border-radius:8px;
  display:grid;
  place-items:center;
  color:var(--green);
  font-size:25px;
}

.header-call small{
  display:block;
  font-weight:600;
}

.header-call a{
  font-size:20px;
  color:var(--green);
  font-weight:800;
}

.menu-toggle{
  display:none;
  background:var(--green);
  border:0;
  color:#fff;
  padding:10px 14px;
  border-radius:7px;
  font-size:22px;
  cursor:pointer;
  flex-shrink:0;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.main-nav{
  height:52px;
  background:var(--green);
}

.nav-inner{
  display:flex;
  justify-content:center;
  align-items:stretch;
  height:100%;
  min-width:0;
}

.nav-inner a{
  color:#fff;
  font-weight:700;
  font-size:14px;
  padding:16px 28px;
  position:relative;
  white-space:nowrap;
}

.nav-inner a:hover,
.nav-inner a.active{
  color:var(--gold);
}

.nav-inner a.active:after{
  content:"";
  position:absolute;
  left:28px;
  right:28px;
  bottom:0;
  height:3px;
  background:var(--gold);
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;
  height:600px;
  overflow:hidden;
  background:#0a3f26;
  width:100%;
  max-width:100%;
}

.hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  max-width:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .7s ease;
}

.hero-slide.active{
  opacity:1;
}

.hero-slide:after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(0,30,18,.80),
    rgba(0,30,18,.28) 55%,
    rgba(0,0,0,.05)
  );
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  height:100%;
  display:flex;
  align-items:center;
  min-width:0;
}

.hero-copy{
  max-width:620px;
  margin-top:25px;
  min-width:0;
}

.script{
  font-family:"Playfair Display",serif;
  font-style:italic;
  color:#f7c640;
  font-size:28px;
}

.hero h1{
  font-size:58px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:1px;
  font-weight:800;
  margin:5px 0 20px;
}

.hero p{
  font-size:17px;
  max-width:590px;
  color:#f2f5f1;
  margin-bottom:25px;
}

.btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 22px;
  border-radius:5px;
  font-weight:800;
  font-size:14px;
  border:2px solid transparent;
  transition:.25s;
}

.btn-green{
  background:#08733b;
  color:#fff;
}

.btn-green:hover{
  background:#064f2a;
}

.btn-gold{
  background:var(--gold);
  color:#1d261e;
}

.btn-outline{
  border-color:#fff;
  color:#fff;
}

.btn:hover{
  transform:translateY(-2px);
}

.slider-arrow{
  position:absolute;
  z-index:4;
  top:50%;
  transform:translateY(-50%);
  width:46px;
  height:60px;
  border:0;
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}

.slider-arrow.prev{
  left:12px;
}

.slider-arrow.next{
  right:12px;
}

.dots{
  position:absolute;
  z-index:4;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:7px;
}

.dots button{
  width:9px;
  height:9px;
  border:0;
  border-radius:50%;
  background:#fff8;
  cursor:pointer;
}

.dots button.active{
  background:var(--gold);
  width:25px;
  border-radius:9px;
}


/* =========================================================
   FEATURE STRIP
   ========================================================= */

.feature-strip{
  background:#fbfaf3;
  border-bottom:1px solid #eee;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  width:100%;
  max-width:100%;
}

.feature{
  padding:23px 18px;
  display:flex;
  gap:13px;
  align-items:center;
  border-right:1px solid #e9e8df;
  min-width:0;
}

.feature:last-child{
  border-right:0;
}

.feature-icon{
  width:56px;
  height:56px;
  flex:0 0 56px;
  background:var(--green);
  color:#fff;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:24px;
}

.feature h4{
  font-size:13px;
  color:#153a27;
  text-transform:uppercase;
}

.feature p{
  font-size:11px;
  line-height:1.4;
  color:#313a34;
}


/* =========================================================
   SECTIONS
   ========================================================= */

.section{
  padding:78px 0;
  width:100%;
  overflow:hidden;
}

.section-head{
  text-align:center;
  margin-bottom:38px;
}

.eyebrow{
  font-family:"Playfair Display",serif;
  font-style:italic;
  color:#4b805d;
  font-size:22px;
}

.section-title{
  color:var(--green);
  font-size:38px;
  line-height:1.15;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.section-lead{
  max-width:650px;
  margin:12px auto 0;
  color:#606a64;
}

.title-leaf{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  color:#8b9b8e;
  margin-top:7px;
}

.title-leaf:before,
.title-leaf:after{
  content:"";
  height:1px;
  width:70px;
  background:#cad4cb;
}


/* =========================================================
   PACKAGES
   ========================================================= */

.package-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  width:100%;
  min-width:0;
}

.package-card{
  background:#fff;
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid #eef0eb;
  transition:.3s;
  min-width:0;
  max-width:100%;
}

.package-card:hover{
  transform:translateY(-6px);
}

.package-image{
  height:230px;
  position:relative;
  overflow:hidden;
}

.package-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.package-card:hover .package-image img{
  transform:scale(1.05);
}

.price-badge{
  position:absolute;
  right:14px;
  top:14px;
  background:var(--gold);
  color:#1b281e;
  padding:8px 12px;
  border-radius:30px;
  font-weight:800;
}

.package-body{
  padding:20px;
}

.package-body h3{
  font-size:21px;
  color:var(--green);
  line-height:1.25;
  margin-bottom:7px;
}

.duration{
  font-size:13px;
  color:#718077;
  margin-bottom:10px;
}

.package-body p{
  font-size:14px;
  color:#606b65;
  margin-bottom:17px;
}

.card-link{
  color:var(--green);
  font-weight:800;
  font-size:14px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:55px;
  align-items:center;
  min-width:0;
}

.about-photo{
  position:relative;
  min-width:0;
}

.about-photo img{
  width:100%;
  height:510px;
  object-fit:cover;
  border-radius:18px;
}

.about-photo .photo-tag{
  position:absolute;
  bottom:22px;
  left:22px;
  background:#fff;
  padding:16px 20px;
  border-radius:10px;
  box-shadow:var(--shadow);
  font-weight:800;
  color:var(--green);
}

.about-copy{
  min-width:0;
}

.about-copy .section-title{
  text-transform:none;
  margin:5px 0 17px;
}

.about-copy p{
  color:#626e66;
  margin-bottom:15px;
}

.check-list{
  list-style:none;
  display:grid;
  gap:10px;
  margin:20px 0 25px;
}

.check-list li:before{
  content:"✓";
  display:inline-grid;
  place-items:center;
  background:#e5f0e8;
  color:var(--green);
  width:24px;
  height:24px;
  border-radius:50%;
  margin-right:9px;
  font-weight:800;
}


/* =========================================================
   STATS
   ========================================================= */

.stats{
  background:var(--green);
  color:#fff;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  text-align:center;
  width:100%;
}

.stat{
  padding:32px 15px;
  border-right:1px solid rgba(255,255,255,.16);
  min-width:0;
}

.stat:last-child{
  border:0;
}

.stat strong{
  font-size:36px;
  display:block;
  color:var(--gold);
}

.stat span{
  font-size:13px;
  opacity:.9;
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */

.testimonial-wrap{
  background:var(--cream);
}

.testimonial-slider{
  max-width:830px;
  margin:auto;
  position:relative;
  min-height:230px;
}

.testimonial{
  display:none;
  text-align:center;
  padding:15px 60px;
}

.testimonial.active{
  display:block;
  animation:fade .5s;
}

@keyframes fade{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

.quote{
  font-family:"Playfair Display",serif;
  font-size:25px;
  line-height:1.55;
  color:#294a36;
}

.stars{
  color:#e5aa00;
  font-size:20px;
  margin:12px;
}

.client{
  font-weight:800;
  color:var(--green);
}

.client small{
  display:block;
  color:#7a857e;
  font-weight:500;
}


/* =========================================================
   HAPPY CLIENTS
   ========================================================= */

.clients{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.client-pill{
  padding:12px 20px;
  border:1px solid #e1e7e2;
  border-radius:40px;
  background:#fff;
  color:#486050;
  font-weight:700;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  width:100%;
  min-width:0;
}

.gallery-item{
  height:245px;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  min-width:0;
}

.gallery-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

.gallery-item:after{
  content:"View";
  position:absolute;
  inset:auto 10px 10px auto;
  background:rgba(0,60,31,.85);
  color:#fff;
  padding:5px 12px;
  border-radius:20px;
  font-size:12px;
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero{
  padding:85px 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,51,27,.86),
      rgba(0,51,27,.45)
    ),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1800&q=85")
    center/cover;
  color:#fff;
}

.page-hero h1{
  font-size:50px;
  line-height:1.1;
}

.breadcrumb{
  margin-top:10px;
  color:#dce9e0;
}

.breadcrumb a{
  color:#fff;
}


/* =========================================================
   PACKAGE DETAILS
   ========================================================= */

.details-grid{
  display:grid;
  grid-template-columns:1.5fr .8fr;
  gap:30px;
  min-width:0;
}

.detail-image{
  height:420px;
  border-radius:16px;
  overflow:hidden;
}

.detail-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.detail-box{
  background:#f7f8f4;
  padding:26px;
  border-radius:16px;
  border:1px solid #e8ede8;
  min-width:0;
}

.detail-box h3{
  color:var(--green);
  margin-bottom:12px;
}

.detail-price{
  font-size:35px;
  font-weight:800;
  color:var(--green);
  margin:10px 0 18px;
}

.info-list{
  list-style:none;
  display:grid;
  gap:9px;
  margin-bottom:22px;
}

.info-list li:before{
  content:"✓";
  color:var(--green);
  font-weight:900;
  margin-right:8px;
}

.itinerary{
  margin-top:40px;
}

.day{
  border-left:3px solid var(--gold);
  padding:7px 0 7px 18px;
  margin:15px 0;
}

.day strong{
  color:var(--green);
}


/* =========================================================
   FORMS
   ========================================================= */

.form-wrap{
  max-width:900px;
  margin:auto;
  background:#fff;
  padding:35px;
  border-radius:18px;
  box-shadow:var(--shadow);
  min-width:0;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  min-width:0;
}

.field{
  display:flex;
  flex-direction:column;
  gap:7px;
  min-width:0;
}

.field.full{
  grid-column:1/-1;
}

label{
  font-size:13px;
  font-weight:700;
  color:#314238;
}

input,
select,
textarea{
  font:inherit;
  width:100%;
  max-width:100%;
  padding:12px 13px;
  border:1px solid #d9e1da;
  border-radius:7px;
  outline:0;
  background:#fff;
}

input:focus,
select:focus,
textarea:focus{
  border-color:#6b9c7c;
  box-shadow:0 0 0 3px rgba(11,107,58,.08);
}

textarea{
  min-height:145px;
  resize:vertical;
}

.notice{
  padding:13px 16px;
  border-radius:8px;
  margin-bottom:18px;
  background:#edf8f0;
  color:#176237;
}

.error{
  background:#fff1ef;
  color:#a2301e;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-grid{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:35px;
  min-width:0;
}

.contact-card{
  background:var(--green);
  color:#fff;
  padding:35px;
  border-radius:18px;
  min-width:0;
}

.contact-card h2{
  font-size:30px;
  margin-bottom:15px;
}

.contact-item{
  display:flex;
  gap:13px;
  padding:17px 0;
  border-bottom:1px solid rgba(255,255,255,.15);
  min-width:0;
}

.contact-item:last-child{
  border:0;
}

.contact-item b{
  display:block;
}

.contact-item span{
  font-size:14px;
  opacity:.88;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  background:#052f1b;
  color:#dce9e0;
  padding-top:60px;
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:40px;
  padding-bottom:45px;
  min-width:0;
}

.footer-grid > div{
  min-width:0;
}

.footer-brand{
  font-size:23px;
  font-weight:800;
  color:#fff;
}

.footer-brand span{
  display:block;
  color:var(--gold);
  font-size:14px;
}

.footer p{
  font-size:13px;
  color:#bdd0c4;
  margin-top:12px;
}

.footer h3{
  color:#fff;
  margin-bottom:16px;
  font-size:17px;
}

.footer-grid > div > a{
  display:block;
  font-size:13px;
  margin:8px 0;
  color:#bdd0c4;
}

.footer-grid > div > a:hover{
  color:var(--gold);
}

.footer-social{
  display:flex;
  gap:8px;
  margin-top:17px;
}

.footer-social a{
  width:34px;
  height:34px;
  border:1px solid #54725f;
  border-radius:50%;
  display:grid;
  place-items:center;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding:17px 0;
  font-size:11px;
  color:#9fb7a7;
}

.footer-bottom .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
}


/* =========================================================
   WHATSAPP
   ========================================================= */

.whatsapp{
  position:fixed;
  right:25px;
  bottom:25px;
  width:58px;
  height:58px;
  border-radius:50%;
  background:#25d366;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:30px;
  z-index:50;
  box-shadow:0 7px 25px rgba(37,211,102,.4);
  border:4px solid #fff;
}


/* =========================================================
   EMPTY
   ========================================================= */

.empty{
  padding:30px;
  background:#f6f7f4;
  border-radius:10px;
  text-align:center;
}


/* =========================================================
   TABLET / SMALL LAPTOP
   ========================================================= */

@media(max-width:1050px){

  .header-main{
    height:180px;
  }

  .brand img{
    width:225px;
    height:225px;
  }

  .brand-copy strong{
    font-size:42px;
  }

  .brand-copy b{
    font-size:24px;
  }

  .brand-copy span{
    font-size:14px;
  }

  .nav-inner a{
    padding:16px 16px;
  }

  .hero{
    height:540px;
  }

  .hero h1{
    font-size:48px;
  }

}


/* =========================================================
   TABLET / MOBILE
   ========================================================= */

@media(max-width:820px){

  .top-info span:nth-child(2),
  .social-mini span{
    display:none;
  }

  .header-main{
    height:125px;
    width:100%;
    max-width:100%;
  }

  .brand{
    gap:10px;
    min-width:0;
    max-width:calc(100% - 60px);
  }

  .brand img{
    width:135px;
    height:155px;
    top:15px;
    flex-shrink:0;
  }

  .brand-copy{
    min-width:0;
    overflow:hidden;
  }

  .brand-copy strong{
    font-size:30px;
    letter-spacing:-1px;
    white-space:nowrap;
  }

  .brand-copy b{
    font-size:17px;
    white-space:nowrap;
  }

  .brand-copy span{
    font-size:11px;
  }

  .header-call{
    display:none;
  }

  .menu-toggle{
    display:block;
  }


  /* MOBILE NAV */

  .main-nav{
    height:auto;
    display:none;
  }

  .main-nav.open{
    display:block;
  }

  .nav-inner{
    display:flex;
    flex-direction:column;
    width:100%;
  }

  .nav-inner a{
    padding:13px 20px;
    border-bottom:1px solid rgba(255,255,255,.1);
    white-space:normal;
  }

  .nav-inner a.active:after{
    display:none;
  }


  /* HERO */

  .hero{
    height:570px;
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .hero-content{
    width:100%;
    max-width:100%;
  }

  .hero h1{
    font-size:42px;
  }

  .hero-copy{
    max-width:580px;
    min-width:0;
  }


  /* FEATURES */

  .feature-strip{
    grid-template-columns:1fr 1fr;
    width:100%;
    max-width:100%;
  }

  .feature{
    border-bottom:1px solid #e9e8df;
    min-width:0;
  }

  .feature:last-child{
    grid-column:1/-1;
  }


  /* PACKAGES */

  .package-grid{
    grid-template-columns:1fr 1fr;
  }


  /* ABOUT */

  .about-grid,
  .details-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .about-photo img{
    height:400px;
  }


  /* GALLERY */

  .gallery-grid{
    grid-template-columns:1fr 1fr;
  }


  /* STATS */

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .stat{
    border-bottom:1px solid rgba(255,255,255,.16);
  }


  /* FOOTER TABLET */

  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

  .footer-bottom .container{
    flex-direction:column;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:560px){

  /* GLOBAL MOBILE OVERFLOW */

  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden;
  }

  .container{
    width:92%;
    max-width:100%;
  }


  /* TOP BAR */

  .topbar{
    font-size:10px;
  }

  .topbar-inner{
    width:92%;
  }

  .top-info{
    gap:8px;
  }

  .top-info span:first-child{
    max-width:230px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }


  /* HEADER */

  .header-main{
    height:105px;
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .brand{
    gap:7px;
    max-width:calc(100% - 55px);
    min-width:0;
  }

  .brand img{
    width:92px;
    height:115px;
    top:0;
    flex-shrink:0;
  }

  .brand-copy{
    flex:1;
    min-width:0;
    overflow:hidden;
  }

  .brand-copy strong{
    font-size:22px;
    letter-spacing:-1px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .brand-copy b{
    font-size:13px;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .brand-copy span{
    display:none;
  }


  /* HERO */

  .hero{
    height:540px;
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .hero-copy{
    padding:0 8px;
    max-width:100%;
    min-width:0;
  }

  .hero h1{
    font-size:35px;
  }

  .hero p{
    font-size:14px;
  }

  .script{
    font-size:22px;
  }

  .btn{
    padding:11px 15px;
    font-size:12px;
  }

  .slider-arrow{
    width:38px;
    height:50px;
    font-size:25px;
  }

  .slider-arrow.prev{
    left:6px;
  }

  .slider-arrow.next{
    right:6px;
  }


  /* FEATURES */

  .feature-strip{
    grid-template-columns:1fr;
    width:100%;
  }

  .feature{
    width:100%;
    padding:18px 15px;
  }

  .feature:last-child{
    grid-column:auto;
  }


  /* SECTIONS */

  .section{
    padding:55px 0;
    width:100%;
    overflow:hidden;
  }

  .section-title{
    font-size:30px;
  }

  .section-lead{
    font-size:14px;
  }

  .title-leaf:before,
  .title-leaf:after{
    width:45px;
  }


  /* PACKAGES */

  .package-grid{
    grid-template-columns:1fr;
    width:100%;
  }

  .package-card{
    width:100%;
    max-width:100%;
  }


  /* ABOUT */

  .about-grid{
    width:100%;
  }

  .about-photo img{
    height:350px;
  }

  .about-photo .photo-tag{
    left:15px;
    bottom:15px;
    padding:12px 15px;
    font-size:13px;
  }


  /* STATS */

  .stats-grid{
    grid-template-columns:1fr 1fr;
  }

  .stat{
    padding:25px 10px;
  }

  .stat strong{
    font-size:30px;
  }

  .stat span{
    font-size:11px;
  }


  /* TESTIMONIAL */

  .testimonial{
    padding:15px;
  }

  .quote{
    font-size:20px;
  }


  /* CLIENTS */

  .clients{
    gap:9px;
  }

  .client-pill{
    padding:9px 14px;
    font-size:12px;
  }


  /* GALLERY */

  .gallery-grid{
    grid-template-columns:1fr;
    width:100%;
  }

  .gallery-item{
    height:240px;
    width:100%;
  }


  /* PAGE HERO */

  .page-hero{
    padding:60px 0;
  }

  .page-hero h1{
    font-size:36px;
  }


  /* DETAILS */

  .details-grid{
    width:100%;
  }

  .detail-image{
    height:280px;
  }

  .detail-box{
    padding:22px;
    width:100%;
  }

  .detail-price{
    font-size:30px;
  }


  /* FORMS */

  .form-grid{
    grid-template-columns:1fr;
    width:100%;
  }

  .field.full{
    grid-column:auto;
  }

  .form-wrap{
    width:100%;
    max-width:100%;
    padding:22px;
  }

  input,
  select,
  textarea{
    width:100%;
    max-width:100%;
  }


  /* CONTACT */

  .contact-grid{
    width:100%;
  }

  .contact-card{
    padding:25px 20px;
    width:100%;
  }


  /* =====================================================
     MOBILE FOOTER - CENTERED
     ===================================================== */

  .footer{
    padding-top:45px;
    text-align:center;
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .footer-grid{
    grid-template-columns:1fr;
    gap:35px;
    width:100%;
    max-width:100%;
    padding-bottom:35px;
  }

  .footer-grid > div{
    width:100%;
    min-width:0;
    text-align:center;
  }

  .footer-brand{
    text-align:center;
    font-size:23px;
  }

  .footer p{
    max-width:340px;
    margin:12px auto 0;
    font-size:13px;
    line-height:1.7;
  }

  .footer h3{
    text-align:center;
    margin-bottom:12px;
    font-size:17px;
  }

  .footer-grid > div > a{
    text-align:center;
    margin:9px 0;
    font-size:13px;
  }

  .footer-social{
    justify-content:center;
    align-items:center;
  }

  .footer-social a{
    width:36px;
    height:36px;
  }

  .footer-bottom{
    text-align:center;
    padding:17px 0;
  }

  .footer-bottom .container{
    width:92%;
    max-width:100%;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:8px;
  }


  /* WHATSAPP */

  .whatsapp{
    right:15px;
    bottom:15px;
    width:52px;
    height:52px;
    font-size:26px;
  }

}











/* =========================================================
   MOBILE TOPBAR - SHOW CONTENT IN 2 LINES
   ========================================================= */

@media (max-width: 560px){

    .topbar{
        width:100%;
        overflow:hidden;
        padding:7px 0;
    }

    .topbar-inner{
        width:92%;
        max-width:100%;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:5px;
        text-align:center;
    }

    .top-info{
        width:100%;
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
        gap:3px 10px;
        line-height:1.4;
    }

    .top-info span,
    .top-info a{
        font-size:10px;
        line-height:1.4;
        white-space:normal;
    }

    /* Address gets full first line */
    .top-info span:first-child{
        width:100%;
        max-width:100%;
        overflow:visible;
        text-overflow:clip;
        white-space:normal;
    }

    /* Email + phone on second line */
    .top-info span:nth-child(2),
    .top-info a{
        width:auto;
        display:inline-block;
    }

    .social-mini{
        display:none;
    }
}




/* =========================================================
   FLOATING CONTACT ACTIONS
   ========================================================= */

.floating-actions{
    position:fixed;
    right:22px;
    bottom:22px;
    z-index:9999;

    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:12px;
}

/* Main open / close button */
.float-toggle{
    width:58px;
    height:58px;

    border:0;
    border-radius:50%;

    background:var(--green);
    color:#fff;

    font-size:30px;
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    box-shadow:0 8px 25px rgba(0,0,0,.25);

    transition:
        transform .3s ease,
        background .3s ease;
}

.float-toggle:hover{
    transform:scale(1.08);
    background:var(--green-dark);
}

/* Floating buttons */
.float-btn{
    min-width:150px;
    height:48px;

    padding:0 18px;

    border-radius:30px;

    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:12px;

    color:#fff !important;
    text-decoration:none !important;

    font-size:14px;
    font-weight:700;

    box-shadow:0 7px 22px rgba(0,0,0,.20);

    opacity:0;
    visibility:hidden;
    transform:translateY(20px) scale(.85);

    pointer-events:none;

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease;
}

/* Show buttons */
.floating-actions.active .float-btn{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
    pointer-events:auto;
}

/* WhatsApp */
.whatsapp-btn{
    background:#25D366;
}

/* Enquiry */
.enquiry-btn{
    background:var(--gold);
    color:#17351d !important;
}

/* Call */
.call-btn{
    background:#07502b;
}

/* Icons */
.float-icon{
    width:30px;
    height:30px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.18);

    font-size:17px;
    flex-shrink:0;
}

/* Label */
.float-label{
    white-space:nowrap;
}

/* Button animation delay */
.floating-actions.active .whatsapp-btn{
    transition-delay:.05s;
}

.floating-actions.active .enquiry-btn{
    transition-delay:.10s;
}

.floating-actions.active .call-btn{
    transition-delay:.15s;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:560px){

    .floating-actions{
        right:14px;
        bottom:15px;
        gap:9px;
    }

    .float-toggle{
        width:52px;
        height:52px;
        font-size:27px;
    }

    .float-btn{
        min-width:135px;
        height:44px;
        padding:0 14px;
        gap:9px;
        font-size:12px;
    }

    .float-icon{
        width:27px;
        height:27px;
        font-size:15px;
    }
}












