/* ============================================================
   IndiaTravelExperts.com – Custom Stylesheet
   Country: India | Font: Raleway | Framework: Bootstrap 5
   ============================================================ */

/* ── CSS Variables / Design Tokens ── */
:root {
  --accent1:           #FFB84D;
  --accent2:           #153820;
  --link-color:        #1A237E;
  --link-hover:        #D32F2F;
  --btn-bg:            #004D40;
  --btn-text:          #FFFFFF;
  --nav-bg:            #112b19;
  --nav-link:          #FFFFFF;
  --footer-bg:         #004D40;
  --footer-text:       #FFFFFF;
  --footer-link:       #FFB84D;
  --accordion-bg:      #FFB84D;
  --accordion-text:    #004D40;
  --fa-color:          #004D40;
  --card-header-bg:    #1A237E;
  --outline-primary:   #D32F2F;
  --text-primary-c:    #F7641F;
  --body-bg:           #FFFFFF;
  --body-color:        #222222;
  --section-alt-bg:    #F9F6F0;
  --border-radius:     0.5rem;
  --transition:        0.3s ease;
  --shadow:            0 4px 20px rgba(0,0,0,0.10);
  --shadow-hover:      0 8px 32px rgba(0,0,0,0.18);
}

/* ── Base Reset & Typography ── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 1.7;
}

h1 { font-weight: 700; font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; }
h2 { font-weight: 600; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.3; }
h3 { font-weight: 500; font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-weight: 400; font-size: 1.2rem; }
h5 { font-weight: 300; font-size: 1.05rem; }
h6 { font-weight: 400; font-size: 1rem; }

p { font-size: 1rem; }

a {
  color: var(--link-color);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--link-hover); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.text-primary { color: var(--text-primary-c) !important; }
.text-accent1 { color: var(--accent1) !important; }
.text-accent2 { color: var(--accent2) !important; }

/* ── Skip Link (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent1);
  color: #000;
  padding: 0.5rem 1rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── Logo ── */
.site-logo img {
  max-width: 300px;
  max-height: 120px;
  width: auto;
  height: auto;
}

/* ── TOP BAR ── */
.top-bar {
  background-color: var(--accent2);
  color: #fff;
  padding: 0.5rem 0;
  font-size: 0.875rem;
  font-weight: 500;
}
.top-bar a { color: #fff; }
.top-bar a:hover { color: var(--accent1); }
.top-bar .top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 1.5rem;
}
.top-bar .fa-icon, .top-bar i {
  color: var(--accent1);
  font-size: 0.9rem;
}

/* ── NAVIGATION ── */
.navbar-main {
  background-color: var(--nav-bg) !important;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.navbar-main .navbar-brand {
  display: none; /* logo is in top-bar */
}

.navbar-main .navbar-nav .nav-link {
  color: var(--nav-link) !important;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem 0.9rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background-color var(--transition), color var(--transition);
  border-bottom: 3px solid transparent;
}
.navbar-main .navbar-nav .nav-link:hover,
.navbar-main .navbar-nav .nav-link.active {
  color: var(--accent1) !important;
  border-bottom-color: var(--accent1);
}

.navbar-main .dropdown-menu {
  background-color: #fff;
  border: none;
  border-top: 3px solid var(--accent1);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--shadow);
  min-width: 220px;
  padding: 0.5rem 0;
  /* 2-column submenu */
  column-count: 2;
  column-gap: 0;
}
.navbar-main .dropdown-item {
  color: var(--body-color);
  font-weight: 500;
  font-size: 0.875rem;
  padding: 0.55rem 1.2rem;
  white-space: normal;
  transition: background-color var(--transition), color var(--transition);
  break-inside: avoid;
}
.navbar-main .dropdown-item:hover {
  background-color: var(--accent1);
  color: var(--accent2);
}

.navbar-toggler {
  border-color: rgba(255,255,255,0.6);
}
.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%28255%2C255%2C255%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sticky nav */
.navbar-main.sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ── HERO SECTION ── */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 480px;
  max-height: 550px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}
.hero-content h1 {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 1px 4px rgba(0,0,0,0.5);
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.15rem;
  font-weight: 500;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
  margin-bottom: 1.8rem;
}
.hero-badge {
  display: inline-block;
  background: var(--accent1);
  color: var(--accent2);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.3rem 0.9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn-primary,
.btn-india {
  background-color: var(--btn-bg) !important;
  color: var(--btn-text) !important;
  border: 2px solid var(--btn-bg) !important;
  font-weight: 600;
  padding: 0.6rem 1.6rem;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover,
.btn-india:hover {
  background-color: var(--accent1) !important;
  border-color: var(--accent1) !important;
  color: var(--accent2) !important;
  box-shadow: 0 4px 16px rgba(255,184,77,0.4);
}

.btn-outline-primary {
  border: 2px solid var(--outline-primary) !important;
  color: var(--outline-primary) !important;
  background: transparent !important;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: all var(--transition);
}
.btn-outline-primary:hover {
  background-color: var(--outline-primary) !important;
  color: #fff !important;
}

.btn-accent {
  background-color: var(--accent1);
  color: var(--accent2);
  border: 2px solid var(--accent1);
  font-weight: 700;
  padding: 0.6rem 1.6rem;
  border-radius: var(--border-radius);
  transition: all var(--transition);
}
.btn-accent:hover {
  background-color: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
}

/* ── SECTIONS ── */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }
.section-alt { background-color: var(--section-alt-bg); }

.section-title {
  position: relative;
  margin-bottom: 3rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent1);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}
.section-title.text-start::after { margin-left: 0; }

/* ── PAGE HEADER (inner pages) ── */
.page-header {
  background-color: var(--accent2);
  color: #fff;
  padding: 2.5rem 0 2rem;
  margin-bottom: 2rem;
}
.page-header h1 {
  color: #fff;
  margin-bottom: 0.3rem;
}
.page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 0.875rem;
}
.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--accent1);
}
.page-header .breadcrumb-item a { color: var(--accent1); }
.page-header .breadcrumb-item.active { color: rgba(255,255,255,0.7); }

/* ── CARDS ── */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-header {
  background-color: var(--card-header-bg) !important;
  color: #fff !important;
  font-weight: 600;
  border: none;
  padding: 1rem 1.25rem;
}
.card-img-top {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.card-body { padding: 1.4rem; }

.price-badge {
  display: inline-block;
  background: var(--accent1);
  color: var(--accent2);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}

/* ── ACCORDION ── */
.accordion-button {
  background-color: var(--accordion-bg) !important;
  color: var(--accordion-text) !important;
  font-weight: 600;
  border: none;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background-color: var(--accent2) !important;
  color: #fff !important;
}
.accordion-button::after {
  filter: invert(0);
}
.accordion-button:not(.collapsed)::after {
  filter: invert(1) brightness(2);
}
.accordion-item {
  border: 1px solid rgba(0,77,64,0.15);
  margin-bottom: 0.4rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
}
.accordion-body {
  background: #fff;
  color: var(--body-color);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ── PARALLAX SECTION ── */
.parallax-section {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 6rem 0;
}
.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,77,64,0.75);
}
.parallax-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}
.parallax-content h2 { color: #fff; font-weight: 700; }
.parallax-content p   { font-size: 1.1rem; color: rgba(255,255,255,0.9); }

/* ── BENEFITS / FEATURES GRID ── */
.benefit-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.benefit-item .benefit-icon {
  font-size: 2.5rem;
  color: var(--fa-color);
  margin-bottom: 1rem;
  display: block;
}
.benefit-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent2);
  margin-bottom: 0.5rem;
}
.benefit-item p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

/* ── DESTINATION TILES ── */
.destination-tile {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.destination-tile:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}
.destination-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.destination-tile:hover img { transform: scale(1.08); }
.destination-tile-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  padding: 1.5rem 1rem 1rem;
  color: #fff;
}
.destination-tile-overlay h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: #fff;
}
.destination-tile-overlay p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255,255,255,0.85);
}

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--accent1);
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
  font-family: Georgia, serif;
}
.testimonial-card p { font-style: italic; color: #555; }
.testimonial-author {
  font-weight: 700;
  color: var(--accent2);
  font-size: 0.9rem;
  margin-top: 1rem;
}
.star-rating { color: var(--accent1); font-size: 1rem; }

/* ── TIMELINE (itinerary) ── */
.timeline { position: relative; padding: 0; list-style: none; }
.timeline::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--accent1);
}
.timeline-item {
  position: relative;
  padding: 0 0 2rem 4rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 0.9375rem;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: var(--accent2);
  border: 3px solid var(--accent1);
  border-radius: 50%;
}
.timeline-item h4 {
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

/* ── PHOTO GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: calc(var(--border-radius) / 2);
  transition: transform var(--transition), opacity var(--transition);
  cursor: pointer;
}
.gallery-grid img:hover { transform: scale(1.04); opacity: 0.9; }

/* ── CAROUSEL ── */
.carousel-img {
  height: 420px;
  object-fit: cover;
  width: 100%;
  border-radius: var(--border-radius);
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--accent2);
  border-radius: 50%;
  padding: 1rem;
  background-size: 60%;
}

/* ── BREADCRUMBS ── */
.breadcrumb-wrapper {
  background: var(--section-alt-bg);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.875rem;
}
.breadcrumb { margin: 0; background: transparent; }
.breadcrumb-item a { color: var(--link-color); font-weight: 500; }
.breadcrumb-item.active { color: #666; }
.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  color: var(--accent2);
  font-weight: 700;
}

/* ── FOOTER ── */
footer.site-footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 3rem 0 1.5rem;
}
footer.site-footer a {
  color: var(--footer-link);
  transition: color var(--transition);
}
footer.site-footer a:hover { color: #fff; }
.footer-logo img {
  max-width: 200px;
  max-height: 80px;
  filter: brightness(0) invert(1);
}
.footer-heading {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--accent1);
  margin-bottom: 1rem;
}
.footer-menu { list-style: none; padding: 0; margin: 0; }
.footer-menu li { margin-bottom: 0.4rem; }
.footer-menu a { font-size: 0.875rem; font-weight: 500; }
.footer-cookies {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
}

/* ── COOKIE BANNER ── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--accent2);
  color: #fff;
  padding: 1rem 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
#cookie-banner a { color: var(--accent1); }
#cookie-banner.hidden { display: none; }
#cookie-accept {
  background: var(--accent1);
  color: var(--accent2);
  border: none;
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
#cookie-accept:hover { background: #fff; }

/* ── BACK TO TOP ── */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--accent1);
  color: var(--accent2);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background: var(--accent2);
  color: #fff;
  transform: translateY(-3px);
}

/* ── FORMS ── */
.form-control {
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
  padding: 0.7rem 1rem;
  font-size: 0.95rem;
  font-family: 'Raleway', sans-serif;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 0.2rem rgba(0,77,64,0.15);
  outline: none;
}
.form-label { font-weight: 600; color: var(--accent2); font-size: 0.9rem; }
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: var(--border-radius);
}
.form-select:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 0.2rem rgba(0,77,64,0.15);
}

textarea.form-control { min-height: 140px; resize: vertical; }

/* ── CONTACT INFO CARD ── */
.contact-info-card {
  background: var(--accent2);
  color: #fff;
  border-radius: var(--border-radius);
  padding: 2rem;
}
.contact-info-card h3 { color: var(--accent1); font-weight: 700; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.contact-info-item i {
  color: var(--accent1);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.contact-info-item p { margin: 0; font-size: 0.9rem; line-height: 1.6; }

/* ── TABS ── */
.nav-tabs .nav-link {
  color: var(--accent2);
  font-weight: 600;
  border: 2px solid transparent;
  border-bottom: none;
  transition: all var(--transition);
}
.nav-tabs .nav-link:hover { color: var(--link-hover); }
.nav-tabs .nav-link.active {
  background-color: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}
.tab-content { border: 2px solid var(--accent2); border-top: none; padding: 1.5rem; border-radius: 0 0 var(--border-radius) var(--border-radius); }

/* ── ALERT BOXES ── */
.alert-india {
  background: rgba(255,184,77,0.15);
  border-left: 4px solid var(--accent1);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  color: var(--accent2);
  font-weight: 500;
}

/* ── CHECKLIST ITEMS ── */
.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.checklist-item:last-child { border-bottom: none; }
.checklist-item i.fa-check { color: var(--accent2); }
.checklist-item i.fa-times { color: var(--link-hover); }

/* ── INFO BOX ── */
.info-box {
  background: var(--section-alt-bg);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  border-left: 4px solid var(--accent2);
}
.info-box h4 { color: var(--accent2); margin-bottom: 0.5rem; }

/* ── TABLE ── */
.table-india thead {
  background-color: var(--accent2);
  color: #fff;
}
.table-india thead th { font-weight: 600; }
.table-india tbody tr:hover { background-color: rgba(255,184,77,0.12); }

/* ── PRICE HIGHLIGHT ── */
.price-highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent1);
  color: var(--accent2);
  padding: 0.75rem 1.25rem;
  border-radius: var(--border-radius);
  font-weight: 800;
  font-size: 1.4rem;
  display: inline-flex;
  margin-bottom: 1.5rem;
}
.price-highlight small { font-size: 0.75rem; font-weight: 500; }

/* ── ANIMATE ON SCROLL ── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ── 404 PAGE ── */
.error-404 {
  text-align: center;
  padding: 5rem 0;
}
.error-404 .error-code {
  font-size: 8rem;
  font-weight: 900;
  color: var(--accent1);
  line-height: 1;
  display: block;
}

/* ── UTILITY ── */
.bg-accent1 { background-color: var(--accent1) !important; }
.bg-accent2 { background-color: var(--accent2) !important; }
.rounded-india { border-radius: var(--border-radius) !important; }
.shadow-india { box-shadow: var(--shadow) !important; }
.divider-accent {
  height: 3px;
  background: var(--accent1);
  border: none;
  border-radius: 2px;
  width: 60px;
  margin: 1rem 0 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 991.98px) {
  .navbar-main .dropdown-menu {
    column-count: 1;
    border-top: none;
    border-left: 3px solid var(--accent1);
    background-color: rgba(26,35,126,0.95);
  }
  .navbar-main .dropdown-item { color: #fff; }
  .navbar-main .dropdown-item:hover {
    background-color: var(--accent1);
    color: var(--accent2);
  }
  .navbar-main .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .hero-section { min-height: 380px; max-height: 480px; }
  .parallax-section { background-attachment: scroll; }
}

@media (max-width: 767.98px) {
  .top-bar .top-contact-item:not(:first-child) { display: none; }
  .hero-section { min-height: 320px; max-height: 400px; }
  .carousel-img { height: 240px; }
  .destination-tile { height: 200px; }
  .section-padding { padding: 3rem 0; }
  #cookie-banner { flex-direction: column; text-align: center; }
}

/* Sidebar fix - no stretching */
.sticky-top { align-self: flex-start !important; }
.card.sticky-top { height: fit-content !important; max-height: none !important; }
.col-lg-4:has(.sticky-top) { align-self: flex-start !important; }

@media (max-width: 575.98px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid img { height: 120px; }
}
