/* ==========================================================================
   Goa Tours — Design Tokens
   Retheme the whole site by editing the values below.
   ========================================================================== */
:root {
	/* Palette */
	--ink: #0c2b33;
	--teal: #0b4f63;
	--teal-deep: #062530;
	--marigold: #f2a93b;
	--marigold-deep: #d98a1f;
	--coral: #e1592c;
	--cream: #fbf3e7;
	--cream-deep: #f3e4c9;
	--paper: #fffdf9;
	--line: rgba(12, 43, 51, 0.12);
	--whatsapp: #25d366;
	--whatsapp-deep: #1ea952;

	/* Type */
	--font-display: 'Fraunces', Georgia, serif;
	--font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;

	/* Layout */
	--wrap: 1180px;
	--radius: 18px;
	--radius-sm: 10px;
	--shadow: 0 20px 45px -20px rgba(6, 37, 48, 0.35);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--cream);
	font-size: 16px;
	line-height: 1.6;
	-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; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.4em; font-weight: 600; }
p { margin: 0 0 1em; }
svg { width: 1em; height: 1em; }

.screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
	position: fixed; top: 1rem; left: 1rem; z-index: 999;
	background: var(--ink); color: #fff; padding: 0.75rem 1.25rem; border-radius: 8px;
	clip: auto; width: auto; height: auto;
}
:focus-visible { outline: 3px solid var(--marigold); outline-offset: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 800px; padding-top: 60px; padding-bottom: 80px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; gap: 0.6em;
	font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
	padding: 0.9em 1.5em; border-radius: 999px; border: 2px solid transparent;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.btn--gold { background: var(--marigold); color: var(--teal-deep); box-shadow: var(--shadow); }
.btn--gold:hover { background: var(--marigold-deep); }

.btn--outline { background: transparent; border-color: currentColor; color: var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-deep); }
.btn--whatsapp[data-whatsapp-pending] { position: relative; }

.btn--large { padding: 1.1em 2em; font-size: 1.05rem; }
.btn--small { padding: 0.6em 1.1em; font-size: 0.85rem; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: rgba(255, 253, 249, 0.92);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 24px; padding: 14px 24px;
}
.site-branding__fallback { display: flex; align-items: center; gap: 10px; }
.site-branding__mark {
	display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%;
	background: linear-gradient(135deg, var(--marigold), var(--coral)); color: #fff; font-size: 1.2rem;
}
.site-branding__title { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--teal-deep); }
.site-branding__tagline { display: block; font-size: 0.75rem; color: var(--teal); letter-spacing: 0.03em; }
.custom-logo { max-height: 56px; width: auto; }

.site-nav__list { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.site-nav__list a {
	font-weight: 600; font-size: 0.95rem; color: var(--teal-deep); position: relative; padding: 6px 0;
}
.site-nav__list a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px;
	background: var(--marigold); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.site-nav__list a:hover::after, .site-nav__list .current-menu-item > a::after { transform: scaleX(1); }

.site-header__actions { display: flex; align-items: center; gap: 18px; }
.header-contact { display: flex; align-items: center; gap: 10px; }
.header-contact__icon {
	display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%;
	background: var(--teal); color: #fff; font-size: 1rem;
}
.header-contact__text { font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; color: var(--teal-deep); line-height: 1.3; }
.header-contact__text em { display: block; font-style: normal; font-size: 0.7rem; color: var(--marigold-deep); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

.menu-toggle {
	display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; overflow: hidden; color: #fff; }
.hero__scenery { position: absolute; inset: 0; z-index: 0; }
.hero__svg { width: 100%; height: 100%; }
.hero__content { position: relative; z-index: 1; padding: 110px 24px 130px; max-width: 720px; }
.hero__eyebrow {
	font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--marigold);
	margin-bottom: -6px;
}
.hero__title { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 600; margin-bottom: 0.3em; }
.hero__subtitle { font-size: 1.15rem; opacity: 0.9; max-width: 480px; }

.hero__search {
	display: flex; gap: 10px; background: #fff; padding: 8px; border-radius: 999px;
	box-shadow: var(--shadow); max-width: 560px; margin: 28px 0 20px;
}
.hero__search input {
	flex: 1; border: none; outline: none; padding: 0.9em 1.2em; font-size: 0.95rem;
	font-family: var(--font-body); color: var(--ink); background: transparent;
}
.hero__cta-row { margin-top: 8px; }

/* ==========================================================================
   Section heads
   ========================================================================== */
.section-head { max-width: 640px; margin: 0 auto 44px; text-align: center; }
.section-head__eyebrow {
	font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em;
	font-size: 0.78rem; color: var(--coral); font-weight: 600; margin-bottom: 6px;
}
.section-head__title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--teal-deep); }
.section-head--light .section-head__eyebrow { color: var(--marigold); }
.section-head--light .section-head__title,
.section-head--light .section-head__desc { color: #fff; }
.section-head__desc { color: var(--teal); opacity: 0.85; }

/* ==========================================================================
   Explore grid
   ========================================================================== */
.explore { padding: 90px 0; }
.explore-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.explore-card {
	background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
	overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.explore-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.explore-card__art { aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-deep); }
.explore-card__art svg, .explore-card__art img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform 0.35s ease;
}
.explore-card:hover .explore-card__art svg, .explore-card:hover .explore-card__art img { transform: scale(1.05); }
.explore-card__body { padding: 22px 24px 26px; }
.explore-card__title { font-size: 1.25rem; color: var(--teal-deep); margin-bottom: 4px; }
.explore-card__tagline { color: var(--coral); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; }
.explore-card__items { font-size: 0.88rem; color: var(--ink); opacity: 0.75; margin: 0; }

/* ==========================================================================
   Trust bar
   ========================================================================== */
.trust-bar { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.trust-bar__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item__icon {
	display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
	background: var(--cream-deep); color: var(--coral); font-size: 1.1rem;
}
.trust-item__title { font-weight: 800; font-size: 0.92rem; color: var(--teal-deep); margin: 0; }
.trust-item__text { font-size: 0.82rem; color: var(--ink); opacity: 0.7; margin: 0; }

/* ==========================================================================
   Taxi — boarding pass tickets (signature element)
   ========================================================================== */
.taxi { background: var(--teal-deep); padding: 90px 0; color: #fff; }
.ticket-row {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 30px;
}
.ticket {
	background: var(--paper); color: var(--ink); border-radius: var(--radius);
	position: relative; box-shadow: var(--shadow); overflow: visible;
	display: flex; flex-direction: column;
}
.ticket__top { display: flex; justify-content: space-between; align-items: flex-start; padding: 24px 24px 20px; }
.ticket__eyebrow {
	font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.14em; color: var(--coral);
	font-weight: 700; margin: 0 0 6px;
}
.ticket__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin: 0; color: var(--teal-deep); }
.ticket__seats { font-size: 0.82rem; opacity: 0.65; margin: 2px 0 0; }
.ticket__icon {
	display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%;
	background: var(--cream-deep); color: var(--teal); font-size: 1.2rem; flex-shrink: 0;
}

/* Perforated tear line — the signature "boarding pass" cut */
.ticket__perf {
	position: relative; height: 0; border-top: 2px dashed var(--line); margin: 0 20px;
}
.ticket__perf::before, .ticket__perf::after {
	content: ""; position: absolute; top: -10px; width: 20px; height: 20px; border-radius: 50%;
	background: var(--teal-deep);
}
.ticket__perf::before { left: -30px; }
.ticket__perf::after { right: -30px; }

.ticket__fares { display: flex; justify-content: space-between; padding: 20px 24px 6px; gap: 12px; }
.ticket__fare { display: flex; flex-direction: column; gap: 4px; }
.ticket__fare-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.6; font-weight: 700; }
.ticket__fare-value { font-family: var(--font-mono); font-size: 1.4rem; font-weight: 600; color: var(--teal-deep); }

.ticket__extras {
	display: flex; justify-content: space-between; padding: 4px 24px 20px; font-family: var(--font-mono);
	font-size: 0.78rem; opacity: 0.7;
}

.ticket__book {
	margin: 0 20px 22px; justify-content: center; border-radius: var(--radius-sm);
}

.ticket--marigold .ticket__icon,
.ticket--marigold .ticket__perf::before,
.ticket--marigold .ticket__perf::after { background: var(--marigold-deep); }
.ticket--coral .ticket__perf::before,
.ticket--coral .ticket__perf::after { background: var(--coral); }
.ticket--ink .ticket__perf::before,
.ticket--ink .ticket__perf::after { background: var(--ink); }

.taxi__note { text-align: center; opacity: 0.65; font-size: 0.85rem; margin-top: 26px; }

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta { background: linear-gradient(135deg, var(--marigold), var(--coral)); padding: 70px 0; color: var(--teal-deep); }
.final-cta__inner { display: flex; justify-content: space-between; align-items: center; gap: 30px; flex-wrap: wrap; }
.final-cta__inner h2 { font-size: clamp(1.7rem, 3.5vw, 2.2rem); margin-bottom: 6px; }
.final-cta__inner p { margin: 0; max-width: 420px; opacity: 0.85; }
.final-cta__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.final-cta .btn--outline { color: var(--teal-deep); }
.final-cta .btn--outline:hover { background: var(--teal-deep); color: #fff; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--teal-deep); color: rgba(255,255,255,0.85); padding: 70px 0 0; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.site-footer__brand { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.site-footer__tagline { font-size: 0.9rem; opacity: 0.7; max-width: 320px; }
.site-footer__socials { display: flex; gap: 16px; margin-top: 12px; }
.site-footer__socials a { font-size: 0.85rem; font-weight: 700; color: var(--marigold); }
.site-footer h3 { color: #fff; font-size: 1rem; margin-bottom: 16px; font-family: var(--font-body); font-weight: 800; }
.site-footer__nav-list, .site-footer__contact ul { display: flex; flex-direction: column; gap: 10px; }
.site-footer__nav-list a, .site-footer__contact a, .site-footer__contact li { font-size: 0.9rem; opacity: 0.85; }
.site-footer__contact .btn--whatsapp { margin-top: 16px; }
.site-footer__bottom {
	border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between;
	padding: 22px 24px; font-size: 0.8rem; opacity: 0.6; flex-wrap: wrap; gap: 8px;
}

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; }
.whatsapp-float__btn {
	box-shadow: 0 10px 30px -8px rgba(0,0,0,0.4); padding: 1em 1.3em;
}
.whatsapp-float__btn span:not(svg) { display: none; }
@media (min-width: 640px) {
	.whatsapp-float__btn span:not(svg) { display: inline; }
}
.whatsapp-float.is-pending .whatsapp-float__btn { animation: goa-pulse 2.4s ease-in-out infinite; }
@keyframes goa-pulse {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.06); }
}

/* ==========================================================================
   Generic content (blog/pages)
   ========================================================================== */
.page-title { font-size: clamp(2rem, 4vw, 2.6rem); color: var(--teal-deep); }
.page-header { margin-bottom: 30px; }
.page-body, .page-body p { font-size: 1.05rem; }
.page-body img { border-radius: var(--radius); margin: 20px 0; }
.post-list { display: flex; flex-direction: column; gap: 40px; }
.post-card__thumb img { border-radius: var(--radius); }
.post-card__meta { font-family: var(--font-mono); font-size: 0.78rem; opacity: 0.6; margin: 14px 0 4px; }
.post-card__title { font-size: 1.5rem; }
.post-card__title a:hover { color: var(--coral); }
.post-card__more { font-weight: 700; color: var(--coral); }
.content-none { text-align: center; padding: 40px 0; }
.error-404 { text-align: center; }
.error-404__actions { display: flex; gap: 14px; justify-content: center; margin: 24px 0; flex-wrap: wrap; }
.search-form { display: flex; gap: 10px; margin-top: 20px; }
.search-form__input { flex: 1; padding: 0.8em 1.1em; border-radius: 999px; border: 1px solid var(--line); font-family: inherit; }

.comments-area { margin-top: 60px; border-top: 1px solid var(--line); padding-top: 40px; }
.comment-list { display: flex; flex-direction: column; gap: 20px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
	.explore-grid { grid-template-columns: repeat(2, 1fr); }
	.ticket-row { grid-template-columns: repeat(2, 1fr); }
	.trust-bar__grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
	.site-nav {
		position: absolute; top: 100%; left: 0; right: 0; background: var(--paper);
		border-bottom: 1px solid var(--line); max-height: 0; overflow: hidden; transition: max-height 0.25s ease;
	}
	.site-nav.is-open { max-height: 400px; }
	.site-nav__list { flex-direction: column; align-items: flex-start; padding: 20px 24px; gap: 16px; }
	.menu-toggle { display: flex; }
	.hero__content { padding: 80px 20px 110px; }
	.hero__search { flex-direction: column; border-radius: 20px; }
	.hero__search .btn { width: 100%; justify-content: center; }
	.explore-grid { grid-template-columns: 1fr; }
	.ticket-row { grid-template-columns: 1fr; }
	.trust-bar__grid { grid-template-columns: 1fr; }
	.site-footer__grid { grid-template-columns: 1fr; }
	.final-cta__inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition: none !important; }
	html { scroll-behavior: auto; }
}
