/* =========================================================
   Dolphin Lanka Holidays - Main Stylesheet
   Royal Blue & Gold theme
========================================================= */

:root {
	--royal-blue: #0b2d6b;
	--royal-blue-dark: #071c45;
	--royal-blue-light: #1a4fa0;
	--gold: #d4af37;
	--gold-dark: #b8912a;
	--gold-light: #f2d675;
	--ink: #1c1f26;
	--muted: #6b7280;
	--light-bg: #f7f8fb;
	--white: #ffffff;
	--radius: 10px;
	--shadow-sm: 0 2px 10px rgba(11,45,107,0.08);
	--shadow-md: 0 10px 30px rgba(11,45,107,0.12);
	--shadow-lg: 0 20px 50px rgba(11,45,107,0.18);
	--font-heading: 'Playfair Display', Georgia, serif;
	--font-body: 'Poppins', sans-serif;
	--transition: all .3s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	font-family: var(--font-body);
	color: var(--ink);
	line-height: 1.7;
	margin: 0;
	background: var(--white);
	overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
	font-family: var(--font-heading);
	color: var(--royal-blue-dark);
	line-height: 1.25;
	margin: 0 0 .6em;
}

a { color: var(--royal-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; margin: 0; padding: 0; }

.dlh-container {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 24px;
}

.dlh-eyebrow {
	display: inline-block;
	color: var(--gold-dark);
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-size: 13px;
	margin-bottom: 10px;
}

.dlh-section-heading { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.dlh-section-heading h2 { font-size: 36px; }
.dlh-section-heading.light h2, .dlh-section-heading.light .dlh-eyebrow { color: var(--white); }
.dlh-section-heading.light .dlh-eyebrow { color: var(--gold-light); }

/* Buttons */
.dlh-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: .5px;
	text-transform: uppercase;
	border: 2px solid transparent;
	cursor: pointer;
	transition: var(--transition);
}
.dlh-btn-primary { background: var(--royal-blue); color: var(--white); }
.dlh-btn-primary:hover { background: var(--royal-blue-dark); color: var(--white); }
.dlh-btn-gold { background: var(--gold); color: var(--royal-blue-dark); }
.dlh-btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.dlh-btn-outline { border-color: var(--royal-blue); color: var(--royal-blue); background: transparent; }
.dlh-btn-outline:hover { background: var(--royal-blue); color: var(--white); }
.dlh-btn-block { width: 100%; justify-content: center; margin-bottom: 12px; }
.dlh-btn-sm { padding: 10px 22px; font-size: 12px; }

/* =========================================================
   Top Bar
========================================================= */
.dlh-topbar {
	background: var(--royal-blue-dark);
	color: #cfd9f2;
	font-size: 13px;
	padding: 8px 0;
}
.dlh-topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
}
.dlh-social-icons { display: flex; gap: 10px; }
.dlh-social-icons li a {
	width: 28px; height: 28px;
	display: flex; align-items: center; justify-content: center;
	background: rgba(255,255,255,0.08);
	border-radius: 50%;
	color: var(--white);
	font-size: 13px;
}
.dlh-social-icons li a:hover { background: var(--gold); color: var(--royal-blue-dark); }
.dlh-svg-icon { display: flex; align-items: center; justify-content: center; width: 1em; height: 1em; font-size: 14px; }
.dlh-svg-icon svg { width: 1em; height: 1em; display: block; }
.dlh-topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
.dlh-topbar-right a { color: #e7ecfb; font-weight: 500; }
.dlh-topbar-right a:hover { color: var(--gold-light); }
.dlh-topbar-right i { color: var(--gold); margin-right: 5px; }

/* =========================================================
   Header / Hero Slideshow
========================================================= */
.dlh-header { position: relative; }
.dlh-header.no-slideshow { background: var(--royal-blue-dark); }

.dlh-hero-slideshow {
	position: relative;
	height: 88vh;
	min-height: 560px;
	overflow: hidden;
}
.dlh-slide {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	background-color: var(--royal-blue-dark);
}
.dlh-slide.active { opacity: 1; }
.dlh-slide-shade {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(7,28,69,.75) 0%, rgba(7,28,69,.35) 45%, rgba(7,28,69,.85) 100%);
}

.dlh-slide-caption-wrap {
	position: absolute;
	left: 0; right: 0; bottom: 14%;
	z-index: 5;
	color: var(--white);
}
.dlh-slide-caption { display: none; max-width: 620px; }
.dlh-slide-caption.active { display: block; animation: dlhFadeUp .8s ease; }
.dlh-slide-caption h2 { color: var(--white); font-size: 46px; margin-bottom: 4px; }
.dlh-slide-caption p { font-size: 18px; color: #e4e9f9; margin: 0 0 26px; }

@keyframes dlhFadeUp {
	from { opacity: 0; transform: translateY(25px); }
	to { opacity: 1; transform: translateY(0); }
}

.dlh-slide-dots {
	position: absolute;
	bottom: 24px; left: 50%; transform: translateX(-50%);
	display: flex; gap: 10px; z-index: 6;
}
.dlh-slide-dots span {
	width: 10px; height: 10px; border-radius: 50%;
	background: rgba(255,255,255,.5);
	cursor: pointer;
	transition: var(--transition);
}
.dlh-slide-dots span.active { background: var(--gold); width: 28px; border-radius: 6px; }

/* Overlay Navbar */
.dlh-navbar-overlay {
	position: absolute;
	top: 0; left: 0; right: 0;
	z-index: 100;
	background: linear-gradient(180deg, rgba(7,28,69,.55), transparent);
}
.dlh-navbar-static {
	position: relative;
	z-index: 100;
	background: var(--royal-blue-dark);
}
.dlh-navbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 24px;
}
.dlh-logo img { max-height: 64px; width: auto; }
.dlh-logo-text {
	font-family: var(--font-heading);
	font-size: 26px;
	font-weight: 700;
	color: var(--white);
	display: flex; flex-direction: column; line-height: 1.1;
}
.dlh-logo-dolphin { color: var(--white); }
.dlh-logo-lanka { color: var(--gold); }
.dlh-logo-text small { font-family: var(--font-body); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: #c9d3f0; }
.dlh-logo-text.light { color: var(--royal-blue-dark); }

/* Menu */
.dlh-main-navigation { display: flex; }
.dlh-menu { display: flex; align-items: center; gap: 6px; }
.dlh-menu > li { position: relative; }
.dlh-menu > li > a {
	display: block;
	padding: 12px 16px;
	color: var(--white);
	font-weight: 500;
	font-size: 15px;
}
.dlh-menu > li > a:hover { color: var(--gold-light); }
.dlh-menu .sub-menu {
	position: absolute;
	top: 100%; left: 0;
	background: var(--white);
	min-width: 240px;
	box-shadow: var(--shadow-lg);
	border-radius: 8px;
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: var(--transition);
	z-index: 30;
}
.dlh-menu li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dlh-menu .sub-menu li { padding: 0 4px; }
.dlh-menu .sub-menu li + li { margin-top: 4px; padding-top: 4px; border-top: 1px solid #eef0f5; }
.dlh-menu .sub-menu li a { display: block; color: var(--ink); padding: 11px 16px; border-radius: 6px; font-size: 14px; line-height: 1.3; }
.dlh-menu .sub-menu li a:hover { background: var(--light-bg); color: var(--royal-blue); }
.dlh-menu .menu-item-has-children > a::after {
	content: "\f107";
	font-family: "Font Awesome 6 Free"; font-weight: 900;
	margin-left: 6px; font-size: 11px;
}
.dlh-nav-cta a {
	background: var(--gold);
	color: var(--royal-blue-dark) !important;
	border-radius: 50px;
	padding: 10px 24px !important;
	font-weight: 700;
}
.dlh-nav-cta a:hover { background: var(--gold-dark); }

.dlh-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	z-index: 40;
}
.dlh-menu-toggle span { width: 26px; height: 3px; background: var(--white); border-radius: 3px; transition: var(--transition); }
.dlh-navbar-static .dlh-menu-toggle span { background: var(--white); }

/* =========================================================
   Welcome Section
========================================================= */
.dlh-welcome { padding: 90px 0; background: var(--white); }
.dlh-welcome-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: start; }
.dlh-welcome-content h2 { font-size: 34px; }
.dlh-welcome-text p { color: var(--muted); margin-bottom: 18px; }
.dlh-welcome-badges { display: flex; flex-direction: column; gap: 22px; }
.dlh-badge {
	background: var(--light-bg);
	border-left: 4px solid var(--gold);
	padding: 22px 24px;
	border-radius: var(--radius);
	transition: var(--transition);
}
.dlh-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.dlh-badge i { font-size: 26px; color: var(--royal-blue); margin-bottom: 10px; }
.dlh-badge h4 { margin-bottom: 4px; font-size: 17px; }
.dlh-badge p { color: var(--muted); margin: 0; font-size: 14px; }

/* =========================================================
   Full width video gallery
========================================================= */
.dlh-video-strip { width: 100%; padding: 4px 0; background: var(--light-bg); }
.dlh-video-grid {
	display: flex;
	flex-wrap: nowrap;
	gap: 4px;
	width: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	margin: 0;
	padding: 0 0 4px;
}
.dlh-video-grid::-webkit-scrollbar { height: 6px; }
.dlh-video-grid::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }
.dlh-video-item {
	position: relative;
	overflow: hidden;
	flex: 1 1 0;
	min-width: 140px;
	aspect-ratio: 9/16;
	scroll-snap-align: start;
	border-radius: 0;
	background: linear-gradient(160deg, var(--royal-blue-dark), var(--royal-blue));
	cursor: pointer;
}
.dlh-video-item video {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover; display: block; background: #000;
}
.dlh-video-poster {
	position: absolute; inset: 0;
	width: 100%; height: 100%; object-fit: cover;
	opacity: 1;
	transition: opacity .5s ease;
}
.dlh-video-overlay {
	position: absolute; inset: 0;
	display: flex; align-items: center; justify-content: center;
	background: linear-gradient(180deg, rgba(7,28,69,.05) 0%, rgba(7,28,69,.1) 55%, rgba(7,28,69,.4) 100%);
	opacity: 1;
	transition: opacity .5s ease, background .3s ease;
}
.dlh-video-item:hover .dlh-video-overlay { background: linear-gradient(180deg, rgba(7,28,69,.1) 0%, rgba(7,28,69,.18) 55%, rgba(7,28,69,.5) 100%); }
.dlh-video-play {
	width: 56px; height: 56px;
	border-radius: 50%;
	background: rgba(11,45,107,.45);
	border: 2px solid var(--gold);
	display: flex; align-items: center; justify-content: center;
	color: var(--white);
	font-size: 20px;
	backdrop-filter: blur(2px);
	box-shadow: 0 4px 18px rgba(0,0,0,.35);
	transition: var(--transition);
}
.dlh-video-play i { margin-left: 3px; }
.dlh-video-item:hover .dlh-video-play { background: var(--gold); color: var(--royal-blue-dark); transform: scale(1.1); }

/* Fade the poster + overlay away smoothly instead of an abrupt cut when playback starts */
.dlh-video-item.is-playing .dlh-video-overlay,
.dlh-video-item.is-playing .dlh-video-poster {
	opacity: 0;
	pointer-events: none;
}
.dlh-video-item.is-playing video { cursor: default; }

/* =========================================================
   Tours Section / Carousel
========================================================= */
.dlh-tours-section { padding: 90px 0; background: var(--light-bg); }
.dlh-tours-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.dlh-tour-tab {
	background: var(--white);
	border: 2px solid transparent;
	padding: 10px 22px;
	border-radius: 50px;
	font-weight: 600;
	font-size: 14px;
	cursor: pointer;
	color: var(--royal-blue);
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
}
.dlh-tour-tab.active, .dlh-tour-tab:hover { background: var(--royal-blue); color: var(--white); }

.dlh-tour-carousel { display: none; }
.dlh-tour-carousel.active { display: block; }
.dlh-tour-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 12px;
}
.dlh-tour-track::-webkit-scrollbar { height: 6px; }
.dlh-tour-track::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 6px; }

.dlh-tour-thumb {
	flex: 0 0 220px;
	scroll-snap-align: start;
	position: relative;
	border-radius: var(--radius);
	overflow: hidden;
	aspect-ratio: 3/4;
	box-shadow: var(--shadow-sm);
}
.dlh-tour-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dlh-tour-thumb:hover img { transform: scale(1.08); }
.dlh-tour-thumb-caption {
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(180deg, transparent, rgba(7,28,69,.92));
	color: var(--white);
	font-weight: 600;
	padding: 40px 14px 14px;
	font-size: 15px;
}
.dlh-tours-cta { text-align: center; margin-top: 40px; }
.dlh-empty-note { text-align: center; color: var(--muted); padding: 30px 0; }

/* =========================================================
   Testimonials
========================================================= */
.dlh-testimonials {
	position: relative;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	padding: 100px 0;
}
.dlh-testimonials-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,28,69,.9), rgba(7,28,69,.8)); }
.dlh-testimonials .dlh-container { position: relative; z-index: 2; }
.dlh-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dlh-testimonial-card {
	background: rgba(255,255,255,0.06);
	border: 1px solid rgba(255,255,255,0.15);
	backdrop-filter: blur(6px);
	border-radius: var(--radius);
	padding: 30px;
	color: var(--white);
}
.dlh-testimonial-stars { color: rgba(255,255,255,.25); margin-bottom: 14px; font-size: 14px; }
.dlh-testimonial-stars .is-filled { color: var(--gold); }
.dlh-testimonial-card h4 { color: var(--white); font-size: 17px; margin-bottom: 8px; }
.dlh-testimonial-card p { color: #dce3f7; font-size: 14px; margin-bottom: 16px; }
.dlh-testimonial-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--gold-light); text-transform: uppercase; letter-spacing: .5px; }

/* =========================================================
   Footer
========================================================= */
.dlh-footer { background: var(--royal-blue-dark); color: #c9d3f0; }
.dlh-footer-cta {
	background: linear-gradient(120deg, var(--royal-blue), var(--royal-blue-dark));
	text-align: center;
	padding: 60px 0;
	border-bottom: 1px solid rgba(255,255,255,.08);
}
.dlh-footer-cta h2 { color: var(--white); font-size: 30px; }
.dlh-footer-cta p { color: #d8e0f7; margin-bottom: 26px; }
.dlh-footer-main { padding: 60px 0; }
.dlh-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.dlh-footer-col h3 { color: var(--white); font-size: 17px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.dlh-footer-col h3::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; background: var(--gold); }
.dlh-footer-col ul li { margin-bottom: 10px; }
.dlh-footer-col a { color: #c9d3f0; }
.dlh-footer-col a:hover { color: var(--gold-light); }
.dlh-footer-logo { margin-bottom: 16px; }
.dlh-footer-about p { font-size: 14px; color: #b7c2e6; margin-bottom: 18px; }
.dlh-footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.dlh-footer-contact i { color: var(--gold); margin-top: 4px; }
.dlh-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; text-align: center; font-size: 13px; color: #9fadd6; }

/* WhatsApp floating button (desktop/tablet only - mobile uses the bottom toolbar) */
.dlh-whatsapp-float {
	position: fixed;
	bottom: 26px; right: 26px;
	width: 60px; height: 60px;
	background: #25D366;
	color: var(--white);
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 30px;
	box-shadow: 0 8px 24px rgba(0,0,0,.25);
	z-index: 999;
	animation: dlhPulse 2.4s infinite;
}
@keyframes dlhPulse {
	0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); }
	70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
	100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile bottom action toolbar */
.dlh-mobile-toolbar {
	display: none;
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 998;
	background: var(--royal-blue-dark);
	border-top: 2px solid var(--gold);
	padding-bottom: env(safe-area-inset-bottom, 0);
	box-shadow: 0 -6px 20px rgba(0,0,0,.2);
}
.dlh-mobile-toolbar-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	padding: 10px 4px 8px;
	color: #e7ecfb;
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .3px;
}
.dlh-mobile-toolbar-item i { font-size: 19px; color: var(--gold); }
.dlh-mobile-toolbar-item:hover,
.dlh-mobile-toolbar-item:hover i { color: var(--gold-light); }

/* =========================================================
   Scroll reveal animations
========================================================= */
.dlh-reveal {
	opacity: 0;
	transform: translateY(36px);
	transition: opacity .7s ease, transform .7s ease;
	will-change: opacity, transform;
}
.dlh-reveal.is-visible { opacity: 1; transform: none; }
.dlh-reveal-zoom { opacity: 0; transform: scale(.92); transition: opacity .7s ease, transform .7s ease; }
.dlh-reveal-zoom.is-visible { opacity: 1; transform: none; }
.dlh-reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.dlh-reveal-left.is-visible { opacity: 1; transform: none; }
.dlh-reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.dlh-reveal-right.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
	.dlh-reveal, .dlh-reveal-zoom, .dlh-reveal-left, .dlh-reveal-right {
		opacity: 1 !important; transform: none !important; transition: none !important;
	}
}


/* =========================================================
   Generic page / archive / single templates
========================================================= */
.dlh-page-hero {
	position: relative;
	background: linear-gradient(120deg, var(--royal-blue-dark), var(--royal-blue));
	background-size: cover;
	background-position: center;
	padding: 70px 0 50px;
	color: var(--white);
	text-align: center;
}
.dlh-page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,28,69,.55), rgba(7,28,69,.85)); }
.dlh-page-hero .dlh-container { position: relative; z-index: 2; }
.dlh-page-hero h1 { color: var(--white); font-size: 38px; margin-bottom: 10px; }
.dlh-breadcrumb { font-size: 14px; color: #c9d3f0; }
.dlh-breadcrumb a { color: #c9d3f0; }
.dlh-breadcrumb a:hover { color: var(--gold-light); }
.dlh-archive-desc { margin: 14px auto 0; color: #d8e0f7; max-width: 700px; }

.dlh-page-wrap { padding: 70px 0; }
.dlh-page-featured-img { margin-bottom: 30px; border-radius: var(--radius); overflow: hidden; }
.dlh-entry-content p { margin-bottom: 18px; color: #3a3f4b; }
.dlh-entry-content h2, .dlh-entry-content h3 { margin-top: 34px; }

.dlh-tour-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dlh-tour-card {
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	display: block;
}
.dlh-tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dlh-tour-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dlh-tour-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dlh-tour-card-duration {
	position: absolute; top: 12px; right: 12px;
	background: var(--gold); color: var(--royal-blue-dark);
	font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 50px;
}
.dlh-tour-card-body { padding: 22px; }
.dlh-tour-card-body h3 { font-size: 19px; margin-bottom: 8px; }
.dlh-tour-card-body p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.dlh-tour-card-link { color: var(--royal-blue); font-weight: 600; font-size: 14px; }
.dlh-place-region { color: var(--gold-dark) !important; font-size: 13px !important; font-weight: 600; }
.dlh-tour-category-card .dlh-tour-card-body { text-align: center; padding: 40px 22px; }

.dlh-pagination { text-align: center; margin-top: 40px; }
.dlh-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; margin: 0 4px;
	border-radius: 50%; background: var(--light-bg); color: var(--royal-blue);
	font-weight: 600;
}
.dlh-pagination .page-numbers.current { background: var(--royal-blue); color: var(--white); }

/* Single itinerary / place */
.dlh-tour-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	padding: 110px 0 60px;
	background-color: var(--royal-blue-dark);
}
.dlh-tour-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,28,69,.55), rgba(7,28,69,.92)); }
.dlh-tour-hero .dlh-container { position: relative; z-index: 2; text-align: center; }
.dlh-tour-hero h1 { color: var(--white); font-size: 40px; margin: 10px 0 14px; }
.dlh-tour-category-badge {
	display: inline-block;
	background: var(--gold);
	color: var(--royal-blue-dark);
	padding: 6px 18px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 13px;
}

.dlh-tour-layout { display: grid; grid-template-columns: 2.2fr 1fr; gap: 50px; align-items: start; }
.dlh-tour-highlights { margin-top: 30px; background: var(--light-bg); padding: 26px; border-radius: var(--radius); }
.dlh-tour-highlights ul li { display: flex; gap: 10px; margin-bottom: 12px; color: #3a3f4b; }
.dlh-tour-highlights i { color: var(--gold-dark); margin-top: 3px; }
.dlh-tour-gallery { margin-top: 40px; }
.dlh-tour-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dlh-tour-gallery-item { border-radius: 8px; overflow: hidden; aspect-ratio: 1/1; }
.dlh-tour-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.dlh-tour-gallery-item:hover img { transform: scale(1.08); }

.dlh-tour-sidebar { position: sticky; top: 20px; }
.dlh-tour-fact-card {
	background: var(--white);
	border: 1px solid #eef0f5;
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: var(--shadow-sm);
	margin-bottom: 24px;
}
.dlh-tour-facts li { display: flex; gap: 8px; margin-bottom: 14px; font-size: 14px; color: #3a3f4b; }
.dlh-tour-facts i { color: var(--royal-blue); width: 18px; }
.dlh-tour-links li { margin-bottom: 10px; }
.dlh-tour-links a { font-size: 14px; }

/* About page / [about] shortcode */
.dlh-about-shortcode { display: block; }
.dlh-about-story { max-width: 820px; margin: 0 auto 50px; text-align: center; }
.dlh-about-story p { color: #3a3f4b; }
.dlh-about-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.dlh-about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.dlh-value-card { background: var(--light-bg); border-radius: var(--radius); padding: 26px; text-align: center; }
.dlh-value-card i { font-size: 30px; color: var(--royal-blue); margin-bottom: 12px; }
.dlh-value-card h3 { font-size: 17px; }
.dlh-value-card p { color: var(--muted); font-size: 14px; margin: 0; }

/* Contact page / [contact] shortcode */
.dlh-contact-shortcode { display: block; }
.dlh-contact-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.dlh-contact-info p { color: var(--muted); margin-bottom: 20px; }
.dlh-contact-list { margin-bottom: 22px; }
.dlh-contact-list li { display: flex; gap: 10px; margin-bottom: 14px; }
.dlh-contact-list i { color: var(--royal-blue); width: 20px; }
.dlh-contact-info .dlh-social-icons { margin-bottom: 26px; }
.dlh-contact-info .dlh-social-icons li a { background: var(--light-bg); color: var(--royal-blue); }
.dlh-contact-info .dlh-social-icons li a:hover { background: var(--gold); color: var(--royal-blue-dark); }
.dlh-contact-form-wrap { background: var(--light-bg); padding: 34px; border-radius: var(--radius); }
.dlh-contact-form-wrap h2 { margin-bottom: 20px; }

.dlh-form-row { margin-bottom: 18px; }
.dlh-form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--royal-blue-dark); }
.dlh-form-row input,
.dlh-form-row textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid #dfe3ee;
	border-radius: 8px;
	font-family: var(--font-body);
	font-size: 14px;
	background: var(--white);
	transition: var(--transition);
}
.dlh-form-row input:focus,
.dlh-form-row textarea:focus {
	outline: none;
	border-color: var(--royal-blue);
	box-shadow: 0 0 0 3px rgba(11,45,107,0.12);
}
.dlh-form-row-group { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.dlh-form-honeypot { position: absolute; left: -9999px; top: -9999px; }
.dlh-form-notice {
	padding: 16px 20px;
	border-radius: 8px;
	margin-bottom: 26px;
	font-weight: 500;
	font-size: 14px;
}
.dlh-form-notice-success { background: #e5f7ec; color: #146c3a; border: 1px solid #b6e6c9; }
.dlh-form-notice-error { background: #fdeceb; color: #a4271f; border: 1px solid #f5c2be; }

/* Blog */
.dlh-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.dlh-blog-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.dlh-blog-card-img { aspect-ratio: 4/3; overflow: hidden; display: block; }
.dlh-blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.dlh-blog-card-body { padding: 20px; }
.dlh-post-meta { color: var(--muted); font-size: 13px; margin-bottom: 10px; }

.dlh-404 { text-align: center; padding: 120px 0; }
.dlh-404 h1 { font-size: 100px; color: var(--gold-dark); }

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 1024px) {
	.dlh-welcome-inner, .dlh-tour-layout, .dlh-about-layout, .dlh-contact-layout { grid-template-columns: 1fr; }
	.dlh-testimonial-grid, .dlh-tour-card-grid, .dlh-blog-grid { grid-template-columns: repeat(2, 1fr); }
	.dlh-video-item { min-width: 180px; }
	.dlh-footer-grid { grid-template-columns: 1fr 1fr; }
	.dlh-about-values { grid-template-columns: 1fr; }
}

@media (max-width: 782px) {
	body { padding-bottom: 66px; }
	.dlh-topbar { display: none; }
	.dlh-whatsapp-float { display: none; }
	.dlh-mobile-toolbar { display: flex; }
	.dlh-menu-toggle { display: flex; }

	.dlh-main-navigation {
		position: fixed;
		top: 0; right: -100%;
		width: 100%; height: 100vh;
		background: var(--royal-blue-dark);
		z-index: 110;
		padding: 90px 0 24px;
		transition: right .35s ease;
		overflow-x: hidden;
		overflow-y: auto;
		box-shadow: -10px 0 40px rgba(0,0,0,.3);
	}
	.dlh-main-navigation.is-open { right: 0; }
	.dlh-menu {
		flex-direction: column; align-items: stretch; gap: 0; padding: 0 24px;
		transition: opacity .3s ease;
	}
	.dlh-menu.panel-active { opacity: 0; pointer-events: none; }
	.dlh-menu > li { position: static; border-bottom: 1px solid rgba(255,255,255,.08); }
	.dlh-menu > li > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

	/* mmenu-style sliding sub-panels - full-screen, fixed to the viewport, so they
	   always match the main nav panel exactly with no ancestor-positioning or
	   width-mismatch issues, and long labels always have room to wrap. */
	.dlh-menu .sub-menu {
		position: fixed;
		top: 0; left: 0; right: 0;
		width: 100%;
		height: 100vh;
		margin: 0;
		padding: 90px 24px 24px;
		overflow-y: auto;
		overflow-x: hidden;
		background: var(--royal-blue-dark);
		box-shadow: none;
		opacity: 1; visibility: visible;
		transform: translateX(100%);
		transition: transform .35s ease;
		z-index: 120;
	}
	.dlh-menu .sub-menu.is-open { transform: translateX(0); }
	.dlh-menu .sub-menu li a {
		color: #d8e0f7;
		white-space: normal;
		word-break: break-word;
	}
	.dlh-menu .sub-menu li + li { border-top-color: rgba(255,255,255,.08); }
	.dlh-menu-back { border-bottom: 1px solid rgba(255,255,255,.15) !important; }
	.dlh-menu-back a {
		display: flex !important; align-items: center; gap: 8px;
		font-weight: 700; color: var(--gold-light) !important;
		text-transform: uppercase; font-size: 13px; letter-spacing: .5px;
	}
	.dlh-menu-back a i { font-size: 12px; }
	.dlh-nav-cta { margin-top: 16px; }
	.dlh-menu .menu-item-has-children > a::after { content: "\f105"; }

	.dlh-mobile-overlay {
		position: fixed; inset: 0; background: rgba(0,0,0,.5);
		z-index: 40; display: none;
	}
	.dlh-mobile-overlay.is-visible { display: block; }

	.dlh-menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
	.dlh-menu-toggle.is-active span:nth-child(2) { opacity: 0; }
	.dlh-menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

	.dlh-hero-slideshow { height: 70vh; min-height: 420px; }
	.dlh-slide-caption h2 { font-size: 30px; }
	.dlh-slide-caption p { font-size: 15px; }

	.dlh-testimonial-grid, .dlh-tour-card-grid, .dlh-blog-grid { grid-template-columns: repeat(2, 1fr); }
	.dlh-video-grid { flex-direction: column; overflow-x: visible; scroll-snap-type: none; }
	.dlh-video-item { min-width: 0; width: 100%; flex: 1 1 auto; aspect-ratio: 9/16; }
	.dlh-footer-grid { grid-template-columns: 1fr; }
	.dlh-tour-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
	.dlh-testimonial-grid, .dlh-tour-card-grid, .dlh-blog-grid { grid-template-columns: 1fr; }
	.dlh-section-heading h2 { font-size: 28px; }
	.dlh-tour-hero h1 { font-size: 28px; }
	.dlh-form-row-group { grid-template-columns: 1fr; }
}
