/* ==========================================================================
   Ayyappa Tours & Travels — main stylesheet
   Navy blue + gold premium travel theme
   ========================================================================== */

:root {
	--att-navy: #0e1a2e;
	--att-navy-2: #142540;
	--att-navy-light: #1b2c47;
	--att-gold: #e2b04a;
	--att-gold-dark: #c9973a;
	--att-bg: #f4f6fa;
	--att-white: #ffffff;
	--att-text: #22304a;
	--att-muted: #5b6b80;
	--att-radius: 14px;
	--att-shadow: 0 10px 30px rgba(14, 26, 46, 0.10);
	--att-font-head: 'Poppins', sans-serif;
	--att-font-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
	font-family: var(--att-font-body);
	color: var(--att-text);
	background: var(--att-bg);
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.att-container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.att-center { text-align: center; margin-top: 36px; }

/* ---------- Header ---------- */
.att-header {
	background: var(--att-navy);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.25);
}
.att-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 72px;
	gap: 20px;
}
.att-logo__mark {
	font-family: var(--att-font-head);
	font-weight: 800;
	font-size: 1.25rem;
	letter-spacing: 0.06em;
	color: var(--att-white);
}
.att-logo__dot { color: var(--att-gold); }
.att-logo__mark--footer { font-size: 1.4rem; }
.att-logo img { max-height: 52px; width: auto; }

.att-nav { display: flex; align-items: center; gap: 26px; }
.att-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; }
.att-nav__list > li > a {
	color: #cdd7e5;
	font-weight: 500;
	font-size: 0.95rem;
	transition: color 0.2s;
}
.att-nav__list > li > a:hover { color: var(--att-gold); }
.att-nav__cta { margin-left: 6px; }

.has-dropdown { position: relative; }
.has-dropdown .dropdown {
	position: absolute;
	top: calc(100% + 14px);
	left: 0;
	min-width: 220px;
	background: var(--att-white);
	border-radius: 10px;
	box-shadow: var(--att-shadow);
	list-style: none;
	padding: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: all 0.2s ease;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.dropdown li a {
	display: block;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 0.92rem;
	color: var(--att-text);
}
.dropdown li a:hover { background: var(--att-bg); color: var(--att-navy); }
.caret { font-size: 0.75em; color: var(--att-gold); }

.att-nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: 0;
	cursor: pointer;
	padding: 8px;
}
.att-nav-toggle span {
	width: 24px;
	height: 2px;
	background: var(--att-white);
	display: block;
	transition: 0.25s;
}

/* ---------- Buttons ---------- */
.att-btn {
	display: inline-block;
	padding: 13px 30px;
	border-radius: 999px;
	font-family: var(--att-font-head);
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	cursor: pointer;
	transition: all 0.2s ease;
}
.att-btn--gold { background: var(--att-gold); color: var(--att-navy); }
.att-btn--gold:hover { background: var(--att-gold-dark); transform: translateY(-2px); }
.att-btn--navy { background: var(--att-navy); color: var(--att-white); }
.att-btn--navy:hover { background: var(--att-navy-light); transform: translateY(-2px); }
.att-btn--ghost { border-color: rgba(255, 255, 255, 0.65); color: var(--att-white); background: transparent; }
.att-btn--ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* ---------- Hero ---------- */
.att-hero {
	position: relative;
	min-height: 620px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--att-navy);
}
.att-hero__slides,
.att-hero__slide { position: absolute; inset: 0; }
.att-hero__slide {
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.1s ease;
}
.att-hero__slide.is-active { opacity: 1; }
.att-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, rgba(14, 26, 46, 0.92) 20%, rgba(14, 26, 46, 0.55) 60%, rgba(14, 26, 46, 0.25) 100%);
}
.att-hero__content { position: relative; z-index: 2; padding-top: 60px; padding-bottom: 60px; }
.att-pill {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	border: 1px solid rgba(226, 176, 74, 0.5);
	color: var(--att-gold);
	border-radius: 999px;
	padding: 8px 18px;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	font-weight: 600;
}
.att-pill__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--att-gold); }
.att-hero__title {
	font-family: var(--att-font-head);
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 800;
	color: var(--att-white);
	margin: 26px 0 14px;
	line-height: 1.12;
	max-width: 640px;
}
.att-hero__sub { color: #c3cfdf; font-size: 1.1rem; max-width: 560px; }
.att-hero__actions { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }
.att-hero__dots {
	position: absolute;
	bottom: 26px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 3;
}
.att-hero__dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 0;
	background: rgba(255, 255, 255, 0.4);
	cursor: pointer;
	transition: 0.2s;
}
.att-hero__dots button.is-active { background: var(--att-gold); transform: scale(1.25); }

/* ---------- Sections ---------- */
.att-section { padding: 84px 0; }
.att-section--muted { background: var(--att-white); }
.att-eyebrow {
	color: var(--att-gold-dark);
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	font-size: 0.78rem;
	text-align: center;
}
.att-section-title {
	font-family: var(--att-font-head);
	font-size: clamp(1.7rem, 3.2vw, 2.5rem);
	font-weight: 700;
	color: var(--att-navy);
	text-align: center;
	margin: 12px auto 48px;
	max-width: 760px;
}
.att-page-title {
	font-family: var(--att-font-head);
	color: var(--att-navy);
	margin-bottom: 24px;
}
.att-note {
	margin-top: 44px;
	text-align: center;
	color: var(--att-muted);
	font-size: 0.92rem;
}
.att-note a { color: var(--att-gold-dark); font-weight: 600; }

/* ---------- Grids & cards ---------- */
.att-grid { display: grid; gap: 22px; }
.att-grid--3 { grid-template-columns: repeat(3, 1fr); }
.att-grid--4 { grid-template-columns: repeat(4, 1fr); }
.att-grid--5 { grid-template-columns: repeat(5, 1fr); }

.att-card {
	background: var(--att-white);
	border-radius: var(--att-radius);
	padding: 30px 24px;
	box-shadow: var(--att-shadow);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.att-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(14, 26, 46, 0.16); }
.att-card__icon {
	display: inline-flex;
	width: 52px;
	height: 52px;
	border-radius: 14px;
	background: var(--att-navy);
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	margin-bottom: 18px;
}
.att-card h3 { font-family: var(--att-font-head); color: var(--att-navy); font-size: 1.1rem; margin-bottom: 8px; }
.att-card p { color: var(--att-muted); font-size: 0.92rem; }

/* ---------- Destination strip (home) ---------- */
.att-dest {
	position: relative;
	border-radius: var(--att-radius);
	overflow: hidden;
	aspect-ratio: 4 / 5;
	box-shadow: var(--att-shadow);
}
.att-dest img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.att-dest:hover img { transform: scale(1.06); }
.att-dest__label {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 40px 18px 16px;
	font-family: var(--att-font-head);
	font-weight: 700;
	font-size: 1.15rem;
	color: var(--att-white);
	background: linear-gradient(transparent, rgba(14, 26, 46, 0.88));
}

/* ---------- Stats strip ---------- */
.att-stats { background: var(--att-navy); padding: 54px 0; }
.att-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; text-align: center; }
.att-stat__num {
	display: block;
	font-family: var(--att-font-head);
	font-size: 2.4rem;
	font-weight: 800;
	color: var(--att-gold);
}
.att-stat__label { color: #aebdd1; font-size: 0.92rem; }

/* ---------- CTA ---------- */
.att-cta { background: linear-gradient(120deg, var(--att-navy) 0%, var(--att-navy-light) 100%); }
.att-cta__inner { text-align: center; }
.att-cta h2 { font-family: var(--att-font-head); color: var(--att-white); font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 10px; }
.att-cta p { color: #aebdd1; margin-bottom: 28px; }

/* ---------- About ---------- */
.att-about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.att-about__media img { border-radius: var(--att-radius); box-shadow: var(--att-shadow); }
.att-about__body h2 { font-family: var(--att-font-head); color: var(--att-navy); font-size: 1.6rem; margin-bottom: 18px; }
.att-about__list { list-style: none; margin-bottom: 28px; }
.att-about__list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 16px;
	color: var(--att-text);
}
.att-about__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--att-gold);
	box-shadow: inset 0 0 0 3px var(--att-white), 0 0 0 1px var(--att-gold);
}

/* ---------- Services ---------- */
.att-svc-overview { margin-bottom: 40px; }
.att-svc-card {
	background: var(--att-white);
	border: 2px solid #e3e9f2;
	border-radius: var(--att-radius);
	padding: 22px 16px;
	font-family: var(--att-font-head);
	font-weight: 600;
	font-size: 1rem;
	color: var(--att-navy);
	cursor: pointer;
	transition: all 0.2s ease;
}
.att-svc-card:hover { border-color: var(--att-gold); transform: translateY(-3px); }
.att-svc-card.is-active {
	background: var(--att-navy);
	color: var(--att-white);
	border-color: var(--att-navy);
	box-shadow: var(--att-shadow);
}
.att-svc-panel {
	display: none;
	background: var(--att-white);
	border-radius: var(--att-radius);
	box-shadow: var(--att-shadow);
	padding: 38px 42px;
	margin-bottom: 22px;
	border-left: 5px solid var(--att-gold);
}
.att-svc-panel.is-open { display: block; animation: attFade 0.35s ease; }
.att-svc-panel h2 { font-family: var(--att-font-head); color: var(--att-navy); margin-bottom: 20px; font-size: 1.35rem; }
.att-svc-panel__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; }
.att-svc-panel__cols ul { list-style: none; }
.att-svc-panel__cols li { padding: 8px 0 8px 26px; position: relative; }
.att-svc-panel__cols li::before {
	content: '▸';
	position: absolute;
	left: 0;
	color: var(--att-gold-dark);
	font-weight: 700;
}
.att-svc-panel__line { font-size: 1.05rem; color: var(--att-text); }
@keyframes attFade { from { transform: translateY(12px); } to { transform: none; } }

/* ---------- Destinations ---------- */
.att-toggle {
	display: flex;
	gap: 14px;
	justify-content: center;
	margin-bottom: 46px;
	flex-wrap: wrap;
}
.att-toggle__btn {
	padding: 13px 34px;
	border-radius: 999px;
	border: 2px solid var(--att-navy);
	background: var(--att-white);
	color: var(--att-navy);
	font-family: var(--att-font-head);
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.2s;
}
.att-toggle__btn.is-active { background: var(--att-navy); color: var(--att-white); }
.att-badge {
	background: var(--att-gold);
	color: var(--att-navy);
	font-size: 0.68rem;
	padding: 3px 10px;
	border-radius: 999px;
	vertical-align: middle;
	margin-left: 6px;
	font-weight: 700;
}
.att-tab-panel { display: none; }
.att-tab-panel.is-open { display: block; animation: attFade 0.35s ease; }

.att-state {
	background: var(--att-white);
	border-radius: var(--att-radius);
	overflow: hidden;
	box-shadow: var(--att-shadow);
	display: flex;
	flex-direction: column;
}
.att-state__media { position: relative; aspect-ratio: 16 / 10; }
.att-state__media img { width: 100%; height: 100%; object-fit: cover; }
.att-state__media h3 {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 34px 20px 14px;
	color: var(--att-white);
	font-family: var(--att-font-head);
	font-size: 1.25rem;
	background: linear-gradient(transparent, rgba(14, 26, 46, 0.9));
}
.att-state__towns {
	padding: 18px 20px 6px;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	align-content: flex-start;
	gap: 8px;
	flex: 1;
}
.att-chip {
	background: var(--att-bg);
	border: 1px solid #e3e9f2;
	color: var(--att-text);
	font-size: 0.8rem;
	line-height: 1.3;
	padding: 5px 12px;
	border-radius: 999px;
	white-space: nowrap;
}
.att-state__link {
	display: block;
	padding: 14px 20px 18px;
	font-weight: 600;
	font-size: 0.92rem;
	color: var(--att-gold-dark);
}
.att-state__link:hover { color: var(--att-navy); }
.att-state--more {
	border: 2px dashed #c4cfdd;
	background: transparent;
	box-shadow: none;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 24px;
	color: var(--att-muted);
}
.att-state--more h3 { font-family: var(--att-font-head); color: var(--att-muted); margin-bottom: 8px; }

.att-soon {
	background: var(--att-white);
	border-radius: var(--att-radius);
	box-shadow: var(--att-shadow);
	padding: 64px 30px;
	text-align: center;
}
.att-soon h2 { font-family: var(--att-font-head); color: var(--att-navy); margin-bottom: 12px; }
.att-soon p { color: var(--att-muted); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Gallery ---------- */
.att-gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.att-gallery__item {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	aspect-ratio: 1;
	cursor: zoom-in;
	box-shadow: var(--att-shadow);
}
.att-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.att-gallery__item:hover img { transform: scale(1.07); }
.att-gallery__caption {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px 12px 10px;
	font-size: 0.8rem;
	color: var(--att-white);
	background: linear-gradient(transparent, rgba(14, 26, 46, 0.85));
	opacity: 0;
	transition: opacity 0.25s;
}
.att-gallery__item:hover .att-gallery__caption { opacity: 1; }
.att-gallery__item--video {
	display: flex;
	align-items: center;
	justify-content: center;
}
.att-gallery__item--video video { width: 100%; height: 100%; object-fit: cover; }
.att-gallery__play {
	position: absolute;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(226, 176, 74, 0.92);
	color: var(--att-navy);
	font-size: 1.3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	pointer-events: none;
}

.att-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(10, 16, 28, 0.92);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 200;
	padding: 40px;
}
.att-lightbox.is-open { display: flex; }
.att-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.att-lightbox__close {
	position: absolute;
	top: 20px;
	right: 28px;
	background: none;
	border: 0;
	color: var(--att-white);
	font-size: 2.4rem;
	cursor: pointer;
	line-height: 1;
}

/* ---------- Contact ---------- */
.att-contact { display: grid; grid-template-columns: 1fr 1.15fr; gap: 36px; align-items: start; }
.att-contact__card {
	background: var(--att-white);
	border-radius: var(--att-radius);
	box-shadow: var(--att-shadow);
	padding: 30px;
	margin-bottom: 22px;
}
.att-contact__card h2,
.att-contact__right h2 { font-family: var(--att-font-head); color: var(--att-navy); font-size: 1.3rem; margin-bottom: 14px; }
.att-contact__list { list-style: none; margin-top: 16px; }
.att-contact__list li { display: flex; align-items: center; gap: 10px; padding: 6px 0; }
.att-contact__list a:hover { color: var(--att-gold-dark); }
.att-contact__map { border-radius: var(--att-radius); overflow: hidden; box-shadow: var(--att-shadow); }
.att-contact__right {
	background: var(--att-white);
	border-radius: var(--att-radius);
	box-shadow: var(--att-shadow);
	padding: 34px;
}
.att-form label {
	display: block;
	font-weight: 600;
	font-size: 0.9rem;
	color: var(--att-navy);
	margin: 16px 0 6px;
}
.att-form input,
.att-form textarea {
	width: 100%;
	border: 1.5px solid #dbe3ee;
	border-radius: 10px;
	padding: 12px 14px;
	font-family: var(--att-font-body);
	font-size: 0.95rem;
	background: #fbfcfe;
	transition: border 0.2s;
}
.att-form input:focus,
.att-form textarea:focus { outline: none; border-color: var(--att-gold); background: var(--att-white); }
.att-form .att-btn { margin-top: 24px; width: 100%; }
.att-alert {
	background: #e9f7ee;
	border: 1px solid #b7e4c7;
	color: #1d6b3a;
	padding: 14px 18px;
	border-radius: 10px;
	font-size: 0.92rem;
	margin-bottom: 8px;
}

/* ---------- Footer ---------- */
.att-footer { background: var(--att-navy); color: #aebdd1; margin-top: 0; }
.att-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 34px;
	padding: 60px 22px 44px;
}
.att-footer h4 {
	font-family: var(--att-font-head);
	color: var(--att-white);
	font-size: 1rem;
	margin-bottom: 14px;
}
.att-footer a:hover { color: var(--att-gold); }
.att-footer__tag { margin-top: 14px; font-size: 0.92rem; max-width: 300px; }
.att-footer__bar {
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding: 18px 0;
	font-size: 0.85rem;
	text-align: center;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	.att-grid--4, .att-grid--5 { grid-template-columns: repeat(2, 1fr); }
	.att-grid--3 { grid-template-columns: repeat(2, 1fr); }
	.att-gallery { grid-template-columns: repeat(3, 1fr); }
	.att-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
	.att-nav-toggle { display: flex; }
	.att-nav {
		position: fixed;
		top: 72px;
		left: 0;
		right: 0;
		background: var(--att-navy);
		flex-direction: column;
		align-items: stretch;
		padding: 18px 22px 30px;
		gap: 10px;
		transform: translateY(-130%);
		transition: transform 0.3s ease;
		box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
	}
	.att-nav.is-open { transform: translateY(0); }
	.att-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
	.att-nav__list > li > a { display: block; padding: 12px 6px; }
	.has-dropdown .dropdown {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		background: rgba(255, 255, 255, 0.05);
		margin: 4px 0 8px;
	}
	.dropdown li a { color: #cdd7e5; }
	.att-nav__cta { margin: 8px 0 0; text-align: center; }

	.att-section { padding: 60px 0; }
	.att-hero { min-height: 520px; }
	.att-about { grid-template-columns: 1fr; gap: 30px; }
	.att-contact { grid-template-columns: 1fr; }
	.att-svc-panel { padding: 28px 24px; }
	.att-svc-panel__cols { grid-template-columns: 1fr; }
	.att-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 520px) {
	.att-grid--3, .att-grid--4, .att-grid--5 { grid-template-columns: 1fr; }
	.att-gallery { grid-template-columns: repeat(2, 1fr); }
	.att-footer__grid { grid-template-columns: 1fr; }
	.att-hero__actions .att-btn { width: 100%; text-align: center; }
}
