/*
Theme Name: Juntara Trek Theme
Theme URI: juntaratrek.com
Author: the WordPress team

*/

 :root {
	/* colors */
	--color-bg: #0f1115;
	--color-surface: #ffffff;
	--color-elevated: #1c2230;
	--color-text: #e8eefc;
	--color-muted: #a8b1c7;
	--color-primary: #003F6E; /* user primary color */
	--color-primary-contrast: #ffffff;
	--color-border: #2a3242;
  
	/* type scale */
	--font-family-sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
	--font-size-00: 12px;
	--font-size-0: 14px;
	--font-size-1: 16px;
	--font-size-2: 18px;
	--font-size-3: 22px;
	--font-size-4: 28px;
	--font-size-5: 36px;
	--font-size-6: 44px;
  
	/* spacing scale */
	--space-0: 4px;
	--space-1: 8px;
	--space-2: 12px;
	--space-3: 16px;
	--space-4: 24px;
	--space-5: 32px;
	--space-6: 48px;
	--space-7: 64px;
  
	/* radius & shadows */
	--radius-1: 8px;
	--radius-2: 14px;
	--shadow-1: 0 6px 24px rgba(0, 0, 0, 0.28), 0 2px 8px rgba(0, 0, 0, 0.24);
  }
  
  @media (min-width: 768px) {
	:root {
	  --font-size-5: 44px;
	  --font-size-6: 56px;
	}
  }
  
  /* --------------------
	 CSS reset (modern)
  -------------------- */
  * {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
  }
  
  html, body {
	height: 100%;
  }
  
  body {
	margin: 0;
	font-family: var(--font-family-sans);
	font-size: var(--font-size-1);
	line-height: 1.6;
	color: var(--color-text);
	background: var(--color-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  img, svg, video, canvas {
	display: block;
	max-width: 100%;
  }
  
  /* Global links: keep underlines for readability; thickness/offset tuned */
  a { text-decoration: underline; text-underline-offset: .1em; text-decoration-thickness: 1px; }
  /* Component links that should look like UI elements */
  .button { text-decoration: none; }
  .footer-links a { text-decoration: none; }
  .category-tile { text-decoration: none; }
  
  /* --------------------
	 Layout primitives
  -------------------- */
  .container {
	width: min(1120px, calc(100% - 2*var(--space-4)));
	margin-inline: auto;
  }
    @media (max-width: 576px) {
	.container {
	  width: min(1120px, calc(100% - 2*var(--space-3)));
	}
  }
  /* Wider container variant for contact page */
  .contact-container { width: min(1280px, calc(100% - 2*var(--space-4))); }
  
  .grid {
	display: grid;
	gap: var(--space-5);
  }
  
  .grid-3 {
	grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  @media (min-width: 768px) {
	.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  }
  
  .section {
	padding-block: var(--space-4);
  }
  
  .section-header {
	margin-bottom: var(--space-5);
  }
  
  .section-header h2 {
	margin: 0 0 var(--space-2);
	font-size: 32px;
	letter-spacing: -0.02em;
  }
  
    @media (max-width: 768px) {
	.section-header h2 {
	  font-size: var(--font-size-4);
	}
  }
  
  @media (max-width: 576px) {
	.section-header h2 {
	  font-size: var(--font-size-3);
	}
  }
  
  .section-subhead {
	margin: 0;
	color: var(--color-muted);
  }
  
  /* --------------------
	 Header & Navigation
  -------------------- */
  .site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	
	backdrop-filter: saturate(120%) blur(10px);

	width: 100%;
	min-height: var(--header-height);
  }
  
  .header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: var(--space-3);
  }
  
  .brand {
	font-weight: 700;
	letter-spacing: 0.02em;
	width: 150px;
  }

  .brand img {
	width: 100%;
  }
  
  .nav {
	display: none;
		position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	margin-top: 8px;
	box-shadow: var(--shadow-1);
	z-index: 100;
  }
  
  .nav-list {
	display: flex;
	flex-direction: column;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 16px;
  }
  
  .nav-list li {
	border-bottom: 1px solid var(--color-border);
  }
  
  .nav-list li:last-child {
	border-bottom: none;
  }
  
  .nav-list a {
	display: block;
	padding: 12px 0;
	color: var(--color-muted);
	text-decoration: none;
	transition: color 0.3s ease;
  }
  
  .nav-list a:hover,
  .nav-list a:focus-visible {
	color: var(--color-text);
  }
  
  .nav-toggle {
	display: inline-flex;
	flex-direction: column;
	gap: 3px;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	background: var(--color-elevated);
	color: var(--color-text);
	cursor: pointer;
	transition: all 0.3s ease;
  }
  
   .nav-toggle:hover {
	background: var(--color-text);
	color: var(--color-bg);
  }
  
  .nav-toggle[aria-expanded="true"] {
	background: var(--color-text);
	color: var(--color-bg);
  }
  
  
  .nav-toggle-bar {
	width: 20px;
	height: 2px;
	background: currentColor;
	transition: all 0.3s ease;
  }
  
    .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
	opacity: 0;
  }
  
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -6px);
  }
  
  @media (min-width: 768px) {
	.nav {
	  display: block;
	  position: static;
	  background: transparent;
	  border: none;
	  border-radius: 0;
	  margin-top: 0;
	  box-shadow: none;
	}
	
	.nav-list {
	  flex-direction: row;
	  gap: var(--space-4);
	  padding: 0;
	}
	
	.nav-list li {
	  border-bottom: none;
	}
	
	.nav-list a {
	  padding: 0;
	}
	
	.nav-toggle {
	  display: none;
	}
  }
  
  .nav a { color: var(--color-muted); text-decoration: none; }
  .nav a:hover, .nav a:focus-visible { color: var(--color-text); }
  
  /* --------------------
	 Buttons
  -------------------- */
  .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: var(--radius-1);
	border: 1px solid var(--color-border);
	background: var(--color-elevated);
	color: var(--color-text);
	transition: transform .08s ease, box-shadow .2s ease, background .2s ease;
  }
  
  .button.large { padding: 14px 22px; font-size: var(--font-size-2); }
  
  .button.primary {
	background: #FE7A5A;
	border: 1px solid #FE7A5A;
	color: #ffffff;
	box-shadow: 0 8px 22px rgba(0, 63, 110, 0.28);
  }
  
  .button.ghost {
	background: transparent;
  }
  
  .button:hover { transform: translateY(-1px); }
  .button:active { transform: translateY(0); }
  .button:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
  
  /* --------------------
	 Hero
  -------------------- */
  .hero {
	padding-block: 0;
  }
  
  .hero-inner {
	display: grid;
	gap: var(--space-6);
  }
  
  @media (min-width: 920px) {
	.hero-inner {
	  grid-template-columns: 1.1fr 1fr;
	  align-items: center;
	}
  }
  
  .headline {
	margin: 0 0 var(--space-3);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.1;
	letter-spacing: -0.02em;
	color: #ffffff!important;
  }
  
  .subhead {
	margin: 0 0 var(--space-4);
	color: var(--color-muted);
  }
  
  .media-placeholder, .tile {
	aspect-ratio: 16 / 10;
	border-radius: var(--radius-2);
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-1);
  }
  
  /* Hero cover with overlay */
  .hero-cover {
	position: relative;
	margin-top: 0px;
	    min-height: 64vh;
	/* background-image: url('assets/hero.jpg'); */
	background-size: cover;
	background-position: center;
  }
  .hero-cover::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.4));
  }

  .hero-cover.hero-trip-details {
	min-height: 40vh;
	height: 40vh;
	padding-top: 20px;
  }
  .hero-cover.hero-trip-details h1 {
	font-size: 1.5rem;
  }
  .hero-cover .hero-overlay { position: relative; padding-block: 120px; }
  .hero-cover .subhead { color: #d8e3f6; }
  .has-hero { background: #0f1115; }
  /* Trip details: make cover sit under sticky header like home */
  .trip-hero-cover { position: relative; margin-top: -72px; }
  .trip-hero-cover .wp-block-cover__inner-container { padding: 120px 18px; }
  .trip-hero-cover .wp-block-post-title { color: #ffffff; }
  
  /* Light content sections wrapper */
  
  /*main .section { background-color: #f3f7fb; color: #0c1320; }*/
  .section + .section { background-color: #f3f7fb; }
  
  .section .section-header h2 { color: #0c1320; font-size: 32px; }
  .section .section-subhead { color: #495873; }
  
  /* Overlay style cards */
  .destination-card.overlay, .tour-large.overlay, .tour-wide.overlay, .tour-tile.overlay {
	position: relative;
	color: #ffffff;
  }
  .destination-card .destination-media,
  .tour-large .tour-media,
  .tour-wide .tour-media,
  .tour-tile .tour-media {
	background-size: cover;
	background-position: center;
	height: 333px!important;
  }
  /* Improve text readability on image cards */
  .destination-card .destination-media { position: relative; }
  .destination-card .destination-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.75) 100%);
  }
  .tour-large .tour-media { height: 420px; }
  .tour-wide .tour-media { height: 200px; }
  .tour-tile .tour-media { height: 180px; }
  
  .destination-card.overlay .destination-body,
  .tour-large.overlay .tour-body,
  .tour-wide.overlay .tour-body,
  .tour-tile.overlay .tour-body {
	position: absolute;
	inset: auto 0 0 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	background: linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.82));
  }
  .destination-card.overlay .destination-body h3,
  .destination-card.overlay .destination-body .meta { text-shadow: 0 1px 2px rgba(0,0,0,.45); }
  .destination-card.overlay .button.primary.tiny { backdrop-filter: saturate(120%) blur(4px); }
  .destination-card .meta-left h3,
  .tour-large .tour-body h3,
  .tour-wide .tour-body h3,
  .tour-tile .tour-body h3 { margin: 0 0 6px; font-size: 16px; }
  .destination-card .meta { font-size: 12px; opacity: .9; }
  .tour-body .meta { font-size: 12px; opacity: .9; }
  
  .button.tiny { padding: 6px 10px; font-size: 12px; }
  .button.small { padding: 6px 12px; font-size: 13px; }
  
    /* Button responsive improvements */
  @media (max-width: 576px) {
	.button {
	  padding: 8px 16px;
	  font-size: 14px;
	}
	
	.button.small {
	  padding: 6px 12px;
	  font-size: 12px;
	}
	
	.button.tiny {
	  padding: 4px 8px;
	  font-size: 11px;
	}
  }
  
  /* Category ribbon */
  .category-banner {
	background-size: cover;
	padding: 50px 18px;
	border-radius: var(--radius-2);
	background: linear-gradient(90deg, rgba(0,63,110,.9), rgba(0,63,110,.65));
	border: 1px solid color-mix(in srgb, var(--color-primary) 40%, #ffffff 0%);
  }
  .category-tile.light {
	background: #ffffff;
	border-color: #d9e0ea;
	color: #0c1320;
  }
  .category-tile.light .category-label { color: #23324a; font-weight: 600; font-size: 12px; }
  
  /* Tours grid */
  .tours-grid article { border-radius: var(--radius-2); overflow: hidden; }
  
  /* Partners row */
  .partners-row .partner-logo { background: #ffffff; border-radius: 10px; display: flex; align-items: center; justify-content: center;}
  .partners-row .partner-logo img { padding: 18px; height: 90px; object-fit: contain; width: 100%; }


  main.hs-form-virality-container {
	display: none!important;
  }

  .js-form-containerss {
	
	max-height: 762px;
	overflow: hidden;
  }
  
  .js-form-containerss #hs-form-virality-container {
      height: 0;
      position: relative;
  }
  
    .js-form-containerss #hs-form-virality-container::affter {
        content: '';
        height: 20px;
        width: 100%;
        position: absolute;
        background-color: #EFF5FB;
    }   
  
  
  /* --------------------
	 Features
  -------------------- */
  .card {
	padding: var(--space-5);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2);
	box-shadow: var(--shadow-1);
  }
  
  .card-icon { font-size: 28px; margin-bottom: var(--space-3); }
  .card h3 { margin: 0 0 var(--space-2); font-size: var(--font-size-3); }
  .card p { margin: 0; color: var(--color-muted); }
  
  /* --------------------
	 Gallery
  -------------------- */
  .media-grid .media-tile { margin: 0; }
  
  /* reveal on scroll */
  .reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
  
  @media (prefers-reduced-motion: reduce) {
	.reveal { transition: none; transform: none; opacity: 1; }
  }
  
  /* --------------------
	 CTA
  -------------------- */
  .cta-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: var(--space-4);
	padding: var(--space-6);
	border-radius: var(--radius-2);
	background: linear-gradient(180deg, rgba(0, 63, 110, 0.12), rgba(0, 63, 110, 0.04));
	border: 1px solid color-mix(in srgb, var(--color-primary) 30%, var(--color-border));
	box-shadow: var(--shadow-1);
  }
  
  /* --------------------
	 Cards and Tiles for Sections
  -------------------- */
  .destination-card, .package-card {
	background: var(--color-surface);
	border:   1px solid #dfe1e4;
	border-radius: var(--radius-2);
	overflow: hidden;
	box-shadow: none;
  }
  
  .destination-media, .package-media {
	aspect-ratio: 16/9;
	background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  }

.package-media.team-media {
	  height: 200px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .destination-body, .package-body {
	padding: var(--space-4);
  }
  
  .destination-body h3, .package-body h3 {
	margin: 0 0 6px;
	font-size: var(--font-size-3);
  }
  
  .destination-body p, .package-body p {
	margin: 0;
	color: var(--color-muted);
  }
  
  .category-tile {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 18px 12px;
	border-radius: var(--radius-1);
	background: var(--color-elevated);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	transition: transform .08s ease, border-color .2s ease;
  }
  
    @media (max-width: 576px) {
	.category-tile {
	  padding: 12px 8px;
	}
	
	.category-tile .category-icon {
	  font-size: 20px;
	}
	
	.category-tile .category-label {
	  font-size: 11px;
	}
  }
  
  .category-tile:hover { transform: translateY(-2px); border-color: color-mix(in srgb, var(--color-primary) 40%, var(--color-border)); }
  .category-icon { font-size: 24px; }
  .category-label { font-size: var(--font-size-1); color: var(--color-muted); }
  
  .partner-logo {
	  height: 92px;
	  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  }
  
  /* --------------------
	 Owl Carousel Tweaks
  -------------------- */
  .owl-theme .owl-nav [class*="owl-"] {
	background: var(--color-elevated);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	border-radius: 10px;
  }
  .owl-theme .owl-dots .owl-dot span {
	background: color-mix(in srgb, var(--color-primary) 35%, #ffffff 0%);
  }
  .owl-theme .owl-dots .owl-dot.active span {
	background: var(--color-primary);
  }
  
  .cta-copy { text-align: center; }
  .cta-copy h2 { margin: 0 0 var(--space-2); font-size: var(--font-size-4); }
  .cta-copy p { margin: 0; color: var(--color-muted); }
  
  /* --------------------
     Contact page
     -------------------- */
  #contact-section { background: #eef5fb; }
  .contact-form .form-control,
  .contact-form .form-select {
    width: 100%;
    background: #ffffff;
    border: 1px solid #d9e0ea;
    border-radius: 10px;
    padding: 10px 12px;
    font-family: var(--font-family-sans);
    font-size: 14px;
    color: #0c1320;
  }
  .contact-form textarea.form-control { resize: vertical; }
  .contact-info-card {
    background: #e3edf7;
    border: 1px solid #d1deec;
    border-radius: 12px;
    padding: 16px;
  }
  .contact-info-card .info-list { display: flex; flex-direction: column; gap: 10px; margin: 10px 0 16px; }
  .contact-info-card .info-row { display: flex; align-items: center; gap: 10px; color: #0c1320; }
  .contact-info-card .info-icon { width: 24px; text-align: center; opacity: .8; }
  .contact-info-card .info-social { display: flex; gap: 10px; border-top: 1px solid #d1deec; padding-top: 12px; }
  .contact-info-card .info-social a { width: 28px; height: 28px; display: inline-flex; align-items: center; justify-content: center; border-radius: 6px; background: #ffffff; border: 1px solid #d1deec; color: #23324a; text-decoration: none; }

  /* --------------------
     About page tweaks
     -------------------- */
  .media-placeholder { background-size: cover; background-position: center; }
 
  /* --------------------
	 Footer refinements
	 -------------------- */
  .site-footer {
	background: transparent;
	color: #0c1320;
	border-top: 1px solid #e3e8f0;
  }

  .site-footer .footer-top {
	padding-block: var(--space-6);
	border-bottom: 1px solid #e3e8f0;
  }

  .site-footer .brand {
	font-weight: 800;
	color: #0c1320;
  }

  .site-footer h4 {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	color: #23324a;
  }

  .site-footer .footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .footer-links-company {
      list-style: none;
	padding: 0;
	margin: 0;
  }
  
  .footer-links-company li {
      font-size: 14px;
  }

  .site-footer .footer-links li { margin: 6px 0; }
  .site-footer .footer-links a { color: #495873; text-decoration: none; }
  .site-footer .footer-links a:hover, .site-footer .footer-links a:focus-visible { color: #0c1320; }

  .site-footer .footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-4);
	padding-block: var(--space-4);
	color: #495873;
  }


  .site-footer .footer-bottom {
	display: flex;
	flex-direction: column;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	padding-block: var(--space-4);
	color: #495873;
	text-align: center;
  }
  
  @media (min-width: 768px) {
	.site-footer .footer-bottom {
	  flex-direction: row;
	  text-align: left;
	}
  }
  .site-footer .social-dots { letter-spacing: 6px; color: #98a7bd; }
  
    /* Footer responsive improvements */
  @media (max-width: 767px) {
	.site-footer .footer-top .row {
	  text-align: center;
	}
	
	.site-footer .footer-top .col-6 {
	  margin-bottom: 24px;
	}
	
	.site-footer h4 {
	  margin-bottom: 12px;
	}
	
	.site-footer .footer-links {
	  display: flex;
	  flex-direction: column;
	  align-items: center;
	  gap: 8px;
	}
  }
  

/* Card title/link and CTA alignment tweaks */
.destination-card .title-link {
	display: block;
	color: inherit;
	text-decoration: none;
}
.destination-card .title-link:hover { text-decoration: underline; }
.destination-card.overlay .destination-body { gap: 12px; }
.destination-card.overlay .destination-body .button { flex-shrink: 0; }
.destination-card.overlay .meta-left { min-width: 0; }
  
  
  

/* Trip details sidebar */
.trip-sidebar { background: var(--color-elevated); }
.trip-sidebar .price-line { font-weight: 700; font-size: 1.25rem; }
  
  
  

/* Trip details layout */
.trip-layout { padding-top: 0 !important; }
.trip-layout .trip-hero .wp-block-post-featured-image img { border-radius: var(--radius-2); box-shadow: var(--shadow-1); }
.trip-meta .badge { background: var(--color-elevated); border:1px solid var(--color-border); padding:.25rem .5rem; border-radius: 999px; color: var(--color-muted); }
.trip-section h3 { margin: 0; }
.trip-section.itinerary details { border:1px solid var(--color-border); border-radius: var(--radius-1); padding: .75rem 1rem; background: var(--color-surface); }
.trip-section.itinerary details + details { margin-top: .75rem; }
.trip-section.facilities .facilities-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:.5rem 1rem; padding-left: 1rem; }
@media (max-width: 768px){ .trip-section.facilities .facilities-grid { grid-template-columns: 1fr; } }

.trip-sidebar.is-sticky { position: sticky; top: 1.5rem; background: var(--color-elevated); }
.trip-sidebar .price-line { font-weight: 700; font-size: 1.35rem; }
  
  
  

/* Trip hero cover */
.trip-hero-cover .wp-block-cover__inner-container { padding: 2rem; }
.trip-hero-cover .wp-block-post-title { color: var(--color-base, #fff); }
.trip-meta .badge { background: color-mix(in srgb, var(--color-primary) 20%, transparent); border:1px solid color-mix(in srgb, var(--color-primary) 35%, transparent); color: #fff; }
.trip-meta .badge.ghost { background: rgba(0,0,0,.25); border-color: rgba(255,255,255,.2); color: #fff; }
  
  
  

/* Offer card (trip sidebar) */
.offer-card { position: sticky; top: 1.5rem; color: #fff; border-radius: 14px; box-shadow: var(--shadow-1); }
.offer-card .offer-title { margin: 0 0 .25rem; color: #cfe6ff; font-weight: 600; letter-spacing: .2px; }
.offer-card .offer-price { margin: 0 0 1rem; font-size: 1.75rem; font-weight: 800; }
.offer-card .offer-list { list-style: none; padding: 0; margin: 0 0 1rem; }
.offer-card .offer-list li { position: relative; padding-left: 1.5rem; margin: .5rem 0; }
.offer-card .offer-list li::before { content: "\2192"; position: absolute; left: 0; top: 0; opacity: .85; }
.offer-card .offer-cta .wp-block-button__link { background: #0c4f8a;  background-color: #0c4f8a!important; color: #ffffff; border-radius: 12px; padding: .9rem 1.1rem; font-weight: 700; justify-content: space-between; display: flex; }
.offer-card .offer-note { margin: .75rem 0 0; opacity: .9; }
.offer-card .offer-contact { text-align: center; margin: 1rem 0 0; }
.offer-card .offer-contact strong { font-size: 1.1rem; display: inline-block; margin-top: .25rem; }
.offer-card .offer-badge { position: absolute; right: 1.25rem; top: -1.25rem; background: #11a7dd; color: #fff; border-radius: 8px; padding: .75rem .9rem; width: 132px; text-align: center; box-shadow: var(--shadow-1); }
.offer-card .offer-badge p { margin:0; font-weight:700; }
.offer-card .offer-badge p strong { font-size: 2rem; line-height: 1; display:block; }
.offer-card .offer-badge span { display:block; font-weight:600; margin-top:.35rem; }
.offer-card .offer-whatsapp { position: absolute; right: 1.25rem; bottom: -1.5rem; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color:#fff; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-1); font-weight:700; }
@media (max-width: 782px){ .offer-card .offer-badge { position: static; width:auto; margin-bottom: .75rem; } .offer-card .offer-whatsapp { position: static; width:auto; height:auto; border-radius:8px; padding:.4rem .6rem; display:inline-flex; margin-top: .75rem; } }
  
  
.destination-media{
	height: 333px!important;
  }
  
  /* Ensure the main carousel items take up 100% width */
.hero-slider .owl-item {
  width: 100% !important;
}
/* --------------------
	 Hero Slider - Banner Only
  -------------------- */
  .hero-slider-wrapper {
	position: relative;
	width: 100vw;
	height: 555px;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	left: 0;
	right: 0;
	overflow: hidden;
  }
  
    @media (max-width: 768px) {
	.hero-slider-wrapper {
	  height: 400px;
	}
  }
  
  @media (max-width: 576px) {
	.hero-slider-wrapper {
	  height: 350px;
	}
  }

  .hero-slider {
	position: relative;
	margin-top: -72px;
	width: 100%;
	height: 642px;
	overflow: hidden;
  }

  .hero-slider-container {
	position: relative;
	width: 100%;
	height: 100%;
  }

  .hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.8s ease-in-out;
  }

  .hero-slide.active {
	opacity: 1;
  }

  .hero-slide::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.35) 40%, rgba(0,0,0,.4));
  }

  .hero-slide .hero-overlay {
	position: relative;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
  }

  .hero-slide .hero-overlay .container {
	position: relative;
	z-index: 2;
  }

  .hero-slide .subhead {
	color: #d8e3f6;
  }

  /* Slider Navigation Dots */
  .hero-slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 12px;
	z-index: 10;
  }

  .slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 2px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	cursor: pointer;
	transition: all 0.3s ease;
  }

  .slider-dot:hover {
	border-color: rgba(255, 255, 255, 0.8);
	background: rgba(255, 255, 255, 0.2);
  }

  .slider-dot.active {
	border-color: #ffffff;
	background: #ffffff;
  }

  .slider-dot:focus {
	outline: 2px solid rgba(255, 255, 255, 0.8);
	outline-offset: 2px;
  }

  /* Force banner to break out of WordPress containers */
  .wp-block-html .hero-slider-wrapper,
  .wp-block-group .hero-slider-wrapper,
  .container .hero-slider-wrapper,
  .wp-container .hero-slider-wrapper {
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	left: 0 !important;
	right: 0 !important;
	position: relative !important;
  }

  /* Ensure parent containers don't constrain the banner */
  .wp-block-html,
  .wp-block-group,
  .wp-container {
	overflow-x: visible !important;
  }

  /* Force banner pattern to be full-width */
  .wp-block-pattern .hero-slider-wrapper {
	width: 100vw !important;
	margin-left: calc(-50vw + 50%) !important;
	margin-right: calc(-50vw + 50%) !important;
	left: 0 !important;
	right: 0 !important;
	position: relative !important;
  }

  /* Break out of WordPress block pattern constraints */
  .wp-block-pattern {
	overflow-x: visible !important;
	max-width: none !important;
  }
  
  /* Social Media Icons */
  .site-footer .social-links {
	display: flex;
	gap: 16px;
	align-items: center;
  }

  .site-footer .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f3f7fb;
	color: #495873;
	text-decoration: none;
	transition: all 0.3s ease;
  }

  .site-footer .social-links a:hover {
	background: #003F6E;
	color: #ffffff;
	transform: translateY(-2px);
  }

  .site-footer .social-links a svg {
	width: 20px;
	height: 20px;
  }
  
  
  /* --------------------
	 Events Pattern - Enhanced Design
  -------------------- */
  #events {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 80px 0;
  }

  .event-card {
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(0, 0, 0, 0.05);
	position: relative;
	height: 100%;
  }

  .event-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #003F6E 0%, #667eea 100%);
	transform: scaleX(0);
	transition: transform 0.3s ease;
  }

  .event-card:hover::before {
	transform: scaleX(1);
  }

  .event-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .event-media {
	position: relative;
	height: 220px;
	overflow: hidden;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  }

  .event-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
  }

  .event-card:hover .event-media img {
	transform: scale(1.08);
  }

  .event-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: #ffffff;
  }

  .event-placeholder svg {
	opacity: 0.7;
  }

  .event-body {
	padding: 2rem;
	position: relative;
  }

  .event-meta {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	font-size: 0.9rem;
	color: #6c757d;
	margin-bottom: 1.5rem;
  }

  .event-date,
  .event-location {
	display: flex;
	align-items: center;
	font-weight: 600;
	background: #f8f9fa;
	padding: 0.5rem 0.75rem;
	border-radius: 8px;
	border-left: 3px solid #003F6E;
  }

  .event-date svg,
  .event-location svg {
	color: #003F6E;
	margin-right: 0.5rem;
  }

  .event-title {
	margin: 0 0 1rem;
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1.3;
	color: #2c3e50;
  }

  .event-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
  }

  .event-title a:hover {
	color: #003F6E;
  }

  .event-excerpt {
	color: #6c757d;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
  }

  .btn-outline-primary {
	border: 2px solid #003F6E;
	color: #003F6E;
	font-weight: 600;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	transition: all 0.3s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
  }

  .btn-outline-primary:hover {
	background: #003F6E;
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 63, 110, 0.3);
  }

  .no-events {
	color: #6c757d;
	text-align: center;
	padding: 4rem 2rem;
  }

  .no-events svg {
	color: #dee2e6;
	margin-bottom: 1.5rem;
  }

  .no-events h4 {
	color: #495057;
	margin-bottom: 1rem;
  }

  /* Section Header Enhancement */
  #events .section-header h2 {
	font-size: 2.5rem;
	font-weight: 800;
	color: #2c3e50;
	margin-bottom: 1rem;
	position: relative;
  }

  #events .section-header h2::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: linear-gradient(90deg, #003F6E 0%, #667eea 100%);
	border-radius: 2px;
  }

  #events .section-subhead {
	font-size: 1.1rem;
	color: #6c757d;
	margin-bottom: 0;
  }

  /* View All Events Button */
  #events .btn-primary {
	background: linear-gradient(135deg, #003F6E 0%, #667eea 100%);
	border: none;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 12px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 63, 110, 0.3);
		display: inline-flex;
	align-items: center;
	gap: 0.5rem;
  }

  #events .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 63, 110, 0.4);
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
	#events {
	  padding: 60px 0;
	}
	
	.event-media {
	  height: 200px;
	}
	
	.event-body {
	  padding: 1.5rem;
	}
	
	.event-title {
	  font-size: 1.2rem;
	}
	
	#events .section-header h2 {
	  font-size: 2rem;
	}
  }

  @media (max-width: 576px) {
	.event-media {
	  height: 180px;
	}
	
	.event-body {
	  padding: 1.25rem;
	}
	
	.event-meta {
	  font-size: 0.85rem;
	}
	
	.event-date,
	.event-location {
	  padding: 0.4rem 0.6rem;
	}
	
	#events .section-header h2 {
	  font-size: 1.75rem;
	}
  }
  
  
   /* Additional Events Animation */
  #events-additional {
	transition: all 0.5s ease;
  }

  #events-additional.show {
	animation: slideDown 0.5s ease;
  }

  @keyframes slideDown {
	from {
	  opacity: 0;
	  transform: translateY(-20px);
	}
	to {
	  opacity: 1;
	  transform: translateY(0);
	}
  }

  /* Button Icon Animation */
  #toggle-events-btn svg {
	transition: transform 0.3s ease;
  }
  
  .package-body p{
      color: #ffffff!important;
  }


.entry-wyswyg img,
.entry-wyswyg video {
  display: inline-block; /* or whatever WYSIWYG set */
  max-width: none;
}
  