/* ============================================
   Summit Mechanical Solutions — Main Styles
   Dark gray, yellow, white. Professional, readable.
   ============================================ */

/* ---------- Variables ---------- */
:root {
	--font-heading: 'Exo 2', sans-serif;
	--font-body: 'Montserrat', sans-serif;
	/* Dark grays */
	--gray-900: #1e2326;
	--gray-800: #2d3436;
	--gray-700: #3d4549;
	--gray-600: #4a5258;
	--gray-500: #5c656c;
	/* Yellow */
	--yellow: #f1c40f;
	--yellow-dark: #d4ac0d;
	--yellow-light: #f4d03f;
	/* White & light */
	--white: #ffffff;
	--off-white: #f8f9fa;
	--surface: #eef0f2;
	/* Text */
	--text-dark: #2d3436;
	--text-muted: #5c656c;
	--text-on-dark: #ffffff;
	--text-on-dark-muted: rgba(255, 255, 255, 0.85);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-dark);
	background-color: var(--surface);
	margin: 0;
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--yellow-dark);
	transition: color 0.2s ease;
}
a:hover {
	color: var(--yellow);
}

/* ---------- Special offer bar ---------- */
#special-offer {
	background: var(--gray-800);
	color: var(--text-on-dark);
	padding: 12px 0;
	font-size: 0.95rem;
}
#special-offer .content a,
#special-offer a {
	color: var(--yellow);
	text-decoration: none;
	font-weight: 600;
}
#special-offer a:hover {
	color: var(--yellow-light);
	text-decoration: underline;
}
#special-offer .offer {
	margin: 0 8px;
	opacity: 0.95;
}
#special-offer i {
	color: var(--yellow);
	margin-right: 6px;
}

/* ---------- Header ---------- */
#header {
	background: var(--gray-800);
	padding: 14px 24px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}
#header .logo a {
	display: block;
	line-height: 0;
}
#header .logo-img {
	display: block;
	height: 48px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
	object-position: left center;
}
#header .nav-link {
	color: var(--text-on-dark-muted) !important;
	font-weight: 600;
	margin: 0 4px;
	padding: 8px 12px !important;
	border-radius: 4px;
	transition: color 0.2s, background 0.2s;
}
#header .nav-link:hover,
#header .nav-link:focus {
	color: var(--white) !important;
	background: rgba(255, 255, 255, 0.08);
}
#header .dropdown-menu {
	background: var(--gray-700);
	border: none;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
	border-radius: 6px;
	padding: 8px 0;
}
#header .dropdown-item {
	color: var(--text-on-dark-muted);
	padding: 10px 20px;
}
#header .dropdown-item:hover {
	background: rgba(241, 196, 15, 0.15);
	color: var(--yellow-light);
}
#header .buttons {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
#header .phone a,
#header .contact a {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--gray-800);
	background: var(--yellow);
	padding: 10px 18px;
	border-radius: 6px;
	text-decoration: none;
	transition: background 0.2s, color 0.2s, transform 0.15s;
}
#header .phone a:hover,
#header .contact a:hover {
	background: var(--yellow-light);
	color: var(--gray-800);
	transform: translateY(-1px);
}
.navbar-toggler {
	border: 2px solid var(--text-on-dark-muted);
	border-radius: 6px;
	padding: 8px 10px;
}
.navbar-toggler .icon-bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--white);
	margin: 5px 0;
	border-radius: 1px;
}

/* ---------- Hero ---------- */
#hero {
	min-height: 520px;
	background: var(--gray-800) url('assetts/hero-back.jpg') center/cover no-repeat;
	padding: 60px 0 80px;
	display: flex;
	align-items: flex-end;
	position: relative;
}
#hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(45, 52, 54, 0.92) 0%, rgba(45, 52, 54, 0.6) 50%, rgba(45, 52, 54, 0.4) 100%);
	pointer-events: none;
}
#hero .container {
	position: relative;
	z-index: 1;
}
#hero .content {
	color: var(--text-on-dark);
}
#hero .content p {
	font-size: 0.8rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 10px;
	color: var(--yellow);
	font-weight: 600;
}
#hero .content h1,
#hero .content h2 {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	line-height: 1.15;
	margin: 0 0 24px 0;
	letter-spacing: -0.02em;
}
#hero .content > a {
	display: inline-block;
	background: var(--yellow);
	color: var(--gray-800);
	padding: 14px 28px;
	font-weight: 700;
	text-decoration: none;
	border-radius: 6px;
	margin-right: 12px;
	margin-top: 8px;
	font-size: 1rem;
	transition: background 0.2s, color 0.2s, transform 0.15s;
}
#hero .content > a:hover {
	background: var(--yellow-light);
	color: var(--gray-800);
	transform: translateY(-2px);
}
#hero .content span {
	display: block;
	margin-top: 22px;
	font-size: 0.95rem;
	color: var(--text-on-dark-muted);
}
#hero .content span a {
	color: var(--yellow);
	text-decoration: none;
	font-weight: 600;
}
#hero .content span a:hover {
	text-decoration: underline;
}

/* ---------- Main services ---------- */
#main-services {
	padding: 72px 0;
	background: var(--white);
}
#main-services .main-services {
	gap: 24px;
}
#main-services .box {
	background: var(--off-white);
	border: 1px solid rgba(45, 52, 54, 0.08);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
#main-services .box:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
	border-color: rgba(241, 196, 15, 0.3);
}
#main-services .box a {
	text-decoration: none;
	color: inherit;
	display: block;
	padding: 28px 24px;
}
#main-services .box .icon {
	margin-bottom: 16px;
}
#main-services .box .icon i {
	color: var(--gray-700);
	font-size: 2.25rem;
	transition: color 0.2s;
}
#main-services .box:hover .icon i {
	color: var(--yellow-dark);
}
#main-services .box .txt h3 {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 10px;
}
#main-services .box .txt p {
	font-size: 0.95rem;
	color: var(--text-muted);
	margin-bottom: 14px;
	line-height: 1.55;
}
#main-services .box .more {
	font-weight: 700;
	color: var(--yellow-dark);
	font-size: 0.95rem;
}
#main-services .box .more span {
	margin-right: 4px;
}

/* ---------- Welcome / About ---------- */
.welcome-box .wrapper {
	padding: 72px 0;
}
.welcome-box #about {
	background: var(--surface);
}
.welcome-box .headline p {
	font-size: 0.85rem;
	color: var(--yellow-dark);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-weight: 600;
}
.welcome-box .headline h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 24px;
}
.welcome-box .highlight p,
.welcome-box .content p {
	font-size: 1rem;
	line-height: 1.65;
	color: var(--text-muted);
}
.welcome-box .btn-more {
	display: inline-block;
	background: var(--gray-800);
	color: var(--white);
	padding: 14px 28px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	margin-top: 20px;
	transition: background 0.2s, color 0.2s, transform 0.15s;
}
.welcome-box .btn-more:hover {
	background: var(--gray-700);
	color: var(--white);
	transform: translateY(-1px);
}

/* ---------- Values strip ---------- */
#values {
	background: var(--gray-700);
	padding: 56px 0;
}
#values .box {
	padding: 20px 12px;
}
#values .box .icon {
	margin-bottom: 12px;
	font-size: 2.25rem;
	color: var(--yellow);
}
#values .box h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--white);
	margin-bottom: 4px;
}
#values .box p {
	font-size: 0.9rem;
	color: var(--text-on-dark-muted);
	margin: 0;
}

/* ---------- Specials ---------- */
#specials {
	background: var(--white);
	padding: 72px 0;
}
#specials .headline p {
	font-size: 0.85rem;
	color: var(--yellow-dark);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
	font-weight: 600;
}
#specials .headline h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 32px;
}
#specials .offers .box {
	background: var(--off-white);
	border: 1px solid rgba(45, 52, 54, 0.08);
	border-radius: 10px;
	padding: 28px 24px;
	text-align: center;
	margin-bottom: 0;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
	transition: border-color 0.2s, box-shadow 0.2s;
}
#specials .offers .box:hover {
	border-color: var(--yellow);
	box-shadow: 0 4px 20px rgba(241, 196, 15, 0.15);
}
#specials .offers .box .content {
	margin-bottom: 12px;
}
#specials .offers .box .content i {
	font-size: 1.75rem;
	color: var(--yellow-dark);
	margin-bottom: 10px;
	display: block;
}
#specials .offers .box .content p {
	margin: 0;
	color: var(--gray-800);
	font-weight: 600;
	font-size: 1rem;
}
#specials .offers .box .date p {
	font-size: 0.8rem;
	color: var(--text-muted);
	margin: 0;
}

/* ---------- Financing ---------- */
#financing {
	padding: 72px 0;
	background: var(--gray-800);
	color: var(--text-on-dark);
	position: relative;
}
#financing h4 {
	font-size: 0.85rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
	color: var(--yellow);
	font-weight: 600;
}
#financing h2 {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--white);
}
#financing p {
	font-size: 1rem;
	line-height: 1.65;
	margin-bottom: 24px;
	color: var(--text-on-dark-muted);
}
#financing .btn-more {
	background: var(--yellow);
	color: var(--gray-800);
	padding: 14px 28px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	display: inline-block;
	transition: background 0.2s, color 0.2s, transform 0.15s;
}
#financing .btn-more:hover {
	background: var(--yellow-light);
	color: var(--gray-800);
	transform: translateY(-1px);
}

/* ---------- Footer ---------- */
#footer {
	padding: 56px 0 32px;
	background: var(--gray-900);
	color: var(--text-on-dark-muted);
}
#footer .logo a {
	display: inline-block;
	line-height: 0;
}
#footer .logo-img-footer {
	display: block;
	height: 44px;
	width: auto;
	max-width: 240px;
	object-fit: contain;
	object-position: left center;
}
#footer .logo + p,
#footer .small {
	font-size: 0.9rem;
	line-height: 1.5;
	margin-top: 10px;
	color: var(--text-on-dark-muted);
}
#footer .links h4 {
	color: var(--white);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 14px;
	letter-spacing: 0.03em;
}
#footer .links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#footer .links li {
	margin-bottom: 8px;
}
#footer .links a {
	color: var(--text-on-dark-muted);
	text-decoration: none;
	font-size: 0.95rem;
	transition: color 0.2s;
}
#footer .links a:hover {
	color: var(--yellow);
}
#footer .contact h4 {
	color: var(--white);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 14px;
}
#footer .contact address {
	font-style: normal;
	margin: 8px 0;
	font-size: 0.95rem;
	line-height: 1.5;
}
#footer .contact a {
	color: var(--yellow);
}
#footer .contact a:hover {
	color: var(--yellow-light);
}

/* ---------- Footer bottom ---------- */
#footer-bottom {
	padding: 20px 0;
	background: var(--gray-900);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	color: var(--text-on-dark-muted);
	font-size: 0.9rem;
}
#footer-bottom .copy p {
	margin: 0;
	color: var(--text-on-dark-muted);
}
#footer-bottom .nav-link {
	color: var(--text-on-dark-muted);
	padding: 0 14px;
	font-size: 0.9rem;
	transition: color 0.2s;
}
#footer-bottom .nav-link:hover {
	color: var(--yellow);
}
#footer-bottom .fab {
	font-size: 1.1rem;
}

/* ---------- Inner pages (banner + content) ---------- */
.page-banner {
	background: var(--gray-800);
	padding: 2.5rem 0;
}
.page-banner h1 {
	color: var(--white);
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	margin: 0;
}
.content-main {
	background: var(--white);
	padding: 1rem 0 3rem;
}
.content-main .headline-label {
	font-size: 0.85rem;
	color: var(--yellow-dark);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
	font-weight: 600;
}
.content-main .icon {
	color: var(--gray-700);
}
.content-main .icon i {
	transition: color 0.2s;
}
.content-main .icon:hover i {
	color: var(--yellow-dark);
}
.service-card {
	background: var(--off-white);
	border: 1px solid rgba(45, 52, 54, 0.08);
	border-radius: 10px;
	padding: 2rem;
	height: 100%;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
	border-color: rgba(241, 196, 15, 0.4);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.service-card .icon {
	color: var(--gray-700);
}
.service-card:hover .icon {
	color: var(--yellow-dark);
}
.service-card h3 {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--gray-800);
	margin-bottom: 0.75rem;
}
.service-card p {
	font-size: 0.95rem;
	color: var(--text-muted);
	line-height: 1.55;
	margin-bottom: 1rem;
}
.service-link {
	font-weight: 600;
	color: var(--yellow-dark);
	text-decoration: none;
}
.service-link:hover {
	color: var(--yellow);
}
.content-main .btn-more {
	display: inline-block;
	background: var(--gray-800);
	color: var(--white);
	padding: 14px 28px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: background 0.2s, transform 0.15s;
}
.content-main .btn-more:hover {
	background: var(--gray-700);
	color: var(--white);
	transform: translateY(-1px);
}
.contact-form .form-control {
	border-radius: 6px;
	border: 1px solid rgba(45, 52, 54, 0.2);
	padding: 10px 14px;
}
.contact-form .form-control:focus {
	border-color: var(--yellow);
	box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.2);
}
.contact-form label {
	font-weight: 600;
	color: var(--gray-800);
	margin-bottom: 6px;
}
.section-links a { margin: 0 0.25rem; }
.nap-block address { font-style: normal; }
.form-success-msg {
	background: rgba(241, 196, 15, 0.15);
	border: 1px solid var(--yellow-dark);
	color: var(--gray-800);
	border-radius: 8px;
	padding: 1.25rem;
}
.form-success-msg::before {
	content: "✓ ";
	color: var(--yellow-dark);
	font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
	#header .buttons {
		margin-top: 12px;
	}
	#hero {
		min-height: 440px;
		padding: 48px 0 64px;
	}
	#main-services,
	.welcome-box .wrapper {
		padding: 48px 0;
	}
	#values {
		padding: 40px 0;
	}
}

@media (max-width: 767px) {
	#header {
		padding: 12px 16px;
	}
	#header .logo-img {
		height: 42px;
		max-width: 220px;
	}
	#hero .content h1 {
		font-size: 1.75rem;
	}
	.page-banner h1 {
		font-size: 1.5rem;
	}
}
