/* ==========================================================================
   EASE MY TRAVEL — Elementor Addons
   Design System: Yellow & White travel theme
   ========================================================================== */

:root {
	--emt-yellow: #FFC700;
	--emt-yellow-dark: #E6A800;
	--emt-yellow-light: #FFF6D9;
	--emt-yellow-pale: #FFFBEA;
	--emt-ink: #2B2300;
	--emt-charcoal: #3A3A3A;
	--emt-white: #FFFFFF;
	--emt-grey: #6B6B6B;
	--emt-border: #F0E6B8;
	--emt-shadow: 0 10px 30px rgba(255, 199, 0, 0.18);
	--emt-shadow-soft: 0 4px 14px rgba(43, 35, 0, 0.08);
	--emt-radius: 18px;
	--emt-radius-sm: 10px;
	--emt-font: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

.emt-w * { box-sizing: border-box; }
.emt-w { font-family: var(--emt-font); color: var(--emt-charcoal); }
.emt-w a { text-decoration: none; }
.emt-w img { max-width: 100%; display: block; }
.emt-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--emt-yellow-dark);
	margin-bottom: 10px;
}
.emt-eyebrow::before {
	content: "";
	width: 24px;
	height: 3px;
	background: var(--emt-yellow);
	border-radius: 3px;
	display: inline-block;
}
.emt-section-title {
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 800;
	color: var(--emt-ink);
	margin: 0 0 12px;
	line-height: 1.15;
}
.emt-section-sub {
	font-size: 16px;
	color: var(--emt-grey);
	max-width: 620px;
	margin: 0 0 36px;
}
.emt-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 15px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.emt-btn:hover { transform: translateY(-3px); }
.emt-btn-primary {
	background: var(--emt-yellow);
	color: var(--emt-ink);
	box-shadow: var(--emt-shadow);
}
.emt-btn-primary:hover { background: var(--emt-yellow-dark); color: var(--emt-ink); }
.emt-btn-outline {
	background: transparent;
	border-color: var(--emt-white);
	color: var(--emt-white);
}
.emt-btn-outline:hover { background: var(--emt-white); color: var(--emt-ink); }
.emt-btn-dark {
	background: var(--emt-ink);
	color: var(--emt-white);
}
.emt-btn-dark:hover { background: #000; }

/* ---------- Hero Slider ---------- */
.emt-hero {
	position: relative;
	min-height: 600px;
	overflow: hidden;
	border-radius: 0;
	display: flex;
	align-items: center;
}
.emt-hero-slide {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.2s ease-in-out;
	z-index: 1;
}
.emt-hero-slide.is-active { opacity: 1; z-index: 2; }
.emt-hero-slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(43,35,0,.55) 0%, rgba(43,35,0,.25) 45%, rgba(43,35,0,.65) 100%);
}
.emt-hero-content {
	position: relative;
	z-index: 5;
	max-width: 880px;
	margin: 0 auto;
	padding: 60px 24px;
	text-align: center;
	color: var(--emt-white);
}
.emt-hero-content h1 {
	font-size: clamp(32px, 5.5vw, 58px);
	font-weight: 800;
	line-height: 1.15;
	margin: 0 0 18px;
	text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.emt-hero-content h1 .emt-accent { color: var(--emt-yellow); }
.emt-hero-content p {
	font-size: 18px;
	margin: 0 0 30px;
	opacity: .95;
}
.emt-hero-actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}
.emt-hero-dots {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 6;
	display: flex;
	gap: 10px;
}
.emt-hero-dots button {
	width: 10px; height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(255,255,255,.5);
	cursor: pointer;
	padding: 0;
	transition: all .3s ease;
}
.emt-hero-dots button.is-active {
	background: var(--emt-yellow);
	width: 28px;
	border-radius: 6px;
}
.emt-hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 6;
	width: 46px; height: 46px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
	border: 1px solid rgba(255,255,255,.4);
	color: var(--emt-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(4px);
	transition: background .25s ease;
}
.emt-hero-arrow:hover { background: var(--emt-yellow); color: var(--emt-ink); border-color: var(--emt-yellow); }
.emt-hero-arrow.prev { left: 24px; }
.emt-hero-arrow.next { right: 24px; }

/* ---------- Offers Ticker ---------- */
.emt-ticker {
	background: var(--emt-ink);
	overflow: hidden;
	position: relative;
	padding: 14px 0;
}
.emt-ticker-track {
	display: flex;
	width: max-content;
	animation: emt-marquee linear infinite;
}
.emt-ticker-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0 36px;
	color: var(--emt-yellow);
	font-weight: 600;
	font-size: 15px;
	white-space: nowrap;
	border-right: 1px solid rgba(255,199,0,.25);
}
.emt-ticker-item .emt-ticker-icon { font-size: 16px; }
@keyframes emt-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}
.emt-ticker:hover .emt-ticker-track { animation-play-state: paused; }

/* ---------- Stats Bar ---------- */
.emt-stats {
	background: var(--emt-ink);
	padding: 50px 24px;
}
.emt-stats-grid {
	max-width: 1180px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.emt-stat {
	text-align: center;
	position: relative;
}
.emt-stat:not(:last-child)::after {
	content: "";
	position: absolute;
	right: -10px;
	top: 10%;
	height: 80%;
	width: 1px;
	background: rgba(255,199,0,.25);
}
.emt-stat-icon { font-size: 26px; margin-bottom: 10px; }
.emt-stat-num {
	font-size: 36px;
	font-weight: 800;
	color: var(--emt-yellow);
	line-height: 1;
	margin-bottom: 6px;
}
.emt-stat-label {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #d9d2a8;
}
@media (max-width: 768px) {
	.emt-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
	.emt-stat:nth-child(2)::after { display: none; }
}

/* ---------- Destinations ---------- */
.emt-section {
	padding: 70px 24px;
	max-width: 1240px;
	margin: 0 auto;
}
.emt-section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; flex-wrap: wrap; }
.emt-dest-row {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 10px;
	scrollbar-width: thin;
	scrollbar-color: var(--emt-yellow) var(--emt-yellow-light);
}
.emt-dest-row::-webkit-scrollbar { height: 8px; }
.emt-dest-row::-webkit-scrollbar-thumb { background: var(--emt-yellow); border-radius: 10px; }
.emt-dest-card {
	flex: 0 0 220px;
	position: relative;
	border-radius: var(--emt-radius-sm);
	overflow: hidden;
	height: 280px;
	box-shadow: var(--emt-shadow-soft);
	cursor: pointer;
	transition: transform .35s ease;
}
.emt-dest-card:hover { transform: translateY(-8px); }
.emt-dest-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.emt-dest-card:hover img { transform: scale(1.08); }
.emt-dest-overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.75) 100%);
	display: flex; flex-direction: column; justify-content: flex-end;
	padding: 16px;
}
.emt-dest-overlay .emt-dest-name { color: #fff; font-weight: 700; font-size: 18px; }
.emt-dest-overlay .emt-dest-tag { color: var(--emt-yellow); font-size: 12px; }
.emt-nav-arrows { display: flex; gap: 10px; margin-top: 18px; }
.emt-nav-arrows button {
	width: 40px; height: 40px; border-radius: 50%;
	border: 1.5px solid var(--emt-yellow-dark);
	background: #fff; color: var(--emt-ink);
	cursor: pointer; display: flex; align-items: center; justify-content: center;
	transition: all .25s ease;
}
.emt-nav-arrows button:hover { background: var(--emt-yellow); }

/* ---------- Packages ---------- */
.emt-pkg-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 26px;
}
.emt-pkg-card {
	background: var(--emt-white);
	border-radius: var(--emt-radius);
	overflow: hidden;
	box-shadow: var(--emt-shadow-soft);
	border: 1px solid var(--emt-border);
	transition: transform .3s ease, box-shadow .3s ease;
}
.emt-pkg-card:hover { transform: translateY(-6px); box-shadow: var(--emt-shadow); }
.emt-pkg-img { position: relative; height: 200px; }
.emt-pkg-img img { width: 100%; height: 100%; object-fit: cover; }
.emt-pkg-badge {
	position: absolute; top: 14px; left: 14px;
	background: var(--emt-yellow);
	color: var(--emt-ink);
	font-size: 11px; font-weight: 700;
	padding: 6px 14px; border-radius: 50px;
	text-transform: uppercase; letter-spacing: .5px;
}
.emt-pkg-fav {
	position: absolute; top: 14px; right: 14px;
	width: 34px; height: 34px; border-radius: 50%;
	background: rgba(255,255,255,.9);
	display: flex; align-items: center; justify-content: center;
	font-size: 14px; color: var(--emt-grey);
}
.emt-pkg-body { padding: 20px; }
.emt-pkg-meta { display: flex; gap: 14px; font-size: 13px; color: var(--emt-grey); margin-bottom: 10px; }
.emt-pkg-meta span { display: flex; align-items: center; gap: 5px; }
.emt-pkg-title { font-size: 22px; font-weight: 800; color: var(--emt-ink); margin: 0 0 12px; }
.emt-pkg-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.emt-pkg-tags span {
	background: var(--emt-yellow-pale);
	border: 1px solid var(--emt-border);
	color: var(--emt-ink);
	font-size: 12px;
	padding: 5px 12px;
	border-radius: 50px;
}
.emt-pkg-footer {
	display: flex; align-items: center; justify-content: space-between;
	border-top: 1px solid var(--emt-border);
	padding-top: 16px;
}
.emt-pkg-price-label { font-size: 11px; color: var(--emt-grey); text-transform: uppercase; }
.emt-pkg-price { font-size: 22px; font-weight: 800; color: var(--emt-yellow-dark); }
.emt-pkg-price small { font-size: 12px; font-weight: 500; color: var(--emt-grey); }
.emt-pkg-cta {
	background: var(--emt-ink); color: #fff;
	padding: 10px 20px; border-radius: 50px; font-size: 14px; font-weight: 600;
	transition: background .25s ease;
}
.emt-pkg-cta:hover { background: var(--emt-yellow-dark); color: var(--emt-ink); }

@media (max-width: 992px) { .emt-pkg-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .emt-pkg-grid { grid-template-columns: 1fr; } }

/* ---------- Why Choose Us ---------- */
.emt-why-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.emt-why-card {
	text-align: center;
	background: var(--emt-white);
	border: 1px solid var(--emt-border);
	border-radius: var(--emt-radius);
	padding: 38px 26px;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.emt-why-card:hover { transform: translateY(-6px); box-shadow: var(--emt-shadow); border-color: var(--emt-yellow); }
.emt-why-icon {
	width: 64px; height: 64px;
	border-radius: 50%;
	background: var(--emt-yellow-light);
	display: flex; align-items: center; justify-content: center;
	font-size: 26px; color: var(--emt-yellow-dark);
	margin: 0 auto 18px;
}
.emt-why-title { font-size: 19px; font-weight: 700; color: var(--emt-ink); margin: 0 0 10px; }
.emt-why-desc { font-size: 14px; color: var(--emt-grey); line-height: 1.6; }
@media (max-width: 768px) { .emt-why-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.emt-gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 160px;
	gap: 14px;
}
.emt-gallery-item {
	border-radius: var(--emt-radius-sm);
	overflow: hidden;
	position: relative;
	cursor: pointer;
}
.emt-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.emt-gallery-item:hover img { transform: scale(1.1); }
.emt-gallery-item.big { grid-column: span 2; grid-row: span 2; }
.emt-gallery-item::after {
	content: "";
	position: absolute; inset: 0;
	background: rgba(255,199,0,0);
	transition: background .3s ease;
}
.emt-gallery-item:hover::after { background: rgba(255,199,0,.18); }
@media (max-width: 768px) {
	.emt-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
	.emt-gallery-item.big { grid-column: span 2; grid-row: span 1; }
}

/* ---------- Friday CTA ---------- */
.emt-cta-banner {
	background: linear-gradient(120deg, var(--emt-yellow) 0%, var(--emt-yellow-dark) 100%);
	border-radius: var(--emt-radius);
	padding: 50px 30px;
	text-align: center;
	max-width: 1180px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
.emt-cta-banner::before {
	content: "";
	position: absolute; inset: 0;
	background-image: radial-gradient(circle, rgba(255,255,255,.35) 1px, transparent 1px);
	background-size: 22px 22px;
	opacity: .5;
}
.emt-cta-icon {
	width: 60px; height: 60px; border-radius: 16px;
	background: rgba(255,255,255,.35);
	display: flex; align-items: center; justify-content: center;
	font-size: 26px; margin: 0 auto 18px; color: var(--emt-ink);
	position: relative; z-index: 2;
}
.emt-cta-banner h2 { font-size: clamp(22px, 3vw, 32px); color: var(--emt-ink); margin: 0 0 8px; position: relative; z-index: 2; }
.emt-cta-banner p { color: #4a3c00; margin: 0 0 26px; position: relative; z-index: 2; }
.emt-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 2; }
.emt-cta-actions .emt-btn-outline { border-color: var(--emt-ink); color: var(--emt-ink); }
.emt-cta-actions .emt-btn-outline:hover { background: var(--emt-ink); color: #fff; }

/* ---------- Testimonials ---------- */
.emt-testi-track {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 10px;
}
.emt-testi-track::-webkit-scrollbar { height: 8px; }
.emt-testi-track::-webkit-scrollbar-thumb { background: var(--emt-yellow); border-radius: 10px; }
.emt-testi-card {
	flex: 0 0 320px;
	background: var(--emt-white);
	border: 1px solid var(--emt-border);
	border-radius: var(--emt-radius);
	padding: 26px;
	box-shadow: var(--emt-shadow-soft);
}
.emt-testi-stars { color: var(--emt-yellow); font-size: 15px; margin-bottom: 12px; letter-spacing: 2px; }
.emt-testi-text { font-size: 14px; color: var(--emt-charcoal); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.emt-testi-author { display: flex; align-items: center; gap: 12px; }
.emt-testi-avatar {
	width: 42px; height: 42px; border-radius: 50%;
	background: var(--emt-yellow-light);
	display: flex; align-items: center; justify-content: center;
	font-weight: 700; color: var(--emt-yellow-dark);
}
.emt-testi-name { font-weight: 700; font-size: 14px; color: var(--emt-ink); }
.emt-testi-loc { font-size: 12px; color: var(--emt-grey); }

/* ---------- Enquiry Form ---------- */
.emt-enquiry {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	max-width: 1180px;
	margin: 0 auto;
	padding: 70px 24px;
	align-items: center;
}
.emt-enquiry-left h2 { font-size: clamp(28px, 4vw, 42px); color: var(--emt-ink); font-weight: 800; margin: 0 0 14px; }
.emt-enquiry-left p { color: var(--emt-grey); margin-bottom: 30px; }
.emt-contact-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.emt-contact-icon {
	width: 42px; height: 42px; border-radius: 12px;
	background: var(--emt-yellow);
	display: flex; align-items: center; justify-content: center;
	color: var(--emt-ink); font-size: 16px; flex-shrink: 0;
}
.emt-contact-label { font-size: 11px; text-transform: uppercase; color: var(--emt-grey); letter-spacing: .5px; }
.emt-contact-value { font-weight: 700; color: var(--emt-ink); }
.emt-social-row { display: flex; gap: 10px; margin-top: 24px; }
.emt-social-row a {
	width: 38px; height: 38px; border-radius: 50%;
	background: var(--emt-ink); color: #fff;
	display: flex; align-items: center; justify-content: center;
	transition: background .25s ease;
}
.emt-social-row a:hover { background: var(--emt-yellow-dark); }
.emt-form-card {
	background: var(--emt-white);
	border-radius: var(--emt-radius);
	box-shadow: var(--emt-shadow);
	padding: 36px;
	border: 1px solid var(--emt-border);
}
.emt-form-card h3 { font-size: 22px; font-weight: 800; color: var(--emt-ink); margin: 0 0 22px; }
.emt-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.emt-form-grid.full { grid-template-columns: 1fr; }
.emt-field { margin-bottom: 16px; }
.emt-field label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--emt-grey); margin-bottom: 6px; }
.emt-field input, .emt-field select, .emt-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--emt-border);
	border-radius: 10px;
	font-family: var(--emt-font);
	font-size: 14px;
	color: var(--emt-ink);
	background: var(--emt-yellow-pale);
	transition: border-color .25s ease;
}
.emt-field input:focus, .emt-field select:focus, .emt-field textarea:focus {
	outline: none;
	border-color: var(--emt-yellow);
	background: #fff;
}
.emt-field textarea { resize: vertical; min-height: 100px; }
.emt-form-submit {
	width: 100%; justify-content: center;
	border: none; font-size: 16px;
}
@media (max-width: 900px) {
	.emt-enquiry { grid-template-columns: 1fr; }
	.emt-form-grid { grid-template-columns: 1fr; }
}

/* ---------- Site Footer ---------- */
.emt-footer {
	background: var(--emt-ink);
	color: #d9d2a8;
	padding: 60px 24px 0;
}
.emt-footer-grid {
	max-width: 1240px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
	gap: 40px;
	padding-bottom: 40px;
}
.emt-footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.emt-footer-logo-mark {
	width: 38px; height: 38px; border-radius: 10px;
	background: var(--emt-yellow);
	display: flex; align-items: center; justify-content: center;
	color: var(--emt-ink); font-weight: 800;
}
.emt-footer-logo-text { color: #fff; font-weight: 800; font-size: 18px; }
.emt-footer p.emt-footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.emt-footer-social { display: flex; gap: 10px; }
.emt-footer-social a {
	width: 36px; height: 36px; border-radius: 50%;
	background: rgba(255,255,255,.08);
	display: flex; align-items: center; justify-content: center;
	color: #fff; transition: background .25s ease;
}
.emt-footer-social a:hover { background: var(--emt-yellow); color: var(--emt-ink); }
.emt-footer h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 18px; }
.emt-footer ul { list-style: none; margin: 0; padding: 0; }
.emt-footer ul li { margin-bottom: 12px; }
.emt-footer ul li a { color: #d9d2a8; font-size: 14px; transition: color .2s ease; }
.emt-footer ul li a:hover { color: var(--emt-yellow); }
.emt-footer-newsletter p { font-size: 13px; margin-bottom: 14px; line-height: 1.6; }
.emt-newsletter-row { display: flex; gap: 8px; margin-bottom: 16px; }
.emt-newsletter-row input {
	flex: 1; padding: 12px; border-radius: 8px; border: none;
	font-family: var(--emt-font); font-size: 13px;
}
.emt-newsletter-row button {
	background: var(--emt-yellow); color: var(--emt-ink); border: none;
	padding: 12px 18px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer;
	white-space: nowrap;
}
.emt-footer-address { font-size: 13px; display: flex; gap: 8px; }
.emt-footer-bottom {
	border-top: 1px solid rgba(255,255,255,.1);
	max-width: 1240px;
	margin: 0 auto;
	padding: 22px 0;
	display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	font-size: 13px; color: #a99f6e;
}
.emt-footer-bottom a { color: var(--emt-yellow); }
@media (max-width: 992px) { .emt-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .emt-footer-grid { grid-template-columns: 1fr; } }

/* ---------- Responsive: general ---------- */
@media (max-width: 768px) {
	.emt-hero { min-height: 480px; }
	.emt-section { padding: 50px 20px; }
	.emt-gallery-grid { grid-auto-rows: 120px; }
}
