:root{
  /* DARK (default) */
  --bg: #06141a;
  --bg2:#091c22;
  --text:#f3f6fb;
  --muted: rgba(243,246,251,.72);
  --line: rgba(255,255,255,.10);
  --glass: rgba(255,255,255,.06);
  --shadow: 0 12px 35px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 28px;
  --accent: #ef6d49;
  --accent2:#1cc7fb;
  --max: 1180px;
}

*{ box-sizing:border-box; }
html,body{ min-height:100%; }

body{
  margin:0;
  font-family: "Montserrat", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);

  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(28,199,251,.12), transparent 60%),
    radial-gradient(900px 500px at 15% 25%, rgba(28,199,251,.06), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  background-repeat: no-repeat;
  background-attachment: fixed;

  overflow-x:hidden;
}

/* Light override (must NOT be overwritten later) */
body[data-theme="light"]{
  --bg: #f6f7fb;
  --bg2:#ffffff;
  --text:#0b0f14;
  --muted: rgba(11,15,20,.70);
  --line: rgba(0,0,0,.10);
  --glass: rgba(0,0,0,.04);
  --shadow: 0 12px 35px rgba(0,0,0,.10);

  background: linear-gradient(180deg, #ffffff 0%, #d6ddea   100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }


/* ---------- Layout ---------- */
.container{ width:min(var(--max), calc(100% - 40px)); margin:0 auto; }
.section{ padding: 70px 0; }
.section-title{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom: 22px;
}
.section-title h2{
  margin:0;
  font-weight:800;
  font-size: clamp(22px, 2.8vw, 36px);
  letter-spacing: .2px;
}
.section-title p{
  margin:0;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.5;
  font-size: 14px;
}

.title-exec h2{
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: .3px;
}

.title-exec p{
  margin-top: 8px;
  max-width: 520px;
  font-size: 14px;
  color: var(--muted);
}
.title-exec-icon{
  max-width: 640px;
}

.title-exec-icon .title-head{
  display:flex;
  align-items:center;
  gap:12px;
}

.title-exec-icon h2{
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 600;
  letter-spacing: .3px;
  margin:0;
}

.title-exec-icon .title-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--accent);
}


.title-exec-icon .title-icon svg{
  width:26px;
  height:26px;
  fill: currentColor;
  opacity:.85;
}

.title-exec-icon .title-line{
  width:48px;
  height:2px;
  background: var(--accent);
  border-radius:2px;
  margin:12px 0 10px;
}

.title-exec-icon p{
  margin:0;
  font-size:14px;
  color: var(--muted);
  line-height:1.6;
}


/* ---------- Topbar ---------- */
.topbar{
  position:fixed; top:0; left:0; right:0;
  z-index:50;
  background: rgba(7,9,12,.58);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

/* Light mode topbar */
body[data-theme="light"] .topbar{
  background: rgba(246,247,251,.75);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.topbar-inner{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
  height: 68px;
  display:flex; align-items:center; justify-content:space-between;
  gap:14px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width: 170px;
}
.brand .name{ display:none; }

.brand img{
  height: 40px; width:auto; object-fit:contain;
  display:block;
}
/* Cyan brand wordmark reads on both dark and light backgrounds */

.brand .name{
  display:flex; flex-direction:column; line-height:1.05;
}
.brand .name strong{ letter-spacing: .8px; font-size: 13px; }
.brand .name span{ color: var(--muted); font-size: 12px; margin-top:3px; }

.nav{
  display:flex; gap:18px; align-items:center;
  color: var(--text);
  font-size: 13px;
}
.nav a{ opacity:.85; }
.nav a:hover{ opacity:1; }

/* Light mode nav text */
body[data-theme="light"] .nav{
  color: rgba(11,15,20,.82);
}

.actions{
  display:flex; gap:10px; align-items:center;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  font-size: 13px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }

.btn.primary{
  background: linear-gradient(
    180deg,
    #ef6d4955 0%,
    #ef6d4955 100%
  );
  color: var(--text);
  border: 1px solid #ef6d4955;
  font-weight: 600;
}
.btn.primary:hover{ background: linear-gradient(135deg, rgba(239,109,73,.55), rgba(28,199,251,.30)); }
.btn.small{ padding: 10px 12px; border-radius: 13px; }

/* Light mode buttons */
body[data-theme="light"] .btn{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
body[data-theme="light"] .btn:hover{
  background: rgba(0,0,0,.06);
  border-color: rgba(0,0,0,.14);
}

.menu-btn{ display:none; }

/* ---------- Theme toggle switch ---------- */
.theme-toggle{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
}

body[data-theme="light"] .theme-toggle{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.04);
}

.theme-toggle .icon{
  font-size: 14px;
  opacity: .9;
  user-select:none;
}

.switch{
  position:relative;
  width: 44px;
  height: 24px;
  display:inline-block;
}

.switch input{
  opacity:0;
  width:0;
  height:0;
}

.slider{
  position:absolute;
  inset:0;
  cursor:pointer;
  border-radius: 999px;
  background: rgba(255,255,255,.20);
  border: 1px solid rgba(255,255,255,.18);
  transition: .2s;
}

body[data-theme="light"] .slider{
  background: rgba(0,0,0,.10);
  border: 1px solid rgba(0,0,0,.12);
}

.slider:before{
  content:"";
  position:absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,.25);
  transition: .2s;
}

body[data-theme="light"] .slider:before{
  background: #0b0f14;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.switch input:checked + .slider:before{
  transform: translate(20px, -50%);
}

/* ---------- Hero ---------- */
.hero{
  padding-top: 105px; /* space for fixed topbar */
  padding-bottom: 30px;
}

.hero-wrap{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
  position:relative;
  min-height: 560px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.72)),
    url("images/hero.jpg") center/cover no-repeat;
}

/* If your CSS is inside assets/images/, hero.jpg must be in same folder or change to url("assets/images/hero.jpg") in HTML inline style.
   Recommended: keep hero background in HTML style instead of here, OR change this path properly. */

.hero-inner{
  position:absolute; inset:0;
  display:flex; align-items:flex-end;
}

.hero-content{
  width: 100%;
  padding: 34px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
  align-items:end;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: #f3f6fb;
  font-size: 12px;
  width: fit-content;
}

.dot{
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 18px rgba(28,199,251,.85);
}

.hero h1{
  margin: 12px 0 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, 72px);
  line-height: .95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color:#f3f6fb
}

.hero p{
  margin: 0;
  color: var(--text);
  max-width: 620px;
  line-height: 1.6;
  font-size: 14px;
  color:#f3f6fb
}

.hero-cta{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top: 18px;
}

.hero-card{
  align-self:stretch;
  background: rgba(10,13,18,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(10px);
  display:flex; flex-direction:column; gap:12px;
  color:#f3f6fb
}

.hero-card h3{
  margin:0;
  font-size: 14px;
  letter-spacing:.3px;
  color:#f3f6fb
}
.hero-card .muted{
  color:rgba(243,246,251,.72);
}
.hero-points{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
  color:#f3f6fb;
  font-size: 13px;
  line-height:1.4;
}

.hero-points li{
  display:flex; gap:10px; align-items:flex-start;
  color:#f3f6fb
}

.check{
  width: 18px; height: 18px; border-radius: 6px;
  background: rgba(239,109,73,.18);
  border: 1px solid rgba(239,109,73,.35);
  display:inline-flex; align-items:center; justify-content:center;
  flex: 0 0 18px;
  margin-top: 1px;
}

.check:before{
  content:"✓";
  font-size: 12px;
  color: rgba(239,109,73,1);
  line-height:1;
  font-weight:900;
}

/* ---------- Experiences ---------- */
.exp-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.exp{
  position:relative;
  width:100%;
  padding:0;
  border:1px solid rgba(255,255,255,.10);
  background:#0b0f14;
  border-radius: var(--radius2);
  overflow:hidden;
  box-shadow: var(--shadow);
  cursor:pointer;
  display:block;
  aspect-ratio:3/4;
  transition: transform .25s ease, border-color .25s ease;
}
.exp:hover{ transform: translateY(-4px); border-color: rgba(28,199,251,.35); }
.exp:focus-visible{ outline:2px solid var(--accent2); outline-offset:2px; }
.exp img{ width:100%; height:100%; object-fit:cover; display:block; }

.exp-badge{
  position:absolute; top:14px; right:14px; z-index:2;
  display:inline-flex; align-items:center; gap:6px;
  padding:7px 12px; border-radius:999px;
  background:rgba(9,28,34,.55); border:1px solid rgba(255,255,255,.24);
  backdrop-filter:blur(6px);
  font-size:12px; font-weight:700; color:#fff;
}
.exp-badge svg{ width:15px; height:15px; fill:#fff; }

@media (max-width:700px){ .exp-grid{ grid-template-columns:1fr; } }

/* ---------- Lightbox / gallery slider ---------- */
.lightbox{
  position:fixed; inset:0; z-index:100;
  display:none; align-items:center; justify-content:center;
  background:rgba(4,10,14,.88);
  -webkit-backdrop-filter:blur(6px); backdrop-filter:blur(6px);
  padding:24px;
}
.lightbox.open{ display:flex; }
.lb-stage{
  position:relative;
  width:min(92vw, 520px);
  display:flex; align-items:center; justify-content:center;
}
.lb-stage img{
  width:100%; max-height:82vh; object-fit:contain;
  border-radius:18px; box-shadow:0 24px 60px rgba(0,0,0,.6);
}
.lb-close{
  position:absolute; top:18px; right:20px; z-index:2;
  width:44px; height:44px; border-radius:50%;
  border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.08);
  color:#fff; font-size:24px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.lb-close:hover{ background:rgba(255,255,255,.16); }
.lb-nav{
  position:absolute; top:50%; transform:translateY(-50%); z-index:2;
  width:48px; height:48px; border-radius:50%;
  border:1px solid rgba(255,255,255,.25); background:rgba(255,255,255,.08);
  color:#fff; font-size:26px; line-height:1; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
}
.lb-nav:hover{ background:rgba(255,255,255,.18); }
.lb-prev{ left:max(16px, 3vw); }
.lb-next{ right:max(16px, 3vw); }
.lb-dots{
  position:absolute; bottom:22px; left:50%; transform:translateX(-50%);
  display:flex; gap:9px; z-index:2;
}
.lb-dot{
  width:9px; height:9px; border-radius:50%;
  background:rgba(255,255,255,.4); border:0; padding:0; cursor:pointer;
}
.lb-dot.active{ background:var(--accent2); }

/* ---------- Packages ---------- */
.pkg-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.pkg{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  display:flex; flex-direction:column;
}

.pkg-poster{ display:block; position:relative; line-height:0; }
.pkg-poster img{ width:100%; height:auto; display:block; }

.pkg-body{
  padding:16px 16px 18px;
  display:flex; flex-direction:column; gap:10px;
}
.pkg-body h3{
  margin:0; font-size:18px; font-weight:800;
  text-transform:uppercase; letter-spacing:.5px; color:var(--text);
}
.pkg-meta{
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
  font-size:13px; color:var(--muted);
}
.pkg-price{ color:var(--accent); font-weight:700; }
.pkg-btn{ width:100%; margin-top:4px; }

/* ---------- Why / Contact ---------- */
.why{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 14px;
  margin-top: 18px;
}

.panel{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  padding: 18px;
}

.why ul{
  margin: 0;
  padding: 0;
  list-style:none;
  display:grid;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}

.why li{
  display:flex; gap:10px; align-items:flex-start;
}

.contact-grid{
  display:grid;
  gap: 10px;
  color: var(--text);
  font-size: 13px;
}

.contact-row{
  display:flex; justify-content:space-between; gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
}

.contact-row b{
  color: var(--text);
}

.muted{ color: var(--muted); }

/* ---------- Footer ---------- */
footer{
  padding: 26px 0 44px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--text);
  font-size: 13px;
}

.footer-inner{
  display:flex; justify-content:space-between; gap: 14px; align-items:center;
  flex-wrap:wrap;
}

/* ---------- Mobile ---------- */
@media (max-width: 980px){
  .hero-content{ grid-template-columns: 1fr; }
  .exp-grid{ grid-template-columns: 1fr; }
  .pkg-grid{ grid-template-columns: 1fr; }
  .why{ grid-template-columns: 1fr; }
  .nav{ display:none; }
  .menu-btn{ display:inline-flex; }
  .hero-wrap{ min-height: 620px; }
}

@media (max-width: 420px){
  .topbar-inner{ height: 64px; }
  .brand .name strong{ font-size: 12px; }
  .brand .name span{ font-size: 11px; }
  .hero-content{ padding: 18px; }
}

/* smooth anchors */
html{ scroll-behavior: smooth; }
.contact-wrap{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

@media (max-width: 980px){
  .contact-wrap{
    grid-template-columns: 1fr;
  }
}

.form-title{
  margin:0 0 6px;
  font-size: 16px;
}

.form-sub{
  margin:0 0 14px;
  font-size: 13px;
}

.form{
  display:grid;
  gap: 12px;
}

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

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

.field{
  display:grid;
  gap: 7px;
}

.field label{
  font-size: 12px;
  color: var(--muted);
}

.field input,
.field textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
}

.field textarea{ resize: vertical; }

.field input:focus,
.field textarea:focus{
  border-color: rgba(239,109,73,.45);
  box-shadow: 0 0 0 3px rgba(239,109,73,.18);
}

/* Light mode inputs */
body[data-theme="light"] .field input,
body[data-theme="light"] .field textarea{
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  color: var(--text);
}

.form-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* Fix bold color in light mode */
.contact-row b{ color: var(--text); }
/* Make form full-width and clean */
.form-wide{ max-width: 980px; margin: 0 auto; }

/* Professional footer */
.footer-pro{
  padding: 48px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}

body[data-theme="light"] .footer-pro{
  border-top: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .9fr .7fr;
  gap: 18px;
  align-items:start;
}

@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}

.footer-logo{
  display:flex;
  gap: 12px;
  align-items:center;
}

.footer-logo img{
  height: 46px;
  width: auto;
  object-fit: contain;
}

.footer-title{
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(243,246,251,.85);
}

body[data-theme="light"] .footer-title{
  color: rgba(11,15,20,.85);
}

.footer-links{
  display:grid;
  gap: 8px;
  font-size: 13px;
  color: rgba(243,246,251,.78);
}

body[data-theme="light"] .footer-links{
  color: rgba(11,15,20,.75);
}

.footer-links a{ opacity:.9; }
.footer-links a:hover{ opacity:1; }

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  align-items:center;
  flex-wrap:wrap;
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(243,246,251,.70);
  font-size: 13px;
}

body[data-theme="light"] .footer-bottom{
  border-top: 1px solid rgba(0,0,0,.08);
  color: rgba(11,15,20,.70);
}

.footer-social{
  display:flex;
  gap: 10px;
  align-items:center;
}
.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
  font-size:13px;
}

.footer-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color: var(--text);
}

.footer-list svg{
  width:18px;
  height:18px;
  fill: currentColor;
  opacity:.85;
  flex-shrink:0;
  margin-top:2px;
}

.footer-list a{ opacity:.9; }
.footer-list a:hover{ opacity:1; }

.footer-social-icons{
  display:flex;
  gap:14px;
  margin-top:6px;
}

.footer-social-icons a{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .15s ease, background .15s ease;
}

.footer-social-icons a:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
}

.footer-social-icons svg{
  width:18px;
  height:18px;
  fill: currentColor;
}

/* Light mode tweaks */
body[data-theme="light"] .footer-social-icons a{
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.10);
}


/* ---------- Travel Inspiration ---------- */
.insp-scroll{
  display:grid;
  grid-auto-flow:column;
  grid-auto-columns:262px;
  gap:16px;
  margin-top:22px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:10px;
  scrollbar-width:thin;
  scrollbar-color:rgba(255,255,255,.25) transparent;
}
.insp-scroll::-webkit-scrollbar{ height:8px; }
.insp-scroll::-webkit-scrollbar-thumb{ background:rgba(255,255,255,.16); border-radius:999px; }
.insp-scroll::-webkit-scrollbar-track{ background:transparent; }
body[data-theme="light"] .insp-scroll::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.18); }

.insp{
  scroll-snap-align:start;
  position:relative;
  aspect-ratio:3/4;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  box-shadow:var(--shadow);
  display:block;
}
.insp img{ width:100%; height:100%; object-fit:cover; display:block; }
.insp .insp-wa{
  position:absolute; top:12px; right:12px; z-index:2;
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:rgba(9,28,34,.5); border:1px solid rgba(255,255,255,.28);
  backdrop-filter:blur(6px);
}
.insp .insp-wa svg{ width:20px; height:20px; fill:#fff; }

@media (max-width:600px){ .insp-scroll{ grid-auto-columns:80%; } }
