/* =====================================================
   DFW AIRPORT – HOMEPAGE STYLES
   Light / Airline Aesthetic
   ===================================================== */

.hidden{ display: none; }

:root {
  --primary: #cc4000;
  --dark-btn: #AF3F04;

  /* Extended palette */
  --primary-light: #e84a00;
  --primary-glow: rgba(204, 64, 0, 0.1);
  --primary-border: rgba(204, 64, 0, 0.25);

  /* Light theme surfaces */
  --bg-base:      #f5f6f8;
  --bg-surface:   #ffffff;
  --bg-raised:    #eef0f4;
  --bg-muted:     #e8eaee;

  /* Dark references (hero bg, footer) */
  --dark-900: #0d1117;
  --dark-800: #141920;

  /* Text */
  --text-primary:   #0d1117;
  --text-secondary: #4a5568;
  --text-muted:     #8a94a6;
  --text-on-dark:   #ffffff;
  --text-on-dark-2: rgba(255,255,255,0.7);
  --text-on-dark-3: rgba(255,255,255,0.4);

  /* Borders */
  --border:        #dde1e9;
  --border-strong: #c4c9d4;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);

  /* Shape */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 999px;

  /* Motion */
  --transition-fast: 0.16s ease;
  --transition-med:  0.28s ease;
  --transition-slow: 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	
/* 	Font Family */
  --font-primary:    'Montserrat', sans-serif;
  --font-secondary:  'Montserrat', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary), sans-serif !important;
}

body {
    font-family: var(--font-secondary), sans-serif !important;
	font-family: 15px!important;
}

a{
	color: var(--primary)!important;
}

a:focus, a:hover{
	text-decoration: none!important;
	outline:none!important;
	color: var(--dark-btn)!important;
}

.zak-primary-nav li a {
    font-weight: 600!important;
}

.marquee {
    width: 100%;
    background-color: var(--primary);
    border-bottom: 2px solid #8a0921;
    padding: 8px 0;
    text-align: center;
    color: #fff;
}

	/* === Top Bar === */
.topbar-wrap {
  width: 100%;
  background-color: var(--primary);
  border-bottom: 2px solid #8a0921;
}
.topbar-inner {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.topbar-left {
  display: flex;
  align-items: center;
	justify-content:center;
  gap: 10px;
  flex: 1;
}
.topbar-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar-icon .glyphicon {
  font-size: 13px;
  color: #fff;
}
.topbar-text {
  font-size: 12.5px;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
  letter-spacing: 0.01em;
}
.topbar-text strong {
  color: #fff;
  font-weight: 600;
}
.topbar-badge {
  flex-shrink: 0;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 4px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.topbar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}

/* ===================== SECTION HEADERS ===================== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.section-eyebrow {
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.section-title { color: var(--text-primary); margin: 0; }

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  white-space: nowrap;
  transition: gap var(--transition-fast);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--primary-border);
}
.section-link svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
.section-link:hover { gap: 0.7rem; }
.section-link:hover svg { transform: translateX(3px); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
/*   min-height: 100vh; */
  padding: 7em 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920&q=85') center/cover no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 13, 20, 0.92) 0%,
    rgba(10, 13, 20, 0.72) 55%,
    rgba(10, 13, 20, 0.3) 100%
  );
}

.hero__runway-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero__runway-lines span {
  position: absolute;
  top: -20%;
  width: 1px;
  height: 140%;
  background: linear-gradient(to bottom, transparent 0%, rgba(204,64,0,0.14) 40%, rgba(204,64,0,0.07) 60%, transparent 100%);
  transform: rotate(15deg);
  transform-origin: top center;
  animation: runwayPulse 6s ease-in-out infinite;
}
.hero__runway-lines span:nth-child(1) { left: 15%; animation-delay: 0s; }
.hero__runway-lines span:nth-child(2) { left: 30%; animation-delay: 1s;   opacity: 0.7; }
.hero__runway-lines span:nth-child(3) { left: 50%; animation-delay: 2s; }
.hero__runway-lines span:nth-child(4) { left: 68%; animation-delay: 0.5s; opacity: 0.5; }
.hero__runway-lines span:nth-child(5) { left: 84%; animation-delay: 1.5s; opacity: 0.4; }

@keyframes runwayPulse {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 2rem;
  margin-left: calc((100vw - 1280px) / 2);
  padding-left: 2rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@media (max-width: 1280px) { .hero__content { margin-left: 2rem; } }

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: heroFadeUp 0.9s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(204,64,0,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(204,64,0,0); }
}

.hero__title {
  color: #ffffff;
  margin-bottom: 1.2rem;
  animation: heroFadeUp 0.9s 0.18s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__title em { font-style: normal; color: var(--primary-light); }

.hero__sub {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin-bottom: 2.25rem;
  animation: heroFadeUp 0.9s 0.26s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* ---- WordPress Search Form Overrides ---- */
.hero__search-wrap {
  margin-bottom: 2rem;
  animation: heroFadeUp 0.9s 0.34s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Target the native WP search form */
.hero__search-wrap .search-form,
.hero__search-wrap form[role="search"] {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-med);
}

.hero__search-wrap .search-form:focus-within,
.hero__search-wrap form[role="search"]:focus-within {
  border-color: rgba(204,64,0,0.55);
  background: rgba(255,255,255,0.14);
}

/* The label wrapping the input */
.hero__search-wrap .search-form label,
.hero__search-wrap .search-field {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
}

/* Text input */
.hero__search-wrap .search-form input[type="search"],
.hero__search-wrap input[type="search"],
.hero__search-wrap input[type="text"] {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  color: #8a94a6;
  padding: 1rem 0;
}

.hero__search-wrap .search-form input[type="search"]::placeholder,
.hero__search-wrap input[type="search"]::placeholder {
  color: rgba(255,255,255,0.5);
}

/* Submit button */
.hero__search-wrap .search-form input[type="submit"],
.hero__search-wrap .search-submit,
.hero__search-wrap button[type="submit"] {
  background: var(--primary);
  border: none;
  color: #ffffff;
  padding: 0 2rem;
  height: 56px;
  cursor: pointer;
  letter-spacing: 0.04em;
  white-space: nowrap;
  transition: background var(--transition-fast);
  border-radius: 0;
  flex-shrink: 0;
}

.hero__search-wrap .search-form input[type="submit"]:hover,
.hero__search-wrap .search-submit:hover,
.hero__search-wrap button[type="submit"]:hover {
  background: var(--dark-btn);
}

/* Quick Links */
.hero__quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  animation: heroFadeUp 0.9s 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75)!important;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}
.quick-link svg { width: 15px; height: 15px; }
.quick-link:hover {
  border-color: var(--primary);
  color: #ffffff;
  background: rgba(204,64,0,0.18);
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  z-index: 2;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ==========================================
   HERO SEARCH BAR
========================================== */

.hero__search-wrap {
    margin: 35px 0;
    width: 100%;
    max-width: 760px;
}

.hero__search-wrap .zak-search-container {
    position: relative;
    inset: auto;
    background: transparent;
    backdrop-filter: none;
    padding: 0;
    display: block;
    z-index: 1;
}


/* Hide close button in hero */
.hero__search-wrap .zak-icon--close {
    display: none;
}


/* ==========================================
   SEARCH FORM
========================================== */

.hero__search-wrap .zak-search-form {
    display: flex;
    align-items: center;
    gap: 14px;

    width: 100%;
    padding: 10px;
    border-radius: 999px;

    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);

    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}


/* ==========================================
   SEARCH INPUT AREA
========================================== */

.hero__search-wrap .zak-search-field-label {
    flex: 1;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.95);
    border-radius: 999px;
    border: none;
    padding: 0 22px;
    overflow: hidden;
    min-height: 62px;
    transition: all var(--transition-fast);
}

.hero__search-wrap .zak-search-field-label:focus-within {
    box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
}

.hero__search-wrap .zak-search-field::placeholder {
    color: #8a94a6!important;
}

/* ==========================================
   SEARCH ICON
========================================== */

.hero__search-wrap .zak-icon--search {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    color: var(--text-muted);
}

.hero__search-wrap .zak-icon--search svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}


/* ==========================================
   INPUT FIELD
========================================== */

.hero__search-wrap .zak-search-field {
    border: none !important;
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
    padding: 18px 0 !important;
    color: var(--text-primary);
}

.hero__search-wrap .zak-search-field::placeholder {
    color: var(--text-muted);
}


/* ==========================================
   SEARCH BUTTON
========================================== */

.hero__search-wrap .zak-search-submit {
    border: none;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    padding: 18px 30px;
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.hero__search-wrap .zak-search-submit:hover {
    background: var(--dark-btn);
    transform: translateY(-2px);
}

.zak-search-form .zak-search-field:focus{
	color: #8a94a6!important;
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .hero__search-wrap .zak-search-form {
        flex-direction: column;
        border-radius: 28px;
        padding: 14px;
    }

    .hero__search-wrap .zak-search-field-label {
        width: 100%;
        min-height: 56px;
    }

    .hero__search-wrap .zak-search-submit {
        width: 100%;
    }

}

/* ===================== TICKER BAR ===================== */
.ticker-bar {
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 46px;
  box-shadow: var(--shadow-sm);
}

.ticker__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.25rem;
  color: var(--primary);
  letter-spacing: 0.1em;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
  height: 100%;
  background: var(--bg-raised);
}

.ticker__live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.ticker__track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ticker__items {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  color: var(--text-secondary);
}
.ticker__items span::before {
  content: '✈';
  margin-right: 0.6rem;
  color: var(--primary);
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===================== STATS ===================== */
.stats-section {
  padding: 3.5rem 0;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item { flex: 1; text-align: center; padding: 0.75rem 2rem; }
.stat-number { color: var(--text-primary); margin-bottom: 0.3rem; }
.stat-plus { color: var(--primary); }
.stat-label { color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

/* ===================== DESTINATIONS ===================== */
.destinations-section {
  padding: 6rem 0;
  background: var(--bg-base);
}

.destinations-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  cursor: pointer;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  box-shadow: var(--shadow-card);
}
.dest-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.dest-card--large { grid-column: 1; grid-row: 1 / 3; min-height: 440px; }

.dest-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}
.dest-card:hover .dest-card__img { transform: scale(1.04); }

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
  pointer-events: none;
}

.dest-card__body { position: relative; z-index: 2; margin-top: auto; padding: 1.5rem; }
.dest-card--large .dest-card__body { padding: 2rem; }

.dest-card__badge {
  display: inline-block;
  padding: 0.22rem 0.7rem;
  background: rgba(204,64,0,0.85);
  border-radius: var(--radius-xl);
  color: #ffffff;
  margin-bottom: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.dest-card__code { color: rgba(255,255,255,0.7); letter-spacing: 0.14em; margin-bottom: 0.1rem; }
.dest-card__city { color: #ffffff; margin-bottom: 0.1rem; }
.dest-card__country { color: rgba(255,255,255,0.55); margin-bottom: 0.7rem; }

.dest-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.7);
  padding-top: 0.7rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.dest-card__meta span { display: inline-flex; align-items: center; gap: 0.3rem; }
.dest-card__meta svg { width: 13px; height: 13px; }
.dest-card__meta span:last-child { color: #ffb088; display: none; }

/* ===================== TERMINALS ===================== */
.terminals-section {
  padding: 6rem 0;
  background: var(--bg-surface);
  position: relative;
  overflow: hidden;
}

.terminals__bg-text {
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(0,0,0,0.03);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  line-height: 1;
  font-size: clamp(180px, 25vw, 360px);
  font-weight: 900;
}

.terminals-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
}

.terminal-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--transition-med);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.terminal-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform var(--transition-med);
  transform-origin: left;
}
.terminal-card:hover::before { transform: scaleX(1); }
.terminal-card:hover {
  border-color: var(--primary-border);
  background: var(--bg-surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.terminal-card__letter {
  color: rgba(0,0,0,0.05);
  font-weight: 900;
  margin-bottom: 0.75rem;
  line-height: 1;
  font-size: clamp(48px, 6vw, 72px);
}
.terminal-card__name { color: var(--text-primary); margin-bottom: 0.35rem; }
.terminal-card__airlines { color: var(--text-muted); margin-bottom: 0.6rem; }
.terminal-card__gates { color: var(--primary); margin-bottom: 0.75rem; letter-spacing: 0.05em; }
.terminal-card__map-link { color: var(--text-secondary); transition: color var(--transition-fast); }
.terminal-card:hover .terminal-card__map-link { color: var(--primary); }

.skylink-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(204,64,0,0.06);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  color: var(--text-secondary);
  position: relative;
  z-index: 1;
}
.skylink-strip svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.skylink-strip strong { color: var(--text-primary); }
.skylink-strip a { color: var(--primary); margin-left: auto; white-space: nowrap; }
.skylink-strip a:hover { text-decoration: underline; }

/* ===================== SERVICES ===================== */
.services-section {
  padding: 6rem 0;
  background: var(--bg-base);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 2rem 1.5rem;
  background: var(--bg-surface);
  transition: background var(--transition-med);
  position: relative;
}
.service-card:hover { text-decoration:none; background: var(--bg-raised); }

.service-card__icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--primary-glow);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 0.2rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.service-card__icon svg { width: 21px; height: 21px; }
.service-card:hover .service-card__icon {
  background: rgba(204,64,0,0.16);
  border-color: rgba(204,64,0,0.4);
}

.service-card__name { color: var(--text-primary); }
.service-card__desc { color: var(--text-muted); flex: 1; }
.service-card__arrow {
  color: var(--primary);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
}
.service-card:hover .service-card__arrow { opacity: 1; transform: translateX(0); }

/* ===================== AIRLINES ===================== */
.airlines-section {
  padding: 4rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.airlines-eyebrow { text-align: center; margin-bottom: 2rem; }

.airlines-track-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.airlines-track {
  display: flex;
  gap: 2.5rem;
  animation: airlineScroll 35s linear infinite;
  width: max-content;
}
@keyframes airlineScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.airline-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  color: var(--text-muted);
  white-space: nowrap;
  background: var(--bg-base);
  transition: all var(--transition-fast);
}
.airline-logo:hover {
  color: var(--primary);
  border-color: var(--primary-border);
  background: var(--primary-glow);
}

/* ===================== NEWS ===================== */
.news-section {
  padding: 6rem 0;
  background: var(--bg-base);
}

.news-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 1rem;
}

.news-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  cursor: pointer;
  box-shadow: var(--shadow-card);
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.news-card__img {
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transition: transform var(--transition-slow);
}
.news-card--featured .news-card__img { height: 240px; }
.news-card:not(.news-card--featured) .news-card__img { height: 150px; }
.news-card:hover .news-card__img { transform: scale(1.03); }

.news-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
}

.news-card__tag {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: var(--primary-glow);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-xl);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  align-self: flex-start;
}

.news-card__title { color: var(--text-primary); }
.news-card__title a { color: inherit; transition: color var(--transition-fast); }
.news-card__title a:hover { color: var(--primary); }
.news-card__excerpt { color: var(--text-secondary); flex: 1; }

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.news-card__date { color: var(--text-muted); }
.news-card__read { color: var(--primary); transition: letter-spacing var(--transition-fast); }
.news-card:hover .news-card__read { letter-spacing: 0.04em; }

.news-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 3rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
}

/* ===================== CTA — CALL NOW ===================== */
.cta-section {
  padding: 6rem 0;
  background: var(--dark-800);
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 90% at 80% 50%, rgba(204,64,0,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow { color: rgba(255,255,255,0.45); }
.cta-title   { color: var(--text-on-dark); margin-bottom: 0.65rem; }
.cta-sub     { color: var(--text-on-dark-2); }

/* ── Call button ── */
.cta-call {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
	align-items: end;
}

.cta-call__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.75rem;
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 20px rgba(204,64,0,0.35);
  align-self: flex-end;
}

.cta-call__btn:hover {
  background: var(--dark-btn);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(204,64,0,0.45);
}

.cta-call__btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(204,64,0,0.3);
}

.cta-call__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-call__icon-wrap svg {
  width: 22px;
  height: 22px;
  stroke: #ffffff;
}

.cta-call__label {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.cta-call__action {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-call__number {
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* ── Status badges ── */
.cta-call__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}

.cta-badge svg {
  width: 13px;
  height: 13px;
  stroke: rgba(255,255,255,0.5);
}

.cta-badge__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-call__btn { align-self: stretch; }
}

@media (max-width: 480px) {
  .cta-call__btn { padding: 1rem 1.25rem; }
  .cta-call__icon-wrap { width: 42px; height: 42px; }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .terminals-row { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: 1fr 1fr; }
  .dest-card--large { grid-column: 1 / -1; grid-row: auto; min-height: 280px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--featured { grid-column: 1 / -1; }
  .stats-grid { flex-wrap: wrap; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 50%; }
  .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 680px) {
  .container { padding: 0 1.25rem; }
  .destinations-grid { grid-template-columns: 1fr; }
  .terminals-row { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { flex-direction: column; }
  .stat-item { flex: 1 1 100%; }
  .hero__scroll-indicator { display: none; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

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

.about-section {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-media { position: relative; }

.about-media__img-wrap { position: relative; }

.about-media__img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
}

.about-media__frame {
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 2px solid var(--primary-border);
  border-radius: var(--radius-lg);
  z-index: 0;
  pointer-events: none;
}

.about-media__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(204,64,0,0.35);
  min-width: 110px;
  text-align: center;
}

.about-media__badge-number {
  color: #ffffff;
  letter-spacing: 0.04em;
}

.about-media__badge-label {
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-content .section-eyebrow { margin-bottom: 0.5rem; }
.about-content .section-title   { margin-bottom: 1.5rem; }

.about-content__lead {
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-content__body {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-content__pillars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.about-pillar:hover {
  border-color: var(--primary-border);
  background: rgba(204,64,0,0.03);
}

.about-pillar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  border: 1px solid var(--primary-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.about-pillar__icon svg { width: 20px; height: 20px; }

.about-pillar__title {
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.about-pillar__desc { color: var(--text-muted); }

.about-content__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: #ffffff!important;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 4px 16px rgba(204,64,0,0.25);
}

.about-content__cta svg {
  width: 16px;
  height: 16px;
  stroke: #ffffff;
  transition: transform var(--transition-fast);
}

.about-content__cta:hover { background: var(--dark-btn); transform: translateY(-2px); color: #fff!important; }
.about-content__cta:hover svg { transform: translateX(3px); }

@media (max-width: 960px) {
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-media__img-wrap img { height: 360px; }
  .about-media__badge { right: 1rem; bottom: -1rem; }
  .about-media__frame { display: none; }
}

@media (max-width: 480px) {
  .about-media__img-wrap img { height: 260px; }
}


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

.faq-section {
  padding: 6rem 0;
  background: var(--bg-base);
  border-top: 1px solid var(--border);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faq-header { position: sticky; top: 2rem; }
.faq-header .section-eyebrow { margin-bottom: 0.5rem; }
.faq-header .section-title   { margin-bottom: 1rem; }

.faq-header__sub {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}

.faq-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--primary);
  color: #ffffff!important;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: 0 4px 14px rgba(204,64,0,0.22);
}

.faq-header__cta svg { width: 17px; height: 17px; stroke: #ffffff; flex-shrink: 0; }
.faq-header__cta:hover { background: var(--dark-btn); transform: translateY(-1px); color: #fff!important; }

.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  box-shadow: var(--shadow-card);
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  text-align: left;
  color: var(--text-primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.faq-question:hover { background: var(--bg-raised); color: var(--text-primary); }

.faq-item.is-open .faq-question {
  background: rgba(204,64,0,0.04);
  color: var(--primary);
}

.faq-icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition-med), color var(--transition-fast);
}

.faq-icon svg { width: 18px; height: 18px; }

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer p {
  padding: 0 1.5rem 1.35rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.faq-answer p strong { color: var(--text-primary); }

.faq-answer p a { color: var(--primary); text-decoration: underline; }
.faq-answer p a:hover { color: var(--dark-btn); }

@media (max-width: 900px) {
  .faq-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-header { position: static; }
}

@media (max-width: 480px) {
  .faq-question { padding: 1.1rem 1.25rem; }
  .faq-answer p { padding: 0 1.25rem 1.1rem; }
}

.related-pages {
    margin-top: 40px;
}

.related-pages h2 {
    margin-bottom: 25px;
    font-size: 32px;
    font-weight: 700;
}

.latest-page {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
    transition: var(--transition-med);
    height: 100%;
	margin-bottom: 20px;
}

.latest-page:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.latest-page img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.latest-page-title {
    margin: 0;
    padding: 18px;
}

.latest-page-title a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
}

/* ===================================================
   PAGE TEMPLATES
=================================================== */

.inner-wrapper,
.gallery-banner,
.inner-child-wrapper {
    padding: 40px 0;
    background: linear-gradient(
        135deg,
        var(--bg-surface),
        var(--bg-raised)
    );
    border-bottom: 1px solid var(--border);
}

.inner-title h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
	margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
}

.brcr {
    color: var(--text-muted);
    font-size: 14px;
}

.inner-page {
    padding: 60px 0;
    background: var(--bg-base);
}

.child-banner-left {
    height: 420px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.child-banner-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acf-card {
    margin-top: 25px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

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

.acf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.acf-item:last-child {
    border-bottom: 0;
}

.acf-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.acf-link:hover {
    color: var(--primary-light);
}

.child-content {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
}

.child-content {
    padding: 35px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.child-content h2,
.child-content h3 {
    color: var(--text-primary);
    font-weight: 700;
    margin-top: 30px;
}

.child-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.child-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.child-content table th {
    background: var(--primary);
    color: white;
}

.child-content table th,
.child-content table td {
    border: 1px solid var(--border);
    padding: 12px;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.side-latest {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.side-latest .heading {
    margin: 0;
    padding: 18px 20px;
    background: var(--primary);
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.latest-side {
    list-style: none;
    margin: 0;
    padding: 0;
}

.latest-side li {
    border-bottom: 1px solid var(--border);
}

.latest-side li:last-child {
    border-bottom: none;
}

.latest-side li p{
	margin: 0;
}

.side-a {
    display: block;
    padding: 16px 20px;
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.side-a:hover {
    background: var(--primary-glow);
    color: var(--primary);
}

.child-banner {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.child-banner img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.page-template-terminal-child .inner-wrapper {
    position: relative;
    padding: 120px 0;
    background-size: cover !important;
    background-position: center !important;
}

.page-template-terminal-child .inner-wrapper:before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(13,17,23,.65);
}

.page-template-terminal-child .container {
    position: relative;
    z-index: 2;
}

.page-template-terminal-child h1,
.page-template-terminal-child .brcr {
    color: white;
}

.custom-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 15px;
    margin-bottom: 50px;
}

.custom-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.left {
    height: 500px;
}

.right {
    display: grid;
    gap: 15px;
}

.bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 768px){

	
	.child-banner img{
		height: 250px;
	}
    .inner-title h1{
        font-size:32px;
    }

    .child-banner-left{
        height:260px;
        margin-bottom:25px;
    }

    .child-content{
        padding:22px;
    }

    .sidebar{
        margin-top:30px;
        position:static;
    }

    .custom-gallery{
        grid-template-columns:1fr;
    }

    .left{
        height:300px;
    }
}


/* ==========================================
   BLOG PAGE LAYOUT
========================================== */

.atl-section {
    padding: 70px 0;
    background: var(--bg-base);
}

.atl-section-light {
    background: var(--bg-base);
}

.atl-text-center {
    text-align: center;
}

.atl-section-title {
    color: var(--text-primary);
    margin-bottom: 50px;
    position: relative;
}

.atl-section-title::after {
    content: "";
    width: 70px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin: 15px auto 0;
    border-radius: var(--radius-xl);
}


/* ==========================================
   BLOG CARD
========================================== */

.atl-blog-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-med),
                box-shadow var(--transition-med);
    border: 1px solid var(--border);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.atl-blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.atl-blog-card-img {
    position: relative;
    overflow: hidden;
    background: var(--bg-raised);
    min-height: 240px;
}

.atl-blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.atl-blog-card:hover .atl-blog-card-img img {
    transform: scale(1.06);
}

.atl-blog-card-date {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(13, 17, 23, 0.9);
    color: var(--text-on-dark);
    padding: 8px 14px;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
}

.atl-blog-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.atl-blog-card-body h3 {
    color: var(--text-primary);
    margin-bottom: 14px;
    transition: color var(--transition-fast);
}

.atl-blog-card:hover h3 {
    color: var(--primary);
}

.atl-blog-card-body p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.atl-blog-read-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.atl-blog-read-more:hover {
    color: var(--dark-btn);
    text-decoration: none;
}

.atl-blog-read-more svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform var(--transition-fast);
}

.atl-blog-read-more:hover svg {
    transform: translateX(4px);
}


/* Remove anchor underline around card */
.col-sm-6 > a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.col-sm-6 > a:hover {
    text-decoration: none;
    color: inherit;
}


/* ==========================================
   SIDEBAR
========================================== */

.atl-sidebar {
    position: sticky;
    top: 30px;
}

.atl-sidebar-widget {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

.atl-sidebar-title {
    color: var(--text-primary);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.atl-sidebar-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-xl);
}


/* ==========================================
   SIDEBAR LIST
========================================== */

.atl-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.atl-sidebar-list li {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.atl-sidebar-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.atl-sidebar-list img {
    width: 80px;
    height: 70px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
    background: var(--bg-raised);
}

.atl-sidebar-list a {
    text-decoration: none;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.atl-sidebar-list a:hover {
    color: var(--primary);
}

.atl-sidebar-list span {
    display: block;
    color: var(--text-muted);
    margin-top: 6px;
}


/* ==========================================
   PAGINATION
========================================== */

.nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.nav-links a,
.nav-links span {
    min-width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    padding: 0 16px;
}

.nav-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.nav-links .current {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}


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

.atl-mt-24 {
    margin-top: 30px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .atl-sidebar {
        position: static;
        margin-top: 40px;
    }

    .atl-blog-card-img {
        min-height: 220px;
    }

}

@media (max-width: 767px) {

    .atl-section {
        padding: 50px 0;
    }

    .atl-section-title {
        margin-bottom: 35px;
    }

    .atl-blog-card {
        margin-bottom: 25px;
    }

    .atl-blog-card-img {
        min-height: 220px;
    }

    .atl-blog-card-body {
        padding: 20px;
    }

    .atl-sidebar-widget {
        padding: 22px;
    }

}


/* ==========================================
   FOOTER
========================================== */

.site-footer {
    background: var(--dark-900);
    color: var(--text-on-dark-2);
    position: relative;
    overflow: hidden;
}


/* ==========================================
   PRE FOOTER
========================================== */

.site-footer-logo img {
    width: 80%;
    margin-bottom: 20px;
}

.pre-footer {
    padding-top: 70px;
	padding-bottom: 50px;
    position: relative;
}

.pre-footer .row {
    row-gap: 40px;
}

.menu-head {
    color: var(--text-on-dark);
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 14px;
}

.menu-head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-xl);
}


/* ==========================================
   FOOTER MENUS
========================================== */

.menu-new ul,
.menu-new-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu-new ul li,
.menu-new-footer ul li {
    margin-bottom: 12px;
}

.menu-new ul li:last-child,
.menu-new-footer ul li:last-child {
    margin-bottom: 0;
}

.menu-new a,
.menu-new-footer a {
    color: var(--text-on-dark-2);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    display: inline-flex;
    align-items: center;
}

.menu-new a:hover,
.menu-new-footer a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}


/* ==========================================
   CHILD MENU
========================================== */

.menu-new .children,
.menu-new-footer .children {
    margin-top: 14px;
    margin-left: 16px;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,0.08);
}

.menu-new .children li,
.menu-new-footer .children li {
    margin-bottom: 10px;
}

.menu-new .children a,
.menu-new-footer .children a {
    color: var(--text-on-dark-3);
}

.menu-new .children a:hover,
.menu-new-footer .children a:hover {
    color: var(--primary-light);
}


/* ==========================================
   DISCLAIMER
========================================== */

.disc__main {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 30px 0;
}

.disc__main p {
    margin: 0;
    color: var(--text-on-dark-2);
}

.disc__main strong {
    color: var(--text-on-dark);
}


/* ==========================================
   COPYRIGHT
========================================== */

.site-info {
    padding: 28px 0 78px;
    background: var(--dark-800);
}

.site-info p {
    margin: 0;
    color: var(--text-on-dark-3);
}

.site-info .row {
    align-items: center;
}


/* ==========================================
   FOOTER MENU (BOTTOM)
========================================== */

.menu-new-footer ul {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.menu-new-footer li {
    margin: 0;
}


/* ==========================================
   CURRENT MENU ITEM
========================================== */

.menu-new .current_page_item > a,
.menu-new .current_page_parent > a,
.menu-new .current_page_ancestor > a,
.menu-new-footer .current_page_item > a,
.menu-new-footer .current_page_parent > a,
.menu-new-footer .current_page_ancestor > a {
    color: var(--primary-light);
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 991px) {

    .pre-footer {
		padding-top: 55px;
		padding-bottom: 40px;
    }

    .menu-new-footer ul {
        justify-content: flex-start;
        margin-top: 20px;
    }

}

/* Desktop - static */
.marquee {
    width: 100%;
    text-align: center;
}

.marquee span {
    display: inline-block;
}

/* Mobile only */
@media (max-width: 767px) {

    .pre-footer {
        padding-top: 50px;
        padding-bottom: 30px;
    }

    .pre-footer .col-md-3 {
        margin-bottom: 15px;
    }

    .menu-new .children,
    .menu-new-footer .children {
        margin-left: 10px;
        padding-left: 14px;
    }

    .site-info {
        text-align: center;
    }

    .menu-new-footer ul {
        justify-content: center;
    }

    .marquee {
        overflow: hidden;
        white-space: nowrap;
    }

    .marquee span {
        display: inline-block;
        padding-right: 100%;
        font-size: 13px;
        animation: marquee-right 15s linear infinite;
    }
}

@keyframes marquee-right {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


.footercall button {
    background: var(--primary);
}
.footercall button:hover{
    background: var(--dark-btn);
}
.footercall {
    position: fixed;
    width: 100%;
    bottom: 0;
    text-align: center;
    z-index: 999;
}
.footercall button {
    width: 100%;
    border: 0;
}
.footercall button .content {
    color: #fff;
    font-size: 24px;
    text-transform: capitalize;
}
.footercall button .content svg {
    width: 30px;
    height: 25px;
    float: none;
    margin-bottom: -4px;
    margin-right: 10px;
}
.footercall button .content svg path {
    fill: #fff;
}
.footercall button .content svg path:nth-child(2) {
    -webkit-animation: 1s cubic-bezier(0.1, 0.57, 0.5, 1) infinite header-phone;
    animation: 1s cubic-bezier(0.1, 0.57, 0.5, 1) infinite header-phone;
}
.footercall button .content svg path:nth-child(3) {
    -webkit-animation: 1s cubic-bezier(0.1, 0.57, 0.5, 1) infinite header-phone2;
    animation: 1s cubic-bezier(0.1, 0.57, 0.5, 1) infinite header-phone2;
}
@-webkit-keyframes header-phone {
    0%,
    30% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
@keyframes header-phone {
    0%,
    30% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
    }
    80% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
@-webkit-keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
    }
    70%,
    90% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
@keyframes header-phone2 {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-20px, 20px, 0);
        transform: translate3d(-20px, 20px, 0);
    }
    70%,
    90% {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0;
    }
}
.site-info-main {
    margin-bottom: 50px;
    text-align: center;
}
@media only screen and (max-width: 319px),
    (min-width: 320px) and (max-width: 359px),
    (min-width: 360px) and (max-width: 413px),
    (min-width: 414px) and (max-width: 643px),
    (min-width: 644px) and (max-width: 767px) {
    .footercall button {
        padding: 20px;
    }
    .footercall button .content {
        font-size: 18px;
    }
    .footercall button .content svg {
        width: 20px;
        height: 20px;
    }
}
