﻿/* ================================================================
   AKDENORA VIP TRANSFER — Design System 3.0
   Palette : Deep Navy #0D1B35 | Gold #C9A84C | White #FFFFFF
   Style   : Corporate Clean / Bootstrap 4 native
   Updated : 2026
   ================================================================ */

/* Primary webfont is loaded in css/style.css */

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  --navy: #0D1B35;
  --navy-800: #122040;
  --navy-600: #1C335E;
  --navy-100: #D6DFF0;
  --gold: #C9A84C;
  --gold-dark: #A8882E;
  --gold-light: #F8EFD7;
  --white: #FFFFFF;
  --light: #F5F7FA;
  --light-alt: #EEF1F6;
  --text: #1A202C;
  --text-2: #374151;
  --text-muted: #6B7280;
  --border: #DDE2EA;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, .06), 0 2px 10px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-lg: 0 12px 36px rgba(0, 0, 0, .12), 0 4px 12px rgba(0, 0, 0, .06);
  --transition: 0.22s ease;
  --c-bg: #F5F7FA;
  /* Transfer visuals ratio (width / height). Update this single value when admin ratio changes. */
  --transfer-media-ratio: 4 / 1;
}

/* ================================================================
   BASE
   ================================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
  padding-top: 72px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  margin-top: 0;
}

a {
  text-decoration: none !important;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: rgba(201, 168, 76, .2);
}

/* ================================================================
   NAVBAR
   ================================================================ */
.akd-navbar {
  background-color: var(--navy) !important;
  height: 72px;
  padding: 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .25);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: box-shadow .22s ease;
}

.akd-navbar.scrolled {
  background-color: rgba(13, 27, 53, .97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .35);
}

.akd-brand {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 0;
}

.akd-brand-img {
  height: 46px;
  width: auto;
  display: block;
}

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

.akd-brand-name {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
}

.akd-brand-tagline {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.akd-nav-links .nav-item {
  margin: 0 2px;
}

.akd-nav-link {
  font-size: 13.5px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, .82) !important;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: color .22s ease, background .22s ease;
  letter-spacing: .2px;
}

.akd-nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, .1);
}

.akd-nav-link i {
  font-size: 15px;
  vertical-align: -2px;
}

.akd-lang-btn {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: rgba(255, 255, 255, .85) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.akd-lang-btn:hover {
  color: #fff !important;
}

/* Keep a single clean caret on language selector.
   Prevent overlap with generic .nav-link::after underline styles. */
.akd-lang-btn.dropdown-toggle::after {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  color: rgba(255, 255, 255, .78);
  margin-left: 6px;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  transform: none !important;
  vertical-align: middle;
}

.akd-lang-btn:hover::after,
.akd-lang-btn.show::after {
  color: #fff;
  transform: none !important;
}

.akd-lang-menu {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  min-width: 160px;
  padding: 6px;
}

.akd-lang-item {
  border-radius: 6px;
  padding: 8px 12px !important;
  font-size: 13px;
  font-weight: 500;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background .22s ease;
}

.akd-lang-item:hover {
  background: var(--light);
}

.akd-toggler {
  border-color: rgba(255, 255, 255, .25) !important;
  padding: 6px 10px;
}

.akd-toggler:focus {
  box-shadow: none !important;
}

@media (max-width: 991px) {

  /* Mobile: full-width dropdown under navbar */
  .akd-navbar {
    height: auto;
    padding: 0;
  }

  .akd-navbar>.container {
    padding: 0 16px;
    min-height: 60px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .akd-navbar .navbar-collapse {
    width: 100%;
    background: linear-gradient(180deg, #0d1b35 0%, #11244a 100%);
    border-top: 2px solid var(--gold);
    padding: 8px 0 16px;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .35);
  }

  /* Nav links: card-style rows */
  .akd-navbar .akd-nav-links {
    flex-direction: column;
    width: 100%;
    margin: 0 !important;
    padding: 0 4px;
    gap: 2px;
  }

  .akd-navbar .akd-nav-links .nav-item {
    width: 100%;
    margin: 0;
  }

  .akd-nav-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, .9) !important;
    border-radius: 10px;
    border-left: 3px solid transparent;
    transition: all .2s ease;
  }

  .akd-nav-link:hover,
  .akd-nav-link.active {
    background: rgba(201, 168, 76, .12) !important;
    border-left-color: var(--gold) !important;
    color: var(--gold) !important;
  }

  .akd-nav-link i {
    font-size: 18px;
    width: 22px;
    text-align: center;
    opacity: .8;
  }

  /* Language section — separator */
  .akd-navbar .navbar-nav.ml-auto {
    width: 100%;
    margin: 8px 0 0 !important;
    padding: 10px 4px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .akd-lang-btn {
    display: flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, .85) !important;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    width: 100%;
  }

  .akd-lang-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 4px 0 0;
  }

  .akd-lang-item {
    padding: 9px 16px !important;
    border-radius: 8px;
    color: rgba(255, 255, 255, .75) !important;
  }

  .akd-lang-item:hover {
    background: rgba(255, 255, 255, .08) !important;
    color: #fff !important;
  }
}

/* ================================================================
   HERO
   ================================================================ */
.akdenora-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: visible;
  background: var(--navy);
  padding-top: 76px;
  padding-bottom: 60px;
  box-sizing: border-box;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.main-hero-slider,
.swiper-wrapper,
.swiper-slide {
  height: 100%;
}

.hero-slide-bg {
  position: relative;
  height: 100%;
  width: 100%;
}

.hero-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 53, .78) 0%, rgba(13, 27, 53, .5) 60%, rgba(0, 0, 0, .35) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 20px 0 28px;
}

.hero-text {
  text-align: left;
  margin-bottom: 16px !important;
  /* style.css 40px override */
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, .18);
  border: 1px solid rgba(201, 168, 76, .4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.5px;
}

.hero-title-sub {
  font-size: clamp(1rem, 2.5vw, 1.6rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, .8);
  max-width: 600px;
  margin: 0 auto 10px;
}

.hero-search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  margin-top: 14px;
  overflow: visible;
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
}

.hero-search-form {
  width: 100%;
  flex: 1 1 100%;
  min-width: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounceY 2s ease infinite;
}

.hero-scroll-indicator i {
  font-size: 20px;
}

@keyframes bounceY {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ================================================================
   SEARCH FORM
   ================================================================ */
.hsf-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
  width: 100%;
}

.hsf-field {
  flex: 1 1 0;
  min-width: 0;
}

.hsf-field--lg {
  flex: 2 1 0;
  min-width: 0;
}

.hsf-field--sm {
  flex: 0 0 120px;
  width: 120px;
}

.hsf-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  cursor: text;
  background: #fff;
  transition: border-color .22s ease, box-shadow .22s ease;
  height: 100%;
  min-height: 60px;
}

.hsf-input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.hsf-icon {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.hsf-input-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hsf-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 2px;
  cursor: pointer;
}

.hsf-input {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  height: auto !important;
  box-shadow: none !important;
  outline: none !important;
  width: 100%;
  margin: 0;
}

.hsf-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

/* Native select inside hsf field */
select.hsf-input,
select.hsf-native-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0 center !important;
  padding-right: 16px !important;
}

.hsf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-600);
  font-size: 20px;
  padding: 8px 0;
  align-self: center;
}

.paxs {
  display: none;
  min-width: 220px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 12px;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  bottom: auto;
}

.paxs.pax-open {
  display: block;
}

.pax-row {
  margin-bottom: 10px;
}

.pax-row:last-child {
  margin-bottom: 0;
}

.passenger-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.passenger-line label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  margin: 0;
}

.hsf-submit {
  flex-shrink: 0;
  align-self: stretch;
}

.hsf-btn {
  height: 100%;
  min-height: 60px;
  padding: 0 28px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  cursor: pointer;
  transition: background .22s ease, box-shadow .22s ease;
  letter-spacing: .3px;
}

.hsf-btn:hover {
  background: var(--navy-600);
  box-shadow: 0 4px 16px rgba(13, 27, 53, .35);
}

.hsf-btn i {
  font-size: 18px;
}

.live-result {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
}

.live-result li {
  padding: 10px 14px;
  font-size: 13.5px;
  cursor: pointer;
  transition: background .22s ease;
  list-style: none;
}

.live-result li:hover {
  background: var(--light);
}

@media (max-width: 991px) {
  .hsf-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  .hsf-field,
  .hsf-field--lg {
    flex: 1 1 100%;
    width: 100%;
  }

  .hsf-field--sm {
    flex: 1 1 calc(50% - 4px);
    width: calc(50% - 4px);
  }

  .hsf-divider {
    display: none;
  }

  .hsf-submit {
    flex: 1 1 100%;
    width: 100%;
  }

  .hsf-btn {
    width: 100%;
    justify-content: center;
    min-height: 52px;
  }

  .hsf-input-wrap {
    min-height: 54px;
  }

  .hero-search-card {
    padding: 16px;
    border-radius: var(--radius);
  }
}

/* ================================================================
   SECTION COMMONS
   ================================================================ */
.features-section,
.destinations-section,
.blog-section {
  padding: 72px 0;
}

.why-section {
  padding: 72px 0;
  background: #f8fafc;
}

.social-section {
  padding: 48px 0;
  background: var(--light);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.section-header--center {
  justify-content: center;
  text-align: center;
}

.section-header--center .section-title-group {
  align-items: center;
  text-align: center;
}

.section-header-center {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  padding-left: 28px;
  position: relative;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0;
  letter-spacing: -.3px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color .22s ease;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--gold-dark);
}

/* ================================================================
   FEATURE CARDS
   ================================================================ */
.features-section {
  background: var(--light) !important;
  margin-top: 0 !important;
  /* style.css -50px overlay fix */
  padding: 64px 0 !important;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  height: 100%;
  transition: box-shadow .22s ease, transform .22s ease;
  text-align: center;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: background .22s ease;
}

.feature-card:hover .feature-icon {
  background: var(--gold);
}

.feature-icon i {
  font-size: 26px;
  color: var(--gold-dark);
  transition: color .22s ease;
}

.feature-card:hover .feature-icon i {
  color: var(--navy);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ================================================================
   DESTINATION CARDS
   ================================================================ */
.destination-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .22s ease, transform .22s ease;
  text-decoration: none !important;
  height: 100%;
}

.destination-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.destination-image {
  position: relative;
  aspect-ratio: var(--transfer-media-ratio);
  height: auto;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.07);
}

.destination-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13, 27, 53, .55) 100%);
}

.destination-overlay {
  display: none;
}

.destination-content {
  padding: 16px 18px;
}

.destination-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.destination-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.destination-meta span {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.destination-meta span+span::before {
  content: '-';
  color: var(--text-muted);
  margin-right: 2px;
}

.destination-meta span i {
  font-size: 14px;
  color: var(--gold);
}

.destination-excerpt {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.destination-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 0;
  border-top: 1px solid var(--border);
}

.price-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.price-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
}

/* ================================================================
   WHY US SECTION
   ================================================================ */
.why-section .section-title {
  color: var(--text);
}

.why-section .section-label {
  color: var(--gold);
}

.why-section .section-label::before {
  background: var(--gold);
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: background .22s ease, border-color .22s ease;
}

.why-card:hover {
  background: #fff;
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(201, 168, 76, .15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.why-icon i {
  font-size: 26px;
  color: var(--gold);
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.why-slider .swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
}

.why-slider .swiper-pagination-bullet-active {
  background: var(--gold);
}

/* ================================================================
   SOCIAL SECTION
   ================================================================ */
.social-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none !important;
  transition: border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.social-item:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: var(--shadow-sm);
}

.social-item i {
  font-size: 18px;
}

/* ================================================================
   BLOG SECTION
   ================================================================ */
.blog-section {
  background: var(--light);
}

.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: box-shadow .22s ease, transform .22s ease;
  display: block;
  text-decoration: none !important;
  color: inherit;
}

.blog-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  color: inherit;
}

.blog-card-image {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

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

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

.blog-card-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ================================================================
   FOOTER
   ================================================================ */
.akd-footer {
  background: #f8fafc;
  color: var(--text-2);
  padding: 64px 0 0;
  border-top: 3px solid var(--gold);
}

.akd-footer-brand-row {
  border-color: var(--border) !important;
}

.akd-footer-logo img {
  max-height: 56px;
  width: auto;
  opacity: .9;
}

.akd-footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

.akd-footer-heading {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  color: var(--gold-dark) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.akd-footer-links {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.akd-footer-links li {
  margin-bottom: 10px;
}

.akd-footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color .22s ease;
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.akd-footer-links a:hover {
  color: var(--gold-dark);
}

.akd-footer-links a i {
  flex-shrink: 0;
  margin-top: 3px;
}

.akd-footer-bottom {
  border-top: 1px solid var(--border);
}

.akd-footer-bottom small {
  font-size: 12px;
  color: var(--text-muted);
}

.akd-footer-policies {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  margin-top: 4px;
}

.akd-footer-policies a {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: none !important;
  transition: color .22s ease;
}

.akd-footer-policies a:hover {
  color: var(--gold-dark);
}

.akd-footer-powered img {
  max-height: 28px;
  opacity: .55;
  transition: opacity .22s ease;
}

.akd-footer-powered:hover img {
  opacity: .85;
}

/* ================================================================
   FLOATING BUTTONS
   ================================================================ */
.whatsapp-fixed,
.phone-fixed {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: transform .22s ease, box-shadow .22s ease;
  text-decoration: none !important;
}

.whatsapp-fixed {
  background: #25D366;
  bottom: 24px;
}

.phone-fixed {
  background: var(--navy);
  bottom: 24px;
}

.whatsapp-fixed:hover,
.phone-fixed:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .28);
}

/* ================================================================
   BOOTSTRAP OVERRIDES
   ================================================================ */
.btn-primary {
  background-color: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.btn-primary:hover {
  background-color: var(--navy-600) !important;
  border-color: var(--navy-600) !important;
}

/* ================================================================
   DESTINATION INFO PAGE  (di-*)
   ================================================================ */

/* Hero */
.di-hero {
  position: relative;
  min-height: 0;
  aspect-ratio: var(--transfer-media-ratio);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(14px, 4vw, 72px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: clamp(14px, 3vw, 48px);
}

.di-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 53, .55) 0%, rgba(13, 27, 53, .82) 100%);
  z-index: 1;
}

.di-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
  flex-wrap: wrap;
}

.di-breadcrumb a {
  color: rgba(255, 255, 255, .75);
  transition: color .2s ease;
}

.di-breadcrumb a:hover {
  color: var(--gold);
}

.di-breadcrumb i {
  font-size: 14px;
}

.di-breadcrumb span {
  color: var(--gold);
  font-weight: 600;
}

.di-hero-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.di-hero-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.di-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

.di-hero-meta i {
  color: var(--gold);
}

/* Quick Book Bar */
.di-book-bar {
  background: var(--navy);
  padding: 14px 0;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 72px;
  z-index: 100;
}

.di-book-bar-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.di-book-bar-info span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, .8);
  font-weight: 500;
}

.di-book-bar-info i {
  color: var(--gold);
  font-size: 16px;
}

.di-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  transition: background .2s ease, transform .2s ease;
  white-space: nowrap;
}

.di-book-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Content section */
.di-content-section {
  padding: 56px 0 40px;
  background: var(--light);
}

.di-content-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px 28px;
  margin-bottom: 24px;
}

.di-section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid rgba(71, 94, 138, .1);
  display: flex;
  align-items: center;
  gap: 10px;
}

.di-section-title i {
  color: var(--gold);
  font-size: 22px;
}

.di-content-body {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.8;
}

.di-map-card {
  padding: 28px;
}

.di-map-wrap {
  border-radius: 10px;
  overflow: hidden;
}

.di-map-wrap iframe {
  display: block;
  width: 100%;
  min-height: 320px;
  border: none;
}

/* Sidebar */
.di-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.di-sidebar-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 28px 24px;
}

.di-sidebar-book {
  text-align: center;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.di-sidebar-icon {
  width: 64px;
  height: 64px;
  background: rgba(201, 168, 76, .18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.di-sidebar-icon i {
  font-size: 30px;
  color: var(--gold);
}

.di-sidebar-book h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.di-sidebar-book p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.di-book-btn-lg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy) !important;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  transition: background .2s ease, transform .2s ease;
  letter-spacing: .3px;
}

.di-book-btn-lg:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.di-sidebar-features h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(71, 94, 138, .1);
}

.di-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.di-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
}

.di-feature-list li i {
  color: #22c55e;
  font-size: 18px;
  flex-shrink: 0;
}

/* Why section (dark bg) */
.di-why-section {
  background: #f8fafc;
  padding: 72px 0;
}

.di-why-section .section-label {
  color: var(--gold-dark);
}

/* Responsive */
@media (max-width: 991px) {
  .di-hero {
    min-height: 0;
  }

  .di-sidebar {
    position: static;
  }

  .di-book-bar {
    position: static;
  }

  .di-book-bar-info {
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .di-hero {
    align-items: center;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .di-breadcrumb,
  .di-hero-meta {
    display: none;
  }

  .di-hero-title {
    font-size: clamp(1rem, 5vw, 1.4rem);
    margin: 0;
    text-align: center;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .di-book-bar .col-auto {
    width: 100%;
  }

  .di-book-btn {
    width: 100%;
    justify-content: center;
  }

  .di-content-card {
    padding: 20px 16px;
  }
}

/* ================================================================
   GENERIC UTILITIES
   ================================================================ */
.section-gap {
  padding: 72px 0;
}

.msg-box {
  background: var(--light);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-2);
}

.panel-text {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.75;
}

.panel-text h1,
.panel-text h2,
.panel-text h3,
.panel-text h4,
.panel-text h5,
.panel-text h6 {
  margin-bottom: 10px;
}

.panel-text p {
  margin-bottom: 12px;
}

.panel-text ul {
  padding-left: 20px;
  list-style: disc;
}

.panel-text img,
.panel-text iframe,
.panel-text video {
  max-width: 100%;
}

.panel-text iframe {
  width: 100%;
}

.dotted-gradient {
  height: 30px;
  border-left: 2px dashed rgba(13, 27, 53, .25);
  margin-left: 7px;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 991px) {
  body {
    padding-top: 60px;
  }

  .akdenora-hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 38px 0 38px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .features-section,
  .destinations-section,
  .blog-section,
  .why-section {
    padding: 52px 0;
  }
}

@media (max-width: 576px) {
  .hero-search-card {
    padding: 14px;
  }

  .hero-badge {
    font-size: 10px;
  }

  .feature-card,
  .why-card {
    padding: 24px 16px;
  }

  .whatsapp-fixed,
  .phone-fixed {
    width: 44px;
    height: 44px;
    font-size: 19px;
    right: 14px;
  }

  .whatsapp-fixed {
    bottom: 18px;
  }

  .phone-fixed {
    bottom: 18px;
  }

  /* Center destinations header on mobile (override base mobile rules) */
  .section-header.section-header--center {
    align-items: center;
    text-align: center;
  }

  .section-header.section-header--center .section-title-group {
    align-items: center;
    text-align: center;
    margin: 0 auto;
  }

  /* Tighten spacing between Why section and Destinations on mobile */
  .why-section {
    padding-bottom: 32px;
  }

  .destinations-section {
    padding-top: 32px;
  }

  /* Social grid: keep symmetry for 5 items */
  .social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-items: center;
  }

  .social-item {
    width: 100%;
    justify-content: center;
  }

  .social-grid .social-item:last-child {
    grid-column: 1 / -1;
    max-width: 220px;
  }
}

@media (max-width: 768px) {
  /* Fallback: allow horizontal swipe if swiper init fails on mobile */
  .why-slider:not(.swiper-initialized) {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .why-slider:not(.swiper-initialized)::-webkit-scrollbar {
    display: none;
  }

  .why-slider:not(.swiper-initialized) .swiper-wrapper {
    display: flex;
    gap: 16px;
  }

  .why-slider:not(.swiper-initialized) .swiper-slide {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}
