:root{
  --bg0:#020617;
  --bg1:#020617;
  --card: rgba(255,255,255,.08);
  --card2: rgba(255,255,255,.10);
  --border: rgba(255,255,255,.16);
  --text: rgba(255,255,255,.92);
  --muted: rgba(148,163,184,.88);
  --muted2: rgba(148,163,184,.72);

  --a:#7c3aed;  /* violet */
  --b:#06b6d4;  /* cyan */
  --c:#f97316;  /* orange */
  --d:#22c55e;  /* green */
  --e:#f43f5e;  /* rose */

  --shadow: 0 18px 40px rgba(0,0,0,.38);
  --shadow2: 0 10px 26px rgba(0,0,0,.30);

  --radius: 18px;
  --radius2: 26px;
  --max: 1200px;
}

* { box-sizing: border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Ubuntu,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 700px at 15% 5%, rgba(124,58,237,.18), transparent 60%),
    radial-gradient(950px 650px at 80% 10%, rgba(6,182,212,.16), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 38%, var(--bg1));
  overflow-x:hidden;
}
p{ font-size: 12px; color: var(--muted2); }
.fx{
  position:fixed;
  inset:0;
  pointer-events:none;
  opacity:.45;
  mix-blend-mode:soft-light;
  background:
    radial-gradient(900px 750px at 20% 20%, rgba(255,255,255,.05), transparent 60%),
    radial-gradient(800px 650px at 70% 80%, rgba(255,255,255,.04), transparent 60%);
  animation:floatGlow 12s ease-in-out infinite alternate;
}
@keyframes floatGlow{
  from{ transform: translate3d(0,0,0) scale(1); filter: blur(0px); }
  to{ transform: translate3d(0,-10px,0) scale(1.02); filter: blur(0.4px); }
}

a{ color:inherit; text-decoration:none; }
.wrap{ width:min(var(--max), calc(100% - 40px)); margin-inline:auto; }

/* Header */
header{
  position:sticky;
  top:0;
  z-index:50;
  background: linear-gradient(180deg, rgba(2,6,23,.96), rgba(2,6,23,.88));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148,163,184,.40);
}

.topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0 10px;
}

/* Logo */
.logo{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:260px;
}
.mark{
  width:48px; height:48px;
  border-radius:18px;
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle at 20% 20%, #e5e7eb, transparent 55%),
             conic-gradient(from 210deg, var(--b), var(--a), var(--e), var(--c), var(--b));
  box-shadow:0 14px 40px rgba(15,23,42,.75);
}
.markCore{
  position:absolute;
  inset:9px;
  border-radius:14px;
  background:radial-gradient(circle at 30% 20%, #f9fafb, #0f172a);
  box-shadow:inset 0 0 0 1px rgba(15,23,42,.85);
}
.markHalo{
  position:absolute;
  inset:-40%;
  background:radial-gradient(circle, rgba(248,250,252,.95), transparent 60%);
  opacity:.28;
  mix-blend-mode:screen;
}
.logoText{
  display:flex;
  flex-direction:column;
  line-height:1.08;
}
.brandSwap{
  font-weight:800;
  letter-spacing:.2px;
  font-size:14px;
  position:relative;
  height:18px;
  overflow:hidden;
}
.brandSwap span{
  position:absolute;
  left:0; top:3px;
  width:100%;
  transform: translateY(0);
  opacity:1;
  transition:.5s ease;
  white-space:nowrap;
}
.brandSwap .hi{
  transform: translateY(120%);
  opacity:0;
  font-family:Kalam,Ubuntu,sans-serif;
}
.brandSwap.swap .en{ transform: translateY(-120%); opacity:0; }
.brandSwap.swap .hi{ transform: translateY(0); opacity:1; }

.logoSub{
  margin-top:3px;
  display:flex;
  align-items:center;
  gap:6px;
  font-size:11px;
  color:var(--muted2);
}
.logoBadge{
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.55);
  background:rgba(15,23,42,.96);
}
.logoSeparator{ opacity:.6; }
.logoRole{ letter-spacing:.1px; }

nav{
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:flex-end;
  flex:1;
}
.navlinks{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
  position:relative;
}
.navlinks a{
  font-size:12px;
  color:rgba(226,232,240,.92);
  padding:10px 10px;
  border-radius:12px;
  position:relative;
  transition:.25s ease;
}
.navlinks a:hover{
  color:#fff;
  background:rgba(15,23,42,.88);
  transform: translateY(-1px);
}
.navlinks a::after{
  content:"";
  position:absolute;
  left:12px; right:12px; bottom:7px;
  height:2px;
  border-radius:2px;
  background:linear-gradient(90deg,var(--b),var(--a),var(--e));
  transform:scaleX(0);
  transform-origin:left;
  transition:.25s ease;
  opacity:.9;
}
.navlinks a:hover::after{ transform:scaleX(1); }

.menuBtn{
  display:none;
  border:1px solid rgba(148,163,184,.70);
  background:#111827;
  color:#f9fafb;
  border-radius:14px;
  padding:9px 12px;
  cursor:pointer;
  font-size:13px;
}

/* Collapsible live info strip */
.stripWrap{
  position:relative;
  transition: max-height .35s ease, transform .35s ease, opacity .35s ease;
  max-height:500px;
}
.stripWrap.collapsed{
  max-height:42px;
  overflow:hidden;
}
.strip{
  padding:10px 0 14px;
}
.stripGrid{
  display:grid;
  grid-template-columns:1.25fr .85fr .85fr 1fr;
  gap:12px;
  align-items:stretch;
}

/* compress visuals when collapsed */
.stripWrap.collapsed .strip{
  padding-top:6px;
  padding-bottom:6px;
}
.stripWrap.collapsed .stripGrid{
  transform:scale(.92);
  opacity:0;
  pointer-events:none;
}

/* Toggle bar */
.stripToggle{
  position:absolute;
  left:50%;
  bottom:4px;
  transform:translateX(-50%);
  display:flex;
  align-items:center;
  gap:10px;
  padding:4px 10px;
  border:none;
  border-radius:999px;
  background:rgba(15,23,42,.98);
  border:1px solid rgba(148,163,184,.70);
  box-shadow:0 8px 20px rgba(0,0,0,.45);
  cursor:pointer;
  z-index:5;
}
.stripLine{
  width:46px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--b),var(--a),var(--e));
  opacity:.85;
}
.stripArrow{
  width:20px;
  height:20px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.75);
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at 30% 20%, #e5e7eb, #020617);
  color:#0f172a;
  font-size:11px;
  position:relative;
}
.stripArrow::before{
  content:"⌃";
  position:relative;
  top:1px;
}
.stripWrap.collapsed .stripArrow::before{
  content:"⌄";
  top:-1px;
}
.stripToggle:hover .stripArrow{
  transform:translateY(-1px);
}

/* Live strip cards */
.rectCard{
  border-radius:18px;
  background:linear-gradient(180deg, rgba(15,23,42,.96), rgba(15,23,42,.92));
  border:1px solid rgba(148,163,184,.65);
  box-shadow:var(--shadow2);
  overflow:hidden;
  position:relative;
}
.rectCard::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(500px 180px at 10% 0%, rgba(6,182,212,.18), transparent 65%),
    radial-gradient(520px 200px at 90% 0%, rgba(124,58,237,.16), transparent 65%),
    radial-gradient(450px 160px at 50% 110%, rgba(244,63,94,.14), transparent 65%);
  pointer-events:none;
}

.rectInner{
  position:relative;
  padding:12px 14px;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:8px;
}
.miniTitle{
  font-size:11px;
  color:var(--muted2);
  letter-spacing:.2px;
}
.bigLine{
  font-size:13px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.chip{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(15,23,42,.96);
  border:1px solid rgba(148,163,184,.65);
  font-size:12px;
  color:rgba(248,250,252,.92);
}
.dot{
  width:8px; height:8px;
  border-radius:99px;
  background:linear-gradient(180deg,var(--d),var(--b));
  box-shadow:0 0 0 4px rgba(34,197,94,.20);
}

/* Diamond time cards */
.diamondWrap{
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(15,23,42,.98), rgba(15,23,42,.94));
  border:1px solid rgba(148,163,184,.70);
  box-shadow:var(--shadow2);
  position:relative;
  overflow:hidden;
}
.diamondWrap::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(520px 240px at 20% 20%, rgba(249,115,22,.16), transparent 60%);
  pointer-events:none;
}
.diamond{
  width:106px;
  height:106px;
  transform:rotate(45deg);
  border-radius:22px;
  border:1px solid rgba(148,163,184,.85);
  background:rgba(15,23,42,.96);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 18px 60px rgba(0,0,0,.55);
  position:relative;
}
.diamond::after{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:24px;
  background:conic-gradient(from 90deg, rgba(6,182,212,.0), rgba(6,182,212,.35), rgba(124,58,237,.35), rgba(244,63,94,.35), rgba(6,182,212,.0));
  filter:blur(10px);
  opacity:.7;
  z-index:-1;
}
.diamondContent{
  transform:rotate(-45deg);
  text-align:center;
  padding:10px;
  width:140px;
}
.timeTitle{
  font-size:11px;
  color:rgba(226,232,240,.88);
  margin-bottom:4px;
}
.timeValue{
  font-weight:700;
  font-size:14px;
  letter-spacing:.2px;
}
.timeSub{
  font-size:10px;
  color:rgba(148,163,184,.86);
  margin-top:2px;
}

/* Hero */
.hero{
  padding:34px 0 20px;
  position:relative;
}
.heroGrid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.heroCard{
  background:linear-gradient(180deg, rgba(15,23,42,.98), rgba(15,23,42,.94));
  border:1px solid rgba(148,163,184,.80);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.heroCard::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(800px 340px at 12% 0%, rgba(124,58,237,.20), transparent 60%),
    radial-gradient(760px 340px at 95% 15%, rgba(6,182,212,.18), transparent 62%),
    radial-gradient(700px 320px at 70% 120%, rgba(249,115,22,.14), transparent 64%);
  pointer-events:none;
}
.heroInner{
  position:relative;
  padding:26px 24px;
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(15,23,42,.96);
  border:1px solid rgba(148,163,184,.75);
  font-size:12px;
  color:rgba(226,232,240,.96);
  margin-bottom:12px;
}
.kicker i{
  width:10px;height:10px;border-radius:99px;
  background:conic-gradient(from 180deg,var(--b),var(--a),var(--e),var(--b));
  box-shadow:0 0 0 4px rgba(6,182,212,.18);
}

h1{
  margin:0;
  font-size:clamp(26px, 3.2vw, 44px);
  line-height:1.08;
  letter-spacing:.2px;
}
.sub{
  margin:12px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
  max-width:58ch;
}

.ctaRow{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
  align-items:center;
}
.btn{
  border:none;
  cursor:pointer;
  border-radius:16px;
  padding:12px 14px;
  font-weight:600;
  letter-spacing:.2px;
  transition:.25s ease;
  display:inline-flex;
  align-items:center;
  gap:10px;
  user-select:none;
  font-size:13px;
}
.btnPrimary{
  color:#020617;
  background:linear-gradient(90deg, rgba(6,182,212,1), rgba(124,58,237,1), rgba(244,63,94,1));
  box-shadow:0 18px 50px rgba(124,58,237,.18);
}
.btnPrimary:hover{ transform:translateY(-2px); filter:brightness(1.03); }
.btnGhost{
  color:rgba(226,232,240,.96);
  background:rgba(15,23,42,.96);
  border:1px solid rgba(148,163,184,.78);
}
.btnGhost:hover{ transform:translateY(-2px); background:#020617; }

.heroSide{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.sideCard{
  background:rgba(15,23,42,.98);
  border:1px solid rgba(148,163,184,.80);
  border-radius:var(--radius);
  box-shadow:var(--shadow2);
  padding:14px;
  position:relative;
  overflow:hidden;
}
.sideCard::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(520px 240px at 20% 20%, rgba(34,197,94,.16), transparent 60%);
  pointer-events:none;
}
.sideInner{ position:relative; }
.sideTitle{ font-weight:700; margin:0 0 8px; font-size:13px; }
.sideText{ margin:0; color:var(--muted); font-size:12px; line-height:1.7; }

.pillGrid{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}
.pill{
  padding:10px 10px;
  border-radius:16px;
  background:rgba(15,23,42,.96);
  border:1px solid rgba(148,163,184,.75);
  font-size:12px;
  color:rgba(226,232,240,.96);
}

/* Sections */
section.block{ padding:48px 0; }

/* Anchor offset so section heads are not hidden under sticky header */
section[id]{
  scroll-margin-top:90px;
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.h2{
  margin:0;
  font-size:18px;
  letter-spacing:.2px;
}
.hint{
  margin:0;
  color:var(--muted2);
  font-size:12px;
  max-width:70ch;
  line-height:1.6;
}

/* Cards */
.grid3{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}
.card{
  border-radius:var(--radius);
  background:linear-gradient(180deg, rgba(15,23,42,.98), rgba(15,23,42,.94));
  border:1px solid rgba(148,163,184,.80);
  box-shadow:var(--shadow2);
  padding:16px 16px 16px 18px;
  position:relative;
  overflow:hidden;
  min-height:120px;
}
.card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:radial-gradient(560px 220px at 20% 0%, rgba(6,182,212,.12), transparent 60%);
  pointer-events:none;
}
.card::after{
  content:"";
  position:absolute;
  left:0; top:10px; bottom:10px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--b), var(--a), var(--e));
  opacity:.75;
}
.card > *{ position:relative; }
.cardTitle{
  margin:0 0 8px;
  font-size:14px;
  font-weight:700;
}
.cardText{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
}

/* Guide mini-profile */
.guideAvatar{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  min-width:80px;
}
.guidePhoto{
  width:64px;
  height:64px;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 10%, #e5e7eb, transparent 55%),
    linear-gradient(135deg, #0f172a, #1f2937);
  border:2px solid rgba(148,163,184,.85);
  box-shadow:0 10px 28px rgba(0,0,0,.45);
}
.guideBadge{
  font-size:11px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.65);
  background:rgba(22,163,74,.15);
  color:rgba(190,242,100,.96);
}
.guideInfo{
  flex:1;
  display:flex;
  flex-direction:column;
}
.guideMeta{
  margin-top:6px;
  display:flex;
  flex-wrap:wrap;
  gap:8px 16px;
  font-size:11px;
  color:var(--muted2);
}
.guideMeta b{
  font-weight:600;
  color:rgba(248,250,252,.96);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(12,1fr);
  gap:12px;
}
.shot{
  grid-column:span 4;
  border-radius:22px;
  border:1px solid rgba(148,163,184,.80);
  background:rgba(15,23,42,.96);
  overflow:hidden;
  box-shadow:var(--shadow2);
  position:relative;
  min-height:220px;
}
.shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.03);
  filter:saturate(1.12) contrast(1.03);
  transition:.55s ease;
  display:block;
  opacity:.96;
}
.shot:hover img{ transform:scale(1.12); }
.shot .cap{
  position:absolute;
  left:12px; right:12px; bottom:12px;
  padding:10px 12px;
  border-radius:16px;
  background:rgba(15,23,42,.85);
  border:1px solid rgba(148,163,184,.75);
  backdrop-filter:blur(10px);
  font-size:12px;
  line-height:1.4;
}

/* Verification CTA*/
.verifyCTA{
  margin-top: 18px;
  padding: 16px 16px;
  border-radius: 20px;
  border: 1px solid rgba(34,197,94,.45);
  background: linear-gradient(135deg, rgba(34,197,94,.14 ), rgba(6,182,212,.12));
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.verifyTitle{
  margin: 0;
  font-weight: 700;
  font-size: 14px;
}
.verifySub{
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}
.verifyCTAText{
  max-width: 70ch;
}

/* Stories */
.quote{
  margin:0;
  padding:16px;
  border-radius:18px;
  background:rgba(15,23,42,.96);
  border:1px solid rgba(148,163,184,.80);
  color:rgba(248,250,252,.9);
  font-size:12px;
  line-height:1.7;
}
.quoteTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:6px;
}
.touristName{
  font-weight:600;
  font-size:12px;
}
.touristTag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-size:10px;
  padding:3px 8px;
  border-radius:999px;
  border:1px solid rgba(34,197,94,.65);
  background:rgba(22,163,74,.14);
  color:rgba(190,242,100,.96);
}
.tick{
  width:12px;
  height:12px;
  border-radius:999px;
  background:radial-gradient(circle at 30% 20%, #ecfdf5, #16a34a);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  position:relative;
}
.tick::before{
  content:"✓";
  font-size:9px;
  color:#022c22;
  position:relative;
  top:-0.5px;
}
.touristMeta{
  display:block;
  margin-top:8px;
  color:rgba(148,163,184,.86);
  font-size:11px;
}

/* stories header right */
.storiesHeadRight{
  display:flex;
  align-items:center;
  gap:10px;
}
.storiesBadge{
  font-size:11px;
  padding:4px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.75);
  background:rgba(15,23,42,.96);
  color:rgba(226,232,240,.96);
}
.storiesLink{
  font-size:11px;
  color:rgba(96,165,250,.96);
  text-decoration:none;
}
.storiesLink:hover{
  text-decoration:underline;
}

/* BOOKING + CONTACT */
.formGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
label{
  font-size:12px;
  color:rgba(226,232,240,.88);
}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.80);
  background:rgba(15,23,42,.96);
  color:rgba(248,250,252,.96);
  outline:none;
  box-shadow:inset 0 1px 0 rgba(15,23,42,1);
}
textarea{ min-height:120px; resize:vertical; }
.formActions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:10px;
  align-items:center;
}
/* Modern Inbuilt Date Picker with Availability - Enhanced Responsive & Stylish */
.date-picker-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  grid-column: 1 / -1;
  margin-bottom: 20px;
}
.date-field {
  position: relative;
}
.date-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: rgba(226,232,240,.88);
}
.date-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.date-input::placeholder {
  color: rgba(255,255,255,0.7);
}
.date-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 20px rgba(102,126,234,0.4);
}
.date-calendar {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  z-index: 100;
  width: min(280px, 90vw); /* Responsive width: max 280px, but 90% of viewport on small screens */
  max-width: 100%;
  color: white;
  opacity: 0;
  transform: translateY(-20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.date-calendar.show {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}
.date-calendar::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #667eea;
}
.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}
.cal-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3); /* Added shadow for depth */
}
.cal-nav-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}
.cal-nav-btn:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.1);
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px; /* Slightly smaller gap for mobile */
}
.cal-day-header {
  text-align: center;
  font-size: 10px; /* Smaller on mobile */
  text-transform: uppercase;
  opacity: 0.8;
  padding: 6px 0; /* Adjusted padding */
  letter-spacing: 1px;
  font-weight: 600;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 13px; /* Slightly larger for readability */
  text-shadow: 0 1px 1px rgba(0,0,0,0.2); /* Added subtle shadow */
  position: relative;
  overflow: hidden;
}
.cal-day::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  opacity: 0.1;
  z-index: -1;
}
.cal-day:hover:not(.past):not(.booked) {
  background: rgba(255,255,255,0.3);
  transform: scale(1.05) rotate(1deg); /* Added subtle rotation for fun */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.cal-day.available {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  animation: pulse 2s infinite;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.cal-day.booked {
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  cursor: not-allowed;
}
.cal-day.selected {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #333;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,215,0,0.6), inset 0 2px 4px rgba(0,0,0,0.1);
  animation: bounce 0.6s ease;
}
.cal-day.past {
  opacity: 0.3;
  cursor: not-allowed;
  background: rgba(255,255,255,0.1);
}
.cal-day.today {
  border: 2px solid #ffd700;
  background: rgba(255,215,0,0.2);
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: scale(1.1); }
  40% { transform: scale(1.15); }
  60% { transform: scale(1.12); }
}
.availability-note {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 11px;
  opacity: 0.8;
  margin-top: 10px;
  margin-bottom: 20px;
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}
.legend {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
  font-size: 10px;
  flex-wrap: wrap; /* Responsive wrap */
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
}
.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.avail { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.booked { background: linear-gradient(135deg, #ff6b6b, #ee5a52); }
/* Fancy dropdown arrows */
select#ratePlan, select#type{
  background-image: linear-gradient(45deg, transparent 50%, rgba(148,163,184,.9) 50%),
                    linear-gradient(135deg, rgba(148,163,184,.9) 50%, transparent 50%);
  background-position: calc(100% - 16px) calc(50% - 3px),
                       calc(100% - 11px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat:no-repeat;
  padding-right:30px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .formGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .date-picker-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .date-calendar {
    position: fixed; /* Better on mobile: center full-width */
    top: 30%;
    width: 90vw;
    left: 50%;
    max-width: 320px;
    padding: 24px;
    transform: translate(-50%, -50%) scale(0.95);
  }
  .date-calendar.show {
    transform: translate(-50%, -50%) scale(1);
  }
  
  /* Dim background for better focus on mobile */
  .date-calendar.show ~ body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: -1;
  }
  
  /* Additional stylish touches */
  .cal-day.booked::after {
    content: '';
    position: absolute;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
  .cal-day.available::after{
    content: '';
    position: absolute;
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.8;
  }
  .cal-header h4 {
    font-size: 14px;
  }
  .cal-day-header {
    font-size: 9px;
    padding: 4px 0;
  }
  .cal-day {
    font-size: 12px;
    position: relative;
  }
  .legend {
    gap: 10px;
    font-size: 9px;
  }
  .formActions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .date-calendar {
    padding: 16px;
    width: 98vw;
  }
  .cal-grid {
    gap: 4px;
  }
  .cal-day-header {
    padding: 3px 0;
  }
}

/* Map */
.mapCard{
  border-radius:22px;
  border:1px solid rgba(148,163,184,.75);
  background:rgba(15,23,42,.96);
  box-shadow:var(--shadow2);
  overflow:hidden;
  display:grid;
  grid-template-columns:1.3fr .7fr;
  min-height:360px;
}
.mapFrame{ position:relative; min-height:320px; }
.mapFrame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:saturate(1.05) contrast(1.02);
}
.mapInfo{
  padding:16px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.mapInfoTop{ display:flex; flex-wrap:wrap; gap:8px; }
.mapBadge{
  font-size:11px;
  padding:4px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.75);
  background:rgba(2,6,23,.65);
  color:rgba(226,232,240,.96);
}
.mapTitle{ margin:0; font-size:16px; font-weight:800; letter-spacing:.2px; }
.mapText{ margin:0; color:var(--muted); font-size:12px; line-height:1.7; }
.mapContacts{ display:flex; flex-direction:column; gap:8px; }
.mapLink{
  display:inline-flex;
  padding:10px 12px;
  border-radius:16px;
  border:1px solid rgba(148,163,184,.75);
  background:rgba(15,23,42,.96);
  font-size:12px;
  color:rgba(226,232,240,.96);
}
.mapLink:hover{ background:#020617; }


/* Footer */
footer{
  padding:30px 0 26px;
  border-top:1px solid rgba(148,163,184,.60);
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(6,182,212,.20), transparent 60%),
    #020617;
  position:relative;
  overflow:hidden;
}
footer::before{
  content:"";
  position:absolute;
  inset:-20%;
  background:radial-gradient(circle at 50% 120%, rgba(15,23,42,1), transparent 55%);
  opacity:.9;
  pointer-events:none;
}
.footerGrid{
  position:relative;
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:20px;
  align-items:flex-start;
}
.footCol{ position:relative; }

.footLogo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:8px;
}
.footLogo .mark{
  width:38px;
  height:38px;
  border-radius:14px;
}
.footLogoText{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.footBrandName{
  font-size:13px;
  font-weight:700;
  letter-spacing:.12em;
}
.footBrandSub{
  font-size:11px;
  color:var(--muted2);
}

.footTitle{
  margin:0 0 8px;
  font-weight:700;
  font-size:13px;
}
.footText{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
}
.footLinks a{
  display:block;
  padding:4px 0;
  color:rgba(226,232,240,.92);
  font-size:12px;
}
.footLinks a:hover{
  color:#fff;
  text-decoration:underline;
}

.footCTA{
  margin-top:12px;
  font-size:12px;
  padding-inline:14px;
}

.trustRow{
  margin-top:10px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.trustBadge{
  font-size:11px;
  padding:4px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.75);
  background:rgba(15,23,42,.96);
  color:rgba(226,232,240,.96);
}
.footContactLine{
  margin-top:6px;
  font-size:11px;
  color:rgba(148,163,184,.86);
}

.footBottom{
  position:relative;
  margin-top:18px;
  padding-top:10px;
  border-top:1px dashed rgba(51,65,85,.80);
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:space-between;
  align-items:center;
}
.footSmall{
  font-size:11px;
  color:rgba(148,163,184,.86);
}

/* Reveal animation */
.reveal{
  opacity:0;
  transform:translateY(16px);
  transition:.6s ease;
}
.reveal.on{
  opacity:1;
  transform:translateY(0);
}

/* Responsive */
@media (max-width:980px){
  .stripGrid{ grid-template-columns:1fr 1fr; }
  .heroGrid{ grid-template-columns:1fr; }
  .grid3{ grid-template-columns:1fr; }
  .gallery .shot{ grid-column:span 6; }
  .footerGrid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:720px){
  .logo{ min-width:auto; }
  nav{ justify-content:flex-end; }
  .menuBtn{
    display:inline-flex;
    align-items:center;
    gap:6px;
  }

  .navlinks{
    display:none;
    position:absolute;
    left:0;
    right:0;
    top:64px;
    padding:14px 18px 10px;
    border-radius:0 0 18px 18px;
    background:#020617;
    border-bottom:1px solid rgba(148,163,184,.75);
    box-shadow:0 14px 40px rgba(15,23,42,.85);
    backdrop-filter:none;
    z-index:60;
    flex-direction:column;
    align-items:flex-start;
    gap:4px;
  }
  .navlinks.open{ display:flex; }

  .navlinks a{
    width:100%;
    padding:12px 6px;
    font-size:13px;
    color:rgba(248,250,252,.90);
    border-radius:8px;
  }
  .navlinks a::after{ display:none; }
  .navlinks a:active,
  .navlinks a:hover{
    background:#0f172a;
    transform:none;
  }

  .stripWrap.collapsed{
    max-height:44px;
  }
  .stripToggle{
    bottom:2px;
  }

  .formGrid{ grid-template-columns:1fr; }
  .gallery .shot{ grid-column:span 12; }
  .footerGrid{
    grid-template-columns:1fr;
  }
  .footBottom{
    flex-direction:column;
    align-items:flex-start;
  }
}

.socialIcons {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.socialIcon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.socialIcon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
  transition: transform 0.3s ease;
}

.socialIcon:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.socialIcon:hover svg {
  transform: scale(1.2) rotate(5deg);
}

/* Brand-specific hover colors */
.socialIcon.whatsapp:hover { background: #25D366; }
.socialIcon.instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.socialIcon.email:hover { background: #4285F4; }
.socialIcon.google:hover { background: #DB4437; }
.socialIcon.vk:hover { background: #4680C2; }
.socialIcon.odnoklassniki:hover { background: #F4731C; }

/* Responsive adjustment */
@media (max-width: 768px) {
  .socialIcons { justify-content: center; }
  .socialIcon { width: 44px; height: 44px; }
  .socialIcon svg { width: 24px; height: 24px; }
}

/* --- CALCULATOR WIDGET STYLES --- */
.calc-widget {
  grid-column: 1 / -1;
  margin-top: 20px;
  margin-bottom: 20px;
  perspective: 1000px;
}

.calc-glass {
  background: rgba(2, 6, 23, 0.7);
  border: 1px solid rgba(0, 243, 255, 0.3);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.calc-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0066ff, #00f3ff);
  box-shadow: 0 0 10px #00f3ff;
}

.calc-header {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00f3ff;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-size: 12px;
}

.calc-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #cbd5e1;
}

.c-value {
  font-weight: 600;
  color: #a3a2a2;
}

.calc-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 5px 0;
}

.calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
}

.total-label {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.total-amount-wrap {
  display: flex;
  align-items: center;
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.4);
}

.currency {
  font-size: 16px;
  margin-right: 4px;
  color: #00f3ff;
}

.total-amount {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Ubuntu', sans-serif;
  line-height: 1;
}

.calc-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
  margin-top: 5px;
  font-style: italic;
}

/* Animation for Price Change */
@keyframes pricePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); color: #00f3ff; }
  100% { transform: scale(1); }
}

.pop-anim {
  animation: pricePop 0.3s ease-out;
}

/* --- DISABLED FIELD STYLING --- */
.disabled-field {
  opacity: 0.5;
  pointer-events: none; /* Prevents clicking */
  filter: grayscale(100%);
  position: relative;
}

.disabled-field input {
  background-color: rgba(0,0,0,0.2) !important;
  cursor: not-allowed;
}

/* ToDate Wrapper Logic */
#toDateWrapper {
  transition: opacity 0.3s ease;
}

#toDateWrapper.disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* --- ROBOTIC NAVIGATION SYSTEM CSS --- */

:root {
  --neon-cyan: #00f3ff;
  --neon-blue: #0066ff;
  --glass-bg: rgba(2, 6, 23, 0.85);
  --robo-border: 1px solid rgba(0, 243, 255, 0.3);
  --trans-speed: 0.4s;
}

/* 1. Top Progress Bar */
.robo-top-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan), white);
  width: 0%; /* JS updates this */
  z-index: 9999;
  box-shadow: 0 0 10px var(--neon-cyan);
  transition: width 0.1s linear;
}

/* 2. Dock Container */
.robo-dock {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(100px); /* Hidden initially */
  z-index: 9990;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Robotic Bounce */
}

.robo-dock.visible {
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  pointer-events: all;
}

/* The Track (Line behind items - optional aesthetic) */
.robo-menu-track {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding: 10px;
  background: rgba(0,0,0,0.2);
  border-radius: 30px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
}

/* Menu Items */
.robo-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.robo-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.robo-link {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: var(--robo-border);
  border-radius: 12px; /* Robotic Squircle */
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.robo-link i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

/* Hover State */
.robo-link:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
  transform: scale(1.1);
}

/* ACTIVE STATE (The "Hide Link / Beacon" Strategy) */
.robo-link.active {
  background: var(--neon-cyan);
  color: #000;
  border-color: white;
  pointer-events: none; /* Disables click */
  transform: scale(1.15) rotate(45deg); /* Diamond shape */
  box-shadow: 0 0 20px var(--neon-cyan);
}
.robo-link.active i {
  transform: rotate(-45deg); /* Correct icon rotation */
  font-weight: 800;
}

/* TOOLTIPS (Holographic Labels) */
.robo-tooltip {
  position: absolute;
  right: 55px;
  background: rgba(2, 6, 23, 0.95);
  border: 1px solid var(--neon-cyan);
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--neon-cyan);
  font-family: 'Ubuntu', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(20px);
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
  text-shadow: 0 0 5px var(--neon-cyan);
}

/* Show tooltip on hover or active */
.robo-link:hover .robo-tooltip,
.robo-link.active .robo-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* LASER BEAM (The Connection Animation) */
.laser-beam {
  position: absolute;
  top: 50%;
  right: -20px; /* Connects tooltip to icon */
  width: 20px;
  height: 2px;
  background: var(--neon-cyan);
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  transition: opacity 0.2s, transform 0.3s ease;
}

/* Show laser only on Active state */
.robo-link.active .robo-tooltip .laser-beam {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
  box-shadow: 0 0 8px var(--neon-cyan);
}

/* Laser Sweep Animation */
.robo-link.active .robo-tooltip .laser-beam::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  width: 5px;
  height: 6px;
  background: white;
  filter: blur(2px);
  animation: laserSweep 1.5s infinite linear;
}

@keyframes laserSweep {
  0% { left: 0; opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* 3. Back To Top CORE + Ring */
.robo-core {
  width: 50px;
  height: 50px;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  border-radius: 50%;
  background: rgba(0,0,0,0.8);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.robo-core:hover {
  transform: scale(1.1);
}

.core-icon {
  position: absolute;
  color: var(--neon-cyan);
  font-size: 18px;
  animation: bounceUp 2s infinite;
}

@keyframes bounceUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Progress Ring SVG */
.progress-ring__circle {
  transition: stroke-dashoffset 0.1s linear;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
  stroke: var(--neon-cyan);
  stroke-dasharray: 126; /* 2 * PI * r(20) ~ 125.6 */
  stroke-dashoffset: 126;
  stroke-linecap: round;
}

/* Neon Pulse Effect on Ring */
.core-ripple {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid var(--neon-cyan);
  opacity: 0;
  animation: ripple 2s infinite ease-out;
}

@keyframes ripple {
  0% { transform: scale(0.8); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* MOBILE TOGGLE (Hidden on Desktop) */
.robo-mobile-toggle {
  display: none;
  width: 45px;
  height: 45px;
  background: var(--neon-blue);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  box-shadow: 0 0 15px var(--neon-blue);
  cursor: pointer;
  z-index: 10001;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 900px) {
  /* Tooltips hide on tablet to save space, only show on active */
  .robo-tooltip { display: none; }
  .robo-link.active .robo-tooltip { display: block; right: 50px; }
}

@media (max-width: 768px) {
  .robo-dock {
    right: 15px;
    bottom: 30px;
    top: auto;
    transform: translateY(100px); /* Hide below */
  }
  
  .robo-dock.visible {
    transform: translateY(0);
  }

  /* Hide the full track initially on mobile */
  .robo-menu-track {
    position: absolute;
    bottom: 60px;
    right: 0;
    opacity: 0;
    transform: scale(0);
    transform-origin: bottom right;
    transition: all 0.4s ease;
  }

  /* Show track when "Open" */
  .robo-dock.mobile-open .robo-menu-track {
    opacity: 1;
    transform: scale(1);
  }

  .robo-mobile-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Hide the CORE button inside track on mobile, use toggle as back-to-top logic or separate */
  .robo-core {
    display: none; /* On mobile, the track is just for navigation */
  }
}
