/**
 * Kaya Kalp Salon — Multi-Page Expansion Stylesheet
 * Strictly namespaced for inner pages (.kk-inner-page) to avoid any homepage regression
 */

/* ==========================================================================
   1. Base Inner Page Layout & Breadcrumbs
   ========================================================================== */
.kk-inner-page {
	padding-top: 90px;
	padding-bottom: 90px;
	min-height: 80vh;
	background-color: #0A0A0E;
	color: var(--text-primary, #FFFFFF);
	overflow-x: hidden;
}

/* Breadcrumbs */
.kk-breadcrumb-bar {
	padding: 16px 0;
	background: rgba(18, 18, 24, 0.6);
	border-bottom: 1px solid rgba(212, 175, 55, 0.12);
	font-size: 0.85rem;
}

.kk-breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.kk-breadcrumb-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.kk-breadcrumb-item a {
	color: var(--gold-light, #FFF5D6);
	text-decoration: none;
	transition: color 0.25s ease;
}

.kk-breadcrumb-item a:hover {
	color: var(--gold-primary, #D4AF37);
	text-decoration: underline;
}

.kk-breadcrumb-sep {
	color: rgba(212, 175, 55, 0.4);
	font-size: 0.75rem;
}

.kk-breadcrumb-current {
	color: var(--text-secondary, #C5C5D2);
	max-width: 260px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ==========================================================================
   2. Inner Page Hero Banner
   ========================================================================== */
.kk-page-hero {
	position: relative;
	padding: 48px 0 36px 0;
	text-align: center;
	background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.12) 0%, rgba(10, 10, 14, 0) 70%);
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
	margin-bottom: 40px;
}

.kk-page-hero .kk-badge-verified {
	display: inline-flex;
	margin-bottom: 16px;
}

.kk-page-hero-title {
	font-size: clamp(2rem, 5vw, 3.2rem);
	line-height: 1.15;
	margin-bottom: 16px;
	color: #FFFFFF;
}

.kk-page-hero-desc {
	max-width: 680px;
	margin: 0 auto 24px auto;
	font-size: clamp(0.95rem, 2vw, 1.1rem);
	color: var(--text-secondary, #C5C5D2);
	line-height: 1.65;
}

.kk-page-hero-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 14px;
}

/* ==========================================================================
   3. Service Cards Grid (.kk-services-grid)
   ========================================================================== */
.kk-services-catalog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 24px;
	margin-bottom: 50px;
}

.kk-service-card {
	position: relative;
	background: rgba(22, 22, 31, 0.7);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 16px;
	padding: 28px;
	backdrop-filter: blur(14px);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.kk-service-card:hover {
	transform: translateY(-5px);
	border-color: var(--gold-primary, #D4AF37);
	box-shadow: 0 12px 30px rgba(212, 175, 55, 0.15);
}

.kk-service-card-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 16px;
}

.kk-service-card-icon {
	width: 52px;
	height: 52px;
	border-radius: 12px;
	background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(184, 138, 26, 0.05) 100%);
	border: 1px solid rgba(212, 175, 55, 0.3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
	color: var(--gold-light, #FFF5D6);
}

.kk-service-card-price-badge {
	font-size: 0.8rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.3);
	color: var(--gold-light, #FFF5D6);
}

.kk-service-card-title {
	font-size: 1.4rem;
	margin-bottom: 10px;
	color: #FFFFFF;
}

.kk-service-card-desc {
	font-size: 0.92rem;
	color: var(--text-secondary, #C5C5D2);
	line-height: 1.6;
	margin-bottom: 20px;
}

.kk-service-highlights-list {
	list-style: none;
	padding: 0;
	margin: 0 0 24px 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.kk-service-highlights-list li {
	font-size: 0.88rem;
	color: #E2E2EC;
	display: flex;
	align-items: center;
	gap: 10px;
}

.kk-service-highlights-list li i {
	color: var(--gold-primary, #D4AF37);
	font-size: 0.78rem;
}

.kk-service-card-footer {
	display: flex;
	gap: 10px;
	align-items: center;
}

.kk-service-card-footer .btn-primary {
	flex: 1;
	text-align: center;
	font-size: 0.85rem;
	padding: 10px 14px;
}

.kk-service-card-footer .btn-ghost {
	font-size: 0.85rem;
	padding: 10px 14px;
}

/* ==========================================================================
   4. Deep Dive Service Detail Page Layouts
   ========================================================================== */
.kk-service-detail-section {
	margin-bottom: 60px;
}

.kk-service-detail-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 36px;
	align-items: flex-start;
}

@media (max-width: 992px) {
	.kk-service-detail-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}

.kk-service-lead-card {
	background: rgba(22, 22, 31, 0.7);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 16px;
	padding: 32px;
	backdrop-filter: blur(14px);
}

.kk-service-lead-card h2 {
	font-size: 1.8rem;
	margin-bottom: 16px;
	color: #FFFFFF;
}

.kk-service-lead-card p {
	font-size: 0.98rem;
	color: var(--text-secondary, #C5C5D2);
	line-height: 1.7;
	margin-bottom: 20px;
}

/* 5-Step Process Timeline */
.kk-steps-timeline {
	margin: 28px 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kk-step-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	background: rgba(18, 18, 24, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 12px;
	padding: 16px;
}

.kk-step-num {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--gold-light, #FFF5D6), var(--gold-primary, #D4AF37));
	color: #0A0A0E;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	flex-shrink: 0;
}

.kk-step-content h4 {
	font-size: 1rem;
	color: #FFFFFF;
	margin-bottom: 4px;
}

.kk-step-content p {
	font-size: 0.88rem;
	color: var(--text-secondary, #C5C5D2);
	margin: 0;
	line-height: 1.5;
}

/* Service Pricing Box */
.kk-service-pricing-sidebar {
	background: rgba(22, 22, 31, 0.8);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 16px;
	padding: 28px;
	backdrop-filter: blur(14px);
	position: sticky;
	top: 100px;
}

.kk-service-pricing-sidebar h3 {
	font-size: 1.3rem;
	color: #FFFFFF;
	margin-bottom: 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.kk-price-row-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	font-size: 0.92rem;
}

.kk-price-row-item:last-child {
	border-bottom: none;
}

.kk-price-row-item .item-name {
	color: #E2E2EC;
}

.kk-price-row-item .item-val {
	font-weight: 700;
	color: var(--gold-light, #FFF5D6);
}

.kk-sidebar-booking-btn {
	width: 100%;
	margin-top: 20px;
	padding: 14px 20px;
	text-align: center;
	font-size: 0.95rem;
}

/* ==========================================================================
   5. Accessible ARIA FAQ Accordion
   ========================================================================== */
.kk-faq-section {
	margin: 60px 0 40px 0;
}

.kk-faq-accordion {
	max-width: 820px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.kk-faq-item {
	background: rgba(22, 22, 31, 0.6);
	border: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.25s ease, background-color 0.25s ease;
}

.kk-faq-item.active {
	border-color: rgba(212, 175, 55, 0.45);
	background: rgba(22, 22, 31, 0.85);
}

.kk-faq-question {
	width: 100%;
	background: transparent;
	border: none;
	padding: 18px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 1.02rem;
	font-weight: 600;
	color: #FFFFFF;
	text-align: left;
	cursor: pointer;
	transition: color 0.2s ease;
}

.kk-faq-question:hover {
	color: var(--gold-light, #FFF5D6);
}

.kk-faq-icon {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: rgba(212, 175, 55, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: var(--gold-primary, #D4AF37);
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.kk-faq-item.active .kk-faq-icon {
	transform: rotate(180deg);
}

.kk-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.35s ease;
	padding: 0 22px;
	color: var(--text-secondary, #C5C5D2);
	font-size: 0.94rem;
	line-height: 1.65;
}

.kk-faq-item.active .kk-faq-answer {
	max-height: 400px;
	padding: 0 22px 20px 22px;
	transition: max-height 0.4s ease-in-out, padding 0.3s ease;
}

/* ==========================================================================
   6. Expanded Rate Card & Interactive Filter
   ========================================================================== */
.kk-rate-controls {
	margin-bottom: 30px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.kk-rate-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.kk-rate-tab {
	background: rgba(22, 22, 31, 0.7);
	border: 1px solid rgba(212, 175, 55, 0.2);
	color: #E2E2EC;
	padding: 10px 18px;
	border-radius: 24px;
	font-size: 0.9rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.25s ease;
}

.kk-rate-tab:hover,
.kk-rate-tab.active {
	background: linear-gradient(135deg, var(--gold-light, #FFF5D6), var(--gold-primary, #D4AF37));
	color: #0A0A0E;
	border-color: var(--gold-primary, #D4AF37);
	font-weight: 600;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

/* ==========================================================================
   7. Sticky Mobile Book CTA Pill
   ========================================================================== */
.kk-sticky-mobile-cta {
	display: none;
	position: fixed;
	bottom: 80px; /* Sits cleanly above the bottom quick-action bar */
	left: 50%;
	transform: translateX(-50%);
	z-index: 998;
	width: calc(100% - 32px);
	max-width: 360px;
	animation: slideUpFade 0.3s ease forwards;
}

@keyframes slideUpFade {
	from { opacity: 0; transform: translate(-50%, 15px); }
	to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 768px) {
	.kk-sticky-mobile-cta.visible {
		display: flex;
	}
}

.kk-sticky-mobile-cta-btn {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 20px;
	border-radius: 30px;
	background: linear-gradient(135deg, var(--gold-light, #FFF5D6) 0%, var(--gold-primary, #D4AF37) 100%);
	color: #0A0A0E !important;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
	border: 1px solid rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   8. Contact & Appointment Form
   ========================================================================== */
.kk-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	margin-bottom: 50px;
}

@media (max-width: 900px) {
	.kk-contact-grid {
		grid-template-columns: 1fr;
	}
}

.kk-contact-info-card,
.kk-booking-form-card {
	background: rgba(22, 22, 31, 0.7);
	border: 1px solid rgba(212, 175, 55, 0.2);
	border-radius: 16px;
	padding: 32px;
	backdrop-filter: blur(14px);
}

.kk-contact-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	margin-bottom: 22px;
}

.kk-contact-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(212, 175, 55, 0.12);
	border: 1px solid rgba(212, 175, 55, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	color: var(--gold-light, #FFF5D6);
	flex-shrink: 0;
}

.kk-contact-text h4 {
	font-size: 1.05rem;
	color: #FFFFFF;
	margin-bottom: 4px;
}

.kk-contact-text p,
.kk-contact-text a {
	font-size: 0.92rem;
	color: var(--text-secondary, #C5C5D2);
	text-decoration: none;
	line-height: 1.5;
}

.kk-contact-text a:hover {
	color: var(--gold-light, #FFF5D6);
}

/* Map Iframe */
.kk-map-frame-wrapper {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.25);
	height: 280px;
	margin-top: 24px;
}

.kk-map-frame-wrapper iframe {
	width: 100%;
	height: 100%;
	border: none;
}

/* Form Styles */
.kk-form-group {
	margin-bottom: 18px;
}

.kk-form-group label {
	display: block;
	font-size: 0.88rem;
	font-weight: 500;
	color: #E2E2EC;
	margin-bottom: 8px;
}

.kk-form-input,
.kk-form-select,
.kk-form-textarea {
	width: 100%;
	padding: 12px 16px;
	background: rgba(10, 10, 14, 0.6);
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 8px;
	color: #FFFFFF;
	font-family: inherit;
	font-size: 0.95rem;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kk-form-input:focus,
.kk-form-select:focus,
.kk-form-textarea:focus {
	outline: none;
	border-color: var(--gold-primary, #D4AF37);
	box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.kk-form-select option {
	background: #121218;
	color: #FFFFFF;
}

/* ==========================================================================
   9. Mobile Responsiveness & Strict Zero-Overflow
   ========================================================================== */
@media (max-width: 480px) {
	.kk-inner-page {
		padding-top: 75px;
		padding-bottom: 80px;
	}

	.kk-page-hero {
		padding: 32px 0 24px 0;
	}

	.kk-service-lead-card,
	.kk-contact-info-card,
	.kk-booking-form-card {
		padding: 20px;
	}

	.kk-faq-question {
		padding: 16px;
		font-size: 0.95rem;
	}

	.kk-faq-answer {
		padding: 0 16px;
	}

	.kk-faq-item.active .kk-faq-answer {
		padding: 0 16px 16px 16px;
	}
}

/* ==========================================================================
   10. Verified Local Profiles & NAP Consistency Components
   ========================================================================== */
/* Sidebar Verified Directory Badges */
.kk-verified-sidebar-box {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid rgba(212, 175, 55, 0.18);
}

.verified-sidebar-header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 14px;
}

.verified-sidebar-header .verified-icon {
	color: #10B981;
	font-size: 1.25rem;
}

.verified-sidebar-header .verified-title {
	font-size: 0.92rem;
	font-weight: 700;
	color: #FFFFFF;
	line-height: 1.2;
}

.verified-sidebar-header .verified-sub {
	font-size: 0.76rem;
	color: var(--text-muted, #A0A0B0);
}

.verified-sidebar-badges {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.verified-badge-pill {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 12px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #E2E2EC;
	text-decoration: none;
	font-size: 0.82rem;
	font-weight: 500;
	transition: all 0.25s ease;
}

.verified-badge-pill span {
	flex: 1;
	margin-left: 10px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.verified-badge-pill .pill-arrow {
	font-size: 0.72rem;
	color: var(--text-muted, #A0A0B0);
	transition: transform 0.2s ease, color 0.2s ease;
}

.verified-badge-pill:hover {
	background: rgba(212, 175, 55, 0.12);
	border-color: rgba(212, 175, 55, 0.35);
	color: #FFFFFF;
	transform: translateX(3px);
}

.verified-badge-pill:hover .pill-arrow {
	color: var(--gold-light, #FFF5D6);
	transform: translate(2px, -2px);
}

.verified-badge-pill.google i:first-child { color: #4285F4; }
.verified-badge-pill.justdial i:first-child { color: #FF7700; }
.verified-badge-pill.magicpin i:first-child { color: #EF4444; }
.verified-badge-pill.mappls i:first-child { color: #06B6D4; }
.verified-badge-pill.instagram i:first-child { color: #E1306C; }
.verified-badge-pill.bridal-hub i:first-child { color: #F43F5E; }

.verified-sidebar-nap {
	margin-top: 18px;
	padding: 14px;
	border-radius: 8px;
	background: rgba(15, 15, 20, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.06);
	font-size: 0.78rem;
	color: var(--text-secondary, #B8B8C8);
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.verified-sidebar-nap .nap-row {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.45;
}

.verified-sidebar-nap .nap-row i {
	color: var(--gold-primary, #D4AF37);
	margin-top: 2px;
	font-size: 0.85rem;
}

.verified-sidebar-nap .nap-row a {
	color: var(--gold-light, #FFF5D6);
	text-decoration: none;
	font-weight: 600;
}

/* Full-Width Trust & Directory Verification Section */
.kk-trust-profiles-section {
	margin: 50px 0 30px 0;
	padding: 40px 0;
	background: rgba(18, 18, 25, 0.6);
	border-top: 1px solid rgba(212, 175, 55, 0.15);
	border-bottom: 1px solid rgba(212, 175, 55, 0.15);
	border-radius: 20px;
}

.kk-trust-profiles-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto 36px auto;
}

.kk-trust-profiles-header h2 {
	color: #FFFFFF;
	font-size: 2rem;
	margin: 12px 0 10px 0;
}

.kk-trust-profiles-header p {
	color: var(--text-secondary, #B8B8C8);
	font-size: 0.95rem;
	line-height: 1.6;
}

.kk-trust-profiles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 36px;
}

.trust-profile-card {
	background: rgba(26, 26, 36, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 14px;
	padding: 24px;
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.trust-profile-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, transparent, var(--gold-primary, #D4AF37), transparent);
	opacity: 0;
	transition: opacity 0.3s ease;
}

.trust-profile-card:hover {
	transform: translateY(-5px);
	border-color: rgba(212, 175, 55, 0.35);
	background: rgba(32, 32, 45, 0.85);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.trust-profile-card:hover::before {
	opacity: 1;
}

.profile-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.profile-icon {
	width: 44px;
	height: 44px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
}

.profile-icon.google-icon { background: rgba(66, 133, 244, 0.15); color: #4285F4; }
.profile-icon.justdial-icon { background: rgba(255, 119, 0, 0.15); color: #FF7700; }
.profile-icon.magicpin-icon { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.profile-icon.mappls-icon { background: rgba(6, 182, 212, 0.15); color: #06B6D4; }
.profile-icon.bridalhub-icon { background: rgba(244, 63, 94, 0.15); color: #F43F5E; }
.profile-icon.instagram-icon { background: rgba(225, 48, 108, 0.15); color: #E1306C; }

.profile-rating-badge {
	background: rgba(245, 158, 11, 0.15);
	color: #FBBF24;
	font-size: 0.82rem;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.profile-verified-badge {
	background: rgba(16, 185, 129, 0.12);
	color: #10B981;
	font-size: 0.78rem;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 20px;
	border: 1px solid rgba(16, 185, 129, 0.25);
}

.profile-card-title {
	font-size: 1.15rem;
	color: #FFFFFF;
	margin-bottom: 8px;
	font-family: inherit;
}

.profile-card-desc {
	font-size: 0.88rem;
	color: var(--text-secondary, #B8B8C8);
	line-height: 1.5;
	margin-bottom: 18px;
	flex: 1;
}

.profile-card-action {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--gold-light, #FFF5D6);
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap 0.2s ease;
}

.trust-profile-card:hover .profile-card-action {
	gap: 10px;
	color: var(--gold-primary, #D4AF37);
}

/* NAP Citation Card */
.kk-nap-citation-card {
	background: linear-gradient(135deg, rgba(26, 26, 38, 0.9), rgba(18, 18, 25, 0.95));
	border: 1px solid rgba(212, 175, 55, 0.25);
	border-radius: 16px;
	padding: 28px;
}

.nap-citation-grid {
	display: grid;
	grid-template-columns: 1.1fr 1.6fr 1fr 1fr;
	gap: 24px;
	align-items: center;
}

.nap-label {
	display: block;
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--gold-primary, #D4AF37);
	margin-bottom: 6px;
	font-weight: 700;
}

.nap-col h4 {
	color: #FFFFFF;
	font-size: 1.15rem;
	margin: 0 0 4px 0;
}

.nap-col p {
	margin: 0;
	font-size: 0.88rem;
	color: var(--text-secondary, #B8B8C8);
	line-height: 1.5;
}

.nap-col .nap-alt {
	font-size: 0.78rem;
	color: var(--text-muted, #8A8A9E);
}

.nap-phone-link {
	color: #FFFFFF;
	font-weight: 700;
	font-size: 1.05rem;
	text-decoration: none;
}

.nap-phone-link:hover {
	color: var(--gold-light, #FFF5D6);
}

.nap-hours {
	display: block;
	margin-top: 4px;
	font-size: 0.8rem;
	color: var(--gold-light, #FFF5D6);
}

.nap-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

@media (max-width: 991px) {
	.nap-citation-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.nap-citation-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}
}
