:root {
  --dark: #0f172a;
  --navy: #16243a;
  --blue: #0ea5e9;
  --sky: #38bdf8;
  --amber: #f59e0b;
  --soft: #f8fbff;
}
html { scroll-behavior: smooth; }
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; }
.hero-overlay { background: linear-gradient(135deg, rgba(3,7,18,.84), rgba(15,23,42,.74), rgba(8,47,73,.65)); }
.section-line { width: 84px; height: 4px; border-radius: 999px; background: #EEB10F; }
.glass-card { background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.card-hover { transition: transform .3s ease, box-shadow .3s ease; }
.card-hover:hover { transform: translateY(-4px); }
.call-ring { position: relative; }
.call-ring::after { content: ""; position: absolute; inset: -8px; border-radius: 999px; border: 1px solid rgba(14,165,233,.25); animation: pulseRing 2s infinite; }
@keyframes pulseRing { 0% { transform: scale(.96); opacity: .9; } 70% { transform: scale(1.12); opacity: 0; } 100% { transform: scale(1.12); opacity: 0; } }
.floating-call { box-shadow: 0 20px 45px rgba(2,132,199,.28); }
.prose-legal p + p, .prose-legal ul + p, .prose-legal h2 + p { margin-top: 1rem; }
.prose-legal ul { list-style: disc; padding-left: 1.25rem; margin-top: .75rem; }

.policy-feature { padding-bottom: 2rem; }
.policy-top-badge {
  position: absolute;
  left: 1rem;
  top: 5rem;
  max-width: 8.8rem;
  background: #4338ca;
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  line-height: 1.35;
  padding: 1rem .85rem;
  border-radius: 0;
  box-shadow: 0 12px 30px rgba(67,56,202,.22);
}
.policy-top-badge--gold { background: #c2b316; color: #fff; }
.policy-bottom-pill {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: calc(100% - 2.5rem);
  background: #067647;
  color: #fff;
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
  box-shadow: 0 20px 40px rgba(6, 119, 71, .24);
}
.destination-card img { transition: transform .45s ease; }
.destination-card:hover img { transform: scale(1.04); }
@media (max-width: 640px) {
  .policy-top-badge { top: 1rem; left: 1rem; max-width: 9rem; font-size: .86rem; padding: .85rem .8rem; }
  .policy-bottom-pill { width: calc(100% - 1.8rem); font-size: .96rem; padding: .95rem 1rem; }
}
    .lg\:text-6xl {
        font-size: 2.5rem!important;
        line-height: 51px!important;
    }

    @media (max-width: 480px) {
            .lg\:text-6xl {
                    font-size: 30px !important;
                   line-height: 38px !important;
            }
        }
















/* header css */


/* HEADER */
.dfd-header-container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
}

.dfd-topbar{
  background:#0f172a;
  color:#fff;
}

.dfd-topbar-inner{
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.dfd-topbar p{
  margin:0;
  font-size:15px;
  color:#f8fafc;
}

.dfd-topbar a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:38px;
  padding:0 22px;
  border-radius:999px;
  background:#ffc32b;
  color:#111827;
  text-decoration:none;
  font-weight:700;
}

.dfd-header{
  position:sticky;
  top:0;
  z-index:99999;
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

.dfd-header-inner{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.dfd-logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}

.dfd-logo img,
.dfd-logo .custom-logo{
  width:auto;
  max-width:270px;
  max-height:68px;
  display:block;
}

.dfd-desktop-nav{
  flex:1;
  display:flex;
  justify-content:center;
}

.dfd-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:34px;
}

.dfd-menu a{
  display:inline-flex;
  align-items:center;
  min-height:44px;
  color:#111827;
  text-decoration:none;
  font-size:17px;
  font-weight:700;
}

.dfd-menu a:hover,
.dfd-menu .current-menu-item > a{
  color:#ffc32b;
}

.dfd-header-call{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:0 28px;
  border-radius:999px;
  background:#16a7df;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  white-space:nowrap;
}

.dfd-menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:1px solid #d1d5db;
  border-radius:12px;
  background:#fff;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  padding:0;
  z-index:100001;
}

.dfd-menu-toggle span{
  width:22px;
  height:2px;
  background:#111827;
  border-radius:2px;
  transition:.25s ease;
}

.dfd-menu-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.dfd-menu-toggle.is-active span:nth-child(2){
  opacity:0;
}

.dfd-menu-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.dfd-mobile-menu{
  display:none;
  width:100%;
  background:#fff;
  border-top:1px solid #e5e7eb;
  box-shadow:0 18px 35px rgba(0,0,0,.12);
  z-index:100000;
}

.dfd-mobile-menu.is-open{
  display:block !important;
}

.dfd-mobile-menu-inner{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  padding:14px 0 18px;
}

.dfd-mobile-list{
  list-style:none;
  margin:0;
  padding:0;
}

.dfd-mobile-list a{
  display:block;
  padding:14px 16px;
  border-radius:12px;
  color:#111827;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
}

.dfd-mobile-list a:hover{
  background:#f1f5f9;
  color:#0ea5e9;
}

.dfd-mobile-call{
  margin-top:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  border-radius:999px;
  background:#16a7df;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

/* RESPONSIVE */
@media(max-width:991px){
  .dfd-desktop-nav,
  .dfd-header-call{
    display:none !important;
  }

  .dfd-menu-toggle{
    display:flex !important;
  }

  .dfd-header-inner{
    min-height:76px;
  }

  .dfd-logo img,
  .dfd-logo .custom-logo{
    max-width:220px;
    max-height:58px;
  }

  .dfd-topbar-inner{
    justify-content:center;
  }

  .dfd-topbar p{
    display:none;
  }
}

@media(min-width:992px){
  .dfd-mobile-menu,
  .dfd-menu-toggle{
    display:none !important;
  }
}

@media(max-width:480px){
  .dfd-header-container,
  .dfd-mobile-menu-inner{
    width:calc(100% - 24px);
  }

  .dfd-logo img,
  .dfd-logo .custom-logo{
    max-width:190px;
  }

  .dfd-topbar a{
    width:100%;
    justify-content:center;
    font-size:14px;
  }
}




/* footer css */


.dfd-footer{
  background:#030817;
  color:#cbd5e1;
  font-family:inherit;
  position:relative;
  overflow:hidden;
}

.dfd-footer:before{
  content:"";
  position:absolute;
  right:-180px;
  bottom:-180px;
  width:420px;
  height:420px;
  border-radius:50%;
  background:rgba(14,165,233,.12);
  filter:blur(20px);
}

.dfd-footer-container{
  width:min(1200px, calc(100% - 32px));
  margin:0 auto;
  position:relative;
  z-index:1;
}

.dfd-footer-grid{
  display:grid;
  grid-template-columns:1.25fr .65fr 1fr;
  gap:80px;
  padding:72px 0 64px;
  align-items:start;
}

.dfd-footer-logo{
  display:inline-flex;
  align-items:center;
  text-decoration:none;
  margin-bottom:26px;
}

.dfd-footer-logo img,
.dfd-footer-logo .custom-logo{
  width:auto;
  max-width:310px;
  max-height:86px;
  display:block;
}

.dfd-footer-brand p,
.dfd-footer-disclaimer p{
  margin:0;
  color:#a8b3c7;
  font-size:16px;
  line-height:1.9;
  max-width:540px;
}

.dfd-footer-call{
  margin-top:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:58px;
  padding:0 30px;
  border-radius:999px;
  background:#ffc32b;
  color:#071426;
  text-decoration:none;
  font-size:18px;
  font-weight:700;
  box-shadow:0 14px 30px rgba(255,195,43,.14);
  transition:.2s ease;
}

.dfd-footer-call:hover{
  background:#eeb10e;
  color:#071426;
  transform:translateY(-2px);
}

.dfd-footer-links h3,
.dfd-footer-disclaimer h3{
  margin:0 0 26px;
  color:#fff;
  font-size:22px;
  line-height:1.2;
  font-weight:700;
}

.dfd-footer-menu{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:15px;
}

.dfd-footer-menu li{
  margin:0;
  padding:0;
}

.dfd-footer-menu a{
  display:inline-flex;
  align-items:center;
  color:#cbd5e1;
  text-decoration:none;
  font-size:16px;
  font-weight:700;
  transition:.2s ease;
}

.dfd-footer-menu a:before{
  content:"";
  width:0;
  height:2px;
  background:#ffc32b;
  margin-right:0;
  transition:.2s ease;
}

.dfd-footer-menu a:hover{
  color:#fff;
  transform:translateX(4px);
}

.dfd-footer-menu a:hover:before{
  width:14px;
  margin-right:8px;
}

.dfd-footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
}

.dfd-footer-bottom-inner{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.dfd-footer-bottom p{
  margin:0;
  color:#cbd5e1;
  font-size:15px;
  font-weight:500;
}

.dfd-floating-call{
  position:fixed;
  right:26px;
  bottom:24px;
  z-index:9999;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:0 28px;
  border-radius:999px;
  background:#16a7df;
  color:#fff;
  text-decoration:none;
  font-size:17px;
  font-weight:700;
  box-shadow:0 18px 40px rgba(22,167,223,.28);
  transition:.2s ease;
}

.dfd-floating-call:hover{
  background:#0b91c6;
  color:#fff;
  transform:translateY(-2px);
}

@media(max-width:1100px){
  .dfd-footer-grid{
    grid-template-columns:1fr 1fr;
    gap:48px;
  }

  .dfd-footer-brand{
    grid-column:1 / -1;
  }
}

@media(max-width:768px){
  .dfd-footer-grid{
    grid-template-columns:1fr;
    gap:38px;
    padding:52px 0 46px;
  }

  .dfd-footer-logo img,
  .dfd-footer-logo .custom-logo{
    max-width:260px;
  }

  .dfd-footer-brand p,
  .dfd-footer-disclaimer p{
    font-size:15px;
    line-height:1.8;
  }

  .dfd-footer-links h3,
  .dfd-footer-disclaimer h3{
    font-size:22px;
    margin-bottom:18px;
  }

  .dfd-footer-bottom-inner{
    min-height:68px;
    text-align:center;
    justify-content:center;
  }

  .dfd-floating-call{
    right:16px;
    bottom:16px;
    min-height:52px;
    padding:0 22px;
    font-size:15px;
  }
}

@media(max-width:480px){
  .dfd-footer-container{
    width:calc(100% - 24px);
  }

  .dfd-footer-call{
    width:100%;
    padding:0 16px;
    font-size:16px;
  }

  .dfd-footer-logo img,
  .dfd-footer-logo .custom-logo{
    max-width:230px;
  }
}




