/* =========================================================
   ARIF PACKER — MAIN STYLESHEET
   Premium editorial travel theme
   ========================================================= */

:root {
	--navy: #24486F;
	--navy-deep: #17304C;
	--white: #FFFFFF;
	--bg-soft: #F7F9FC;
	--text: #122033;
	--text-muted: #64748B;
	--gold: #C9A45C;
	--gold-dark: #A6813F;
	--border: #E6EBF1;

	--font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
	--font-body: "Inter", "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;

	--container-w: 1240px;
	--radius: 4px;
	--radius-lg: 8px;
	--ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
html, body {
	max-width: 100%;
	overflow-x: hidden; /* hard guard against any accidental horizontal overflow on mobile */
}
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--text);
	background: var(--white);
	font-size: 16px;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	color: var(--text);
	line-height: 1.15;
	margin: 0 0 0.5em;
	font-weight: 700;
}
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-muted); }

.screen-reader-text {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px); white-space: nowrap;
}
.skip-link {
	position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--white);
	padding: 12px 20px; z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Consistent, visible focus ring for keyboard users (accessibility / professional polish) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.portfolio__filter:focus-visible,
.menu-toggle:focus-visible {
	outline: 2px solid var(--gold-dark);
	outline-offset: 3px;
	border-radius: 2px;
}
input:focus-visible, textarea:focus-visible, select:focus-visible {
	outline: 2px solid var(--navy);
	outline-offset: 1px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ---------- LAYOUT ---------- */
.container { max-width: var(--container-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-header { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-header--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; text-align: left; gap: 24px; }
.section-header--split h2 { margin-bottom: 0; }
.section-cta { text-align: center; margin-top: 48px; }

.eyebrow {
	display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
	text-transform: uppercase; color: var(--gold-dark); margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold); }

/* ---------- BUTTONS ---------- */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
	padding: 15px 30px; font-size: 0.86rem; font-weight: 700; letter-spacing: 0.06em;
	text-transform: uppercase; border-radius: var(--radius); border: 1px solid transparent;
	transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
	white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--navy-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(36,72,111,0.22); }
.btn--sm { padding: 11px 20px; font-size: 0.76rem; }
.btn--outline { border-color: var(--border); color: var(--text); background: transparent; }
.btn--outline:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(36,72,111,0.1); }
.btn--outline-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn--outline-light:hover { border-color: var(--white); transform: translateY(-2px); background: rgba(255,255,255,0.08); }
.btn--gold { background: var(--gold); color: var(--navy-deep); }
.btn--gold:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(201,164,92,0.3); }

/* ---------- HEADER ---------- */
.site-header {
	position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 999; padding: 18px 0;
	background: rgba(255,255,255,0.85);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
	transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.site-header.is-scrolled { background: rgba(255,255,255,0.92); box-shadow: 0 4px 24px rgba(36,72,111,0.08); padding: 12px 0; }
/* On the homepage hero, the header stays fully transparent (no blur) until scrolled,
   so it doesn't muddy the hero photo — this is intentional, unlike interior pages
   which always sit on a plain background and benefit from the frosted-glass look. */
.is-home .site-header:not(.is-scrolled) { background: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; color: var(--white); }
.is-home .site-header:not(.is-scrolled) .main-nav__list a { color: rgba(255,255,255,0.9); }
.is-home .site-header:not(.is-scrolled) .menu-toggle__bar { background: var(--white); }
.is-home .site-header:not(.is-scrolled) .site-logo__name { color: var(--white); }
.is-home .site-header:not(.is-scrolled) .site-logo__sub { color: rgba(255,255,255,0.7); }

.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.site-logo { display: flex; align-items: center; gap: 12px; }
.site-logo__mark {
	width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
	border: 1px solid currentColor; font-family: var(--font-heading); font-weight: 700;
}
.site-logo__name { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.02em; color: var(--text); }
.site-logo__sub { display: block; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.main-nav__list { display: flex; align-items: center; gap: 32px; }
.main-nav__list a { font-size: 0.86rem; font-weight: 600; }
.main-nav__list a:hover { color: var(--gold-dark); }

.site-header__actions { display: flex; align-items: center; gap: 16px; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.menu-toggle__bar { width: 22px; height: 2px; background: var(--text); transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }

/* ---------- HERO ---------- */
.hero {
	position: relative; min-height: 92vh; display: flex; align-items: flex-end;
	background: var(--navy-deep) var(--hero-image, none) center/cover no-repeat;
	color: var(--white); padding-top: 140px;
}
.hero__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(23,48,76,0.55) 0%, rgba(23,48,76,0.35) 40%, rgba(23,48,76,0.9) 100%);
}
.hero__inner { position: relative; padding-bottom: 96px; max-width: 760px; }
.hero__headline { display: flex; flex-direction: column; font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: 0.01em; margin-bottom: 24px; color: var(--white); }
.hero__line { display: block; }
.hero__text { color: rgba(255,255,255,0.82); max-width: 520px; font-size: 1.05rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 12px; }

/* ---------- TRUST STRIP ---------- */
.trust-strip { background: var(--bg-soft); border-bottom: 1px solid var(--border); padding: 40px 0; }
.trust-strip__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-strip__item { display: flex; align-items: flex-start; gap: 14px; }
.trust-strip__icon { flex-shrink: 0; width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--white); border: 1px solid var(--border); color: var(--gold-dark); }
.trust-strip__icon svg { width: 20px; height: 20px; }
.trust-strip__item h3 { font-size: 0.95rem; margin-bottom: 2px; font-family: var(--font-body); font-weight: 700; }
.trust-strip__item p { font-size: 0.85rem; margin: 0; }

/* ---------- ABOUT ---------- */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center; }
.about__image, .about__image--placeholder { border-radius: var(--radius-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__image--placeholder { background: linear-gradient(135deg, var(--bg-soft), var(--border)); }
.about__subheading { color: var(--gold-dark); font-weight: 600; margin-bottom: 18px; font-size: 0.95rem; }
.about__text { font-size: 1.02rem; }
.about__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
.about__benefit { display: flex; gap: 12px; align-items: flex-start; }
.about__benefit-icon { flex-shrink: 0; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-soft); color: var(--navy); }
.about__benefit-icon svg { width: 16px; height: 16px; }
.about__benefit h3 { font-size: 0.92rem; margin-bottom: 2px; font-family: var(--font-body); font-weight: 700; }
.about__benefit p { font-size: 0.82rem; margin: 0; }

/* ---------- SERVICES ---------- */
.services { background: var(--bg-soft); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--white); padding: 40px 32px; position: relative; transition: background 0.3s var(--ease), transform 0.3s var(--ease); }
.service-card:hover { background: var(--navy); transform: translateY(-2px); z-index: 1; }
.service-card:hover h3, .service-card:hover p, .service-card:hover .service-card__number { color: var(--white); }
.service-card:hover .service-card__icon { color: var(--gold); }
.service-card__number { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--border); margin-bottom: 20px; transition: color 0.3s var(--ease); }
.service-card__icon { display: inline-flex; margin-bottom: 18px; color: var(--gold-dark); }
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; transition: color 0.3s var(--ease); }
.service-card p { font-size: 0.88rem; margin: 0; transition: color 0.3s var(--ease); }
.service-card:hover p { color: rgba(255,255,255,0.75); }

/* ---------- DESTINATIONS ---------- */
.destinations__grid {
	display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 12px;
}
.destination-tile { position: relative; overflow: hidden; border-radius: var(--radius); grid-column: span 1; grid-row: span 1; }
.destination-tile--featured { grid-column: span 2; grid-row: span 2; }
.destination-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.destination-tile:hover img { transform: scale(1.06); }
.destination-tile__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy), var(--border)); }
.destination-tile__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,48,76,0) 40%, rgba(23,48,76,0.75) 100%); }
.destination-tile__name {
	position: absolute; left: 18px; bottom: 16px; color: var(--white);
	font-family: var(--font-heading); font-weight: 700; letter-spacing: 0.02em;
	font-size: 1.1rem; text-transform: uppercase;
}
.destination-tile--featured .destination-tile__name { font-size: 1.7rem; }

/* ---------- CORPORATE ---------- */
.corporate__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; min-height: 640px; }
.corporate__content { background: var(--navy-deep); color: rgba(255,255,255,0.85); padding: 96px 72px; display: flex; flex-direction: column; justify-content: center; }
.corporate__content h2 { color: var(--white); }
.corporate__benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 28px 0; }
.corporate__benefit { display: flex; align-items: center; gap: 10px; }
.corporate__benefit span { display: flex; color: var(--gold); }
.corporate__benefit svg { width: 20px; height: 20px; }
.corporate__benefit p { margin: 0; font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.corporate__types { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.corporate__types li { border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; padding: 6px 16px; font-size: 0.78rem; color: rgba(255,255,255,0.75); }
.corporate__media { position: relative; min-height: 320px; }
.corporate__image, .corporate__image--placeholder { width: 100%; height: 100%; object-fit: cover; }
.corporate__image--placeholder { background: linear-gradient(135deg, var(--navy), var(--gold)); opacity: 0.3; }

/* ---------- WHY ---------- */
.why__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
.why__icon { display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; border-radius: 50%; background: var(--bg-soft); color: var(--gold-dark); margin-bottom: 18px; }
.why__icon svg { width: 22px; height: 22px; }
.why__item h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; }
.why__item p { font-size: 0.87rem; }

/* ---------- PORTFOLIO ---------- */
.portfolio__filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.portfolio__filter { padding: 8px 18px; border: 1px solid var(--border); border-radius: 999px; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); transition: all 0.2s var(--ease); }
.portfolio__filter.is-active, .portfolio__filter:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.portfolio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.portfolio-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/5; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.portfolio-item:hover img { transform: scale(1.07); }
.portfolio-item__placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--bg-soft), var(--border)); }
.portfolio-item__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(23,48,76,0) 45%, rgba(23,48,76,0.85) 100%); }
.portfolio-item__info { position: absolute; left: 18px; bottom: 16px; right: 18px; color: var(--white); }
.portfolio-item__info strong { display: block; font-family: var(--font-heading); font-size: 1.05rem; }
.portfolio-item__info em { font-style: normal; font-size: 0.78rem; opacity: 0.75; }
.portfolio__empty { text-align: center; }

/* ---------- TESTIMONIALS ---------- */
.testimonials__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; background: var(--white); box-shadow: 0 1px 3px rgba(36,72,111,0.05); transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.testimonial-card:hover { box-shadow: 0 16px 36px rgba(36,72,111,0.08); transform: translateY(-3px); }
.testimonial-card__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.testimonial-card__avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card__avatar--placeholder { display: flex; align-items: center; justify-content: center; background: var(--bg-soft); color: var(--gold-dark); font-weight: 700; font-family: var(--font-heading); }
.testimonial-card__head strong { display: block; font-size: 0.95rem; }
.testimonial-card__head span { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-card__quote { font-style: italic; font-size: 0.95rem; margin-bottom: 16px; }
.stars { display: flex; gap: 3px; }
.star { width: 15px; height: 15px; color: var(--border); }
.star.is-filled { color: var(--gold); }
.star svg { width: 100%; height: 100%; }
.testimonials__empty { text-align: center; color: var(--text-muted); border: 1px dashed var(--border); border-radius: var(--radius-lg); padding: 40px; }

/* ---------- INSIGHT / BLOG CARDS ---------- */
.insight__grid, .blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.blog-grid { grid-template-columns: repeat(3, 1fr); }
.insight-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--white); box-shadow: 0 1px 3px rgba(36,72,111,0.05); transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease); }
.insight-card:hover { box-shadow: 0 16px 36px rgba(36,72,111,0.08); transform: translateY(-3px); }
.insight-card__media { position: relative; display: block; aspect-ratio: 4/3; overflow: hidden; }
.insight-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insight-card:hover .insight-card__media img { transform: scale(1.06); }
.insight-card__media--placeholder { background: linear-gradient(135deg, var(--bg-soft), var(--border)); width: 100%; height: 100%; }
.insight-card__category { position: absolute; left: 12px; top: 12px; background: var(--navy); color: var(--white); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 10px; border-radius: 999px; }
.insight-card__body { padding: 20px; }
.insight-card__title { font-size: 1.02rem; margin-bottom: 8px; }
.insight-card__title a:hover { color: var(--gold-dark); }
.insight-card__excerpt { font-size: 0.85rem; margin-bottom: 14px; }
.insight-card__meta { display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }
.insight-card__more { font-weight: 700; color: var(--gold-dark); }

/* ---------- FINAL CTA ---------- */
.final-cta {
	position: relative; background: var(--navy-deep) var(--cta-image, none) center/cover no-repeat;
	padding: 120px 0; text-align: center;
}
.final-cta__overlay { position: absolute; inset: 0; background: rgba(23,48,76,0.72); }
.final-cta__inner { position: relative; max-width: 620px; margin: 0 auto; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 1.05rem; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,0.65); padding: 80px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-col__title { color: var(--white); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-body); margin-bottom: 18px; }
.footer-col__tagline { font-size: 0.85rem; margin-top: 14px; }
.footer-nav li, .footer-services li, .footer-contact li { margin-bottom: 10px; font-size: 0.86rem; }
.footer-contact a:hover, .footer-nav a:hover { color: var(--gold); }
.mulia-badge { display: flex; align-items: center; gap: 10px; }
.mulia-badge__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.mulia-badge strong { color: var(--white); font-size: 0.85rem; }
.mulia-badge small { font-size: 0.75rem; }
.site-footer__bottom { padding: 24px 0; font-size: 0.78rem; text-align: center; }
.site-logo--footer .site-logo__name { color: var(--white); }

/* ---------- MOBILE STICKY CTA ---------- */
.mobile-sticky-cta {
	display: none; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 998;
	background: var(--navy); color: var(--white); padding: 15px; border-radius: var(--radius-lg);
	align-items: center; justify-content: center; gap: 10px; font-weight: 700; font-size: 0.85rem;
	box-shadow: 0 10px 30px rgba(23,48,76,0.35);
}
.mobile-sticky-cta svg { width: 18px; height: 18px; }
.mobile-sticky-cta.is-hidden-by-hero { transform: translateY(120%); opacity: 0; pointer-events: none; }
.mobile-sticky-cta { transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* ---------- STANDARD PAGES / SINGLE POST ---------- */
.standard-page__header, .single-post__header { position: relative; padding-top: 160px; padding-bottom: 56px; }
.standard-page__header--simple { background: var(--bg-soft); padding-top: 160px; }
.standard-page__header--dark { background: var(--navy-deep); padding-top: 160px; }
.standard-page__header--dark h1 { color: var(--white); }
.archive-intro { max-width: 620px; font-size: 1.05rem; margin-top: 8px; }
.archive-intro--light { color: rgba(255,255,255,0.78); }
.standard-page__hero, .single-post__hero { position: absolute; inset: 0; z-index: -1; }
.standard-page__hero img, .single-post__hero img { width: 100%; height: 100%; object-fit: cover; }
.standard-page__hero-overlay { position: absolute; inset: 0; background: rgba(23,48,76,0.55); }
.standard-page__header h1, .single-post__header h1 { font-size: clamp(2rem, 4vw, 3rem); }

/* When a featured image sits behind the title (dark overlay), force the
   title/eyebrow/meta to light colors so they stay readable — same class of
   bug as the hero headline above, fixed proactively for every template. */
.standard-page__header:has(.standard-page__hero) h1,
.single-post__header:has(.single-post__hero) h1 { color: var(--white); }
.standard-page__header:has(.standard-page__hero) .eyebrow,
.single-post__header:has(.single-post__hero) .eyebrow { color: var(--gold); }
.single-post__header:has(.single-post__hero) .single-post__meta { color: rgba(255,255,255,0.78); }
.standard-page__content, .single-post__content { padding: 56px 0; max-width: 780px; margin: 0 auto; }
.standard-page__content { max-width: 900px; }
.single-post__layout { display: grid; grid-template-columns: 1fr; }
.single-post__meta { display: flex; gap: 8px; font-size: 0.85rem; color: var(--text-muted); }
.single-post__cta { background: var(--bg-soft); border-radius: var(--radius-lg); padding: 40px; text-align: center; margin: 0 auto 56px; max-width: 780px; }

/* ---------- 404 ---------- */
.error-404 { padding: 180px 0 120px; text-align: center; }
.archive-index, .blog-index { padding-top: 160px; }
.error-404__inner { max-width: 520px; margin: 0 auto; }
.error-404__actions { display: flex; gap: 16px; justify-content: center; margin-top: 24px; flex-wrap: wrap; }

/* ---------- CATEGORY ARCHIVE PAGES (Services / Destinations / Portfolio) ---------- */
.services__grid--archive,
.portfolio__grid--archive { margin-bottom: 8px; }
.service-card--link { display: flex; flex-direction: column; }
.service-card__more { display: inline-block; margin-top: 14px; font-size: 0.8rem; font-weight: 700; color: var(--gold-dark); transition: color 0.3s var(--ease); }
.service-card:hover .service-card__more { color: var(--gold); }
.destinations__grid--archive { grid-auto-rows: 220px; }
.archive-cta { text-align: center; background: var(--bg-soft); border-radius: var(--radius-lg); padding: 48px 32px; margin-top: 64px; }
.archive-cta h3 { margin-bottom: 20px; }
.destinations-archive .archive-cta,
.portfolio-archive .archive-cta { background: var(--navy-deep); }
.destinations-archive .archive-cta h3,
.portfolio-archive .archive-cta h3 { color: var(--white); }

/* Clean up WordPress's default "Archives: X" prefix on category-page titles */
.standard-page__header .page-title-prefix { display: none; }

/* ---------- SHARE BUTTONS ---------- */
.share-buttons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-buttons__label { font-size: 0.82rem; font-weight: 700; color: var(--text-muted); margin-right: 2px; }
.share-buttons__btn {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	background: var(--bg-soft); color: var(--text); border: none;
	transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.share-buttons__btn svg { width: 16px; height: 16px; }
.share-buttons__btn:hover { transform: translateY(-2px); color: var(--white); }
.share-buttons__btn--whatsapp:hover { background: #25D366; }
.share-buttons__btn--facebook:hover { background: #1877F2; }
.share-buttons__btn--linkedin:hover { background: #0A66C2; }
.share-buttons__btn--x:hover { background: #000; }
.share-buttons__btn--copy:hover { background: var(--navy); }
.share-buttons__btn--copy.is-copied { background: var(--gold); color: var(--navy-deep); }

.single-post__share { margin: 32px 0 0; padding-top: 24px; border-top: 1px solid var(--border); }
.standard-page__share { margin-top: 28px; }


/* ---------- CONTACT PAGE ---------- */
.contact-page__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row--split { flex-direction: row; gap: 18px; }
.form-row--split > div { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 0.82rem; font-weight: 600; }
.form-row input, .form-row select, .form-row textarea {
	border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 14px; background: var(--white);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: 2px solid var(--navy); outline-offset: 1px; }
.form-row--actions { flex-direction: row; gap: 16px; margin-top: 8px; }
.honeypot { position: absolute; left: -9999px; }
.notice { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 0.9rem; }
.notice--success { background: #EAF7EE; color: #1E7A38; border: 1px solid #C7EAD1; }
.notice--error { background: #FDF0EE; color: #B3401F; border: 1px solid #F6D3CB; }
.contact-page__info { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-page__info ul li { margin-bottom: 8px; font-size: 0.9rem; }

/* ---------- ANIMATION ---------- */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
	.services__grid { grid-template-columns: repeat(2, 1fr); }
	.trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
	.about__grid { grid-template-columns: 1fr; gap: 40px; }
	.about__image, .about__image--placeholder { aspect-ratio: 16/10; }
	.why__grid { grid-template-columns: repeat(3, 1fr); }
	.corporate__grid { grid-template-columns: 1fr; }
	.corporate__content { padding: 64px 40px; }
	.corporate__media { min-height: 360px; }
	.testimonials__track { grid-template-columns: repeat(2, 1fr); }
	.insight__grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-page__grid { grid-template-columns: 1fr; }
	.destinations__grid { grid-auto-rows: 140px; }
}

/* Tablet: 768px */
@media (max-width: 768px) {
	.section { padding: 64px 0; }
	.main-nav { position: fixed; inset: 0; top: 0; background: var(--white); padding: 110px 32px 32px; transform: translateX(100%); transition: transform 0.35s var(--ease); z-index: 1000; overflow-y: auto; box-shadow: -12px 0 40px rgba(36,72,111,0.15); }
	.main-nav.is-open { transform: translateX(0); }
	.main-nav__list { flex-direction: column; align-items: flex-start; gap: 22px; }
	.main-nav__list a { font-size: 1.15rem; color: var(--text) !important; }
	.menu-toggle { display: flex; z-index: 1001; }
	.menu-toggle.is-open .menu-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
	.menu-toggle.is-open .menu-toggle__bar:nth-child(2) { opacity: 0; }
	.menu-toggle.is-open .menu-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
	.is-home .site-header:not(.is-scrolled) .menu-toggle__bar { background: var(--white); }
	.is-home .site-header:not(.is-scrolled) .menu-toggle.is-open .menu-toggle__bar { background: var(--text); }
	.site-header__actions .btn--sm { display: none; }

	.hero { min-height: 78vh; padding-top: 96px; align-items: center; }
	.hero__inner { padding-bottom: 100px; }

	.services__grid { grid-template-columns: 1fr; }
	.destinations__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
	.destination-tile--featured { grid-column: span 2; grid-row: span 1; }
	.why__grid { grid-template-columns: repeat(2, 1fr); }
	.testimonials__track { grid-template-columns: 1fr; }
	.insight__grid, .blog-grid { grid-template-columns: 1fr; }
	.portfolio__grid { grid-template-columns: repeat(2, 1fr); }
	.section-header--split { flex-direction: column; align-items: flex-start; }

	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.form-row--split { flex-direction: column; }

	.mobile-sticky-cta { display: flex; }
	.standard-page__content, .single-post__content { padding-bottom: 96px; }
	.site-footer { padding-bottom: 90px; } /* clears the fixed mobile sticky WhatsApp CTA */
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
	.container { padding: 0 18px; }
	.hero__headline { font-size: clamp(2.2rem, 11vw, 3rem); }
	.about__benefits { grid-template-columns: 1fr; }
	.corporate__benefits { grid-template-columns: 1fr; }
	.corporate__content { padding: 48px 24px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 32px; }
	.portfolio__grid { grid-template-columns: 1fr; }
	.form-row--actions { flex-direction: column; }
	.form-row--actions .btn { width: 100%; }
}

/* =========================================================
   DESTINATION LANDING PAGE (single-destination.php) &
   TOUR PACKAGE templates
   ========================================================= */

/* ---------- Breadcrumb ---------- */
.breadcrumb { padding: 160px 0 0; font-size: 0.82rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); transition: color 0.2s var(--ease); }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span[aria-hidden] { margin: 0 8px; opacity: 0.5; }
.breadcrumb [aria-current] { color: var(--text); font-weight: 600; }

/* ---------- Destination Hero ---------- */
.dest-hero { padding: 32px 0 0; }
.dest-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.dest-hero__text .eyebrow { color: var(--gold-dark); }
.dest-hero__text h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); margin-bottom: 8px; }
.dest-hero__subtitle { font-size: 1.1rem; color: var(--text); font-weight: 600; margin-bottom: 12px; }
.dest-hero__intro { color: var(--text-muted); margin-bottom: 24px; }
.dest-hero__intro p { margin: 0 0 0.8em; }
.dest-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.dest-hero__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.dest-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.dest-hero__media-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }

/* Floating feature strip that overlaps the hero/next section boundary */
.dest-features {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
	background: var(--white); border-radius: var(--radius-lg);
	box-shadow: 0 20px 50px rgba(23,48,76,0.12);
	padding: 28px; margin-top: 40px; margin-bottom: -40px; position: relative; z-index: 2;
}
.dest-features__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; padding: 0 8px; }
.dest-features__icon { width: 44px; height: 44px; border-radius: 50%; background: var(--bg-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.dest-features__icon svg { width: 20px; height: 20px; }
.dest-features__item strong { font-size: 0.92rem; }
.dest-features__item p { font-size: 0.78rem; color: var(--text-muted); margin: 4px 0 0; }

/* ---------- Section head with a "see all" link on the right ---------- */
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
.section-head-row h2 { margin: 4px 0 0; }
.section-head-row__link { font-size: 0.85rem; font-weight: 700; color: var(--navy); white-space: nowrap; }
.section-head-row__link:hover { color: var(--gold-dark); }
.dest-packages { padding-top: 128px; } /* clears the floating feature strip above */

/* ---------- Package cards ---------- */
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.package-grid--row { grid-template-columns: repeat(4, 1fr); }
.packages { background: var(--bg-soft); }
.package-grid--archive { margin-bottom: 8px; }
.package-card {
	display: flex; flex-direction: column; background: var(--white);
	border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
	box-shadow: 0 1px 3px rgba(36,72,111,0.05);
	transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(23,48,76,0.12); }
.package-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.package-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.package-card:hover .package-card__media img { transform: scale(1.05); }
.package-card__placeholder { width: 100%; height: 100%; background: var(--bg-soft); }
.package-card__badge {
	position: absolute; top: 14px; left: 14px; background: var(--gold); color: var(--navy-deep);
	font-size: 0.68rem; font-weight: 800; letter-spacing: 0.04em; padding: 5px 10px; border-radius: 4px;
}
.package-card__body { padding: 20px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.package-card__body h3 { font-size: 1rem; font-family: var(--font-body); font-weight: 700; margin: 0; }
.package-card__route { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.package-card__meta { display: flex; flex-wrap: wrap; gap: 10px; font-size: 0.72rem; color: var(--text-muted); margin: 4px 0; }
.package-card__meta span { display: inline-flex; align-items: center; gap: 4px; }
.package-card__meta svg { width: 13px; height: 13px; }
.package-card__footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); }
.package-card__price-label { display: block; font-size: 0.68rem; color: var(--text-muted); }
.package-card__price { font-weight: 800; color: var(--navy); font-size: 1rem; }
.package-card__price small { font-weight: 500; font-size: 0.68rem; color: var(--text-muted); }

/* ---------- Cities + graphic + "why choose us" ---------- */
.dest-cities__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; margin-top: 40px; align-items: start; }
.dest-cities__list { display: flex; flex-direction: column; gap: 22px; }
.dest-cities__list li { display: flex; gap: 14px; align-items: flex-start; }
.dest-cities__icon { flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%; background: var(--bg-soft); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.dest-cities__icon svg { width: 18px; height: 18px; }
.dest-cities__list strong { display: block; font-size: 0.98rem; margin-bottom: 2px; }
.dest-cities__list p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

.dest-cities__graphic {
	grid-row: span 2; position: relative; min-height: 320px; border-radius: var(--radius-lg);
	background: radial-gradient(ellipse at center, rgba(36,72,111,0.06), transparent 70%), var(--bg-soft);
	overflow: hidden;
}
.dest-cities__pin { position: absolute; display: flex; flex-direction: column; align-items: center; color: var(--navy); }
.dest-cities__pin svg { width: 26px; height: 26px; }
.dest-cities__pin em { font-style: normal; font-size: 0.68rem; font-weight: 700; margin-top: 2px; background: var(--white); padding: 2px 8px; border-radius: 10px; box-shadow: 0 2px 6px rgba(23,48,76,0.15); white-space: nowrap; }
.dest-cities__pin--1 { top: 18%; left: 55%; }
.dest-cities__pin--2 { top: 42%; left: 22%; }
.dest-cities__pin--3 { top: 58%; left: 58%; }
.dest-cities__pin--4 { top: 76%; left: 30%; }
.dest-cities__pin--5 { top: 30%; left: 78%; }
.dest-cities__pin--6 { top: 66%; left: 80%; }

.dest-cities__why { grid-column: 2; background: var(--navy-deep); border-radius: var(--radius-lg); padding: 32px; color: var(--white); }
.dest-cities__why h3 { color: var(--white); font-size: 1.2rem; }
.dest-cities__checklist { margin: 18px 0 24px; display: flex; flex-direction: column; gap: 12px; }
.dest-cities__checklist li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: rgba(255,255,255,0.9); }
.dest-cities__checklist svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }

/* ---------- Best time to visit (season cards) ---------- */
.season-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 32px; }
.season-card { border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--white); }
.season-card__media { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-soft); }
.season-card__media img { width: 100%; height: 100%; object-fit: cover; }
.season-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--gold-dark); }
.season-card__placeholder svg { width: 32px; height: 32px; }
.season-card__body { padding: 16px; }
.season-card__body strong { font-size: 0.95rem; }
.season-card__range { font-size: 0.78rem; color: var(--text-muted); margin-left: 4px; }
.season-card__body p { font-size: 0.82rem; color: var(--text-muted); margin: 6px 0 10px; }
.season-card__tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.7rem; font-weight: 700; color: var(--gold-dark); background: rgba(201,164,92,0.12); padding: 4px 10px; border-radius: 20px; }
.season-card__tag svg { width: 12px; height: 12px; }

/* ---------- Package detail page ---------- */
.package-meta-row { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.88rem; color: var(--text-muted); margin: 10px 0 18px; }
.package-meta-row span { display: inline-flex; align-items: center; gap: 6px; }
.package-meta-row svg { width: 16px; height: 16px; color: var(--navy); }
.package-detail__price { font-size: 1rem; color: var(--text-muted); margin-bottom: 20px; }
.package-detail__price strong { font-size: 1.7rem; color: var(--navy); font-family: var(--font-heading); }

@media (max-width: 1024px) {
	.dest-hero__grid { grid-template-columns: 1fr; }
	.dest-hero__media { order: -1; }
	.dest-features { grid-template-columns: repeat(2, 1fr); margin-bottom: 0; }
	.dest-packages { padding-top: 96px; }
	.package-grid { grid-template-columns: repeat(2, 1fr); }
	.dest-cities__layout { grid-template-columns: 1fr; }
	.dest-cities__graphic { grid-row: auto; min-height: 240px; }
	.dest-cities__why { grid-column: auto; }
	.season-grid { grid-template-columns: repeat(2, 1fr); }

	/* The homepage packages "marketplace" row stays a single row — it
	   becomes a horizontally-scrollable strip instead of stacking, so it's
	   still recognizably "1 baris" on tablet/mobile. */
	.package-grid--row {
		display: flex; grid-template-columns: none; overflow-x: auto; gap: 18px;
		padding-bottom: 8px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
	}
	.package-grid--row .package-card { flex: 0 0 280px; scroll-snap-align: start; }
}
@media (max-width: 640px) {
	.dest-features { grid-template-columns: 1fr; }
	.package-grid { grid-template-columns: 1fr; }
	.season-grid { grid-template-columns: 1fr; }
	.package-grid--row .package-card { flex-basis: 78vw; }
}
