/* ============================================================
   GoBritainTravel.com - Main Stylesheet
   Colors: #D32F2F (accent1), #FCCA1D (accent2/yellow), #043CA0 (blue)
   Font: Montserrat
   ============================================================ */

/* ---- Font Face Declarations ---- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/montserrat-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/montserrat-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/montserrat-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/montserrat-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/montserrat-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/montserrat-900.woff2') format('woff2');
}

/* ---- CSS Variables ---- */
:root {
  --color-red: #D32F2F;
  --color-yellow: #FCCA1D;
  --color-blue: #043CA0;
  --color-blue-dark: #032d78;
  --color-blue-light: #1a56c4;
  --color-white: #ffffff;
  --color-gray-light: #f4f6f9;
  --color-gray: #e8ecf1;
  --color-gray-mid: #6c757d;
  --color-text: #212529;
  --font-base: 'Montserrat', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 4px 20px rgba(4,60,160,0.12);
  --shadow-hover: 0 8px 32px rgba(4,60,160,0.22);
  --radius: 8px;
  --radius-lg: 16px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-text);
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover {
  color: var(--color-red);
}

ul.list-styled {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  line-height: 1.25;
  margin-bottom: 1rem;
}
h1 { font-weight: 800; font-size: 2.4rem; }
h2 { font-weight: 700; font-size: 2rem; }
h3 { font-weight: 600; font-size: 1.5rem; }
h4 { font-weight: 600; font-size: 1.2rem; }
h5 { font-weight: 500; font-size: 1rem; }
h6 { font-weight: 500; font-size: 0.9rem; }

p { font-size: 1rem; font-weight: 400; }

.lead { font-size: 1.15rem; font-weight: 500; }

/* ---- Top Bar (Header) ---- */
#top-bar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 2px solid var(--color-yellow);
  min-height: 80px;
}

#top-bar .logo-wrapper {
  display: flex;
  align-items: center;
}

#top-bar .logo-wrapper img {
  max-width: 280px;
  max-height: 100px;
  width: auto;
  height: auto;
}

#top-bar .contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}

#top-bar .contact-info a {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
#top-bar .contact-info a:hover { color: var(--color-red); }
#top-bar .contact-info .icon {
  color: var(--color-red);
  font-size: 1.1rem;
}

/* ---- Navigation ---- */
#main-nav {
  background: var(--color-blue);
  min-height: 55px;
  position: sticky;
  top: 0;
  z-index: 1050;
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

#main-nav .navbar {
  padding: 0;
  min-height: 55px;
}

#main-nav .navbar-brand {
  display: none;
}

#main-nav .navbar-toggler {
  border: 2px solid var(--color-yellow);
  padding: 4px 8px;
  color: #fff;
}
#main-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28252, 202, 29, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#main-nav .navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 17px 14px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
#main-nav .navbar-nav .nav-link:hover,
#main-nav .navbar-nav .nav-link.active {
  background: var(--color-red);
  color: #fff !important;
}

/* Dropdown */
#main-nav .dropdown-menu {
  background: var(--color-blue-dark);
  border: none;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  padding: 6px 0;
  min-width: 240px;
}
#main-nav .dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  transition: background var(--transition);
}
#main-nav .dropdown-menu .dropdown-item:hover {
  background: var(--color-red);
  color: #fff;
}

/* Mobile nav */
@media (max-width: 991.98px) {
  #main-nav .navbar-collapse {
    background: var(--color-blue-dark);
    padding: 10px 0;
  }
  #main-nav .navbar-nav .nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  #main-nav .dropdown-menu {
    background: rgba(0,0,0,0.2);
    box-shadow: none;
  }
  #main-nav .dropdown-menu .dropdown-item {
    padding-left: 36px;
  }
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  width: 100%;
  background: var(--color-blue-dark) no-repeat center center / cover;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 500px;
  max-height: 550px;
}
@media (max-width: 767.98px) {
  .hero-section { min-height: 500px; max-height: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4,60,160,0.78) 0%, rgba(211,47,47,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 20px;
  min-width: min(100%, 1000px);
}

.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-bottom: 1.25rem;
}

.hero-content .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(255,255,255,0.93);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  margin-bottom: 2rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 1.5rem;
}
.hero-badge {
  background: rgba(252,202,29,0.2);
  border: 1px solid var(--color-yellow);
  color: var(--color-yellow);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  background: var(--color-yellow);
  color: var(--color-blue);
  border: none;
  padding: 13px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.btn-primary-custom:hover {
  background: #e6b800;
  color: var(--color-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(252,202,29,0.4);
}

.btn-outline-custom {
  background: transparent;
  color: #fff;
  border: 2px solid var(--color-yellow);
  padding: 11px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-outline-custom:hover {
  background: var(--color-yellow);
  color: var(--color-blue);
}

.btn-red {
  background: var(--color-red);
  color: #fff;
  border: none;
  padding: 11px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-red:hover {
  background: #b71c1c;
  color: #fff;
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--color-blue);
  color: #fff;
  padding: 11px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border: none;
}
.btn-blue:hover {
  background: var(--color-blue-light);
  color: #fff;
  transform: translateY(-2px);
}

/* Bootstrap btn overrides */
.btn-primary {
  background-color: var(--color-yellow) !important;
  color: var(--color-blue) !important;
  border-color: var(--color-yellow) !important;
  font-weight: 700;
}
.btn-primary:hover {
  background-color: #e6b800 !important;
  border-color: #e6b800 !important;
  color: var(--color-blue) !important;
}
.btn-outline-primary {
  border-color: var(--color-yellow) !important;
  color: var(--color-blue) !important;
}
.btn-outline-primary:hover {
  background-color: var(--color-yellow) !important;
  color: var(--color-blue) !important;
}

/* ---- Section Utilities ---- */
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--color-blue);
  margin-bottom: 0.5rem;
}
.section-title span {
  color: var(--color-red);
}
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-gray-mid);
  margin-bottom: 2.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: var(--color-red);
  margin: 12px auto 24px;
  border-radius: 3px;
}
.section-divider-left {
  margin-left: 0;
}

.section-white { background: #fff; }
.section-light { background: var(--color-gray-light); }
.section-blue { background: var(--color-blue); color: #fff; }
.section-blue h2, .section-blue h3, .section-blue p { color: #fff; }
.section-red { background: var(--color-red); color: #fff; }

section.py-section { padding: 70px 0; }

/* ---- Cards ---- */
.card {
  border: none;
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
  overflow: hidden;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.card-header {
  background: var(--color-blue) !important;
  color: #fff !important;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 20px;
  border: none;
}
.card-body { padding: 24px; }
.card-title { font-weight: 700; color: var(--color-blue); font-size: 1.1rem; }
.card-text { color: #444; font-size: 0.95rem; }

/* Tour Cards */
.tour-card .card-img-top {
  height: 200px;
  object-fit: cover;
  width: 100%;
}
.tour-card .price-badge {
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 4px 14px;
  border-radius: 30px;
  display: inline-block;
}
.tour-card .card-footer {
  background: #fff;
  border-top: 1px solid var(--color-gray);
  padding: 16px 24px;
}

/* Travel Tips Cards */
.tip-card .card-img-top {
  height: 180px;
  object-fit: cover;
}

/* ---- Icon Boxes / Benefits ---- */
.icon-box {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.icon-box:hover { transform: translateY(-5px); }
.icon-box .icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(4,60,160,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.icon-box .icon-circle svg,
.icon-box .icon-circle span {
  color: var(--color-blue);
  font-size: 2rem;
}
.icon-box h4 {
  font-weight: 700;
  color: var(--color-blue);
  font-size: 1.05rem;
}
.icon-box p { font-size: 0.9rem; color: #555; }

/* ---- Accordion ---- */
.accordion-item {
  border: none;
  margin-bottom: 8px;
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.accordion-button {
  background: var(--color-red) !important;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius) !important;
  box-shadow: none !important;
  padding: 16px 20px;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed) {
  background: var(--color-red) !important;
  color: #fff !important;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}
.accordion-body {
  background: #fff;
  border: 1px solid rgba(211,47,47,0.2);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px;
  font-size: 0.95rem;
  color: #333;
}

/* ---- Parallax ---- */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 360px;
  display: flex;
  align-items: center;
}
@media (max-width: 767.98px) {
  .parallax-section { background-attachment: scroll; }
}
.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4,60,160,0.75);
}
.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 20px;
}
.parallax-content h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.parallax-content p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ---- About Section ---- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.about-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--color-yellow);
  border-radius: var(--radius);
  z-index: -1;
}

/* ---- Stats Counter ---- */
.stats-section { background: var(--color-blue); padding: 50px 0; }
.stat-item { text-align: center; color: #fff; }
.stat-item .stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--color-yellow);
  display: block;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

/* ---- Breadcrumbs ---- */
#breadcrumbs {
  background: var(--color-gray-light);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-gray);
}
#breadcrumbs .breadcrumb {
  margin: 0;
  padding: 0;
  background: none;
  font-size: 0.875rem;
}
#breadcrumbs .breadcrumb-item a {
  color: var(--color-blue);
  font-weight: 600;
}
#breadcrumbs .breadcrumb-item a:hover { color: var(--color-red); }
#breadcrumbs .breadcrumb-item.active { color: var(--color-gray-mid); font-weight: 500; }
#breadcrumbs .breadcrumb-item + .breadcrumb-item::before { color: var(--color-gray-mid); }

/* ---- Footer ---- */
#main-footer {
  background: #001438;
  color: #fff;
  padding: 50px 0 0;
  margin-top: 0 !important;
}
.footer { margin-top: 0px !important; }

.footer-logo img {
  max-width: 220px;
  max-height: 80px;
  width: auto;
  height: auto;
  margin-bottom: 16px;
}
.footer-company-info { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.footer-company-info strong { font-weight: 700; color: #fff; }
.footer-company-info p { color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.footer-company-info a { color: var(--color-yellow) !important; }

.footer h5 {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 8px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links li a:hover { color: var(--color-yellow); text-decoration: none; }

.footer-cookies {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  line-height: 1.7;
}
.footer-cookies p { color: rgba(255,255,255,0.75); }
.footer-cookies a { color: var(--color-yellow); font-weight: 600; }
.footer-cookies a:hover { color: #fff; }

.footer-bottom {
  background: rgba(0,0,0,0.4);
  color: rgba(255,255,255,0.7);
  padding: 16px 0;
  font-size: 0.82rem;
  text-align: center;
  font-weight: 500;
}
.footer-bottom a { color: var(--color-yellow); }
.footer-bottom a:hover { color: #fff; }

/* ---- Page Content ---- */
.page-header-section {
  background: var(--color-blue);
  padding: 50px 0;
  margin-bottom: 0;
}
.page-header-section h1 {
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.page-header-section .lead { color: rgba(255,255,255,0.85); }

/* ---- Tour Page ---- */
.tour-detail-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.price-box {
  background: var(--color-blue);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.price-box .price-amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-yellow);
  display: block;
}
.price-box .price-label {
  font-size: 0.9rem;
  opacity: 0.8;
  font-weight: 500;
}

.itinerary-day {
  border-left: 3px solid var(--color-red);
  padding-left: 20px;
  margin-bottom: 24px;
  position: relative;
}
.itinerary-day::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-red);
  border-radius: 50%;
}
.itinerary-day h4 {
  color: var(--color-red);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* Included/Not Included ---- */
.included-list { list-style: none; padding: 0; }
.included-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.included-list li:last-child { border-bottom: none; }
.check-yes { color: #28a745; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.check-no { color: var(--color-red); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ---- Gallery Grid ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

/* ---- Info Boxes ---- */
.info-box {
  border-left: 4px solid var(--color-blue);
  background: rgba(4,60,160,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 20px 0;
}
.info-box.warning {
  border-color: var(--color-red);
  background: rgba(211,47,47,0.05);
}
.info-box.success {
  border-color: #28a745;
  background: rgba(40,167,69,0.05);
}

/* ---- Steps / Process ---- */
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}
.step-number {
  width: 48px;
  height: 48px;
  background: var(--color-red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.step-content h4 { font-weight: 700; color: var(--color-blue); margin-bottom: 6px; }
.step-content p { margin: 0; font-size: 0.95rem; color: #555; }

/* ---- Highlight Box ---- */
.highlight-box {
  background: var(--color-yellow);
  color: var(--color-blue);
  border-radius: var(--radius-lg);
  padding: 30px;
}
.highlight-box h3 { font-weight: 800; color: var(--color-blue); }
.highlight-box p { font-weight: 500; color: var(--color-blue); margin: 0; }

/* ---- Text utilities ---- */
.text-primary-custom { color: var(--color-blue) !important; }
.text-red { color: var(--color-red) !important; }
.text-yellow { color: var(--color-yellow) !important; }
.text-primary { color: var(--color-blue) !important; }

.bg-blue-light { background: rgba(4,60,160,0.06); }
.bg-red-light { background: rgba(211,47,47,0.06); }

/* ---- Animation ---- */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- SVG Icons replacement (no font-awesome) ---- */
.icon-svg {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  vertical-align: middle;
  fill: currentColor;
}

/* ---- Table ---- */
.table-styled { width: 100%; border-collapse: collapse; }
.table-styled th {
  background: var(--color-blue);
  color: #fff;
  font-weight: 600;
  padding: 12px 16px;
  text-align: left;
}
.table-styled td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--color-gray);
  vertical-align: top;
}
.table-styled tr:hover td { background: var(--color-gray-light); }

/* ---- Contact Info ---- */
.contact-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 30px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-gray);
}
.contact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--color-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.2rem;
}
.contact-detail strong { display: block; font-weight: 700; color: var(--color-blue); margin-bottom: 4px; }
.contact-detail span, .contact-detail a { color: #555; font-size: 0.95rem; }

/* ---- Responsive Utilities ---- */
@media (max-width: 767.98px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  section.py-section { padding: 50px 0; }
  .hero-content { padding: 40px 15px; }
  #top-bar .contact-info { display: none; }
  .tour-detail-img { height: 240px; }
  .parallax-section { min-height: 280px; }
}

@media (max-width: 575.98px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---- Loading prevent layout shift ---- */
#main-nav, #top-bar, #main-footer {
  contain: layout;
}

/* ---- Sticky back-to-top ---- */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--color-red);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(211,47,47,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 9999;
  text-decoration: none;
}
#back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}
#back-to-top:hover { transform: translateY(-3px); }

/* ---- Cookie Notice ---- */
#cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-blue-dark);
  color: #fff;
  padding: 16px 20px;
  z-index: 9998;
  display: none;
  border-top: 3px solid var(--color-yellow);
}
#cookie-notice.show { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
#cookie-notice p { margin: 0; font-size: 0.88rem; color: #fff; flex: 1; }
#cookie-notice a { color: var(--color-yellow); }
#cookie-accept {
  background: var(--color-yellow);
  color: var(--color-blue);
  border: none;
  padding: 8px 22px;
  font-weight: 700;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
  white-space: nowrap;
}
#cookie-accept:hover { background: #e6b800; }

/* ---- Travel Tips ---- */
.tip-article h2 { color: var(--color-blue); font-weight: 700; border-bottom: 2px solid var(--color-yellow); padding-bottom: 10px; margin-top: 36px; }
.tip-article h3 { color: var(--color-red); font-weight: 600; margin-top: 24px; }
.tip-article img { border-radius: var(--radius); box-shadow: var(--shadow); margin: 16px 0; }

/* ---- Entry Requirements ---- */
.req-table th { background: var(--color-red); color: #fff; }
.req-table td { vertical-align: top; }

/* ---- ETA / eVisa ---- */
.visa-step {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: all var(--transition);
  height: 100%;
}
.visa-step:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.visa-step-num {
  width: 40px;
  height: 40px;
  background: var(--color-yellow);
  color: var(--color-blue);
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.visa-step h4 { font-weight: 700; color: var(--color-blue); }
.visa-step p { font-size: 0.9rem; color: #555; margin: 0; }

/* Responsive image aspect ratio helper */
img.img-ratio {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}
