:root{
  --yellow:#f5b323;
  --yellow-strong:#ffc107;
  --black:#111111;
  --dark:#181818;
  --muted:#666666;
  --soft:#f7f7f7;
  --cream:#f5f1e8;
  --white:#ffffff;
  --whatsapp:#25d366;
  --shadow:0 20px 45px rgba(0,0,0,0.08);
}

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

html{scroll-behavior:smooth}

body{
  font-family:'Inter',sans-serif;
  background:var(--soft);
  color:var(--black);
  overflow-x:hidden;
}

body.nav-open{overflow:hidden}

img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
button,input,textarea{font:inherit}

.container{
  width:min(1200px,90%);
  margin:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,0.9);
  border-bottom:1px solid rgba(0,0,0,0.06);
  backdrop-filter:blur(14px);
}

.navbar{
  min-height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  font-family:'Montserrat',sans-serif;
  font-size:1.36rem;
  font-weight:800;
  letter-spacing:0;
  color:var(--black);
  flex-shrink:0;
}

.logo img{
  width:78px;
  height:78px;
  object-fit:contain;
}

.logo span{color:var(--yellow)}

.nav-menu{
  display:flex;
  align-items:center;
  gap:30px;
}

.nav-menu a:not(.call-btn){
  position:relative;
  font-weight:600;
  color:#171717;
  transition:color .25s ease;
}

.nav-menu a:not(.call-btn)::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--yellow);
  transition:width .25s ease;
}

.nav-menu a:hover,
.nav-menu a.active{color:#000}

.nav-menu a:hover::after,
.nav-menu a.active::after{width:100%}

.call-btn,
.primary-btn,
.submit-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 26px;
  border:0;
  border-radius:999px;
  background:var(--yellow);
  color:#111;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 12px 30px rgba(245,179,35,0.24);
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease;
}

.call-btn:hover,
.primary-btn:hover,
.submit-btn:hover{
  transform:translateY(-3px);
  background:var(--yellow-strong);
  box-shadow:0 16px 36px rgba(245,179,35,0.3);
}

.secondary-btn,
.whatsapp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 26px;
  border-radius:999px;
  background:var(--whatsapp);
  color:white;
  font-weight:800;
  box-shadow:0 12px 32px rgba(37,211,102,0.24);
  transition:transform .25s ease,background .25s ease;
}

.secondary-btn:hover,
.whatsapp-btn:hover{
  transform:translateY(-3px);
  background:#1ebe5d;
}

.lang-switch{
  display:inline-flex;
  align-items:center;
  gap:4px;
  padding:5px;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:999px;
  background:rgba(255,255,255,0.72);
}

.lang-switch button{
  border:0;
  background:transparent;
  color:#333;
  border-radius:999px;
  padding:8px 10px;
  font-size:.83rem;
  font-weight:800;
  cursor:pointer;
  transition:background .2s ease,color .2s ease;
}

.lang-switch button.active{
  background:var(--yellow);
  color:#111;
}

.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  background:white;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  margin:5px auto;
  border-radius:999px;
  background:#111;
}

.hero{
  padding:96px 0 82px;
  background:radial-gradient(circle at top left,rgba(245,179,35,0.11),transparent 35%),linear-gradient(to bottom,#faf8f3,var(--cream));
  overflow:hidden;
}

.home-hero{
  padding:28px 0 0;
  position:relative;
  background:#080b0d;
}

.hero-container{
  width:min(1460px,100%);
  margin:auto;
  display:grid;
  grid-template-columns:minmax(0,640px) 1fr;
  align-items:center;
  gap:0;
  min-height:880px;
  padding:132px 76px 108px;
  position:relative;
  overflow:hidden;
  border-radius:0;
  background:#07090b;
  box-shadow:none;
}

.hero-container::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(4,7,9,0.95) 0%,rgba(7,10,12,0.84) 22%,rgba(12,14,15,0.46) 43%,rgba(8,10,12,0.07) 62%,rgba(4,6,8,0.12) 100%),
    linear-gradient(to bottom,rgba(4,7,9,0.72) 0%,rgba(4,7,9,0.04) 26%,rgba(4,7,9,0.04) 68%,rgba(4,7,9,0.76) 100%);
}

.hero-left{
  padding-left:0;
  position:relative;
  z-index:4;
  max-width:640px;
}

.home-hero .hero-badge{display:none}

.hero-badge,
.eyebrow{
  display:inline-flex;
  align-items:center;
  padding:12px 20px;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:999px;
  background:rgba(255,255,255,0.72);
  color:#555;
  font-weight:800;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

h1,h2,h3{
  font-family:'Montserrat',sans-serif;
  letter-spacing:0;
}

.hero h1,
.page-hero h1{
  margin:24px 0;
  font-size:5rem;
  line-height:.95;
}

.home-hero h1{
  margin:0 0 34px;
  color:white;
  font-size:5.6rem;
  line-height:1;
  text-shadow:0 18px 54px rgba(0,0,0,0.38);
}

.hero h1 span{color:var(--yellow)}

.hero p,
.page-hero p,
.section-title p{
  max-width:700px;
  color:var(--muted);
  line-height:1.9;
  font-size:1.06rem;
}

.home-hero .hero-left > p{
  max-width:640px;
  color:rgba(255,255,255,0.78);
  line-height:1.9;
  font-size:1.08rem;
  text-shadow:0 10px 34px rgba(0,0,0,0.45);
}

.hero-actions,
.contact-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  align-items:center;
}

.hero-actions{margin:36px 0 42px}

.home-hero .hero-actions{margin:42px 0 56px}
.home-hero .hero-features{margin-top:8px}

.hero-features{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  max-width:650px;
  position:relative;
  z-index:5;
}

.home-hero .hero-features{
  max-width:620px;
  gap:22px;
}

.feature-card,
.service-card,
.value-card,
.contact-card,
.trip-card{
  background:white;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:28px;
  transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
}

.feature-card{
  padding:24px;
  background:rgba(255,255,255,0.64);
  backdrop-filter:blur(14px);
  box-shadow:0 16px 34px rgba(0,0,0,0.07);
}

.home-hero .feature-card{
  min-height:150px;
  padding:28px;
  border:1px solid rgba(255,255,255,0.11);
  background:rgba(16,18,20,0.7);
  backdrop-filter:blur(18px);
  box-shadow:0 20px 52px rgba(0,0,0,0.32);
  color:white;
}

.feature-card:hover,
.service-card:hover,
.value-card:hover,
.contact-card:hover,
.trip-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.feature-card strong{
  display:block;
  margin-bottom:9px;
  font-size:1rem;
}

.home-hero .feature-card strong{
  color:white;
  font-size:1.08rem;
}

.feature-card p{
  margin:0;
  color:#777;
  line-height:1.65;
  font-size:.95rem;
}

.home-hero .feature-card p{
  color:rgba(255,255,255,0.72);
}

.hero-right{
  position:absolute;
  inset:0;
  min-height:0;
  aspect-ratio:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  overflow:hidden;
  border-radius:0;
  background:
    linear-gradient(90deg,rgba(5,8,10,0.72),rgba(5,8,10,0.16) 48%,rgba(5,8,10,0.04)),
    #080b0d;
}

.hero-right::before{
  content:"";
  position:absolute;
  inset:0;
  width:100%;
  z-index:2;
  pointer-events:none;
  background:
    radial-gradient(ellipse at 78% 56%,rgba(245,179,35,0.16),transparent 28%),
    linear-gradient(90deg,rgba(5,8,10,0.96) 0%,rgba(6,9,11,0.78) 24%,rgba(8,10,12,0.22) 48%,rgba(8,10,12,0) 70%),
    linear-gradient(to bottom,rgba(5,8,10,0.5) 0%,transparent 30%,rgba(5,8,10,0.64) 100%);
}

.hero-right::after{
  content:"";
  position:absolute;
  inset:auto 0 0;
  height:28%;
  z-index:2;
  pointer-events:none;
  background:linear-gradient(to top,rgba(5,8,10,.76),rgba(5,8,10,.18) 62%,transparent);
}

.hero-right img{
  width:91%;
  height:91%;
  max-height:none;
  object-fit:contain;
  object-position:right center;
  margin-left:auto;
  margin-right:-4%;
  filter:contrast(1.1) saturate(1.12) brightness(1.02) drop-shadow(0 34px 70px rgba(0,0,0,0.42));
}

.page-hero{
  padding:86px 0 72px;
  text-align:center;
  background:radial-gradient(circle at top,rgba(245,179,35,0.13),transparent 30%),linear-gradient(to bottom,#faf8f3,#f7f7f7);
}

.page-hero .eyebrow{margin-bottom:22px}
.page-hero p{margin:auto}

section{padding:88px 0}

.section-title{
  text-align:center;
  margin-bottom:58px;
}

.section-title .eyebrow{margin-bottom:20px}

.section-title h2{
  margin-bottom:18px;
  font-size:3rem;
}

.section-title p{margin:auto}

.line{
  width:80px;
  height:4px;
  margin:0 auto 25px;
  border-radius:20px;
  background:var(--yellow);
}

.booking-form{
  max-width:980px;
  margin:38px auto 0;
  padding:38px;
  border:1px solid rgba(0,0,0,0.06);
  border-radius:30px;
  background:white;
  box-shadow:0 16px 42px rgba(0,0,0,0.06);
}

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

.input-group{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.input-group.full{margin-bottom:24px}

.input-group label{
  font-weight:800;
  color:#222;
}

.input-group input,
.input-group textarea{
  width:100%;
  padding:17px 18px;
  border:1px solid #e4e4e4;
  border-radius:16px;
  background:#fff;
  color:#111;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease;
}

.input-group input:focus,
.input-group textarea:focus{
  border-color:var(--yellow);
  box-shadow:0 0 0 4px rgba(245,179,35,0.12);
}

.services-grid,
.values-grid,
.contact-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:28px;
}

.service-card,
.value-card,
.contact-card{padding:36px}

.service-icon{
  width:72px;
  height:72px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
  background:rgba(245,179,35,0.13);
  font-size:1.9rem;
}

.service-card h3,
.value-card h3,
.contact-card h3{
  margin-bottom:14px;
  font-size:1.45rem;
}

.service-card p,
.value-card p,
.contact-card p,
.contact-card a{
  color:var(--muted);
  line-height:1.8;
}

.premium-panel,
.contact-box{
  overflow:hidden;
  border-radius:36px;
  background:linear-gradient(135deg,#1f1f1f,#101010);
  color:white;
}

.contact-box{
  padding:64px;
  text-align:center;
}

.contact-box h2{
  margin-bottom:18px;
  font-size:3rem;
}

.contact-box p{
  max-width:720px;
  margin:0 auto 34px;
  color:rgba(255,255,255,0.75);
  line-height:1.9;
}

.contact-actions{justify-content:center}

.outline-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:14px 26px;
  border:1px solid rgba(255,255,255,0.18);
  border-radius:999px;
  color:white;
  font-weight:800;
  transition:transform .25s ease,border-color .25s ease,background .25s ease;
}

.outline-btn:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,0.35);
  background:rgba(255,255,255,0.06);
}

.about-wrapper{
  padding:58px;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:58px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:620px;
  object-fit:cover;
  object-position:center;
  border-radius:26px;
  box-shadow:0 25px 60px rgba(0,0,0,0.38);
}

.about-text h2{
  margin-bottom:26px;
  color:white;
  font-size:4.2rem;
  line-height:1.03;
}

.about-text p{
  margin-bottom:18px;
  color:rgba(255,255,255,0.78);
  line-height:1.9;
  font-size:1.05rem;
}

.about-features{
  display:flex;
  flex-direction:column;
  gap:14px;
  margin-top:32px;
}

.about-features div{
  padding:17px 20px;
  border:1px solid rgba(255,255,255,0.09);
  border-radius:16px;
  background:rgba(255,255,255,0.06);
  color:white;
  font-weight:700;
}

.about-features div::before{
  content:"✓";
  margin-right:12px;
  color:var(--yellow);
  font-weight:900;
}

.trips-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:28px;
}

.trip-card{overflow:hidden}

.trip-image{
  height:260px;
  overflow:hidden;
  background:#ddd;
}

.trip-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .4s ease;
}

.trip-card:hover .trip-image img{transform:scale(1.05)}

.trip-content{padding:30px}

.trip-content h3{
  margin-bottom:14px;
  font-size:1.45rem;
}

.trip-content p{
  color:var(--muted);
  line-height:1.8;
}

.trip-content a{
  margin-top:22px;
}

.map-box{
  height:430px;
  border-radius:30px;
  overflow:hidden;
  background:linear-gradient(135deg,#222,#111);
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:35px;
}

.map-box a{
  color:var(--yellow);
  font-weight:800;
}

.site-footer{
  padding:34px 0;
  background:#111;
  color:rgba(255,255,255,0.72);
  text-align:center;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  width:64px;
  height:64px;
  z-index:900;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--whatsapp);
  color:white;
  font-weight:900;
  box-shadow:0 12px 30px rgba(0,0,0,0.24);
  transition:transform .25s ease;
}

.whatsapp-float:hover{transform:translateY(-3px) scale(1.03)}

@media(max-width:1050px){
  .menu-toggle{display:block}
  .nav-menu{
    position:fixed;
    inset:90px 0 auto 0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:18px 5% 28px;
    background:rgba(255,255,255,0.98);
    border-bottom:1px solid rgba(0,0,0,0.08);
    box-shadow:0 18px 35px rgba(0,0,0,0.08);
  }
  body.nav-open .nav-menu{display:flex}
  .nav-menu a:not(.call-btn){padding:14px 0}
  .nav-menu a::after{display:none}
  .lang-switch{margin:10px 0 14px;align-self:flex-start}
  .hero-container,
  .about-wrapper{grid-template-columns:1fr}
  .hero h1,
  .page-hero h1{font-size:4rem}
  .section-title h2,
  .contact-box h2{font-size:2.7rem}
  .about-text h2{font-size:3rem}
  .home-hero{
    padding:22px 0 0;
    background:#080b0d;
  }
  .hero-container{
    gap:0;
    min-height:760px;
    padding:86px 34px 70px;
    background:#07090b;
    box-shadow:none;
  }
  .hero-container::before{
    inset:0;
    border-radius:0;
    background:
      linear-gradient(90deg,rgba(4,7,9,0.95) 0%,rgba(6,9,11,0.76) 34%,rgba(8,10,12,0.24) 68%,rgba(4,7,9,0.22) 100%),
      linear-gradient(to bottom,rgba(4,7,9,0.76),rgba(4,7,9,0.08) 28%,rgba(4,7,9,0.82));
  }
  .hero-right{
    position:absolute;
    inset:0;
    aspect-ratio:auto;
    justify-content:flex-end;
    border-radius:0;
    box-shadow:none;
  }
  .hero-right::before{
    width:100%;
    background:
      linear-gradient(90deg,rgba(5,8,10,0.94) 0%,rgba(6,9,11,0.74) 34%,rgba(8,10,12,0.2) 68%,transparent),
      linear-gradient(to bottom,rgba(5,8,10,0.52),transparent 28%,rgba(5,8,10,0.8));
  }
  .hero-right::after{height:22%}
  .hero-right img{
    width:92%;
    height:92%;
    max-height:none;
    margin:0;
    object-fit:contain;
    object-position:right center;
    margin-left:auto;
  }
  .about-image img{height:500px}
}

@media(max-width:700px){
  .container{width:min(100% - 34px,1200px)}
  .navbar{min-height:82px}
  .logo{font-size:1.08rem}
  .logo img{width:64px;height:64px}
  .nav-menu{inset:82px 0 auto 0}
  .hero,.page-hero{padding:58px 0}
  .home-hero{padding:28px 0 0}
  .hero h1,.page-hero h1{font-size:3rem}
  .section-title h2,
  .contact-box h2{font-size:2.25rem}
  .about-text h2{font-size:2.3rem}
  .hero-container{
    gap:26px;
    width:100%;
    min-height:760px;
    padding:76px 22px 54px;
    border-radius:0;
    box-shadow:none;
  }
  .hero-container::before{
    inset:0;
    border-radius:0;
  }
  .hero-left{padding-left:0}
  .hero-actions,.contact-actions{flex-direction:column;align-items:stretch}
  .hero-actions a,.contact-actions a,.submit-btn{width:100%}
  .hero-features,.form-row{grid-template-columns:1fr}
  .hero-right{
    aspect-ratio:4/3;
    min-height:0;
    border-radius:0;
    background:#080b0d;
  }
  .hero-right img{
    width:94%;
    max-width:100%;
    height:88%;
    max-height:none;
    object-fit:contain;
    object-position:center;
    margin:auto;
  }
  section{padding:64px 0}
  .booking-form,.contact-box,.about-wrapper{padding:26px;border-radius:24px}
  .service-card,.value-card,.contact-card{padding:28px}
  .about-image img{height:340px;border-radius:20px}
  .trip-image{height:225px}
  .whatsapp-float{width:58px;height:58px;right:16px;bottom:16px}
}
