/* ========================================
   Custom SEO & Navigation Styles
   Add-on to main style.css
   ======================================== */

/* --- NAVIGATION BAR --- */
.main-nav {
	background: #ffc107;
	padding: 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 2px solid rgba(0,0,0,0.15);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.main-nav .nav-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.main-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.main-nav li {
	margin: 0;
}

.main-nav a {
	display: block;
	padding: 14px 20px;
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: background 0.2s, color 0.2s;
	border-right: 1px solid rgba(0,0,0,0.08);
}

.main-nav a:hover,
.main-nav a:focus {
	background: #1a1a1a;
	color: #ffc107;
	text-decoration: none;
}

.main-nav a.active {
	background: #1a1a1a;
	color: #ffc107;
}

/* Mobile hamburger button */
.nav-toggle {
	display: none;
	background: none;
	border: none;
	color: #1a1a1a;
	font-size: 24px;
	padding: 12px 20px;
	cursor: pointer;
	width: 100%;
	text-align: left;
	font-weight: 700;
}

.nav-toggle::after {
	content: " ▼";
	font-size: 12px;
}

@media (max-width: 768px) {
	.nav-toggle {
		display: block;
	}
	.main-nav ul {
		display: none;
		flex-direction: column;
	}
	.main-nav ul.open {
		display: flex;
	}
	.main-nav li {
		width: 100%;
		border-top: 1px solid rgba(0,0,0,0.08);
	}
	.main-nav a {
		border-right: none;
		text-align: center;
	}
}

/* --- VISIBLE INLINE LINKS --- */
/* Make links inside body content clearly visible */
.about-services p a,
.about-services li a,
.about-services h3 a,
.terms p a,
section.boom .info a,
section.boom .title a {
	color: #d97706;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	font-weight: 600;
	transition: color 0.2s;
}

.about-services p a:hover,
.about-services li a:hover,
.about-services h3 a:hover,
.terms p a:hover,
section.boom .info a:hover,
section.boom .title a:hover {
	color: #1a1a1a;
	text-decoration-thickness: 3px;
}

/* Product card title links */
section.boom .title a {
	color: inherit;
	text-decoration: none;
	border-bottom: 3px solid #ffc107;
	padding-bottom: 2px;
}

section.boom .title a:hover {
	color: #d97706;
	border-bottom-color: #d97706;
}

/* "View details" CTA link style */
.view-details-link {
	display: inline-block;
	margin-top: 8px;
	color: #d97706 !important;
	font-weight: 700;
	text-decoration: underline !important;
	text-decoration-thickness: 2px !important;
}

.view-details-link:hover {
	color: #1a1a1a !important;
}

/* Image links - show pointer and slight hover effect */
section.boom .image a {
	display: block;
	overflow: hidden;
	transition: opacity 0.2s;
}

section.boom .image a:hover {
	opacity: 0.9;
}

/* --- BREADCRUMB NAV --- */
.breadcrumb-nav {
	background: #f5f5f5;
	padding: 10px 0;
	font-size: 14px;
}

.breadcrumb-nav .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.breadcrumb-nav a {
	color: #d97706;
	text-decoration: none;
	font-weight: 500;
}

.breadcrumb-nav a:hover {
	text-decoration: underline;
}

.breadcrumb-nav .separator {
	margin: 0 8px;
	color: #999;
}

.breadcrumb-nav .current {
	color: #555;
}

/* --- SERVICE AREA PILLS --- */
.service-areas-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 15px 0;
}

.service-areas-pills a {
	display: inline-block;
	padding: 8px 16px;
	background: #ffc107;
	color: #1a1a1a !important;
	text-decoration: none !important;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	transition: background 0.2s;
}

.service-areas-pills a:hover {
	background: #1a1a1a;
	color: #ffc107 !important;
}

/* --- RELATED PAGES BOX --- */
.related-pages-box {
	background: #fff8e1;
	border-left: 4px solid #ffc107;
	padding: 20px;
	margin: 30px 0;
	border-radius: 4px;
}

.related-pages-box h3 {
	margin-top: 0;
	color: #1a1a1a;
}

.related-pages-box a {
	color: #d97706 !important;
	font-weight: 600;
	text-decoration: underline !important;
}

/* --- FAQ ACCORDION --- */
.faq-section {
	max-width: 900px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 6px;
	margin-bottom: 12px;
	overflow: hidden;
	transition: box-shadow 0.2s;
}

.faq-item:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-question {
	width: 100%;
	background: #fff;
	border: none;
	padding: 18px 20px;
	text-align: left;
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: background 0.2s;
	font-family: inherit;
}

.faq-question:hover {
	background: #fff8e1;
}

.faq-question::after {
	content: "+";
	font-size: 24px;
	font-weight: 300;
	color: #d97706;
	transition: transform 0.2s;
	margin-left: 15px;
	flex-shrink: 0;
}

.faq-item.active .faq-question::after {
	content: "−";
}

.faq-item.active .faq-question {
	background: #ffc107;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: #fafafa;
}

.faq-item.active .faq-answer {
	max-height: 500px;
}

.faq-answer-inner {
	padding: 18px 20px;
	color: #333;
	line-height: 1.6;
	font-size: 15px;
	border-top: 1px solid #e5e5e5;
}

.faq-answer-inner p {
	margin: 0;
}

@media (max-width: 768px) {
	.faq-question {
		font-size: 15px;
		padding: 15px 16px;
	}
	.faq-answer-inner {
		padding: 15px 16px;
		font-size: 14px;
	}
}
