
:root {
  --primary: #00397C;
  --primary-dark: #002a5e;
  --primary-light: #0052b3;
  --accent: #F5A623;
  --accent-dark: #d48a0f;
  --white: #ffffff;
  --off-white: #f4f7fb;
  --light-gray: #e8edf5;
  --text-dark: #0a1628;
  --text-mid: #3a4a6b;
  --text-light: #6b7a99;
  --gradient-primary: linear-gradient(135deg, #00397C 0%, #0052b3 50%, #0070c8 100%);
  --gradient-accent: linear-gradient(135deg, #F5A623 0%, #f7c259 100%);
  --gradient-dark: linear-gradient(135deg, #020c1e 0%, #001435 60%, #00397C 100%);
  --shadow-sm: 0 2px 12px rgba(0, 57, 124, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 57, 124, 0.15);
  --shadow-lg: 0 20px 60px rgba(0, 57, 124, 0.2);
  --shadow-xl: 0 30px 80px rgba(0, 57, 124, 0.25);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}



@keyframes pulse {
0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6); }
 70% { box-shadow: 0 0 0 15px rgba(255,193,7,0); }
 100% { box-shadow: 0 0 0 0 rgba(255,193,7,0); }
}

/* Shake Effect */
@keyframes shake {
 0%, 100% { transform: translateX(0); }
 10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
20%, 40%, 60%, 80% { transform: translateX(5px); }
}

#hamburger-btn{
display:none !important;
}


body {
  font-family: 'Outfit', sans-serif;
    
}


/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.site-header.scrolled {
    background: rgb(80 42 12 / 58%);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}  

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-cta-mobile {
  display: none;
      background: #cf0808;
    color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 28px;
  background: var(--accent);
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.main-nav a:not(.nav-cta):hover {
  color: var(--white);
}

.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.main-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--accent);
  color: var(--primary-dark) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
  background: #460e13 !important;
}

.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px; border:none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- MOBILE OVERLAY ---- */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: absolute;
  top: 0; right: 0;
  width: 300px;
  height: 100%;
  background: var(--gradient-dark);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.open .mobile-menu {
  transform: translateX(0);
}

.mobile-close {
  color: rgba(255,255,255,0.6);
  font-size: 24px;
  padding: 0;
  margin-bottom: 24px;
  align-self: flex-end;
  transition: var(--transition);
}

.mobile-close:hover { color: var(--white); }

.mobile-link {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

.mobile-link:hover { color: var(--accent); padding-left: 8px; }

.mobile-cta {
  display: block;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  padding: 16px;
  border-radius: var(--radius-md);
  margin-top: 24px;
  transition: var(--transition);
}

.mobile-cta:hover {
  background: #460e13;
  transform: scale(1.02);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('alonso-reyes-haZNHEV2WXQ-unsplash.jpg') center/cover no-repeat;
  z-index: 0;
}

 
.hero-overlay {
    position: absolute;
    inset: 0;

   background:  linear-gradient(135deg, rgb(154 160 172 / 0%) 0%, rgb(0 57 124 / 79%) 50%, rgb(0 30 80 / 59%) 100% 100%);
    /* background: linear-gradient(135deg, rgb(154 160 172 / 10%) 0%, rgb(0 57 124 / 66%) 50%, rgb(0 30 80 / 48%) 100%);


  background: linear-gradient(
    135deg,
    rgba(0, 20, 60, 0.88) 0%,
    rgba(0, 57, 124, 0.75) 50%,
    rgba(0, 30, 80, 0.85) 100%
  );*/
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(245, 166, 35, 0.6);
  border-radius: 50%;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 auto 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
  font-size: 16px;
  color: #ffffff;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 7vw, 70px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.1s forwards;
  opacity: 0;
}

.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, #ffffff 0%, #ffcf34 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  opacity: 0.3;
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgb(255 255 255 / 84%);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeInUp 0.8s ease 0.3s forwards;
  opacity: 0;
}

.btn-primary-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #0f2540;

 transition:all 0.3s ease; 
       animation: pulse 2s infinite, shake 3s infinite;

    color: #ffffff;
    padding: 16px 28px;
    border-radius: var(--radius-xl);
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgb(245 165 35 / 40%);
    position: relative;
    overflow: hidden;
}

.btn-primary-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.btn-primary-hero:hover::before {
  transform: translateX(100%);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.55);
  background: #faffcb;
}

.btn-icon { font-size: 22px; }

.btn-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-small {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.btn-big {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.btn-ghost-hero {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  transition: var(--transition);
}

.btn-ghost-hero:hover {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-arrow { font-size: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---- CALL STRIP (FIXED BOTTOM) ---- */
.call-strip {
  background: rgba(0, 57, 124, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  display: none; /* Controlled by JS */
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.call-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.call-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pulse-ring {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #32d639;
  position: relative;
}

.pulse-ring::before, .pulse-ring::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #4CAF50;
  animation: pulseRing 2s ease-out infinite;
}

.pulse-ring::after { animation-delay: 0.5s; }

@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.call-strip-icon { 
  font-size: 20px; 
  color: var(--accent);
}

.call-strip-text {
  display: flex;
  flex-direction: column;
}

.call-strip-text strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.call-strip-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.call-strip-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 8px 24px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  line-height: 1.2;
}

.cta-line {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.cta-number {
  font-size: 18px;
  font-weight: 900;
}

.call-strip-btn:hover {
  background: #ffc04a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

/* ---- TRUST BAR ---- */
.trust-bar {
    background: var(--off-white);
    border-bottom: 1px solid var(--light-gray);
    padding: 18px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
}

.trust-inner {
  display: flex;
    align-items: center;
    gap: 39px;
    flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  white-space: nowrap;
}

.trust-icon { font-size: 20px; }


.faq-cta {
  text-align: center;
  display: flex; margin: 60px 20px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.faq-cta p {
  font-size: 18px;
  color: var(--text-mid);
  font-weight: 500;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #F4081F;
  color: white;
  padding: 18px 36px; 
 transition:all 0.3s ease; 
       animation: pulse 2s infinite, shake 3s infinite;

  border-radius: var(--radius-xl);
  font-weight: 800;
  font-size: 18px;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.35);
}

.btn-primary-lg:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(245, 166, 35, 0.5);
  background: #460e13;  color: white;
}


.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  color: #1A115A;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title.left { text-align: left; }

.section-desc {
  font-size: 17px;
  color: #586175;
  line-height: 1.7;
}

p {
    font-size: 17px;
    color: #586175;
    line-height: 1.7;
}

/*
.elementor-element.elementor-element-4f297d7.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    margin: 50px 1px 5px 10px;
}*/


/* ---- CALL STRIP (FIXED BOTTOM) ---- */
.call-strip {
  background: rgba(0, 57, 124, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 11px 50px;
  margin:0px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  display: block; /* Controlled by JS */
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.call-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.call-strip-left {
  display: flex;
  align-items: center;
  gap: 16px;
}



.call-strip-icon { 
  font-size: 20px; 
  color: #eeeeee;
}

.call-strip-text {
  display: flex;
  flex-direction: column;
}

.call-strip-text strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.call-strip-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.call-strip-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fefeff;
  color: var(--primary-dark);
  padding: 8px 24px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
  line-height: 1.2;
}

.cta-line {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
}

.cta-number {
  font-size: 18px;
  font-weight: 900;
}

.call-strip-btn:hover {
      background: #e5fffb;
    color: black;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}


/*mobb*/
@media (max-width: 768px) {
  .header-cta-mobile { display: flex; }
  .contact-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 72px 0; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .dest-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .steps-row {
    flex-direction: column;
    gap: 20px;
  }


   .step-connector::after { content: 'â†“'; }
  .why-badge-cards { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .call-strip-inner { flex-direction: row; justify-content: center; gap: 12px; }
  .call-strip-left { display: none; }
  .call-strip-btn { width: auto; font-size: 14px; padding: 10px 20px; }
  .call-strip { padding: 10px 0; }
  .float-label { display: none; }
  .float-call-btn { padding: 16px; border-radius: 50%; aspect-ratio: 1; justify-content: center; }





  .site-header { 
    padding: 2px 0;
    transition: var(--transition);
    background: rgb(80 42 12 / 29%);
}

.site-header.scrolled {
    background: rgb(80 42 12 / 51%);
    backdrop-filter: blur(20px);
     padding: 8px 9px ;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 100%;
}

.site-header .header-inner { 
    padding-top: 5px; 
}


.trust-bar { 
    padding: 18px 30px;

  }


  .trust-inner { 
    gap: 13px; 
}


.btn-primary-lg { 
    gap: 8px; 
    padding: 15px 34px;

  }



  .hero-title em::after { 
    bottom: 41px;

  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 3px;}




.elementor-element.elementor-element-4f297d7.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded {
    margin: 10px 0px 5px 0px;
}




}
 



#callme { 
    display: none;
  }