/* ================================================
   main.css — Clever Clean Theme
   Global layout: header, hero, home sections, footer.
   Ported 1:1 from the original index.php / includes.
   ================================================ */

:root {
	--navy: #003968;
	--sky: #009DEA;
	--green: #71CDA1;
	--gray-bg: #f2f2f2;
	--text: #003968;
	--white: #ffffff;
	--radius: 14px;
	--shadow: 0 4px 24px rgba(0, 0, 0, .10);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
	font-family: 'Inter', sans-serif;
	color: var(--text);
	background: #fff;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

/* ===== Skip link (accessibility) ===== */
.skip-link {
	position: absolute;
	left: -9999px;
	top: 8px;
	background: var(--navy);
	color: #fff;
	padding: 8px 14px;
	border-radius: 6px;
	z-index: 9999;
}
.skip-link:focus { left: 12px; }

/* ===== HEADER ===== */
.site-header {
	background: var(--white);
	height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 32px;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
}
.logo { display: flex; align-items: center; }
.logo img { height: 88px; width: auto; }
.primary-nav { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.primary-nav li, .primary-nav .menu-item { list-style: none; margin: 0; padding: 0; }
.primary-nav li::marker { content: ''; }
.primary-nav a {
	font-size: 15px;
	font-weight: 600;
	color: var(--navy);
	padding: 6px 10px;
	border-radius: 4px;
	transition: color .2s, background .2s;
	white-space: nowrap;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a {
	color: var(--sky);
	background: #f0f8ff;
}
.primary-nav .menu-item-has-children > a::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-left: 6px;
	vertical-align: middle;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
	transition: transform .2s;
}
.primary-nav .menu-item-has-children:hover > a::after { transform: rotate(180deg); }
.nav-divider { width: 1px; height: 20px; background: #ddd; margin: 0 4px; }
.header-right { display: flex; align-items: center; gap: 20px; flex-shrink: 0; }
.nav-phone {
	display: flex; align-items: center; gap: 7px;
	font-weight: 700; font-size: 15px; color: var(--navy);
	white-space: nowrap;
}
.nav-phone svg { flex-shrink: 0; }

/* ===== Header icon group (wishlist / account / cart) ===== */
.header-icons {
	display: flex;
	align-items: center;
	gap: 6px;
}
.header-icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: var(--navy);
	background: transparent;
	transition: background .15s, color .15s, transform .1s;
}
.header-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}
.header-icon:hover {
	background: #f0f8ff;
	color: var(--sky);
	transform: translateY(-1px);
}
.header-icon-badge {
	position: absolute;
	top: -2px;
	right: -2px;
	min-width: 16px;
	height: 16px;
	padding: 0 4px;
	border-radius: 10px;
	background: var(--sky);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	text-align: center;
	border: 2px solid #fff;
	box-sizing: content-box;
	pointer-events: none;
}

.btn-schedule {
	background: var(--green);
	color: var(--navy);
	font-weight: 700;
	font-size: 14px;
	padding: 10px 20px 10px 16px;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: background .2s, transform .1s;
	letter-spacing: .3px;
	text-transform: uppercase;
	white-space: nowrap;
	border: none;
	cursor: pointer;
}
.btn-schedule:hover { background: #5bb88e; transform: translateY(-1px); }
.btn-schedule .arrow { font-size: 13px; }

/* ===== Submenu dropdown ===== */
.primary-nav .menu-item-has-children { position: relative; }
.primary-nav .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	border: 1px solid #e0e8f0;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
	min-width: 220px;
	z-index: 999;
	overflow: hidden;
	list-style: none;
	padding: 0;
}
.primary-nav .sub-menu a {
	display: block;
	padding: 12px 20px;
	font-size: 14px;
	color: #1a2e4a;
	font-weight: 500;
	border-bottom: 1px solid #f0f4f8;
}
.primary-nav .sub-menu a:hover { background: #e3f2fd; color: #1565c0; }
.primary-nav .menu-item-has-children:hover > .sub-menu { display: block; }

/* ===== HERO ===== */
.hero {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	min-height: 442px;
	overflow: hidden;
}
.hero-left {
	background: var(--navy);
	color: var(--white);
	padding: 44px 50px 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-bottom-right-radius: 80px;
}
.hero-left h1 {
	font-size: 44px;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 24px;
	color: var(--white);
}
.hero-left p {
	font-size: 16px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .95);
	margin-bottom: 32px;
}
.hero-left p strong { color: var(--white); font-weight: 700; }
.hero-cta {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, .15);
	border-radius: 80px;
	padding: 6px 6px 6px 20px;
	max-width: 380px;
}
.hero-cta input {
	background: transparent;
	border: none;
	outline: none;
	color: var(--white);
	font-size: 15px;
	flex: 1;
	min-width: 0;
}
.hero-cta input::placeholder { color: rgba(255, 255, 255, .75); }
.hero-cta .btn-schedule { border-radius: 80px; flex-shrink: 0; }
.hero-right { background: #f5f5f5; position: relative; overflow: hidden; }
.hero-right img { width: 100%; height: 100%; max-height: 442px; object-fit: cover; }

/* ===== SERVICES SECTION ===== */
.services-section { padding: 64px 40px; text-align: center; background: var(--white); }
.services-section h2 { font-size: 38px; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.services-section .subtitle {
	font-size: 16px; color: #555; max-width: 680px;
	margin: 0 auto 48px; line-height: 1.7;
}
.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1100px;
	margin: 0 auto;
}
.service-card {
	border-radius: 8px; overflow: hidden; cursor: pointer;
	transition: transform .2s, box-shadow .2s; text-decoration: none;
	display: block;
	background: #fff;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0, 0, 0, .12); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-label {
	background: var(--sky); color: var(--white); font-weight: 700;
	font-size: 15px; padding: 14px 20px;
	display: flex; justify-content: space-between; align-items: center;
}
.service-card-label .arrow { font-size: 18px; flex-shrink: 0; margin-left: 8px; }

/* ===== Pagination & filters for shortcode/archive ===== */
.cc-filters {
	display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
	padding: 0 20px 28px;
}
.cc-filter-btn {
	background: #fff; color: var(--navy);
	border: 2px solid #dde3ec; border-radius: 50px;
	padding: 9px 22px; font-size: 14px; font-weight: 600;
	cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .1s;
}
.cc-filter-btn:hover, .cc-filter-btn.active {
	background: var(--navy); color: #fff; border-color: var(--navy);
	transform: translateY(-1px);
}
.cc-pagination { text-align: center; padding: 24px 16px 40px; }
.cc-pagination .page-numbers {
	display: inline-block;
	padding: 8px 14px; margin: 0 4px;
	border: 1px solid #dde3ec; border-radius: 6px;
	color: var(--navy); font-weight: 600; text-decoration: none;
	transition: background .15s, color .15s;
}
.cc-pagination .page-numbers.current,
.cc-pagination .page-numbers:hover {
	background: var(--sky); color: #fff; border-color: var(--sky);
}

/* ===== Section title bar for CPT shortcodes ===== */
.cc-section-title {
	text-align: center;
	font-size: 38px;
	font-weight: 700;
	color: var(--navy);
	margin: 48px 0 24px;
}
.cc-section-title span { color: var(--sky); }

/* ===== CLIENT LOGOS ===== */
.clients-section { background: var(--white); padding: 50px 0; overflow: hidden; }
.clients-title {
	text-align: center; font-size: 20px; font-weight: 700;
	color: var(--navy); margin-bottom: 30px;
}
.clients-slider { display: flex; width: max-content; animation: scrollLogos 35s linear infinite; }
.client-logo {
	width: 200px; height: 110px; margin: 0 40px;
	display: flex; align-items: center; justify-content: center; background: #fff;
}
.client-logo img { max-width: 100%; max-height: 100%; object-fit: contain; opacity: .8; transition: .3s ease; }
@keyframes scrollLogos {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ===== FEATURES SECTION ===== */
.features-section { background: var(--gray-bg); padding: 64px 40px; text-align: center; }
.features-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 40px; max-width: 1000px; margin: 0 auto;
}
.feature-item { padding: 20px; }
.feature-icon { width: 60px; height: 60px; margin: 0 auto 20px; }
.feature-icon svg { width: 60px; height: 60px; stroke: var(--sky); fill: none; stroke-width: 1.5; }
.feature-item h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.feature-item p { font-size: 15px; color: #555; line-height: 1.7; }

/* ===== ABOUT SECTION ===== */
.about-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.about-img { overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 64px 60px; display: flex; flex-direction: column; justify-content: center; }
.about-content h2 { font-size: 38px; font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.15; }
.about-content .tagline { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.about-content p { font-size: 15px; color: #444; line-height: 1.7; margin-bottom: 16px; }
.check-list { list-style: none; margin: 16px 0 28px; }
.check-list li {
	font-size: 15px; color: var(--navy); padding: 6px 0;
	display: flex; align-items: center; gap: 10px;
}
.check-list li::before {
	content: '';
	width: 18px; height: 18px; background: var(--sky); border-radius: 50%; flex-shrink: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
	background-size: 11px; background-repeat: no-repeat; background-position: center;
}

/* ===== BLOG PREVIEW ===== */
.blog-preview { padding: 70px 40px; max-width: 1200px; margin: 0 auto; text-align: center; }
.blog-preview-title { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.blog-preview-title span { color: var(--sky); }
.blog-preview-btn {
	display: inline-block; background: var(--green); color: var(--navy);
	font-weight: 700; font-size: 14px; padding: 12px 28px;
	border-radius: 4px; text-transform: uppercase; letter-spacing: .5px;
	margin-bottom: 48px; transition: background .2s, transform .1s;
}
.blog-preview-btn:hover { background: #5ab88a; transform: translateY(-2px); }
.blog-preview-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; text-align: left;
}
.bp-card {
	display: block; text-decoration: none; color: inherit;
	border-radius: 12px; overflow: hidden;
	box-shadow: 0 4px 24px rgba(0, 0, 0, .10);
	border: 1px solid #e8eef6;
	transition: transform .2s, box-shadow .2s;
	background: #fff;
}
.bp-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(0, 57, 104, .15); }
.bp-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.bp-card-body { padding: 20px; }
.bp-tag {
	display: inline-block; font-size: 11px; font-weight: 700;
	padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
}
.bp-tag.comercial { background: #e8f4fd; color: #0078b4; }
.bp-tag.rezidential { background: #edf9f3; color: #2d8c5e; }
.bp-tag.auto { background: #fff3e8; color: #d4691f; }
.bp-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--navy); line-height: 1.45; }

/* ===== REVIEWS SECTION ===== */
.reviews-section { padding: 64px 40px; text-align: center; background: var(--white); }
.stars-big { font-size: 36px; color: #f5a623; margin-bottom: 12px; letter-spacing: 4px; }
.reviews-section h2 { font-size: 44px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.reviews-section .sub { font-size: 15px; color: #555; margin-bottom: 48px; }
.reviews-grid {
	display: grid; grid-template-columns: repeat(3, 1fr);
	gap: 32px; max-width: 1100px; margin: 0 auto; text-align: left;
}
.review-card { padding: 8px 0; }
.review-stars { font-size: 20px; color: var(--sky); letter-spacing: 3px; margin-bottom: 12px; }
.review-card p { font-size: 15px; line-height: 1.7; color: #333; font-style: italic; margin-bottom: 12px; }
.review-author { font-size: 14px; color: var(--navy); font-weight: 600; }
.see-more-link {
	display: inline-block; margin-top: 32px; font-size: 15px;
	color: var(--navy); font-weight: 600; border-bottom: 2px solid var(--navy);
	padding-bottom: 2px;
}
.see-more-link:hover { color: var(--sky); border-color: var(--sky); }

/* ===== FAQ SECTION ===== */
.faq-section { padding: 64px 40px; background: var(--gray-bg); }
.faq-section h2 { font-size: 38px; font-weight: 700; color: var(--navy); margin-bottom: 40px; text-align: center; }
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #ddd; padding: 22px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; user-select: none; }
.faq-question h4 { font-size: 17px; font-weight: 600; color: var(--navy); padding-right: 20px; }
.faq-toggle {
	width: 28px; height: 28px; border-radius: 50%; border: 2px solid var(--navy);
	display: flex; align-items: center; justify-content: center; flex-shrink: 0;
	font-size: 18px; color: var(--navy); font-weight: 300; transition: background .2s;
}
.faq-item.open .faq-toggle { background: var(--navy); color: white; }
.faq-answer { display: none; font-size: 15px; color: #444; line-height: 1.7; padding-top: 14px; }
.faq-item.open .faq-answer { display: block; }

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: var(--white); padding: 48px 40px 24px; }
.footer-top {
	display: grid; grid-template-columns: 1fr 1fr 1fr 1fr;
	align-items: stretch;
	gap: 40px; padding-bottom: 40px;
	margin: 0 0 24px;
	border-bottom: 1px solid rgba(255, 255, 255, .15);
}
.footer-top > * { display: flex; flex-direction: column; }
.footer-brand { gap: 18px; }
.footer-brand .footer-social { margin-top: auto; }
.footer-wordmark {
	display: inline-block;
	width: max-content;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
	letter-spacing: -.5px;
	color: var(--white);
}
.footer-wordmark span { color: var(--sky); }
.footer-desc { font-size: 14px; color: rgba(255, 255, 255, .72); line-height: 1.7; margin: 0; max-width: 340px; }

.footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact li { display: flex; align-items: center; gap: 12px; font-size: 14px; color: rgba(255, 255, 255, .85); }
.footer-contact .fc-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 32px; height: 32px; border-radius: 8px;
	background: rgba(0, 157, 234, .15);
	color: var(--sky);
	flex-shrink: 0;
}
.footer-contact .fc-icon svg { width: 15px; height: 15px; }
.footer-contact a { color: inherit; transition: color .2s; }
.footer-contact a:hover { color: var(--sky); }

.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px; border-radius: 10px;
	background: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .12);
	color: #fff;
	transition: background .2s, border-color .2s, transform .15s, color .2s;
}
.footer-social a:hover {
	background: var(--sky);
	border-color: var(--sky);
	transform: translateY(-2px);
}
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-col h4 {
	font-size: 13px; font-weight: 700; text-transform: uppercase;
	letter-spacing: 1px; color: var(--white); margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255, 255, 255, .75); transition: color .2s; }
.footer-col ul li a:hover { color: var(--sky); }

/* Footer trust strip: secure-payment note + NETOPIA verification seal only
   (static Visa/Mastercard chips removed at client request — seal is NETOPIA's
   own official logo and the single payment mark). */
.footer-payments {
	display: flex; flex-direction: column; flex-wrap: wrap; gap: 6px; align-items: center;
	text-align: center;
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.12);
	margin-top: 18px;
	color: rgba(255,255,255,.7);
	font-size: 12px;
}
/* NETOPIA verification seal: npId.js inserts the logo <div> before this span.
   Fixed height so the script's 100%/250px cap keeps the logo's ~5.5:1 ratio
   without vertical stretch. */
.footer-payments .pay-seal {
	display: block;
	height: 45px;
	margin-top: 4px;
}
.footer-payments .pay-note {
	font-size: 11px;
	color: rgba(255,255,255,.55);
	letter-spacing: .2px;
}

.footer-company {
	display: flex; flex-wrap: wrap; gap: 6px 16px;
	font-size: 12px;
	color: rgba(255,255,255,.7);
	padding: 14px 0;
	border-top: 1px solid rgba(255,255,255,.08);
	border-bottom: 1px solid rgba(255,255,255,.08);
	margin-bottom: 14px;
	line-height: 1.5;
}
.footer-company strong { color: #fff; font-weight: 700; letter-spacing: .3px; }
.footer-company a { color: rgba(255,255,255,.75); text-decoration: underline; text-decoration-color: rgba(255,255,255,.25); }
.footer-company a:hover { color: var(--sky); text-decoration-color: currentColor; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255, 255, 255, .6); flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal a { color: rgba(255, 255, 255, .6); margin-left: 14px; }
.footer-bottom .legal a:hover { color: var(--sky); }
.footer-cta {
	background: var(--green); color: var(--navy); font-weight: 700; font-size: 14px;
	padding: 10px 20px; border-radius: 4px; text-transform: uppercase; letter-spacing: .3px;
	display: inline-flex; align-items: center; gap: 6px; transition: background .2s;
	width: max-content; align-self: flex-start;
}
.footer-cta:hover { background: #5bb88e; }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
	position: fixed; bottom: 28px; right: 28px; z-index: 999;
	width: 54px; height: 54px; border-radius: 50%; background: #25d366;
	display: flex; align-items: center; justify-content: center;
	box-shadow: 0 4px 16px rgba(37, 211, 102, .45);
	transition: transform .2s, bottom .25s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* When the back-to-top button is visible we lift the WhatsApp button
   so the two stack with WhatsApp on top. Body class is toggled by JS. */
body.cc-back-top-visible .whatsapp-btn { bottom: 96px; }

/* ===== Back to top (sits under the WhatsApp button) ===== */
.back-to-top {
	position: fixed;
	right: 28px;
	bottom: 28px;
	z-index: 999;
	width: 54px; height: 54px;
	border: 0; border-radius: 50%;
	background: #003968; color: #fff;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	box-shadow: 0 4px 16px rgba(0, 0, 0, .25);
	opacity: 0;
	transform: translateY(12px);
	pointer-events: none;
	transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.back-to-top.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.back-to-top:hover { background: #00284a; }
.back-to-top svg { width: 28px; height: 28px; fill: #fff; }

@media (max-width: 600px) {
	.back-to-top { right: 18px; bottom: 22px; }
	.whatsapp-btn { right: 18px; }
	body.cc-back-top-visible .whatsapp-btn { bottom: 90px; }
}

/* ===== Language switcher ===== */
.lang-switch { display: flex; align-items: center; gap: 8px; margin-left: 10px; }
.lang-switch img { width: 22px; height: 16px; cursor: pointer; border-radius: 2px; transition: transform .15s; }
.lang-switch img:hover { transform: scale(1.1); }
#google_translate_element { display: none; }

/* ===== Hamburger & mobile menu ===== */
.ham-btn {
	display: none;
	flex-direction: column; justify-content: center;
	gap: 5px; width: 40px; height: 40px;
	background: none; border: none; cursor: pointer;
	padding: 4px; border-radius: 8px;
}
.ham-btn span {
	display: block; height: 2.5px; width: 24px;
	background: var(--navy); border-radius: 2px;
	transition: transform .25s, opacity .25s;
}
.ham-btn.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; }
.ham-btn.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0, 0, 0, .4); z-index: 1100; }
.mob-overlay.active { display: block; }
.mob-menu {
	display: flex; flex-direction: column;
	position: fixed; top: 0; right: -280px;
	width: 260px; height: 100%; background: #fff;
	z-index: 1200; padding: 72px 0 32px;
	box-shadow: -4px 0 24px rgba(0, 0, 0, .15);
	transition: right .3s ease;
}
.mob-menu.active { right: 0; }
.mob-close {
	position: absolute; top: 16px; right: 16px;
	background: none; border: none;
	font-size: 20px; cursor: pointer; color: var(--navy); padding: 4px 8px;
}
.mob-menu ul { list-style: none; padding: 0; margin: 0; }
.mob-menu a {
	display: block; padding: 13px 28px;
	font-size: 16px; font-weight: 600;
	color: var(--navy); text-decoration: none;
	transition: background .15s;
}
.mob-menu a:hover { background: #f0f4f8; }
.mob-menu .sub-menu a { font-weight: 400; font-size: 15px; padding: 10px 28px 10px 40px; color: #444; }
.mob-sep { height: 1px; background: #eee; margin: 8px 20px; }
.mob-section-title {
	font-size: 11px; font-weight: 700; letter-spacing: .8px;
	text-transform: uppercase; color: #999;
	padding: 4px 28px 2px;
}
.mob-account { margin-top: auto; padding-top: 20px; border-top: 1px solid #eee; }
.mob-account-link {
	display: flex !important;
	align-items: center;
	gap: 12px;
}
.mob-account-link svg {
	width: 18px; height: 18px;
	color: var(--sky);
	flex-shrink: 0;
}
.mob-account-badge {
	margin-left: auto;
	background: var(--sky);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.mob-lang { padding-top: 14px; border-top: 1px solid #eee; }
.mob-lang a { display: flex; align-items: center; }

/* ===== Search (with suggestions) ===== */
.cc-search-wrap { position: relative; max-width: 540px; margin: 0 auto 28px; }
.cc-search-input {
	width: 100%; padding: 14px 18px 14px 46px;
	border: 2px solid #dde3ec; border-radius: 50px;
	font-size: 15px; outline: none;
	transition: border-color .2s;
}
.cc-search-input:focus { border-color: var(--sky); }
.cc-search-icon { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: #888; }
.cc-search-suggestions {
	position: absolute; top: 100%; left: 0; right: 0;
	background: #fff; border: 1px solid #dde3ec; border-radius: 14px;
	margin-top: 6px; box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	z-index: 50; max-height: 320px; overflow-y: auto;
	display: none;
}
.cc-search-suggestions.open { display: block; }
.cc-search-suggestion {
	display: flex; gap: 12px; padding: 10px 14px;
	color: var(--navy); text-decoration: none; align-items: center;
	border-bottom: 1px solid #f0f4f8;
}
.cc-search-suggestion:last-child { border-bottom: none; }
.cc-search-suggestion:hover { background: #f5f9ff; }
.cc-search-suggestion img {
	width: 46px; height: 46px; border-radius: 8px;
	object-fit: cover; flex-shrink: 0; background: #f5f7fa;
}
.cc-suggestion-title {
	flex: 1; min-width: 0; font-size: 14px; line-height: 1.35;
}
.cc-suggestion-title mark {
	background: #fff3a3; color: inherit; padding: 0 1px; border-radius: 2px;
}
.cc-suggestion-title .sku { color: #9aa3af; }
.cc-suggestion-aside {
	display: flex; align-items: baseline; gap: 10px;
	flex-shrink: 0; white-space: nowrap; text-align: right;
}
.cc-suggestion-aside .price { font-size: 13px; color: var(--navy); }
.cc-suggestion-aside .price del { color: #9aa3af; font-weight: 400; margin-right: 4px; }
.cc-suggestion-aside .price ins { text-decoration: none; font-weight: 600; }
.cc-suggestion-aside .price .amount,
.cc-suggestion-aside .price .woocommerce-Price-amount { white-space: nowrap; }
.cc-suggestion-aside .meta { font-size: 12px; color: #888; }
.cc-suggestion-aside .stock { font-size: 12px; }
.cc-suggestion-aside .stock.in { color: #2e9e5b; }
.cc-suggestion-aside .stock.out { color: #b0b6bf; }
.cc-search-suggestion.cc-no-results {
	color: #888; font-size: 14px; cursor: default;
}
@media (max-width: 480px) {
	.cc-suggestion-aside { flex-direction: column; align-items: flex-end; gap: 2px; }
}

/* ===== Breadcrumbs (matches original site style) ===== */
.cc-breadcrumbs {
	background: var(--gray-bg);
	padding: 20px 40px;
	font-size: 15px;
	color: #888;
	border-bottom: 1px solid #e2e8f0;
}
.cc-breadcrumbs a {
	color: var(--sky);
	font-weight: 600;
	text-decoration: none;
}
.cc-breadcrumbs a:hover { text-decoration: underline; }
.cc-breadcrumbs .sep { margin: 0 6px; color: #888; }
.cc-breadcrumbs [aria-current="page"] { color: #888; }
@media (max-width: 600px) {
	.cc-breadcrumbs { padding: 16px 16px; font-size: 14px; }
}

/* ===== Generic page wrapper ===== */
.page-wrap { max-width: 1100px; margin: 0 auto; padding: 56px 24px; }
.entry-title { font-size: 38px; font-weight: 800; color: var(--navy); margin-bottom: 18px; }
.entry-content p, .entry-content li { font-size: 16px; line-height: 1.75; color: #444; margin-bottom: 14px; }
.entry-content h2 { font-size: 24px; color: var(--navy); margin: 28px 0 14px; }
.entry-content h3 { font-size: 19px; color: var(--navy); margin: 22px 0 12px; }
.entry-content a { color: var(--sky); }
.entry-content a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
	.primary-nav a { font-size: 13px; padding: 6px 8px; }
	.btn-schedule { font-size: 13px; padding: 9px 14px; }
	.nav-phone { font-size: 14px; }
}
@media (max-width: 920px) {
	.primary-nav { display: none; }
	.hero { grid-template-columns: 1fr 1fr; }
	.services-grid { grid-template-columns: repeat(2, 1fr); }
	.reviews-grid { grid-template-columns: repeat(2, 1fr); }
	.site-footer { padding: 44px 28px 24px; }
	.footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
	.footer-desc { max-width: none; }
}
@media (max-width: 768px) {
	.site-header { padding: 0 16px; }
	.hero { grid-template-columns: 1fr; }
	.hero-right { height: 280px; }
	.hero-left { border-bottom-right-radius: 0; padding: 40px 24px; }
	.hero-left h1 { font-size: 30px; }
	.hero-left p { font-size: 15px; margin-bottom: 24px; }
	.hero-cta { max-width: 100%; padding: 5px 5px 5px 18px; }
	.about-section { grid-template-columns: 1fr; }
	.about-img { height: 300px; }
	.about-content { padding: 40px 24px; }
	.features-section { padding: 40px 16px; }
	.services-section { padding: 40px 16px; }
	.features-grid { grid-template-columns: 1fr; }
	.services-grid { grid-template-columns: 1fr; }
	/* Auto-detailing card: show the photo in a proper landscape frame on phones
	   (the source image is wide; the default 200px square crop hid most of it). */
	.service-card--auto img { height: auto; aspect-ratio: 16 / 9; }
	.reviews-section { padding: 40px 16px; }
	.reviews-grid { grid-template-columns: 1fr; }
	.blog-preview { padding: 40px 16px; }
	.blog-preview-grid { grid-template-columns: 1fr; }
	.faq-section { padding: 40px 16px; }
	.site-footer { padding: 40px 20px 20px; }
	.footer-top { grid-template-columns: 1fr 1fr; gap: 24px; padding-bottom: 32px; }
	.footer-wordmark { font-size: 26px; }
	.footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
	.footer-bottom .legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 14px; }
	.footer-bottom .legal a { margin-left: 0; }
	.primary-nav { display: none !important; }
	.nav-phone { display: none !important; }
	.ham-btn { display: flex !important; }
	.lang-switch { display: none; }
	.client-logo { width: 150px; height: 90px; margin: 0 25px; }
	.header-icons .header-icon--wishlist,
	.header-icons .header-icon--account { display: none; }
}
@media (max-width: 520px) {
	.hero-left { padding: 34px 20px 28px; }
	.hero-left h1 { font-size: 26px; margin-bottom: 14px; }
	.hero-left p { font-size: 14.5px; line-height: 1.65; margin-bottom: 22px; }
	.hero-cta {
		flex-wrap: wrap;
		background: transparent;
		padding: 0;
		gap: 10px;
		border-radius: 0;
	}
	.hero-cta input {
		flex: 1 1 100%;
		background: rgba(255, 255, 255, .12);
		border-radius: 80px;
		padding: 12px 20px;
		font-size: 16px;
		text-align: center;
	}
	.hero-cta .btn-schedule {
		flex: 1 1 100%;
		justify-content: center;
		padding: 12px 18px;
	}
	.site-footer { padding: 36px 16px 18px; }
	.footer-top {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-bottom: 28px;
	}
	.footer-brand { align-items: flex-start; }
	.footer-brand .footer-social { margin-top: 6px; }
	.footer-col h4 { margin-bottom: 12px; }
	.footer-col ul li { margin-bottom: 8px; }
	.footer-payments { gap: 6px; padding: 14px 0; }
	.footer-payments .pay-seal { height: 38px; }
	.footer-company { flex-direction: column; align-items: center; text-align: center; gap: 2px; }
	.footer-cta { width: 100%; text-align: center; }
}

/* ===== Page navigation loader ===== */
.cc-page-loader {
	position: fixed; inset: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, .82);
	display: flex; align-items: center; justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease;
	-webkit-backdrop-filter: blur(2px);
	backdrop-filter: blur(2px);
}
.cc-page-loader.is-visible {
	opacity: 1;
	pointer-events: auto;
}
.cc-spinner {
	width: 52px; height: 52px;
	border-radius: 50%;
	border: 4px solid #e2eaf4;
	border-top-color: var(--sky);
	border-right-color: var(--navy);
	animation: cc-spin .8s linear infinite;
}
@keyframes cc-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
	.cc-spinner { animation-duration: 1.6s; }
}
