/* =========================================================
   Splash Mktg — rebuilt stylesheet
   Brand tokens pulled from the site's own 2017 Divi settings:
   blue #5da9e9 / #00a8ff, navy #001e56, gold #ffc001, cyan #2ceaea
   ========================================================= */

:root {
	--blue: #00a8ff;
	--blue-light: #5da9e9;
	--navy: #001e56;
	--gold: #ffc001;
	--gold-hover: #ffcd3a;
	--cyan: #2ceaea;
	--ink: #333;
	--muted: #595959;
	--footer-bg: #1c1c1c;
	--footer-text: #bbbbbb;
	--white: #ffffff;

	--font-body: 'Raleway', Helvetica, Arial, sans-serif;
	--font-display: 'Roboto', Helvetica, Arial, sans-serif;

	--wrap: 1100px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-body); margin: 0 0 0.5em; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap {
	max-width: var(--wrap);
	margin: 0 auto;
	padding: 0 24px;
}
.wrap-narrow { max-width: 700px; }

.sr-only {
	position: absolute;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--navy);
	color: #fff;
	padding: 10px 16px;
	z-index: 999;
}
.skip-link:focus { left: 0; }

:focus-visible {
	outline: 3px solid var(--blue);
	outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ---------- Buttons ---------- */
.btn {
	display: inline-block;
	padding: 0.7em 1.8em;
	border-radius: 5px;
	font-weight: 600;
	letter-spacing: 1px;
	border: 2px solid transparent;
	transition: background 0.2s ease, letter-spacing 0.2s ease, color 0.2s ease;
	cursor: pointer;
	font-size: 15px;
}
.btn-solid, .btn:not(.btn-outline) {
	background: var(--gold);
	color: #fff;
}
.btn-solid:hover, .btn:not(.btn-outline):hover {
	background: var(--gold-hover);
	letter-spacing: 2px;
}
.btn-outline {
	background: var(--blue);
	color: #fff;
}
.btn-outline:hover {
	background: var(--gold-hover);
	letter-spacing: 2px;
}

/* ---------- Top bar ---------- */
#top-bar {
	background: var(--navy);
	color: #cdd8ea;
	font-size: 14px;
}
#top-bar .wrap {
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	padding-top: 8px;
	padding-bottom: 8px;
}
#top-bar a:hover { color: var(--cyan); }

/* ---------- Header ---------- */
#site-header {
	position: sticky;
	top: 0;
	background: #fff;
	box-shadow: 0 1px 6px rgba(0,0,0,0.08);
	z-index: 100;
}
#site-header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 14px;
	padding-bottom: 14px;
}
#site-header .logo img { height: 48px; width: auto; }

#site-nav ul {
	list-style: none;
	display: flex;
	gap: 32px;
	margin: 0;
	padding: 0;
}
#site-nav a {
	font-weight: 600;
	font-size: 16px;
	color: var(--blue-light);
	letter-spacing: 0.5px;
}
#site-nav a:hover,
#site-nav a[aria-current="page"] { color: var(--cyan); }

#nav-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 34px;
	height: 34px;
	background: none;
	border: none;
	cursor: pointer;
}
#nav-toggle span {
	display: block;
	height: 2px;
	background: var(--navy);
}

@media (max-width: 720px) {
	#nav-toggle { display: flex; }
	#site-nav {
		display: none;
		width: 100%;
	}
	#site-nav.is-open { display: block; }
	#site-nav ul {
		flex-direction: column;
		gap: 0;
		padding: 12px 0;
	}
	#site-nav a {
		display: block;
		padding: 10px 0;
		border-top: 1px solid #eee;
	}
	#site-header .wrap { flex-wrap: wrap; }
}

/* ---------- Sliders (shared) ---------- */
.slider { position: relative; overflow: hidden; }
.slider .slides { position: relative; }
.slider .slide {
	display: none;
	animation: fade 0.5s ease;
}
.slider .slide.is-active { display: block; }
@keyframes fade {
	from { opacity: 0; }
	to { opacity: 1; }
}
.slide-dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	padding: 18px 0;
}
.slide-dots button {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: none;
	background: rgba(0,0,0,0.2);
	cursor: pointer;
	padding: 0;
}
.slide-dots button.is-active { background: var(--blue); }

/* ---------- Hero ---------- */
#hero {
	background: var(--navy) url('../assets/hero-bg.jpg') center/cover no-repeat;
	color: #fff;
	text-align: center;
}
#hero .slide-inner {
	max-width: 760px;
	margin: 0 auto;
	padding: 110px 24px 90px;
}
#hero h2 {
	font-family: var(--font-display);
	font-size: 40px;
	line-height: 1.3;
	margin-bottom: 20px;
}
#hero h2 a { color: #fff; }
#hero p {
	font-family: var(--font-display);
	font-size: 22px;
	margin-bottom: 30px;
}
#hero .slide-dots button { background: rgba(255,255,255,0.35); }
#hero .slide-dots button.is-active { background: #fff; }

@media (max-width: 640px) {
	#hero h2 { font-size: 28px; }
	#hero p { font-size: 18px; }
	#hero .slide-inner { padding: 70px 20px 50px; }
}

/* ---------- Generic section ---------- */
.section { padding: 64px 0; }
.section-white { background: #fff; }
.section-title {
	text-align: center;
	font-size: 26px;
	margin-bottom: 40px;
}
.section-title.gold { color: var(--gold); }
.section-title.white { color: #fff; }

.section-logo {
	max-width: 220px;
	margin: 0 auto 20px;
}

/* ---------- Feature blurbs ---------- */
.blurb-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	margin-bottom: 48px;
}
.blurb { text-align: center; }
.blurb-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	font-size: 26px;
	color: var(--blue);
	margin-bottom: 12px;
}
.blurb h4 {
	font-size: 20px;
	font-style: italic;
	font-weight: 400;
	color: var(--blue);
	margin-bottom: 10px;
}
.blurb p { font-size: 15px; color: var(--muted); }

@media (max-width: 900px) {
	.blurb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.blurb-grid { grid-template-columns: 1fr; }
}

.cta-row {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* ---------- Testimonials ---------- */
.section-testimonials {
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
	position: relative;
	color: #fff;
}
.section-testimonials::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 30, 86, 0.75);
}
.section-testimonials .wrap { position: relative; }
.testimonial-slider .slide-inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}
.testimonial-slider h2 {
	font-family: var(--font-display);
	font-size: 26px;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 18px;
}
.testimonial-slider .slide-dots button { background: rgba(255,255,255,0.35); }
.testimonial-slider .slide-dots button.is-active { background: #fff; }

/* ---------- Section header banner ---------- */
.section-header {
	background: var(--blue);
	color: #fff;
	text-align: center;
	padding: 56px 0;
}
.section-header h1 { font-size: 32px; margin: 0; }

/* ---------- Portfolio slider ---------- */
.section-portfolio { background: #f4f6f8; padding: 0; }
.portfolio-slide {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 0;
	min-height: 480px;
}
.portfolio-image { height: 100%; }
.portfolio-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 320px;
}
.portfolio-copy {
	padding: 48px 56px;
}
.portfolio-copy h2 { font-size: 26px; margin-bottom: 16px; }
.portfolio-copy h2 a { color: var(--navy); }
.portfolio-copy h2 a:hover { color: var(--blue); }
.portfolio-copy p { color: var(--muted); font-size: 15px; }

@media (max-width: 800px) {
	.portfolio-slide { grid-template-columns: 1fr; min-height: 0; }
	.portfolio-image img { min-height: 240px; }
	.portfolio-copy { padding: 32px 24px; }
}

/* ---------- Parallax CTA ---------- */
.section-parallax {
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-color: var(--navy);
	position: relative;
	color: #fff;
	text-align: center;
	padding: 90px 0;
}
.section-parallax::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 30, 86, 0.6);
}
.section-parallax .wrap { position: relative; }
.section-parallax h1 { font-size: 34px; margin-bottom: 12px; }
.section-parallax p { font-size: 18px; max-width: 600px; margin: 0 auto 28px; }

@media (max-width: 640px) {
	.section-parallax { background-attachment: scroll; }
}

/* ---------- Contact form ---------- */
.form-title {
	text-align: center;
	font-size: 30px;
	margin-bottom: 30px;
}
.form-row {
	display: flex;
	gap: 20px;
	margin-bottom: 4px;
}
.form-row-submit {
	align-items: center;
	justify-content: space-between;
	margin-top: 10px;
	flex-wrap: wrap;
	gap: 16px;
}
.form-field { flex: 1; margin-bottom: 18px; }
.form-field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--muted);
	margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
	width: 100%;
	padding: 12px 14px;
	border: 2px solid var(--blue-light);
	border-radius: 5px;
	font-family: var(--font-body);
	font-size: 15px;
	color: var(--ink);
	background: #fff;
}
.form-field textarea { resize: vertical; }
.captcha-field {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 14px;
	color: var(--muted);
}
.captcha-field input {
	width: 60px;
	padding: 8px;
	border: 2px solid var(--blue-light);
	border-radius: 5px;
	text-align: center;
}

@media (max-width: 640px) {
	.form-row { flex-direction: column; gap: 0; }
}

/* ---------- Footer ---------- */
#site-footer {
	background: var(--footer-bg);
	color: var(--footer-text);
	text-align: center;
	padding: 32px 0;
}
.social-icons {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 24px;
	margin: 0 0 16px;
	padding: 0;
}
.social-icons a {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.5px;
	color: var(--footer-text);
}
.social-icons a:hover { color: var(--blue); }
#footer-copyright { font-size: 13px; margin: 0; }
