/* =========================================
   DESTINATION SUBPAGES
   ========================================= */

/* =========================================
   HERO SECTION
   ========================================= */

.destination-hero {
  padding: 70px 0 40px;
}

.destination-hero-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0px 12px 50px rgba(5, 6, 60, 0.1);
}

.destination-hero-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.destination-hero-content {
  max-width: 900px;
}

.destination-hero-content h1 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 820px;
}

.destination-intro {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
  max-width: 860px;
}

/* =========================================
   SHARED SECTION STYLES
   ========================================= */

.destination-section {
  padding: 42px 0;
}

.destination-section.section-bg-soft {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(239, 238, 250, 0.18) 100%
  );
  border-radius: 28px;
}

.destination-section h2 {
  margin-bottom: 20px;
}

.destination-section > .container > p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}

.destination-divider {
  width: 90px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--theme-color) 0%,
    var(--theme-color-2) 100%
  );
  margin-bottom: 18px;
}

/* =========================================
   USP / HIGHLIGHTS SECTION
   ========================================= */

.destination-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.highlight-item {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
  border: 1px solid rgba(21, 20, 21, 0.06);
  height: 100%;
  transition: all 0.4s ease-in-out;
}

.highlight-item:hover {
  transform: translateY(-4px);
  box-shadow: 0px 16px 44px rgba(5, 6, 60, 0.1);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.highlight-icon i {
  font-size: 22px;
  color: var(--theme-color);
}

.highlight-item h4 {
  margin-bottom: 12px;
  font-size: 22px;
}

.highlight-item p {
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

/* =========================================
   CITY ACCORDION SECTION
   ========================================= */

.destination-city-accordion {
  margin-top: 24px;
}

.destination-city-accordion .accordion-item {
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
}

.destination-city-accordion .accordion-item + .accordion-item {
  margin-top: 18px;
}

.destination-city-accordion .accordion-header {
  margin: 0;
}

.destination-city-accordion .accordion-button {
  background: var(--white);
  box-shadow: none;
  padding: 24px 24px 22px;
  align-items: flex-start;
}

.destination-city-accordion .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--header);
  box-shadow: none;
}

.destination-city-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.destination-city-accordion .accordion-button::after {
  width: 18px;
  height: 18px;
  background-size: 18px;
  margin-top: 8px;
}

.destination-city-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.destination-city-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--header);
}

.destination-city-subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: #6b7171;
}

.destination-city-expand {
  padding: 0 24px 24px;
}

.destination-city-photo {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.08),
    rgba(235, 195, 36, 0.1)
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.destination-city-photo img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.destination-city-photo.is-placeholder {
  height: 240px;
}

.destination-city-expand p {
  line-height: 1.85;
  color: var(--text);
  margin: 0;
}

/* =========================================
   SPLIT CONTENT SECTION
   ========================================= */

.destination-split {
  padding: 24px 0 8px;
}

.destination-split-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.destination-split-box.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.destination-split-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.08),
    rgba(235, 195, 36, 0.12)
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.destination-split-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.destination-split-content {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.destination-split-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.destination-split-content p {
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

.destination-split-content p + p {
  margin-top: 14px;
}

.destination-mini-points {
  margin-top: 18px;
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.destination-mini-points li {
  position: relative;
  padding-left: 28px;
  line-height: 1.7;
  color: var(--text);
}

.destination-mini-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-color);
}

/* =========================================
   PROGRAM SECTION
   ========================================= */

.destination-program-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 24px;
  margin-top: 24px;
}

.destination-program-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 20px;
  padding: 22px 20px;
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.05);
}

.destination-program-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.destination-program-icon i {
  color: var(--theme-color);
  font-size: 21px;
}

.destination-program-text h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

.destination-program-text p {
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* =========================================
   GASTRONOMY SECTION
   ========================================= */

.gastro-box {
  background: var(--white);
  border-radius: 24px;
  padding: 30px 28px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
  border: 1px solid rgba(21, 20, 21, 0.06);
  margin-top: 24px;
}

.gastro-box p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

.destination-gastro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.destination-gastro-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.05);
  overflow: hidden;
}

.destination-gastro-photo {
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.08),
    rgba(235, 195, 36, 0.1)
  );
  border-bottom: 1px solid rgba(21, 20, 21, 0.06);
}

.destination-gastro-photo img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.destination-gastro-photo.is-placeholder {
  height: 170px;
}

.destination-gastro-content {
  padding: 18px 18px 16px;
}

.destination-gastro-content h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.destination-gastro-content p {
  line-height: 1.75;
  color: var(--text);
  margin: 0;
}

/* =========================================
   SEASON SECTION
   ========================================= */

.season-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.season-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 22px 22px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
  border: 1px solid rgba(21, 20, 21, 0.06);
  position: relative;
  transition: all 0.35s ease-in-out;
  height: 100%;
}

.season-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 16px 42px rgba(5, 6, 60, 0.1);
}

.season-grid-images .season-card {
  padding-top: 24px;
}

.season-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.season-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.season-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 144, 145, 0.08);
  color: #6b7171;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.season-title {
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 14px;
}

.season-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.season-tags li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.8) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
}

/* =========================================
   PRACTICAL ACCORDION SECTION
   ========================================= */

.destination-practical-accordion {
  margin-top: 24px;
}

.destination-practical-accordion .accordion-item {
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.05);
}

.destination-practical-accordion .accordion-item + .accordion-item {
  margin-top: 16px;
}

.destination-practical-accordion .accordion-button {
  padding: 20px 22px 18px;
  background: var(--white);
  box-shadow: none;
  font-size: 22px;
  font-weight: 700;
  color: var(--header);
}

.destination-practical-accordion .accordion-button:not(.collapsed) {
  background: var(--white);
  color: var(--header);
  box-shadow: none;
}

.destination-practical-accordion .accordion-button:focus {
  box-shadow: none;
}

.destination-practical-accordion .accordion-button::after {
  background-size: 16px;
  width: 16px;
  height: 16px;
}

.destination-practical-accordion .accordion-body {
  padding: 4px 22px 22px;
}

.destination-practical-heading {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.destination-practical-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(0, 144, 145, 0.1);
}

.destination-practical-icon.icon-beach {
  background: rgba(235, 195, 36, 0.18);
}

.destination-practical-icon.icon-sight {
  background: rgba(0, 144, 145, 0.1);
}

.destination-practical-icon.icon-price {
  background: rgba(2, 84, 27, 0.1);
}

.destination-practical-icon i {
  font-size: 18px;
  color: var(--header);
}

.destination-practical-title {
  line-height: 1.3;
}

.destination-detail-list {
  display: grid;
  gap: 14px;
}

.destination-detail-list-item {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(21, 20, 21, 0.06);
  transition: all 0.3s ease-in-out;
}

.destination-detail-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0px 10px 26px rgba(5, 6, 60, 0.06);
}

.destination-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.destination-detail-head h4 {
  margin: 0;
  flex: 1;
}

.destination-detail-list-item h4 {
  font-size: 19px;
  margin-bottom: 6px;
}

.destination-detail-list-item p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

.destination-detail-meta {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.destination-detail-meta span {
  background: rgba(0, 144, 145, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--header);
  font-weight: 600;
}

.destination-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--theme-color-2);
  color: var(--header);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 8px 20px rgba(235, 195, 36, 0.22);
}

.destination-map-btn:hover {
  background: var(--theme-color);
  color: var(--white);
  transform: translateY(-1px);
}

.destination-map-btn i {
  font-size: 13px;
}

/* =========================================
   DESTINATION COST PROFILE
   ========================================= */

.destination-cost-profile {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.8) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: 0px 10px 30px rgba(5, 6, 60, 0.05);
}

.destination-cost-profile-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.destination-cost-profile-copy h4 {
  font-size: 22px;
  margin-bottom: 8px;
}

.destination-cost-profile-copy p {
  margin: 0;
  line-height: 1.8;
  color: var(--text);
}

.destination-cost-help {
  position: relative;
  flex-shrink: 0;
}

.destination-cost-help summary {
  list-style: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 144, 145, 0.1);
  color: var(--theme-color);
  border: 1px solid rgba(21, 20, 21, 0.06);
  transition: all 0.3s ease-in-out;
}

.destination-cost-help summary::-webkit-details-marker {
  display: none;
}

.destination-cost-help summary:hover {
  background: rgba(0, 144, 145, 0.16);
}

.destination-cost-help-bubble {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: var(--white);
  border: 1px solid rgba(21, 20, 21, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0px 14px 30px rgba(5, 6, 60, 0.12);
  line-height: 1.7;
  color: var(--text);
  z-index: 12;
}

.destination-cost-legend {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #6b7171;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.destination-cost-legend span:last-child {
  text-align: right;
}

.destination-cost-legend-center {
  color: var(--header);
}

.destination-cost-scale-list {
  display: grid;
  gap: 16px;
}

.destination-cost-row {
  background: var(--white);
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 18px;
  padding: 16px 16px 14px;
}

.destination-cost-row-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.destination-cost-row-head h5 {
  margin: 0;
  font-size: 18px;
}

.destination-cost-row-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 144, 145, 0.08);
  color: var(--header);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.destination-cost-row-badge.is-high {
  background: rgba(235, 195, 36, 0.18);
}

.destination-cost-row-badge.is-very-high {
  background: rgba(206, 41, 57, 0.14);
}

.destination-cost-scale {
  --cost-score: 5;
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  position: relative;
}

.destination-cost-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(21, 20, 21, 0.16);
  justify-self: center;
}

.destination-cost-baseline {
  grid-column: 5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  justify-self: center;
  background: linear-gradient(
    180deg,
    #ce2939 0 33.33%,
    #ffffff 33.33% 66.66%,
    #477050 66.66% 100%
  );
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(21, 20, 21, 0.12),
    0px 8px 18px rgba(5, 6, 60, 0.14);
  z-index: 2;
}

.destination-cost-marker {
  grid-column: var(--cost-score);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  justify-self: center;
  background: var(--theme-color);
  box-shadow:
    0 0 0 3px rgba(235, 195, 36, 0.28),
    0px 6px 14px rgba(0, 144, 145, 0.18);
  z-index: 3;
}

.destination-cost-breakdown-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.destination-cost-breakdown-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(239, 238, 250, 0.55) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.destination-cost-breakdown-card h5 {
  margin-bottom: 8px;
  font-size: 18px;
}

.destination-cost-breakdown-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

.destination-cost-disclaimer {
  margin-top: 16px !important;
  font-size: 14px;
  line-height: 1.7 !important;
  color: #6b7171 !important;
}

/* =========================================
   WEATHER MODULE
   ========================================= */

.destination-weather-box {
  margin-top: 24px;
  padding: 22px 22px 18px;
}

.destination-weather-box h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.destination-weather-box p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.destination-weather-modules {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 0;
}

.destination-weather-card {
  min-width: 150px;
  background: var(--white);
  border-radius: 16px;
  padding: 14px 14px 12px;
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.weather-label {
  display: block;
  font-size: 13px;
  color: #6b7171;
  margin-bottom: 4px;
}

.weather-value {
  display: block;
  font-size: 24px;
  line-height: 1.2;
  color: var(--header);
  margin-bottom: 3px;
}

.weather-note {
  display: block;
  font-size: 12px;
  color: #7d8484;
  line-height: 1.5;
}

/* =========================================
   CTA SECTION
   ========================================= */

.destination-cta-box {
  margin-top: 30px;
  padding: 32px 30px;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.1) 0%,
    rgba(235, 195, 36, 0.1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.destination-cta-box h3 {
  margin-bottom: 12px;
}

.destination-cta-box p {
  margin-bottom: 22px;
  line-height: 1.8;
  color: var(--text);
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1199px) {
  .destination-hero-image img {
    height: 240px;
  }

  .destination-hero-content h1 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .destination-highlights,
  .destination-program-grid,
  .destination-gastro-grid,
  .destination-split-box,
  .destination-split-box.reverse {
    grid-template-columns: 1fr;
  }

  .destination-hero {
    padding: 50px 0 30px;
  }

  .destination-hero-image img {
    height: 220px;
  }

  .destination-hero-content h1 {
    font-size: 30px;
  }

  .destination-intro {
    font-size: 17px;
  }

  .destination-split-image,
  .destination-split-image img {
    min-height: 280px;
  }

  .destination-city-title {
    font-size: 22px;
  }

  .destination-cost-breakdown-grid {
    grid-template-columns: 1fr;
  }

  .destination-cost-row-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .season-grid {
    grid-template-columns: 1fr;
  }

  .destination-cost-profile-top {
    flex-direction: column;
  }

  .destination-cost-help-bubble {
    right: auto;
    left: 0;
    width: min(320px, calc(100vw - 56px));
  }

  .destination-cost-scale {
    gap: 6px;
  }

  .destination-cost-baseline {
    width: 22px;
    height: 22px;
  }

  .destination-cost-marker {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 575px) {
  .destination-hero-image {
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .destination-hero-image img {
    height: 190px;
  }

  .destination-hero-content h1 {
    font-size: 28px;
  }

  .destination-section {
    padding: 34px 0;
  }

  .highlight-item,
  .gastro-box,
  .season-card,
  .destination-cta-box,
  .destination-split-content {
    padding: 22px 18px;
  }

  .season-title {
    font-size: 22px;
  }

  .season-tags li {
    font-size: 13px;
    padding: 7px 10px;
  }

  .destination-city-accordion .accordion-button {
    padding: 20px 18px 18px;
  }

  .destination-city-expand {
    padding: 0 18px 18px;
  }

  .destination-city-photo img,
  .destination-city-photo.is-placeholder {
    height: 210px;
  }

  .destination-practical-accordion .accordion-button {
    font-size: 20px;
    padding: 18px 18px 16px;
  }

  .destination-practical-accordion .accordion-body {
    padding: 4px 18px 18px;
  }

  .destination-detail-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .destination-weather-card {
    min-width: 100%;
  }
}

/* =========================================
   CROATIA COUNTRY PAGE – QUICK FACTS SECTION
   ========================================= */

.country-facts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 22px;
  margin-top: 24px;
}

.country-fact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 22px;
  padding: 22px 20px;
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
  height: 100%;
  transition: all 0.35s ease-in-out;
}

.country-fact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0px 16px 42px rgba(5, 6, 60, 0.1);
}

.country-fact-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.country-fact-icon i {
  font-size: 20px;
  color: var(--theme-color);
}

.country-fact-content {
  flex: 1;
}

.country-fact-label {
  display: inline-block;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  color: #6b7171;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.country-fact-value {
  display: block;
  font-size: 21px;
  line-height: 1.35;
  color: var(--header);
  margin-bottom: 8px;
}

.country-fact-note {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

/* =========================================
   CROATIA COUNTRY PAGE – WHY SECTION
   ========================================= */

.country-why-section {
  padding-top: 8px;
}

.country-why-wrap {
  display: grid;
  gap: 34px;
  margin-top: 24px;
}

.country-why-row {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 30px;
  align-items: center;
}

.country-why-row.reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.country-why-row.reverse .country-why-image {
  order: 2;
}

.country-why-row.reverse .country-why-content {
  order: 1;
}

.country-why-image {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.08),
    rgba(235, 195, 36, 0.12)
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
}

.country-why-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.country-why-content {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 30px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.country-why-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.country-why-content p {
  margin: 0;
  line-height: 1.9;
  color: var(--text);
}

.country-why-points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.country-why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 18px;
  padding: 16px 16px 14px;
}

.country-why-point-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.country-why-point-icon i {
  font-size: 18px;
  color: var(--theme-color);
}

.country-why-point-text {
  flex: 1;
}

.country-why-point-text strong {
  display: block;
  font-size: 18px;
  line-height: 1.4;
  color: var(--header);
  margin-bottom: 4px;
}

.country-why-point-text p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

/* =========================================
   CROATIA COUNTRY PAGE – POPULAR REGIONS SECTION
   ========================================= */

.country-regions-section {
  padding-top: 12px;
}

.country-regions-section .section-title p {
  max-width: 980px;
}

.country-region-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--white);
  letter-spacing: 0.01em;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.22);
}

/* =========================================
   CROATIA COUNTRY PAGE – COST PROFILE SECTION
   ========================================= */

.country-cost-overview-section {
  padding-top: 8px;
}

.country-cost-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

/* Left side: bars */

.country-cost-bars {
  min-width: 0;
}

.country-cost-overview {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.8) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 24px;
  padding: 20px 18px 18px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
}

.country-cost-overview-row + .country-cost-overview-row {
  margin-top: 14px;
}

.country-cost-overview-row {
  background: var(--white);
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 18px;
  padding: 14px 14px 12px;
}

.country-cost-overview-row-head {
  margin-bottom: 10px;
}

.country-cost-overview-row-head h4 {
  margin: 0;
  font-size: 18px;
}

.country-cost-overview-bar {
  --range-start: 40%;
  --range-end: 60%;
  position: relative;
  height: 18px;
}

.country-cost-overview-track {
  position: absolute;
  inset: 50% 0 auto 0;
  height: 8px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(21, 20, 21, 0.1);
}

.country-cost-overview-baseline {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(
    180deg,
    #ce2939 0 33.33%,
    #ffffff 33.33% 66.66%,
    #477050 66.66% 100%
  );
  border: 2px solid #ffffff;
  box-shadow:
    0 0 0 1px rgba(21, 20, 21, 0.12),
    0px 6px 16px rgba(5, 6, 60, 0.12);
  z-index: 2;
}

.country-cost-overview-range {
  position: absolute;
  left: var(--range-start);
  width: calc(var(--range-end) - var(--range-start));
  top: 50%;
  height: 10px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(0, 144, 145, 0.92) 0%,
    rgba(235, 195, 36, 0.92) 100%
  );
  box-shadow: 0px 6px 18px rgba(0, 144, 145, 0.14);
}

/* Right side: ordered destination cards */

.country-cost-order {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 1) 0%,
    rgba(239, 238, 250, 0.68) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 24px;
  padding: 20px 18px 18px;
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
}

.country-cost-order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.country-cost-order-head h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.country-cost-order-head p {
  margin: 0;
  line-height: 1.7;
  color: #6b7171;
}

.country-cost-order-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.country-cost-overview-updated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 144, 145, 0.08);
  border: 1px solid rgba(21, 20, 21, 0.06);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--header);
}

/* Info bubble */

.country-cost-help {
  position: relative;
  flex-shrink: 0;
  z-index: 6;
}

.country-cost-help summary {
  list-style: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(0, 144, 145, 0.1);
  color: var(--theme-color);
  border: 1px solid rgba(21, 20, 21, 0.06);
  transition: all 0.3s ease-in-out;
}

.country-cost-help summary::-webkit-details-marker {
  display: none;
}

.country-cost-help summary:hover {
  background: rgba(0, 144, 145, 0.16);
}

.country-cost-help-bubble {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-width: calc(100vw - 40px);
  background: var(--white);
  border: 1px solid rgba(21, 20, 21, 0.08);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0px 14px 30px rgba(5, 6, 60, 0.12);
  line-height: 1.7;
  color: var(--text);
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: all 0.25s ease-in-out;
}

.country-cost-help[open] .country-cost-help-bubble,
.country-cost-help:hover .country-cost-help-bubble,
.country-cost-help:focus-within .country-cost-help-bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.country-cost-order-stack {
  display: grid;
  gap: 12px;
}

.country-cost-destination-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 18px;
  padding: 14px 14px 13px;
  border: 1px solid rgba(21, 20, 21, 0.06);
  color: var(--header);
  box-shadow: 0px 8px 24px rgba(5, 6, 60, 0.06);
  transition: all 0.3s ease-in-out;
}

.country-cost-destination-card:hover {
  transform: translateY(-2px);
  box-shadow: 0px 14px 30px rgba(5, 6, 60, 0.1);
  color: var(--header);
}

.country-cost-destination-card.is-level-1 {
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.12),
    rgba(0, 144, 145, 0.04)
  );
}

.country-cost-destination-card.is-level-2 {
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.12),
    rgba(235, 195, 36, 0.12)
  );
}

.country-cost-destination-card.is-level-3 {
  background: linear-gradient(
    135deg,
    rgba(235, 195, 36, 0.18),
    rgba(206, 41, 57, 0.1)
  );
}

.country-cost-destination-level {
  min-width: 58px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--theme-color);
  font-size: 16px;
}

.country-cost-destination-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.country-cost-destination-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  color: #6b7171;
}

.country-cost-destination-card:hover .country-cost-destination-more {
  color: var(--theme-color);
}

/* Responsive */

@media (max-width: 1199px) {
  .country-cost-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .country-cost-order-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .country-cost-order-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .country-cost-help-bubble {
    right: auto;
    left: 0;
    width: min(320px, calc(100vw - 56px));
  }
}

@media (max-width: 575px) {
  .country-cost-overview,
  .country-cost-order {
    padding: 18px 16px 16px;
    border-radius: 20px;
  }

  .country-cost-destination-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 8px;
  }

  .country-cost-destination-level {
    min-width: auto;
  }

  .country-cost-destination-more {
    white-space: normal;
  }
}

/* =========================================
   CROATIA COUNTRY PAGE – TOPIC GALLERY SECTIONS
   ========================================= */

.country-topic-section {
  padding-top: 18px;
}

.country-topic-gallery {
  border-radius: 24px;
  overflow: hidden;
  min-height: 360px;
  background: linear-gradient(
    135deg,
    rgba(0, 144, 145, 0.08),
    rgba(235, 195, 36, 0.12)
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.06);
}

.country-topic-gallery-slider {
  position: relative;
  height: 100%;
  min-height: 360px;
}

.country-topic-gallery .swiper-wrapper,
.country-topic-gallery .swiper-slide {
  height: 100%;
}

.country-topic-gallery-image {
  height: 100%;
  min-height: 360px;
}

.country-topic-gallery-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.country-topic-gallery-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  z-index: 4;
}

.country-topic-gallery-prev,
.country-topic-gallery-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 8px 20px rgba(5, 6, 60, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.country-topic-gallery-prev:hover,
.country-topic-gallery-next:hover {
  background: var(--theme-color);
  color: var(--white);
}

.country-topic-gallery-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.country-topic-gallery-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.country-topic-gallery-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: var(--theme-color-2);
}

.country-topic-more {
  margin-top: 18px !important;
  font-size: 15px;
  line-height: 1.9 !important;
  color: #6b7171 !important;
}

.country-topic-more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 6px 8px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 144, 145, 0.08);
  border: 1px solid rgba(21, 20, 21, 0.06);
  color: var(--header);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s ease-in-out;
}

.country-topic-more a:hover {
  background: var(--theme-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0px 8px 20px rgba(0, 144, 145, 0.18);
}

/* =========================================
   CROATIA COUNTRY PAGE – TRAVEL INFORMATION SECTION
   ========================================= */

.country-travel-section {
  padding-top: 26px;
}

.country-travel-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.country-travel-summary-card {
  position: relative;
  background: var(--white);
  border-radius: 20px;
  padding: 22px 20px;
  border: 1px solid rgba(21, 20, 21, 0.06);
  box-shadow: 0px 10px 40px rgba(5, 6, 60, 0.05);
  text-align: center;
  height: 100%;
  width: 100%;
  transition: all 0.35s ease-in-out;
  cursor: pointer;
}

.country-travel-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 16px 44px rgba(5, 6, 60, 0.1);
}

.country-travel-summary-info {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(235, 195, 36, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--theme-color-2);
  transition: all 0.3s ease-in-out;
}

.country-travel-summary-card:hover .country-travel-summary-info {
  background: var(--theme-color-2);
  color: var(--header);
  transform: scale(1.05);
}

.country-travel-summary-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.country-travel-summary-icon i {
  font-size: 22px;
  color: var(--theme-color);
}

.country-travel-summary-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.country-travel-summary-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

/* Travel modal */

.country-travel-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 14, 23, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease-in-out,
    visibility 0.28s ease-in-out;
}

.country-travel-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.country-travel-modal-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 26px;
  padding: 30px 28px 26px;
  box-shadow: 0px 24px 60px rgba(5, 6, 60, 0.18);
  transform: translateY(18px) scale(0.985);
  opacity: 0;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}

.country-travel-modal.is-open .country-travel-modal-dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.country-travel-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(21, 20, 21, 0.06);
  background: rgba(239, 238, 250, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header);
  transition: all 0.3s ease-in-out;
}

.country-travel-modal-close:hover {
  background: var(--theme-color);
  color: var(--white);
}

.country-travel-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-right: 56px;
}

.country-travel-modal-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.country-travel-modal-icon i {
  font-size: 24px;
  color: var(--theme-color);
}

.country-travel-modal-headline {
  flex: 1;
}

.country-travel-modal-headline h3 {
  font-size: 30px;
  margin-bottom: 8px;
}

.country-travel-modal-headline p {
  margin: 0;
  line-height: 1.85;
  color: var(--text);
}

.country-travel-modal-note {
  margin-top: 18px;
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 20px;
  padding: 20px 18px 18px;
}

.country-travel-modal-note-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.country-travel-modal-note-head strong {
  font-size: 18px;
  color: var(--header);
}

.country-travel-disclosure-label-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(235, 195, 36, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.country-travel-disclosure-label-icon i {
  font-size: 14px;
  color: var(--theme-color-2);
}

.country-travel-modal-note p {
  margin: 0;
  line-height: 1.8;
  color: var(--text);
}

.country-travel-modal-note-list {
  display: grid;
  gap: 8px;
  margin: 14px 0;
  padding: 0;
  list-style: none;
}

.country-travel-modal-note-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.75;
  color: var(--text);
}

.country-travel-modal-note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--theme-color);
}

.country-route-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.country-route-card {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.country-route-city {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--header);
  margin-bottom: 10px;
}

.country-route-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.country-route-meta span {
  background: rgba(0, 144, 145, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--header);
  font-weight: 600;
}

.country-airport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
}

.country-airport-card {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border: 1px solid rgba(21, 20, 21, 0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.country-airport-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.country-airport-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

.country-airport-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.country-airport-meta span {
  background: rgba(0, 144, 145, 0.08);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.4;
  color: var(--header);
  font-weight: 600;
}

.country-airline-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.country-airline-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.country-airline-logo {
  min-width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(0, 144, 145, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  color: var(--theme-color);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.country-airline-body {
  flex: 1;
}

.country-airline-body h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.country-airline-body p {
  margin: 0;
  line-height: 1.8;
  color: var(--text);
}

.country-baggage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 2px;
}

.country-baggage-card {
  background: var(--white);
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.country-baggage-card h4 {
  font-size: 19px;
  margin-bottom: 8px;
}

.country-baggage-card p {
  margin: 0;
  line-height: 1.75;
  color: var(--text);
}

.country-baggage-links {
  margin-top: 10px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.country-baggage-links span {
  color: #9aa0a0;
}

.country-baggage-note {
  margin-top: 14px !important;
  font-size: 14px;
  line-height: 1.75 !important;
  color: #6b7171 !important;
}

.country-train-card {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 20px;
  padding: 22px 20px;
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.country-train-card h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.country-train-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--text);
}

.country-inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 12px !important;
}

.country-inline-links span {
  color: #9aa0a0;
}

.country-island-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 4px;
}

.country-island-card {
  background: linear-gradient(
    180deg,
    rgba(239, 238, 250, 0.55) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  border-radius: 18px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(21, 20, 21, 0.06);
}

.country-island-card h4 {
  font-size: 20px;
  margin-bottom: 8px;
}

.country-island-card p {
  margin: 0 0 10px;
  line-height: 1.75;
  color: var(--text);
}

.country-ferry-master-link {
  margin-top: 16px !important;
}

body.travel-modal-open {
  overflow: hidden;
}

/* Travel modal links */

.country-travel-modal-dialog a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 8px 0 0;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 144, 145, 0.08);
  border: 1px solid rgba(21, 20, 21, 0.06);
  color: var(--theme-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.country-travel-modal-dialog a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.country-travel-modal-dialog a:hover {
  background: var(--theme-color);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0px 8px 20px rgba(0, 144, 145, 0.18);
}

.country-travel-modal-dialog a:hover::before {
  transform: translateX(120%);
}

/* =========================================
   CROATIA COUNTRY PAGE – RESPONSIVE
   ========================================= */

@media (max-width: 1199px) {
  .country-travel-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-route-grid,
  .country-airport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-baggage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .country-route-grid,
  .country-airport-grid,
  .country-island-grid {
    grid-template-columns: 1fr;
  }

  .country-travel-modal-dialog {
    width: min(900px, 100%);
  }
}

@media (max-width: 767px) {
  .country-travel-summary-grid {
    grid-template-columns: 1fr;
  }

  .country-travel-modal {
    padding: 16px;
  }

  .country-travel-modal-dialog {
    max-height: calc(100vh - 32px);
    border-radius: 22px;
    padding: 24px 18px 20px;
    transform: translateY(22px) scale(0.99);
  }

  .country-travel-modal.is-open .country-travel-modal-dialog {
    transform: translateY(0) scale(1);
  }

  .country-travel-modal-header {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 40px;
  }

  .country-airline-card {
    flex-direction: column;
  }

  .country-airline-logo {
    width: 62px;
  }
}

@media (max-width: 575px) {
  .country-route-card,
  .country-airport-card,
  .country-train-card,
  .country-island-card,
  .country-baggage-card {
    padding: 18px 16px 14px;
  }

  .country-travel-summary-card {
    padding: 20px 18px;
  }

  .country-travel-modal-headline h3 {
    font-size: 26px;
  }
}

/* =========================================
   CROATIA COUNTRY PAGE – FAQ SECTION
   ========================================= */

.country-faq-section {
  padding-top: 18px;
}

/* FAQ answer formatting */

.country-faq-answer {
  display: grid;
  gap: 14px;
}

.country-faq-answer p {
  margin: 0;
  line-height: 1.9;
  color: var(--text);
  text-wrap: pretty;
}

.country-faq-answer p + p {
  margin-top: 0;
}

/* Inline FAQ links */

.country-faq-inline-link,
.country-faq-modal-link {
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  display: inline;
  color: var(--theme-color);
  font: inherit;
  font-weight: 700;
  line-height: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: 0;
  box-shadow: inset 0 -0.12em 0 rgba(0, 144, 145, 0.28);
  transition:
    color 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out,
    text-shadow 0.3s ease-in-out,
    background-size 0.35s ease-in-out;
}

.country-faq-inline-link:hover,
.country-faq-modal-link:hover {
  color: var(--theme-color);
  box-shadow: inset 0 -0.65em 0 rgba(0, 144, 145, 0.14);
  text-shadow: 0 0 10px rgba(0, 144, 145, 0.12);
}

.country-faq-inline-link:focus,
.country-faq-modal-link:focus {
  outline: none;
  color: var(--theme-color);
  box-shadow:
    inset 0 -0.65em 0 rgba(0, 144, 145, 0.16),
    0 0 0 2px rgba(0, 144, 145, 0.12);
}

/* Mobile FAQ readability */

@media (max-width: 767px) {
  .country-faq-answer {
    gap: 12px;
  }

  .country-faq-answer p {
    font-size: 15px;
    line-height: 1.82;
  }
}

@media (max-width: 575px) {
  .country-faq-answer {
    gap: 10px;
  }

  .country-faq-answer p {
    font-size: 14px;
    line-height: 1.78;
  }
}

/* =========================================
   CROATIA COUNTRY PAGE – RESPONSIVE
   ========================================= */

@media (max-width: 1199px) {
  .country-facts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-travel-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-route-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-airport-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .country-baggage-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .country-why-row,
  .country-why-row.reverse {
    grid-template-columns: 1fr;
  }

  .country-why-row.reverse .country-why-image,
  .country-why-row.reverse .country-why-content {
    order: initial;
  }

  .country-why-image,
  .country-why-image img {
    min-height: 300px;
  }

  .country-topic-gallery,
  .country-topic-gallery-slider,
  .country-topic-gallery-image,
  .country-topic-gallery-image img {
    min-height: 300px;
  }

  .country-route-grid,
  .country-airport-grid,
  .country-island-grid {
    grid-template-columns: 1fr;
  }

  .country-cost-overview-row-head,
  .country-travel-summary-grid {
    gap: 14px;
  }

  .country-cost-overview-row-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .country-facts-grid {
    grid-template-columns: 1fr;
  }

  .country-fact-card {
    padding: 20px 18px;
  }

  .country-why-content {
    padding: 26px 22px;
  }

  .country-cost-overview {
    padding: 20px 18px 18px;
  }

  .country-cost-overview-head {
    flex-direction: column;
  }

  .country-cost-help-bubble {
    right: auto;
    left: 0;
    width: min(320px, calc(100vw - 56px));
  }

  .country-topic-gallery-controls {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .country-topic-gallery-prev,
  .country-topic-gallery-next {
    width: 40px;
    height: 40px;
  }

  .country-travel-summary-grid {
    grid-template-columns: 1fr;
  }

  .country-travel-accordion .accordion-button {
    font-size: 20px;
    padding: 18px 18px 16px;
  }

  .country-travel-accordion .accordion-body {
    padding: 4px 18px 18px;
  }

  .country-airline-card {
    flex-direction: column;
  }

  .country-airline-logo {
    width: 62px;
  }
}

@media (max-width: 575px) {
  .country-fact-card,
  .country-route-card,
  .country-airport-card,
  .country-train-card,
  .country-island-card,
  .country-baggage-card {
    padding: 18px 16px 14px;
  }

  .country-fact-value {
    font-size: 19px;
  }

  .country-why-image,
  .country-why-image img,
  .country-topic-gallery,
  .country-topic-gallery-slider,
  .country-topic-gallery-image,
  .country-topic-gallery-image img {
    min-height: 250px;
  }

  .country-why-content h3,
  .country-cost-overview-copy h3 {
    font-size: 24px;
  }

  .country-cost-link-list a {
    width: 100%;
    justify-content: flex-start;
  }

  .country-cost-overview-note,
  .country-topic-more,
  .country-baggage-note {
    font-size: 13px;
  }
}
