:root {
--primary: #5254e0;
--primary-light: #6e7be9;
--dark: #0f172a;
--gray: #64748b;
--light: #f8fafc;
--glass: rgba(255, 255, 255, 0.15);
--glass-border: rgba(255, 255, 255, 0.2);
}

html {
  scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
padding-top: 110px;
font-family: 'Inter', sans-serif;
background: linear-gradient(-45deg, #5c5edb, #7a4fde, #1a1274, #f59e0b);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
color: white;
line-height: 1.6;
min-height: 100svh;
}
/*#5c5edb*/
@keyframes gradient {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  inset: 0 0 auto 0;

  background: var(--header-bg, #1b237e); /* blue/purple */
  border-bottom: 1px solid var(--glass-border);

  /* make header tall enough for safety + nav */
  min-height: calc(110px + env(safe-area-inset-top));

  /* push *content* down */
  padding-top: env(safe-area-inset-top);
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);

  display: flex;
  align-items: center;
  justify-content: space-between;

  /* glass effect optional */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(142, 37, 253, 0.5);
}


header.scrolled {
    background: #210555;  
}

       
nav {
max-width: 1400px;
margin: 0 auto;
padding: 0 5%;
height: 100%;
display: flex;
align-items: center;
justify-content: space-between;
position: relative;
}

.brand {
display: flex;
align-items: center;
gap: 16px;
}

.logo {
font-size: 2.1rem;
font-weight: 700;
color: white;
text-decoration: none;
white-space: nowrap;
}

.logo span { color: #fbbf24; }

.bb_logo {
height: 140px;
width: auto;
object-fit: contain;
}

/* Hamburger */
.hamburger {
display: none;
flex-direction: column;
justify-content: space-between;
width: 36px;
height: 28px;
cursor: pointer;
z-index: 1100;
}

.hamburger span {
width: 100%;
height: 4px;
background: white;
border-radius: 2px;
transition: all 0.35s ease;
transform-origin: center;
}

.menu-toggle:checked + .hamburger span:nth-child(1) {
transform: translateY(12px) rotate(45deg);
}
.menu-toggle:checked + .hamburger span:nth-child(2) {
opacity: 0;
}
.menu-toggle:checked + .hamburger span:nth-child(3) {
transform: translateY(-12px) rotate(-45deg);
}

/* Nav Links - Desktop / Tablet */
.nav-links {
display: flex;
}

.nav-links ul {
display: flex;
list-style: none;
gap: 2.5rem;
margin: 0;
padding: 0;
}

.nav-links a {
color: white;
text-decoration: none;
font-weight: 500;
font-size: 1.1rem;
transition: color 0.25s;
}

.nav-links a:hover,
.nav-links a:focus {
color: #fbbf24;
}

/* ─── MOBILE MENU (with blurred background) ─────────── */
@media (max-width: 640px) {
header {
height: 90px;
}

.bb_logo {
height: 90px;
}

.logo {
font-size: 1.7rem;
}

.hamburger {
display: flex;
}

.nav-links {
position: fixed;
top: 0;
right: 0;
bottom: 0;
width: 70%;                  /* or 75% / 80% – whatever feels best */
height: 80vh;               /* ← this is the key fix */
background: rgba(15, 23, 42, 0.78);
backdrop-filter: blur(20px) saturate(150%);
-webkit-backdrop-filter: blur(20px) saturate(150%);
transform: translateX(100%);
transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
padding: 110px 6% 6%;
z-index: 999;
border-left: 1px solid rgba(255, 255, 255, 0.1);
overflow-y: auto;            /* scroll if content is very long */
}

.menu-toggle:checked ~ .nav-links {
transform: translateX(0);
}

.nav-links ul {
flex-direction: column;
gap: 2.8rem;
margin: 0;
padding: 0;
}

.nav-links li a {
font-size: 1.45rem;
padding: 0.7rem 0;
display: block;
}

.brand {
gap: 12px;
}
}

/* Optional: more space on very large screens */
@media (min-width: 1200px) {
.nav-links ul {
    gap: 3.2rem;
}
.nav-links a {
    font-size: 1.18rem;
}
}

.hero {
padding: 160px 5% 100px;
text-align: center;
max-width: 1200px;
margin: 0 auto;
}

.hero h1 {
font-size: 4rem;
margin-bottom: 1rem;
background: linear-gradient(to right, #fff, #fbbf24);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.hero p {
font-size: 1.3rem;
max-width: 700px;
margin: 0 auto 2rem;
opacity: 0.9;
}

.btn {
display: inline-block;
padding: 14px 32px;
background: white;
color: var(--primary);
border-radius: 50px;
font-weight: 600;
text-decoration: none;
margin: 0 10px;
transition: 0.3s;
box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.btn-outline {
background: transparent;
border: 2px solid white;
color: white;
}

.btn-outline:hover {
background: white;
color: var(--primary);
}

/* 1 Sec Pop Up Start */
.btn-pop:active::after {
content: "Contact us";
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background: rgba(255, 255, 255, 0.2); /* glass effect */
backdrop-filter: blur(10px);
color: #fff;
font-size: 3rem;
font-weight: bold;
text-align: center;
padding: 40px 60px;
border-radius: 20px;
opacity: 1;
pointer-events: none;
z-index: 9999;

animation: fadeOut 1s forwards; /* total duration 1 second */
}

@keyframes fadeOut {
0% { opacity: 1; }
85% { opacity: 1; }  /* stay fully visible 85% of animation */
100% { opacity: 0; } /* fade out at the very end */
}




section {
padding: 100px 5%;
max-width: 1400px;
margin: 0 auto;
}

.section-title {
text-align: center;
font-size: 2.8rem;
margin-bottom: 4rem;
background: linear-gradient(to right, #fff, #fbbf24);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}

.services-grid, .destinations-grid, .testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
}

.card {
background: var(--glass);
backdrop-filter: blur(15px);
border-radius: 20px;
padding: 2rem;
border: 1px solid var(--glass-border);
transition: 0.4s;
}

.card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card i {
font-size: 3rem;
margin-bottom: 1rem;
color: #fbbf24;
}

.destinations-grid .card {
height: 300px;
display: flex;
flex-direction: column;
justify-content: end;
color: white;
text-align: center;
background-size: cover;
background-position: center;
}

.destinations-grid h3 { font-size: 2rem; margin-bottom: 0.5rem; }

.testimonials-grid .card {
text-align: center;
}

.testimonials-grid img {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 1rem;
border: 4px solid rgba(255,255,255,0.2);
}

.process {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
text-align: center;
}

.process .step {
background: var(--glass);
padding: 2rem;
border-radius: 20px;
border: 1px solid var(--glass-border);
}

.step-number {
width: 60px;
height: 60px;
background: #fbbf24;
color: #0f172a;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.8rem;
font-weight: bold;
margin: 0 auto 1.5rem;
}

footer {
background: rgba(0,0,0,0.3);
padding: 4rem 5% 2rem;
backdrop-filter: blur(10px);
}

.footer-content {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}

.footer-col h3 {
margin-bottom: 1.5rem;
font-size: 1.4rem;
}

.footer-col ul {
list-style: none;
}

.footer-col ul li {
margin-bottom: 0.8rem;
}

.footer-col a {
color: rgba(255,255,255,0.8);
text-decoration: none;
transition: 0.3s;
}

.footer-col a:hover { color: #fbbf24; }

.social-links a {
font-size: 1.5rem;
margin-right: 1rem;
color: white;
}

@media (max-width: 768px) {
.hero h1 { font-size: 3rem; }
}
