/*
==================================================

ACCESS HOLIDAYS V3.5
Global Styles
Author : Access Holidays
Version : 3.5

==================================================
*/

/*==================================================
BODY
==================================================*/

body{

    background:var(--bg);

    color:var(--text);

}

/*==================================================
MAIN
==================================================*/

main{

    overflow:hidden;

}

/*==================================================
SECTION
==================================================*/

section{

    position:relative;

    padding:var(--section-space) 0;

}

section:nth-child(even){

    background:var(--bg-light);

}

/*==================================================
CONTAINER
==================================================*/

.container{

    width:min(calc(100% - 40px),var(--container));

    margin-inline:auto;

}

/*==================================================
GRID
==================================================*/

.grid{

    display:grid;

    gap:40px;

}

.grid-2{

    grid-template-columns:repeat(2,1fr);

}

.grid-3{

    grid-template-columns:repeat(3,1fr);

}

.grid-4{

    grid-template-columns:repeat(4,1fr);

}

/*==================================================
FLEX
==================================================*/

.flex{

    display:flex;

}

.flex-center{

    display:flex;

    align-items:center;

    justify-content:center;

}

.flex-between{

    display:flex;

    align-items:center;

    justify-content:space-between;

}

.flex-column{

    display:flex;

    flex-direction:column;

}

/*==================================================
SECTION HEADER
==================================================*/

.section-header{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:10px 22px;

    border-radius:999px;

    background:rgba(212,175,55,.12);

    color:var(--secondary-dark);

    font-weight:600;

    font-size:14px;

    letter-spacing:.8px;

    text-transform:uppercase;

    margin-bottom:22px;

}

.section-header h2{

    margin-bottom:24px;

    color:var(--heading);

    font-size:clamp(36px,5vw,var(--h2));

    line-height:1.15;

}

.section-header p{

    font-size:18px;

    color:var(--text);

    line-height:1.8;

}

/*==================================================
BADGES
==================================================*/

.badge{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    background:var(--secondary);

    color:#fff;

}

/*==================================================
GLASS
==================================================*/

.glass{

    background:var(--glass);

    backdrop-filter:blur(var(--blur));

    -webkit-backdrop-filter:blur(var(--blur));

    border:1px solid var(--glass-border);

}

/*==================================================
CARDS
==================================================*/

.card{

    background:#fff;

    border-radius:var(--radius-lg);

    padding:var(--card-padding);

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

}

.card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-lg);

}

/*==================================================
IMAGES
==================================================*/

.image-cover{

    overflow:hidden;

    border-radius:var(--radius-lg);

}

.image-cover img{

    width:100%;

    transition:var(--transition-slow);

}

.image-cover:hover img{

    transform:scale(1.08);

}

/*==================================================
BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 34px;

    border-radius:999px;

    font-size:16px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 34px;

    border-radius:999px;

    background:var(--gradient-primary);

    color:#fff;

    box-shadow:0 15px 35px rgba(11,45,115,.20);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 20px 45px rgba(11,45,115,.30);

}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 34px;

    border-radius:999px;

    background:var(--gradient-gold);

    color:var(--dark);

}

.btn-secondary:hover{

    transform:translateY(-4px);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 34px;

    border-radius:999px;

    border:2px solid var(--primary);

    color:var(--primary);

    background:transparent;

}

.btn-outline:hover{

    background:var(--primary);

    color:#fff;

}

.btn-glass{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-height:56px;

    padding:0 34px;

    border-radius:999px;

    background:var(--glass);

    backdrop-filter:blur(var(--blur));

    color:#fff;

    border:1px solid rgba(255,255,255,.25);

}

.btn-glass:hover{

    background:rgba(255,255,255,.20);

}

/*==================================================
SECTION BACKGROUNDS
==================================================*/

.bg-white{

    background:var(--white);

}

.bg-light{

    background:var(--bg-light);

}

.bg-primary{

    background:var(--primary);

    color:var(--white);

}

.bg-dark{

    background:var(--dark);

    color:var(--white);

}

.bg-gradient{

    background:var(--gradient-primary);

    color:var(--white);

}

/*==================================================
SPACING UTILITIES
==================================================*/

.mt-0{margin-top:0;}
.mt-1{margin-top:var(--space-1);}
.mt-2{margin-top:var(--space-2);}
.mt-3{margin-top:var(--space-3);}
.mt-4{margin-top:var(--space-4);}
.mt-5{margin-top:var(--space-5);}
.mt-6{margin-top:var(--space-6);}
.mt-7{margin-top:var(--space-7);}
.mt-8{margin-top:var(--space-8);}

.mb-0{margin-bottom:0;}
.mb-1{margin-bottom:var(--space-1);}
.mb-2{margin-bottom:var(--space-2);}
.mb-3{margin-bottom:var(--space-3);}
.mb-4{margin-bottom:var(--space-4);}
.mb-5{margin-bottom:var(--space-5);}
.mb-6{margin-bottom:var(--space-6);}
.mb-7{margin-bottom:var(--space-7);}
.mb-8{margin-bottom:var(--space-8);}

/*==================================================
TEXT
==================================================*/

.text-left{

    text-align:left;

}

.text-center{

    text-align:center;

}

.text-right{

    text-align:right;

}

.text-primary{

    color:var(--primary);

}

.text-secondary{

    color:var(--secondary);

}

.text-light{

    color:var(--text-light);

}

.text-white{

    color:var(--white);

}

/*==================================================
DISPLAY
==================================================*/

.d-none{

    display:none;

}

.d-block{

    display:block;

}

.d-flex{

    display:flex;

}

.d-grid{

    display:grid;

}

.align-center{

    align-items:center;

}

.justify-center{

    justify-content:center;

}

.justify-between{

    justify-content:space-between;

}

/*==================================================
IMAGE
==================================================*/

.img-fluid{

    width:100%;

    height:auto;

    display:block;

}

.rounded{

    border-radius:var(--radius-lg);

}

.circle{

    border-radius:50%;

}

/*==================================================
SHADOWS
==================================================*/

.shadow-sm{

    box-shadow:var(--shadow-sm);

}

.shadow-md{

    box-shadow:var(--shadow-md);

}

.shadow-lg{

    box-shadow:var(--shadow-lg);

}

.shadow-xl{

    box-shadow:var(--shadow-xl);

}

/*==================================================
HOVER EFFECTS
==================================================*/

.hover-up{

    transition:var(--transition);

}

.hover-up:hover{

    transform:translateY(-8px);

}

.hover-scale{

    transition:var(--transition);

}

.hover-scale:hover{

    transform:scale(1.04);

}

.hover-shadow{

    transition:var(--transition);

}

.hover-shadow:hover{

    box-shadow:var(--shadow-lg);

}

/*==================================================
OVERLAY
==================================================*/

.overlay{

    position:absolute;

    inset:0;

    background:var(--overlay);

}

.overlay-dark{

    position:absolute;

    inset:0;

    background:var(--overlay-dark);

}

/*==================================================
DIVIDER
==================================================*/

.divider{

    width:90px;

    height:4px;

    margin:24px 0;

    border-radius:999px;

    background:var(--secondary);

}

/*==================================================
LOADER
==================================================*/

#loader{

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-direction:column;

    background:var(--white);

    z-index:var(--z-loader);

}

.loader-logo img{

    width:180px;

    margin-bottom:30px;

}

.loader-spinner{

    width:60px;

    height:60px;

    border:4px solid rgba(0,0,0,.08);

    border-top-color:var(--primary);

    border-radius:50%;

    animation:spin 1s linear infinite;

}

/*==================================================
SCROLL PROGRESS
==================================================*/

#progressBar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:4px;

    background:var(--secondary);

    z-index:99999;

}

/*==================================================
ANIMATIONS
==================================================*/

.fade-up{

    animation:fadeUp .8s ease both;

}

.fade-in{

    animation:fadeIn .8s ease both;

}

.zoom-in{

    animation:zoomIn .8s ease both;

}

@keyframes spin{

    to{

        transform:rotate(360deg);

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.9);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==================================================
SECTION TRANSITION
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:1s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*==================================================
BACK TO TOP
==================================================*/

.back-to-top{

    position:fixed;

    right:30px;

    bottom:30px;

    width:54px;

    height:54px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--gradient-primary);

    color:var(--white);

    box-shadow:var(--shadow-lg);

    opacity:0;

    visibility:hidden;

    transition:var(--transition);

    z-index:500;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    transform:translateY(-5px);

}

.site-footer {
  overflow: hidden;
  position: relative;
  padding: 82px 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: #061737;
}

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

.footer-glow {
  width: 440px;
  height: 440px;
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.footer-glow-one {
  top: -280px;
  left: -150px;
  background: radial-gradient(circle, rgba(34, 89, 181, 0.25), transparent 68%);
}

.footer-glow-two {
  right: -190px;
  bottom: -310px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.13), transparent 68%);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.55fr 0.78fr 0.88fr 1.15fr;
  gap: 60px;
  padding-bottom: 65px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 25px;
}

.footer-brand img {
  width: 175px;
  max-height: 100px;
  object-fit: contain;
  object-position: left center;
}

.footer-description {
  max-width: 390px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.9;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-4px);
  color: #071c4d;
  background: #f5d96b;
  border-color: #f5d96b;
}

.footer-title {
  margin: 5px 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  padding-left: 5px;
  color: #f5d96b;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-contact .footer-title {
  margin-bottom: 6px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.65;
  transition: color 0.2s ease;
}

.contact-item:hover {
  color: #f5d96b;
}

.contact-item i {
  width: 14px;
  margin-top: 4px;
  color: #f5d96b;
  font-size: 13px;
}

.footer-whatsapp {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  padding: 11px 15px;
  border: 1px solid rgba(245, 217, 107, 0.42);
  border-radius: 999px;
  color: #f5d96b;
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.footer-whatsapp:hover {
  color: #071c4d;
  background: #f5d96b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0 27px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
}

.footer-legal a:hover {
  color: #f5d96b;
}

@media (max-width: 950px) {
  .footer-main {
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 45px;
  }

  .footer-brand-column {
    grid-column: span 3;
  }

  .footer-description {
    max-width: 520px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 64px;
  }

  .footer-container {
    width: min(100% - 32px, 1320px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 45px;
  }

  .footer-brand-column {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 21px 0 25px;
  }

  .footer-legal {
    gap: 18px;
  }
}

/* ==========================================
   COMPACT FAQ, OFFER TICKER & NEWSLETTER
========================================== */

/* Remove the unnecessary white space below FAQs */
.faq-section {
  padding-top: 80px !important;
  padding-bottom: 70px !important;
}

.faq-section .faq-item:last-child {
  margin-bottom: 0 !important;
}

/* Correct offer ticker: placed below the fixed header */
.offer-ticker {
  height: 48px !important;
  min-height: 48px !important;
  margin-top: var(--header-height) !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: linear-gradient(90deg, #071c4d, #174da7) !important;
}

.ticker {
  width: 100% !important;
  overflow: hidden !important;
}

.ticker-track {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  width: max-content !important;
  animation: ticker 35s linear infinite !important;
}

.ticker-track span {
  display: flex !important;
  align-items: center !important;
  height: 48px !important;
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  white-space: nowrap !important;
}

/* Newsletter must be compact and visibly blue */
.newsletter {
  min-height: auto !important;
  padding: 68px 0 !important;
  background: linear-gradient(135deg, #071b45, #0b2d73) !important;
}

.newsletter-wrapper {
  min-height: auto !important;
  display: flex !important;
  align-items: center !important;
}

.newsletter h2 {
  margin-top: 0 !important;
  margin-bottom: 14px !important;
  color: #ffffff !important;
}

.newsletter p {
  margin-bottom: 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 15px !important;
}

.newsletter-form input {
  height: 54px !important;
}

@media (max-width: 768px) {
  .faq-section {
    padding-top: 60px !important;
    padding-bottom: 50px !important;
  }

  @media (max-width: 768px) {
  .offer-ticker {
    height: 44px !important;
    min-height: 44px !important;
    margin-top: 85px !important;
  }

  .ticker-track span {
    height: 44px !important;
    font-size: 12px !important;
  }
}

  .ticker-track span {
    font-size: 12px !important;
  }

  .newsletter {
    padding: 52px 0 !important;
  }

  .newsletter-wrapper {
    gap: 28px !important;
  }
}

/* Final offer ticker height fix */
body .offer-ticker {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  margin-top: var(--header-height) !important;
  padding: 0 !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  background: linear-gradient(90deg, #071c4d, #174da7) !important;
}

body .offer-ticker .ticker,
body .offer-ticker .ticker-track {
  height: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body .offer-ticker .ticker {
  width: 100% !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
}

body .offer-ticker .ticker-track {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
  width: max-content !important;
}

body .offer-ticker .ticker-track span {
  height: 48px !important;
  display: flex !important;
  align-items: center !important;
  color: #ffffff !important;
  font-size: 13px !important;
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  body .offer-ticker {
    height: 44px !important;
    min-height: 44px !important;
    margin-top: 85px !important;
  }

  body .offer-ticker .ticker-track span {
    height: 44px !important;
    font-size: 11px !important;
  }
}

@media (min-width: 769px) {
  #header .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: nowrap;
  }

  #header nav {
    flex: 1;
    min-width: 0;
  }

  #header .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  #header .nav-menu li {
    flex: 0 0 auto;
  }

  #header .nav-actions {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  #header #mobileMenu {
    display: none;
  }
}

#header {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(7, 28, 77, 0.08);
}

#header .nav-menu a {
  color: var(--dark) !important;
}

#header .nav-menu a:hover,
#header .nav-menu a.active {
  color: var(--secondary) !important;
}
/*==================================================
END
==================================================*/