:root {
  --bs-primary: #6B3FE0;
  --bs-secondary: #FF7A3D;
  --bs-dark: #191B4D;
  --bs-gradient: linear-gradient(135deg, #FF7A3D, #A23DE6, #6B3FE0);
  --brand-dark: #191B4D;
  --grad: linear-gradient(135deg, #FF7A3D, #A23DE6 40%, #6B3FE0);
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}


.btn-gradient {
  background: var(--bs-gradient);
  border: none;
}

.btn-gradient:hover {
  opacity: 0.9;
}

.bg-gradient {
  background: var(--bs-gradient);
}


/* ==== Modern Navbar Polish ==== */
.fw-800{ font-weight:800; }

/* --- Navbar Modern Style --- */
.glass-nav {
  background: rgba(255,255,255,0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.navbar-scrolled {
  background: rgba(255,255,255,0.95) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Brand */
.navbar-brand img {
  transition: transform 0.3s ease;
}
.navbar-brand:hover img {
  transform: rotate(-5deg) scale(1.05);
}

/* Nav links */
.nav-link {
  font-weight: 600;
  color: #191B4D;
  position: relative;
  transition: color 0.25s ease;
}
.nav-link:hover {
  color: #6B3FE0;
}
.nav-link.fancy-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(135deg, #FF7A3D, #A23DE6, #6B3FE0);
  transition: width 0.3s ease;
}
.nav-link.fancy-link:hover::after,
.nav-link.fancy-link.active::after {
  width: 100%;
}

/* Offcanvas polish */
.offcanvas {
  background: #fff;
}
.offcanvas .nav-link {
  font-size: 1.1rem;
  color: #191B4D;
}

/* Gradient button */
.btn-gradient {
  background: linear-gradient(135deg, #FF7A3D, #A23DE6, #6B3FE0);
  border: none;
  box-shadow: 0 4px 10px rgba(107,63,224,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(107,63,224,0.4);
}

/* Ensure mobile offcanvas never shows on desktop layouts */
@media (min-width: 992px) { /* lg breakpoint */
  .offcanvas.d-lg-none { display: none !important; }
}

/* ====== HERO ====== */
.py-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }

.hero-neo {
  background: radial-gradient(1200px 600px at 10% -10%, rgba(255,122,61,.18), transparent 60%),
              radial-gradient(1000px 500px at 110% 10%, rgba(162,61,230,.18), transparent 60%),
              #FDFFF9;
  position: relative;
}

.text-gradient {
  background: var(--bs-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-badge {
  display: inline-block;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(25,27,77,0.06);
  color: var(--brand-dark);
  font-weight: 700;
  font-size: .85rem;
}

.btn-ghost {
  border: 2px solid #191B4D;
  color: #191B4D;
  background: transparent;
}
.btn-ghost:hover { color: #fff; background: #191B4D; }

.hero-points li { color: #475569; font-weight: 600; }

/* Media collage */
.hero-media {
  position: relative;
  width: min(520px, 96%);
  aspect-ratio: 4/3;
  border-radius: 24px;
  margin: 0 auto;
  overflow: visible;
}
.hero-img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(25,27,77,0.12);
}
.hero-img.main {
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-img.tag {
  width: 46%;
  height: 48%;
}
.hero-img.tag.top-left { top: -12%; left: -10%; transform: rotate(-3deg); }
.hero-img.tag.bottom-right { bottom: -12%; right: -10%; transform: rotate(3deg); }

/* Floating glass card */
.hero-card {
  position: absolute;
  left: -10%;
  bottom: 10%;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(25,27,77,.08);
  border-radius: 16px;
  padding: .8rem 1rem;
  min-width: 210px;
  animation: floatY 6s ease-in-out infinite;
}
.hero-card .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.15);
}

/* Trust logos */
.hero-trust img { opacity: .7; filter: grayscale(100%); transition: opacity .2s ease; }
.hero-trust img:hover { opacity: 1; filter: none; }

/* Decorative blobs */
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  filter: blur(60px); opacity: .35;
}
.blob-1 { width: 320px; height: 320px; left: -80px; top: -60px; background: #FF7A3D; }
.blob-2 { width: 320px; height: 320px; right: -80px; bottom: -60px; background: #6B3FE0; }

/* Animation */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

/* Responsiveness */
@media (max-width: 991.98px){
  .hero-img.tag.top-left { top: -10%; left: -6%; }
  .hero-img.tag.bottom-right { bottom: -10%; right: -6%; }
  .hero-card { left: -4%; bottom: 6%; }
}
@media (max-width: 575.98px){
  .hero-media { aspect-ratio: 16/11; border-radius: 18px; }
  .hero-img.tag { display: none; }             /* simplify on very small screens */
  .hero-card { position: static; margin-top: .8rem; }
}

/* SERVICES */
.bg-soft-dark { background: rgba(25,27,77,0.06); color: #191B4D; }
.services-neo { position: relative; }
.services-neo .service-card{
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(25,27,77,0.06);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.services-neo .service-card::before{
  /* gradient top border */
  content:"";
  position:absolute; left:0; right:0; top:0; height:4px; border-radius:18px 18px 0 0;
  background: var(--bs-gradient);
}
.services-neo .service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(25,27,77,0.10);
  border-color: rgba(25,27,77,0.12);
}
.icon-pill{
  width:48px; height:48px; border-radius:14px;
  display:grid; place-items:center;
  background: linear-gradient(135deg, #FF7A3D1a, #6B3FE01a);
  color:#191B4D;
}
.mini-list{
  margin:0; padding-left:1.2rem; color:#475569; font-weight:600; font-size:.95rem;
}
.mini-list li{ list-style: disc; margin-bottom:.25rem; }

/* Responsive refinements */
@media (max-width: 575.98px){
  .services-neo .service-card{ padding:18px; }
  .icon-pill{ width:44px; height:44px; border-radius:12px; }
}

/* Packages polish */
.pkg-card { border-radius: 18px; overflow: hidden; }
.pkg-media { position: relative; }
.pkg-media img { height: 210px; width: 100%; object-fit: cover; }
.badge.duration{
  position: absolute; left: 14px; top: 14px;
  background: var(--bs-gradient); color: #fff; border: 0;
  font-weight: 700; padding: .45rem .6rem; border-radius: 999px;
}
.dest-chips .chip{
  display:inline-block; margin:.125rem .3rem .3rem 0; padding:.25rem .55rem;
  border-radius: 999px;
  background: rgba(25,27,77,.06); color:#191B4D; font-weight:600; font-size:.8rem;
}
.pkg-card .btn-link{ color:#6B3FE0; text-decoration:none; }
.pkg-card .btn-link:hover{ text-decoration:underline; }
.pkg-card:hover{ box-shadow:0 18px 40px rgba(25,27,77,0.10)!important; transform: translateY(-3px); transition:.25s; }

/* ===== FEATURES ===== */
.features-neo{ overflow: hidden; position: relative; }
.features-neo .feat-card{
  background:#fff; border:1px solid rgba(25,27,77,.06);
  border-radius:18px; padding:22px;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position:relative; overflow:hidden;
}
.features-neo .feat-card::before{
  content:""; position:absolute; inset:auto auto 0 0; width:100%; height:4px;
  background: var(--bs-gradient);
}
.features-neo .feat-card:hover{
  transform: translateY(-4px);
  box-shadow:0 18px 40px rgba(25,27,77,.10);
  border-color: rgba(25,27,77,.12);
}
.features-neo .feat-icon{
  width:54px; height:54px; border-radius:16px;
  display:grid; place-items:center; color:#191B4D;
  background: linear-gradient(135deg, #FF7A3D1a, #6B3FE01a);
  margin-bottom:.6rem;
}
.features-neo .feat-icon svg{ width:26px; height:26px; }

.features-neo .feat-blob{
  position:absolute; z-index:0; pointer-events:none; filter: blur(60px); opacity:.25;
}
.features-neo .blob-a{ width:260px; height:260px; left:-80px; top:-40px; background:#FF7A3D; }
.features-neo .blob-b{ width:260px; height:260px; right:-80px; bottom:-40px; background:#6B3FE0; }

/* Motion-friendly stagger (CSS only) */
.features-neo .feat-card{ animation: featFade .6s ease both; }
.features-neo .row > div:nth-child(1) .feat-card{ animation-delay:.02s }
.features-neo .row > div:nth-child(2) .feat-card{ animation-delay:.06s }
.features-neo .row > div:nth-child(3) .feat-card{ animation-delay:.10s }
.features-neo .row > div:nth-child(4) .feat-card{ animation-delay:.14s }
.features-neo .row > div:nth-child(5) .feat-card{ animation-delay:.18s }
.features-neo .row > div:nth-child(6) .feat-card{ animation-delay:.22s }

@keyframes featFade{
  from{ opacity:0; transform: translateY(10px); }
  to{ opacity:1; transform:none; }
}

/* Small screens */
@media (max-width: 575.98px){
  .features-neo .feat-card{ padding:18px; border-radius:16px; }
  .features-neo .feat-icon{ width:50px; height:50px; border-radius:14px; }
}

/* ===== FAQ (Modern) ===== */
.faq-neo{ overflow: hidden; position:relative; background: #F8FAFF;}
.faq-neo .faq-card{
  background:#fff; border:1px solid rgba(25,27,77,.06); border-radius:16px; overflow:hidden;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.faq-neo .faq-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(25,27,77,.10);
  border-color: rgba(25,27,77,.12);
}

/* Button styling */
.faq-neo .accordion-button{
  background: linear-gradient(180deg, rgba(255,255,255,.9), #fff);
  color:#191B4D; font-weight:700; padding:1rem 1.1rem;
}
.faq-neo .accordion-button:not(.collapsed){ color:#191B4D; box-shadow:none; }
.faq-neo .accordion-button:focus{ box-shadow:none; }

/* Custom chevron with brand gradient */
.faq-neo .accordion-button::after{
  background-image:none;
  content:"";
  width:18px; height:18px; margin-left:auto; border-radius:999px;
  border: 2px solid transparent;
  background: linear-gradient(#fff,#fff) padding-box, var(--bs-gradient) border-box;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23000' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/12px 12px no-repeat;
  transform: rotate(0deg); transition: transform .25s ease, opacity .25s ease;
  opacity:.9;
}
.faq-neo .accordion-button:not(.collapsed)::after{ transform: rotate(180deg); }

/* Body */
.faq-neo .accordion-body{ color:#475569; font-weight:600; }

/* Decorative blobs */
.faq-neo .faq-blob{
  position:absolute; pointer-events:none; filter: blur(60px); opacity:.25; z-index:0;
}
.faq-neo .blob-left{ width:260px; height:260px; left:-80px; bottom:-40px; background:#FF7A3D; }
.faq-neo .blob-right{ width:260px; height:260px; right:-80px; top:-40px; background:#6B3FE0; }

/* Small screens */
@media (max-width: 575.98px){
  .faq-neo .accordion-button{ padding: .9rem 1rem; }
}

/* ===== CONTACT SECTION ===== */
.contact-neo .cta-gradient {
  background: var(--bs-gradient);
}

.chip-soft {
  display: inline-block;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(25, 27, 77, .06);
  color: #191B4D;
  font-weight: 600;
  font-size: .85rem;
}

.contact-neo .form-control,
.contact-neo .form-select {
  border-radius: 12px;
  border: 1px solid rgba(25, 27, 77, .15);
  box-shadow: none;
}

.contact-neo .form-control:focus,
.contact-neo .form-select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 .2rem rgba(107, 63, 224, .15);
  background: #fff;
}

.contact-neo .card {
  border-radius: 18px;
}

/* ===== FOOTER ===== */
.site-footer{
  position: relative;
  background: #0F112E; /* rich navy to match brand dark */
  color: #DCE0FF;
  overflow: hidden;
}
.site-footer .footer-grad{
  height: 4px;
  width: 100%;
  background: var(--bs-gradient);
}

.site-footer h6, .site-footer h5 { letter-spacing: .3px; }
.site-footer p { line-height: 1.7; }

.footer-links li{ margin-bottom: .4rem; }
.footer-links a, .footer-links span{
  color: #DCE0FF; opacity: .8; text-decoration: none;
}
.footer-links a:hover{ opacity: 1; text-decoration: underline; }

.footer-sep{
  border: 0; height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}

.footer-bottom-links .nav-link{
  color: #DCE0FF; opacity: .7;
}
.footer-bottom-links .nav-link:hover{ opacity: 1; text-decoration: underline; }

/* Social buttons */
.social-btn{
  display:inline-grid; place-items:center;
  width:36px; height:36px; border-radius:10px;
  background: linear-gradient(135deg, #FF7A3D1a, #6B3FE01a);
  color:#fff; border: 1px solid rgba(255,255,255,.12);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.social-btn:hover{
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
}

/* Back-to-top */
.to-top{
  position: fixed; right: 16px; bottom: 16px; z-index: 20;
  width: 42px; height: 42px; border-radius: 50%;
  border: 0; color:#fff; font-weight:700;
  background: var(--bs-gradient);
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  cursor: pointer; opacity: .95;
}
.to-top:hover{ opacity: 1; }

@media (max-width: 575.98px){
  .site-footer{ padding-bottom: 72px; }
}

.features-neo,
.faq-neo {
  overflow: hidden;
  position: relative;
}

.faq-neo .blob-right,
.features-neo .blob-b {
  right: 0 !important; 
  transform: translateX(36%);
  will-change: transform;
}

.faq-neo .blob-left,
.features-neo .blob-a {
  left: 0 !important;
  transform: translateX(-36%);
  will-change: transform;
}

@media (max-width: 991.98px){
  .faq-neo .blob-right, .features-neo .blob-b { transform: translateX(28%); }
  .faq-neo .blob-left,  .features-neo .blob-a { transform: translateX(-28%); }
}
@media (max-width: 575.98px){
  .faq-neo .blob-right, .features-neo .blob-b { transform: translateX(20%); }
  .faq-neo .blob-left,  .features-neo .blob-a { transform: translateX(-20%); }
}

@media (max-width: 767.98px) {
  html, body {
    overflow-x: hidden !important;
  }

  .faq-neo .faq-blob,
  .features-neo .feat-blob {
    width: 180px !important;
    height: 180px !important;
    filter: blur(40px) !important;
  }

  .faq-neo .blob-right,
  .features-neo .blob-b {
    right: 0 !important;
    transform: translateX(10%) !important;
  }

  .faq-neo .blob-left,
  .features-neo .blob-a {
    left: 0 !important;
    transform: translateX(-10%) !important;
  }
}

/* Call Now Button Styling */
.call-btn {
  background: #fff;
  color: var(--bs-primary);
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background: var(--bs-secondary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

/* Make sure it stays nice on mobile */
@media (max-width: 575.98px) {
  .call-btn {
    width: 100%;
    font-size: 1.05rem;
  }
}

/* ===== Floating WhatsApp Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 16px;
  z-index: 1000;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25D366; /* WhatsApp green */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.3);
  color: #fff;
}

/* Smaller and adjusted on mobile */
@media (max-width: 575.98px) {
  .whatsapp-float {
    width: 46px;
    height: 46px;
    font-size: 24px;
    bottom: 70px; /* stays above to-top button */
    right: 14px;
  }
}

/* ==== Enquiry Popup Modal ==== */
.quote-modal {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  animation: fadeInUp 0.4s ease both;
}

.quote-modal .modal-content {
  border: none;
}

.quote-modal .modal-header {
  background: var(--bs-gradient);
  color: #fff;
  border-bottom: none;
  padding: 1.25rem 1.5rem;
}

.quote-modal .modal-title {
  color: #fff;
  font-size: 1.3rem;
}

.quote-modal .btn-close {
  filter: invert(1);
  opacity: 0.8;
  transition: 0.3s;
}

.quote-modal .btn-close:hover {
  opacity: 1;
}

.quote-modal .form-control {
  border-radius: 12px;
  border: 1px solid rgba(25, 27, 77, .15);
  box-shadow: none;
  padding: 0.65rem 0.9rem;
}

.quote-modal .form-control:focus {
  border-color: transparent;
  box-shadow: 0 0 0 .2rem rgba(107, 63, 224, .15);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: none; }
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
  .quote-modal .modal-dialog {
    margin: 1rem;
  }
  .quote-modal .modal-title {
    font-size: 1.1rem;
  }
}

/* === Cookie Consent Banner === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bs-gradient);
  color: #fff;
  padding: 1rem 1.2rem;
  z-index: 9999;
  display: none; /* hidden by default, shown via JS */
  animation: slideUp 0.6s ease forwards;
}

.cookie-banner a {
  color: #fff;
  opacity: 0.9;
  transition: 0.2s;
}

.cookie-banner a:hover {
  opacity: 1;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Mobile layout adjustments */
@media (max-width: 575.98px) {
  .cookie-banner {
    padding: 1rem;
    text-align: center;
  }
  .cookie-banner .container {
    flex-direction: column;
    gap: 0.8rem !important;
  }
  .cookie-banner p {
    font-size: 0.85rem;
  }
}
