/* ═══════════════════════════════════════════════════════════════
   NAMASTE CARS — TEMPLATE PAGE-AGENCE-LOCALE
   Full landing page design for destination-specific agency pages
   ═══════════════════════════════════════════════════════════════ */

/* ─── COMMON SECTION BASE ────────────────────────────────── */
.nc-al-section {
	padding: 88px 0;
	position: relative;
}
.nc-al-section--dark  { background: linear-gradient(145deg, #0F1C28 0%, #16232F 100%); }
.nc-al-section--light { background: linear-gradient(180deg, #FAF7F0 0%, #F4EFE6 100%); }
.nc-al-section--cta   { background: linear-gradient(135deg, #C8963E 0%, #8A6220 100%); text-align: center; }

/* Dark section : force text white */
.nc-al-section--dark .nc-al-eyebrow { color: #C8963E !important; }
.nc-al-section--dark .nc-al-title,
.nc-al-section--dark .nc-al-lead,
.nc-al-section--dark p { color: rgba(255,255,255,.9); }

/* ─── TYPOGRAPHY SHARED ──────────────────────────────────── */
.nc-al-eyebrow {
	display: inline-block;
	color: #C8963E;
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	padding: 5px 14px;
	border: 1px solid rgba(200,150,62,.35);
	border-radius: 50px;
	background: rgba(200,150,62,.06);
	margin-bottom: 14px;
	display: block;
	text-align: center;
}
.nc-al-title {
	font-family: var(--nc-font);
	font-size: clamp(1.75rem, 3.2vw, 2.6rem);
	font-weight: 700;
	color: #1C2B3A;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 16px;
}
.nc-al-lead {
	font-size: 1.05rem;
	line-height: 1.7;
	color: #5A6470;
	text-align: center;
	max-width: 680px;
	margin: 0 auto 48px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.nc-al-hero {
	position: relative;
	min-height: 600px;
	background-color: #1C2B3A;
	background-image: var(--bg);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}
.nc-al-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(15,28,40,.90) 0%, rgba(15,28,40,.65) 60%, rgba(15,28,40,.45) 100%);
}
.nc-al-hero__inner {
	position: relative;
	z-index: 2;
	padding: 72px 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	text-align: left;
}
.nc-al-hero__eyebrow {
	display: inline-block;
	background: rgba(200,150,62,.2);
	border: 1px solid rgba(200,150,62,.5);
	color: #E8C882;
	font-size: 0.78rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	padding: 5px 14px;
	border-radius: 50px;
	margin-bottom: 16px;
}
.nc-al-hero__title {
	font-family: var(--nc-font);
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.15;
	margin-bottom: 18px;
	max-width: 800px;
}
.nc-al-hero__sub {
	font-size: 1.1rem;
	line-height: 1.65;
	color: rgba(255,255,255,.78);
	max-width: 640px;
	margin-bottom: 32px;
}
.nc-al-hero__btns {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-bottom: 48px;
}
.nc-al-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 14px;
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(8px);
	overflow: hidden;
	max-width: 600px;
}
.nc-al-hstat {
	flex: 1;
	min-width: 120px;
	padding: 18px 16px;
	text-align: center;
	border-right: 1px solid rgba(255,255,255,.1);
}
.nc-al-hstat:last-child { border-right: none; }
.nc-al-hstat strong {
	display: block;
	font-family: var(--nc-font);
	font-size: 1.6rem;
	font-weight: 700;
	color: #C8963E;
	line-height: 1;
	margin-bottom: 5px;
}
.nc-al-hstat span {
	font-size: 0.72rem;
	color: rgba(255,255,255,.55);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ─── PILLARS GRID ───────────────────────────────────────── */
.nc-al-pillars {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 52px;
}
.nc-al-pillar {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(255,255,255,.08);
	border-radius: 14px;
	padding: 28px 22px;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}
.nc-al-pillar::after {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 3px;
	background: #C8963E;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.35s ease;
}
.nc-al-pillar:hover {
	background: rgba(200,150,62,.07);
	border-color: rgba(200,150,62,.3);
	transform: translateY(-4px);
}
.nc-al-pillar:hover::after { transform: scaleX(1); }
.nc-al-pillar__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 14px;
}
.nc-al-pillar__icon { font-size: 2.2rem; line-height: 1; transition: transform 0.3s ease; }
.nc-al-pillar:hover .nc-al-pillar__icon { transform: scale(1.1) rotate(-5deg); }
.nc-al-pillar__num {
	font-family: var(--nc-font);
	font-size: 2.8rem;
	font-weight: 700;
	color: rgba(200,150,62,.13);
	line-height: 1;
	transition: color 0.3s ease;
}
.nc-al-pillar:hover .nc-al-pillar__num { color: rgba(200,150,62,.28); }
.nc-al-pillar__title {
	font-family: var(--nc-font);
	font-size: 1.15rem;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 10px;
	line-height: 1.3;
	transition: color 0.3s ease;
}
.nc-al-pillar:hover .nc-al-pillar__title { color: #E8C882; }
.nc-al-pillar__text {
	font-size: 0.9rem;
	line-height: 1.65;
	color: rgba(255,255,255,.58);
	transition: color 0.3s ease;
}
.nc-al-pillar:hover .nc-al-pillar__text { color: rgba(255,255,255,.75); }

/* ─── CITIES GRID ────────────────────────────────────────── */
.nc-al-cities {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
	margin-top: 48px;
}
.nc-al-city {
	background: #FFFFFF;
	border-radius: 12px;
	padding: 26px 22px;
	border-top: 4px solid #C8963E;
	box-shadow: 0 2px 10px rgba(0,0,0,.04);
	transition: all 0.25s ease;
}
.nc-al-city:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 24px rgba(28,43,58,.08);
}
.nc-al-city__icon { font-size: 2rem; line-height: 1; margin-bottom: 10px; display: block; }
.nc-al-city__name {
	font-family: var(--nc-font);
	font-size: 1.25rem;
	font-weight: 700;
	color: #1C2B3A;
	margin-bottom: 8px;
}
.nc-al-city__desc { font-size: 0.9rem; line-height: 1.6; color: #5A6470; }

/* ─── PROCESS STEPS ──────────────────────────────────────── */
.nc-al-process {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 52px;
}
.nc-al-step {
	background: rgba(255,255,255,.04);
	border: 1px solid rgba(200,150,62,.2);
	border-radius: 14px;
	padding: 28px 20px;
	transition: background 0.25s ease;
}
.nc-al-step:hover { background: rgba(255,255,255,.07); }
.nc-al-step__num {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #C8963E;
	color: #FFFFFF;
	font-family: var(--nc-font);
	font-size: 1.4rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: 0 4px 14px rgba(200,150,62,.4);
}
.nc-al-step__title {
	font-family: var(--nc-font);
	font-size: 1.02rem;
	font-weight: 600;
	color: #FFFFFF;
	margin-bottom: 10px;
	line-height: 1.35;
}
.nc-al-step__text { font-size: 0.88rem; line-height: 1.6; color: rgba(255,255,255,.62); }

/* ─── INFO CARDS ─────────────────────────────────────────── */
.nc-al-infos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
	margin-top: 48px;
}
.nc-al-info-card {
	background: #FFFFFF;
	border-radius: 14px;
	padding: 28px 20px;
	text-align: center;
	box-shadow: 0 2px 12px rgba(0,0,0,.05);
	border-bottom: 3px solid #C8963E;
	transition: all 0.25s ease;
}
.nc-al-info-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(28,43,58,.08); }
.nc-al-info-card__icon { font-size: 2rem; display: block; margin-bottom: 10px; }
.nc-al-info-card__title {
	font-size: 0.76rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #C8963E;
	margin-bottom: 8px;
}
.nc-al-info-card__val {
	font-family: var(--nc-font);
	font-size: 1.15rem;
	font-weight: 700;
	color: #1C2B3A;
	margin-bottom: 6px;
}
.nc-al-info-card__note { font-size: 0.8rem; color: #8A9199; line-height: 1.4; }

/* ─── ABOUT KEDAR ────────────────────────────────────────── */
.nc-al-about {
	display: grid;
	grid-template-columns: 360px 1fr;
	gap: 70px;
	align-items: center;
}
.nc-al-about__photo-wrap {
	position: relative;
	width: 300px;
	height: 300px;
	margin: 0 auto;
}
.nc-al-about__ring {
	position: absolute;
	inset: -10px;
	border-radius: 50%;
	background: conic-gradient(from 0deg, rgba(200,150,62,.8), rgba(200,150,62,.1) 80deg, rgba(200,150,62,.8) 160deg, rgba(200,150,62,.1) 240deg, rgba(200,150,62,.8));
	animation: nc-ring-spin2 14s linear infinite;
	mask: radial-gradient(farthest-side, transparent calc(100% - 2px), white calc(100% - 2px));
	-webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 2px), white calc(100% - 2px));
}
@keyframes nc-ring-spin2 { to { transform: rotate(360deg); } }
.nc-al-about__photo {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	object-fit: cover;
	object-position: center top;
	border: 4px solid rgba(200,150,62,.4);
	box-shadow: 0 0 0 8px rgba(200,150,62,.07), 0 20px 50px rgba(0,0,0,.5);
	position: relative;
	z-index: 1;
}
.nc-al-about__badge {
	position: absolute;
	bottom: 8px;
	right: -4px;
	background: linear-gradient(135deg, #C8963E, #A07830);
	border-radius: 12px;
	padding: 10px 14px;
	z-index: 3;
	box-shadow: 0 6px 20px rgba(200,150,62,.4);
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 2px solid rgba(255,255,255,.15);
}
.nc-al-about__badge strong { font-family: var(--nc-font); font-size: 1.5rem; font-weight: 700; color: #FFFFFF; line-height: 1; }
.nc-al-about__badge span { font-size: 0.66rem; color: rgba(255,255,255,.85); text-align: center; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.05em; }
.nc-al-about__no-photo {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(255,255,255,.05);
	border: 2px dashed rgba(200,150,62,.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 30px;
	color: rgba(255,255,255,.4);
	font-size: 0.85rem;
	line-height: 1.5;
}
.nc-al-about__no-photo span { font-size: 3rem; display: block; margin-bottom: 10px; }
.nc-al-about__intro { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.7); font-style: italic; margin-bottom: 20px; }
.nc-al-about__divider { display: flex; align-items: center; gap: 14px; margin: 20px 0; }
.nc-al-about__divider span:first-child { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(200,150,62,.4)); }
.nc-al-about__divider span:last-child { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(200,150,62,.4), transparent); }
.nc-al-about__divider span:nth-child(2) { font-size: 1.3rem; filter: drop-shadow(0 2px 6px rgba(200,150,62,.5)); }
.nc-al-about__text { font-size: 0.97rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.nc-al-about__text strong { color: rgba(255,255,255,.9); }
.nc-al-about__text em { color: #C8963E; font-style: italic; }
.nc-al-about__quote {
	background: rgba(200,150,62,.07);
	border-left: 3px solid #C8963E;
	border-radius: 0 12px 12px 0;
	padding: 18px 22px;
	margin: 22px 0 28px;
	position: relative;
}
.nc-al-about__quote::before {
	content: '\201C';
	position: absolute;
	top: -8px; left: 14px;
	font-family: var(--nc-font);
	font-size: 3.5rem;
	color: rgba(200,150,62,.2);
	line-height: 1;
}
.nc-al-about__quote p { font-family: var(--nc-font); font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,.85); margin: 0 0 10px; }
.nc-al-about__quote footer { font-size: 0.82rem; color: #C8963E; font-weight: 600; letter-spacing: 0.04em; }
.nc-al-btns { display: flex; flex-wrap: wrap; gap: 14px; }

/* ─── FAQ ────────────────────────────────────────────────── */
.nc-al-faqs { display: flex; flex-direction: column; gap: 14px; margin-top: 48px; max-width: 900px; margin-left: auto; margin-right: auto; }
.nc-al-faq {
	background: #FFFFFF;
	border: 1px solid #E5E0D8;
	border-radius: 12px;
	padding: 22px 26px;
	transition: all 0.2s ease;
}
.nc-al-faq:hover { border-color: #C8963E; box-shadow: 0 4px 16px rgba(28,43,58,.06); }
.nc-al-faq__q {
	font-size: 1.02rem;
	font-weight: 600;
	color: #1C2B3A;
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
	line-height: 1.4;
}
.nc-al-faq__q::before {
	content: '?';
	position: absolute;
	left: 0; top: 1px;
	width: 21px; height: 21px;
	background: #C8963E;
	color: #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.82rem;
	font-weight: 700;
}
.nc-al-faq__a { font-size: 0.94rem; line-height: 1.7; color: #5A6470; padding-left: 30px; }

/* ─── CTA FINAL ──────────────────────────────────────────── */
.nc-al-cta-title {
	font-family: var(--nc-font);
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 14px;
}
.nc-al-cta-sub { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.nc-al-section--cta .nc-form { max-width: 520px; margin: 0 auto; }

/* ─── BUTTONS (override dans ce template) ────────────────── */
.nc-al-hero__btns .nc-btn--primary,
.nc-al-btns .nc-btn--primary {
	background: linear-gradient(135deg, #C8963E, #A07830) !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 50px !important;
	font-weight: 600 !important;
	padding: 12px 28px !important;
	box-shadow: 0 6px 20px rgba(200,150,62,.35) !important;
	transition: all 0.25s ease !important;
}
.nc-al-hero__btns .nc-btn--primary:hover,
.nc-al-btns .nc-btn--primary:hover {
	transform: translateY(-2px) !important;
	box-shadow: 0 10px 28px rgba(200,150,62,.5) !important;
}
.nc-al-btns .nc-btn--outline {
	background: transparent !important;
	color: rgba(255,255,255,.75) !important;
	border: 1px solid rgba(255,255,255,.25) !important;
	border-radius: 50px !important;
	font-weight: 500 !important;
	padding: 12px 26px !important;
	transition: all 0.25s ease !important;
}
.nc-al-btns .nc-btn--outline:hover {
	border-color: rgba(200,150,62,.6) !important;
	color: #C8963E !important;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1040px) {
	.nc-al-about { grid-template-columns: 300px 1fr; gap: 48px; }
}
@media (max-width: 900px) {
	.nc-al-pillars  { grid-template-columns: repeat(2, 1fr); }
	.nc-al-cities   { grid-template-columns: repeat(2, 1fr); }
	.nc-al-process  { grid-template-columns: repeat(2, 1fr); }
	.nc-al-infos    { grid-template-columns: repeat(2, 1fr); }
	.nc-al-about    { grid-template-columns: 1fr; gap: 42px; }
	.nc-al-about__photo-wrap { width: 260px; height: 260px; }
	.nc-al-about__photo { width: 260px; height: 260px; }
	.nc-al-section { padding: 64px 0; }
}
@media (max-width: 600px) {
	.nc-al-pillars, .nc-al-cities, .nc-al-process, .nc-al-infos { grid-template-columns: 1fr; }
	.nc-al-hero__inner { padding: 56px 18px; }
	.nc-al-hero__stats { max-width: 100%; }
	.nc-al-hstat { min-width: 0; padding: 14px 10px; }
	.nc-al-hstat strong { font-size: 1.3rem; }
	.nc-al-section { padding: 52px 0; }
	.nc-al-title { font-size: 1.7rem; }
}
