/* ==========================================================================
   Zarak Hasbrouck Theme - Main Stylesheet (Pixel-Perfect 100% Match)
   ========================================================================== */

/* --- CSS Variables --- */
:root {
	--primary-blue: #0056b3;
	--primary-blue-dark: #004494;
	--primary-blue-light: #e0f2fe;
	--navy-dark: #0a192f;
	--navy-title: #0f172a;
	--accent-red: #d9232e;
	--accent-red-hover: #b91c1c;
	--text-dark: #1e293b;
	--text-body: #4b5563;
	--text-muted: #64748b;
	--bg-light: #f4f7fa;
	--bg-white: #ffffff;
	--border-color: #e2e8f0;
	--border-focus: #0056b3;
	--font-primary: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--transition-smooth: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* --- Global Reset & Box Sizing --- */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden !important;
	width: 100%;
	max-width: 100vw;
}

body {
	font-family: var(--font-primary);
	font-size: 1rem;
	line-height: 1.6;
	color: var(--text-body);
	background-color: var(--bg-white);
	overflow-x: hidden !important;
	width: 100%;
	max-width: 100vw;
	position: relative;
}

.site-main {
	overflow-x: hidden !important;
	width: 100%;
	max-width: 100vw;
}

a {
	color: var(--primary-blue);
	text-decoration: none;
	transition: var(--transition-smooth);
}

a:hover {
	color: var(--primary-blue-dark);
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul, ol {
	list-style: none;
}

button, input, textarea, select {
	font-family: inherit;
	font-size: inherit;
	max-width: 100%;
	box-sizing: border-box;
}

/* --- Containers --- */
.zarak-container {
	width: 100%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(20px, 3.5vw, 48px);
	padding-right: clamp(20px, 3.5vw, 48px);
	box-sizing: border-box;
}

/* --- Buttons --- */
.zarak-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 0.88rem;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	padding: 11px 28px;
	border-radius: 4px;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition-smooth);
	text-align: center;
	text-decoration: none;
	box-sizing: border-box;
}

.zarak-btn-primary {
	background-color: var(--primary-blue);
	color: #ffffff;
	border-color: var(--primary-blue);
}

.zarak-btn-primary:hover {
	background-color: var(--primary-blue-dark);
	border-color: var(--primary-blue-dark);
	color: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 86, 179, 0.35);
}

/* --- Typography / Section Headers --- */
.section-eyebrow {
	font-family: var(--font-heading);
	font-size: 13.5px;
	font-weight: 800;
	letter-spacing: 0.8px;
	text-transform: uppercase;
	color: var(--primary-blue);
	margin-bottom: 8px;
	word-break: break-word;
}

.section-title {
	font-family: var(--font-heading);
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	font-weight: 900;
	text-transform: uppercase;
	color: var(--navy-title);
	line-height: 1.15;
	letter-spacing: -0.5px;
	margin-bottom: 24px;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* --- Social Icons Component --- */
.zarak-social-links,
.footer-social-links,
.header-social-links,
.mobile-social-links,
.contact-social-icons {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.zarak-social-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background-color: rgba(0, 86, 179, 0.1);
	color: var(--primary-blue);
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

.zarak-social-icon svg {
	width: 16px;
	height: 16px;
}

.zarak-social-icon:hover {
	background-color: var(--primary-blue);
	color: #ffffff;
	transform: translateY(-2px);
}

/* Footer social icons */
.footer-social-links .zarak-social-icon {
	background-color: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.footer-social-links .zarak-social-icon:hover {
	background-color: #ffffff;
	color: var(--primary-blue);
}

/* ==========================================================================
   1. Site Header & Navigation
   ========================================================================== */
.site-header {
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--bg-white);
	z-index: 1000;
	/* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); */
	transition: var(--transition-smooth);
	margin: 0;
	padding: 0;
}

body.admin-bar .site-header {
	top: 32px;
}
@media screen and (max-width: 782px) {
	body.admin-bar .site-header {
		top: 46px;
	}
}

.site-header.scrolled {
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.header-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 0;
	padding-top: 2px;
	padding-bottom: 2px;
	box-sizing: border-box;
}

.site-branding {
	display: flex;
	align-items: center;
	flex-shrink: 1;
	min-width: 0;
	max-width: 100%;
	padding: 2px 0;
}

.text-logo-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	min-width: 0;
	line-height: 1;
}

.logo-name {
	font-family: var(--font-heading);
	display: flex;
	flex-direction: column;
	line-height: 0.95;
	font-size: clamp(1.15rem, 2.8vw, 1.42rem);
	font-weight: 900;
	letter-spacing: -0.3px;
	color: var(--primary-blue);
	text-transform: uppercase;
}

.logo-word-1, .logo-word-2 {
	display: block;
}

.logo-sub {
	font-family: var(--font-primary);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: clamp(0.5rem, 1.4vw, 0.58rem);
	font-weight: 800;
	letter-spacing: 0.8px;
	color: var(--accent-red);
	text-transform: uppercase;
	margin-top: 3px;
}

.logo-sub-star {
	font-size: 5.5px;
	color: var(--accent-red);
}

.custom-logo {
	max-height: 42px;
	width: auto;
	display: block;
	object-fit: contain;
}

.main-navigation {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}

.nav-menu {
	display: flex;
	align-items: center;
	gap: 14px;
}

.nav-divider {
	color: #cbd5e1;
	font-weight: 300;
	font-size: 13px;
	user-select: none;
}

.nav-link {
	font-family: var(--font-heading);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: var(--primary-blue);
	text-transform: uppercase;
	position: relative;
	padding: 2px 0;
	transition: color 0.2s ease;
	display: inline-block;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2.5px;
	background-color: var(--accent-red);
	transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
	border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.nav-link.active {
	color: var(--primary-blue);
	font-weight: 800;
}

/* Mobile Hamburger Toggle */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
	flex-shrink: 0;
	margin-left: 10px;
}

.mobile-menu-toggle .bar {
	width: 24px;
	height: 3px;
	background-color: var(--primary-blue);
	border-radius: 2px;
	transition: var(--transition-smooth);
}

.mobile-menu-toggle.active .bar-1 {
	transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active .bar-2 {
	opacity: 0;
}

.mobile-menu-toggle.active .bar-3 {
	transform: translateY(-8px) rotate(-45deg);
}

.mobile-nav-drawer {
	display: none;
	background-color: var(--bg-white);
	border-top: 1px solid var(--border-color);
	padding: 16px 20px;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08);
	box-sizing: border-box;
}

.mobile-nav-drawer.active {
	display: block;
}

.mobile-nav-menu {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 16px;
}

.mobile-nav-link {
	font-family: var(--font-heading);
	font-size: 1rem;
	font-weight: 700;
	color: var(--primary-blue);
	text-transform: uppercase;
	display: block;
	padding: 8px 0;
	border-bottom: 1px solid var(--border-color);
}

/* ==========================================================================
   2. Hero Section (Desktop & Mobile Modes)
   ========================================================================== */
.hero-section {
	position: relative;
	min-height: 580px;
	background-image: var(--hero-desktop-img);
	background-size: cover;
	background-position: var(--hero-bg-pos, right top);
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	padding: 55px 0 65px 0;
	overflow: hidden;
}

.hero-overlay {
	display: none;
}

.hero-container {
	position: relative;
	z-index: 2;
	width: 100%;
}

.hero-content {
	max-width: 560px;
	box-sizing: border-box;
}

.hero-eyebrow {
	font-family: var(--font-heading);
	font-size: clamp(0.92rem, 2.2vw, 1.05rem);
	font-weight: 800;
	color: var(--primary-blue);
	letter-spacing: 0.6px;
	text-transform: uppercase;
	margin-bottom: 12px;
	overflow-wrap: break-word;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: clamp(2.2rem, 4.4vw, 3.35rem);
	font-weight: 900;
	line-height: 1.06;
	color: var(--accent-red);
	text-transform: uppercase;
	letter-spacing: -0.5px;
	margin-bottom: 0;
	max-width: 520px;
	overflow-wrap: break-word;
	word-break: break-word;
}

/* Dedicated Mobile Portrait Photo */
.hero-mobile-photo-box {
	display: none;
}

.hero-star-divider {
	display: flex;
	align-items: center;
	gap: 12px;
	margin: 18px 0 20px 0;
	max-width: 270px;
}

.hero-star-divider .divider-line {
	flex: 1;
	height: 1.5px;
	background-color: var(--primary-blue);
	opacity: 0.75;
}

.hero-star-divider .star-icon {
	color: var(--accent-red);
	width: 14px;
	height: 14px;
	display: inline-flex;
	flex-shrink: 0;
}

.hero-star-divider .star-icon svg {
	width: 100%;
	height: 100%;
}

.hero-quotes {
	margin-bottom: 18px;
}

.hero-quote-line {
	font-family: var(--font-primary);
	font-size: clamp(0.92rem, 1.8vw, 1.02rem);
	color: #1e293b;
	line-height: 1.55;
	margin-bottom: 4px;
	font-style: italic;
	font-weight: 500;
	overflow-wrap: break-word;
}

.hero-highlight-text {
	font-family: var(--font-primary);
	font-size: clamp(0.98rem, 2vw, 1.12rem);
	font-weight: 700;
	color: var(--primary-blue);
	line-height: 1.45;
	margin-bottom: 24px;
	overflow-wrap: break-word;
}

.hero-cta-wrapper {
	display: flex;
}

.hero-btn {
	padding: 13px 36px;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.8px;
	border-radius: 6px;
}

/* ==========================================================================
   3. Election Ribbon / Ticker Section (Matched 100% to Mockup 3)
   ========================================================================== */
.ticker-section {
	background-color: var(--primary-blue);
	color: #ffffff;
	padding: 13px 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	width: 100%;
 margin: -26px 0 0 0 !important;

}



.ticker-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	text-align: center;
	font-family: var(--font-heading);
	font-size: 14.5px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
}

.ticker-left {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	flex-wrap: nowrap;
}

.ticker-icon {
	display: inline-flex;
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.ticker-icon svg {
	width: 100%;
	height: 100%;
}

.ticker-divider {
	color: rgba(255, 255, 255, 0.45);
	font-size: 16px;
	font-weight: 300;
}

.ticker-right {
	display: inline-flex;
	align-items: center;
}

.ticker-slogan {
	letter-spacing: 0.5px;
}

/* ==========================================================================
   4. About Section (Matched 100% to Mockup 5)
   ========================================================================== */
.about-section {
	padding: 40px 0 65px 0;
	background-color: var(--bg-white);
	overflow: hidden;
	width: 100%;
}

.about-grid {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: 64px;
	align-items: center;
}

.about-left-col {
	display: flex;
	flex-direction: column;
}

.about-main-title {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 900;
	line-height: 1.15;
	color: var(--navy-title);
	letter-spacing: -0.5px;
	margin-bottom: 0;
	max-width: 520px;
}

.heading-blue-bar {
	width: 52px;
	height: 3.5px;
	background-color: var(--primary-blue);
	margin: 14px 0 24px 0;
	border-radius: 2px;
}

.about-bio-paragraphs {
	margin-bottom: 22px;
}

.about-bio-paragraphs p {
	font-size: 14.5px;
	line-height: 1.7;
	color: var(--text-body);
	margin-bottom: 16px;
	overflow-wrap: break-word;
}

.about-callout-quote {
	border-left: 3.5px solid var(--primary-blue);
	padding-left: 14px;
	margin-top: 10px;
	max-width: 560px;
}

.about-callout-quote span {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.4px;
	text-transform: uppercase;
	color: var(--primary-blue);
	line-height: 1.5;
	display: block;
	overflow-wrap: break-word;
}

.about-features-container {
	background-color: var(--bg-light);
	border-radius: 12px;
	padding: 38px 28px;
	border: 1px solid #e5edf5;
	box-sizing: border-box;
	width: 100%;
}

.features-grid-2x2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 36px 20px;
	width: 100%;
}

.feature-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.feature-icon-badge {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
	flex-shrink: 0;
}

.feature-badge-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.feature-icon-badge svg {
	width: 24px;
	height: 24px;
	color: var(--primary-blue);
}

.feature-title {
	font-family: var(--font-heading);
	font-size: 12.5px;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--navy-title);
	margin-bottom: 8px;
	line-height: 1.35;
	overflow-wrap: break-word;
}

.feature-desc {
	font-size: 11.5px;
	line-height: 1.5;
	color: var(--text-muted);
	max-width: 190px;
	margin: 0 auto;
	overflow-wrap: break-word;
}

/* ==========================================================================
   5. Priorities Section
   ========================================================================== */
.priorities-section {
	position: relative;
	background-color: var(--primary-blue);
	color: #ffffff;
	padding: clamp(75px, 8vw, 105px) 0;
	overflow: hidden;
	width: 100%;
}

.priorities-bg-overlay {
	position: absolute;
	inset: 0;
	background-image: url('../images/priorities-bg.jpg');
	background-size: cover;
	background-position: right center;
	background-repeat: no-repeat;
	opacity: 0.18;
	mix-blend-mode: screen;
	pointer-events: none;
	z-index: 1;
}

.priorities-container {
	position: relative;
	z-index: 2;
}

.section-header-center {
	text-align: center;
	max-width: 700px;
	margin: 0 auto clamp(36px, 5vw, 55px) auto;
}

.priorities-eyebrow {
	font-family: var(--font-heading);
	font-size: 0.88rem;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ffffff;
	opacity: 0.9;
	margin-bottom: 8px;
}

.priorities-title {
	font-family: var(--font-heading);
	font-size: clamp(1.8rem, 4.2vw, 2.5rem);
	font-weight: 900;
	text-transform: uppercase;
	color: #ffffff;
	letter-spacing: 0.5px;
	line-height: 1.15;
	overflow-wrap: break-word;
	word-break: break-word;
}

.priorities-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: 14px;
	max-width: 270px;
	margin-left: auto;
	margin-right: auto;
}

.prio-line {
	flex: 1;
	height: 1.5px;
	background-color: rgba(255, 255, 255, 0.85);
}

.prio-star-icon {
	color: var(--accent-red);
	width: 14px;
	height: 14px;
	display: inline-flex;
	flex-shrink: 0;
}

.prio-star-icon svg {
	width: 100%;
	height: 100%;
}

.priorities-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(20px, 3.5vw, 45px);
	width: 100%;
}

.priority-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 15px 10px;
	transition: var(--transition-smooth);
}

.priority-card:hover {
	transform: translateY(-4px);
}

.priority-icon-circle {
	width: 76px;
	height: 76px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.priority-badge-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.priority-icon-circle svg {
	width: 34px;
	height: 34px;
	color: var(--primary-blue);
}

.priority-card-title {
	font-family: var(--font-heading);
	font-size: clamp(1rem, 2vw, 1.15rem);
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 12px;
	line-height: 1.25;
	max-width: 240px;
	overflow-wrap: break-word;
}

.priority-card-desc {
	font-size: 0.88rem;
	line-height: 1.6;
	color: #ffffff;
	opacity: 0.95;
	max-width: 320px;
	overflow-wrap: break-word;
}

/* ==========================================================================
   6. Contact & Get Involved Section
   ========================================================================== */
.contact-section {
	padding: clamp(50px, 7vw, 90px) 0;
	background-color: var(--bg-white);
	overflow: hidden;
	width: 100%;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1.2fr 1px 1fr;
	gap: clamp(24px, 4vw, 60px);
	align-items: flex-start;
	width: 100%;
}

.contact-divider-col {
	background-color: var(--border-color);
	height: 100%;
	min-height: 380px;
}

.contact-heading {
	margin-bottom: 24px;
}

.zarak-contact-form {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.form-feedback {
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 500;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.form-feedback.success {
	background-color: #dcfce7;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

.form-feedback.error {
	background-color: #fee2e2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	width: 100%;
}

.form-label {
	font-family: var(--font-primary);
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text-dark);
}

.form-control {
	width: 100%;
	box-sizing: border-box;
	padding: 11px 14px;
	border: 1px solid #cbd5e1;
	border-radius: 6px;
	background-color: #ffffff;
	color: var(--text-dark);
	font-size: 0.95rem;
	transition: var(--transition-smooth);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-blue);
	box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.15);
}

.form-textarea {
	resize: vertical;
	min-height: 100px;
}

.checkboxes-group {
	margin-top: 4px;
}

.checkbox-box-container {
	background-color: #f1f5f9;
	border-radius: 6px;
	padding: 12px 16px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-sizing: border-box;
	width: 100%;
}

.custom-checkbox {
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	user-select: none;
	gap: 10px;
}

.custom-checkbox input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	height: 18px;
	width: 18px;
	background-color: #ffffff;
	border: 1px solid #94a3b8;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition-smooth);
	flex-shrink: 0;
}

.custom-checkbox input:checked ~ .checkmark {
	background-color: var(--primary-blue);
	border-color: var(--primary-blue);
}

.checkmark::after {
	content: "";
	display: none;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: white;
}

.custom-checkbox input:checked ~ .checkmark::after {
	display: block;
}

.custom-checkbox .label-text {
	font-size: 0.85rem;
	color: #475569;
	font-weight: 500;
}

.submit-btn {
	width: 100%;
	max-width: 320px;
	border-radius: 6px;
	padding: 12px 24px;
}

.btn-spinner {
	display: inline-block;
	width: 16px;
	height: 16px;
	border: 2px solid rgba(255,255,255,0.3);
	border-radius: 50%;
	border-top-color: #fff;
	animation: spin 0.8s ease-in-out infinite;
	margin-left: 8px;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Contact Info Column */
.contact-info-col {
	padding-top: 10px;
	width: 100%;
}

.contact-info-title {
	font-family: var(--font-heading);
	font-size: clamp(1.1rem, 2.5vw, 1.25rem);
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	color: var(--navy-title);
	margin-bottom: 24px;
	overflow-wrap: break-word;
}

.contact-info-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-bottom: 28px;
	width: 100%;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
}

.contact-item-icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1.5px solid var(--primary-blue);
	color: var(--primary-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.contact-item-icon svg {
	width: 18px;
	height: 18px;
}

.contact-item-text,
.contact-item-link {
	font-size: 0.92rem;
	color: var(--text-dark);
	font-weight: 500;
	overflow-wrap: break-word;
	word-break: break-word;
}

.contact-item-link:hover {
	color: var(--primary-blue);
	text-decoration: underline;
}

/* ==========================================================================
   7. Footer Section (Matched 100% to Mockup 3)
   ========================================================================== */
.site-footer {
	background-color: var(--primary-blue);
	color: #ffffff;
	overflow: hidden;
	width: 100%;
}

.footer-main {
	padding: clamp(45px, 6vw, 65px) 24px clamp(35px, 5vw, 50px) 24px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: clamp(24px, 4vw, 50px);
	width: 100%;
}

.footer-logo-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	margin-bottom: 16px;
}

.footer-custom-logo {
	max-width: 250px;
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
}

.footer-logo-title {
	font-family: var(--font-heading);
	display: flex;
	flex-direction: column;
	line-height: 0.95;
	font-size: clamp(1.25rem, 3vw, 1.55rem);
	font-weight: 900;
	color: #ffffff;
	letter-spacing: -0.3px;
	text-transform: uppercase;
}

.footer-logo-word-1, .footer-logo-word-2 {
	display: block;
}

.footer-logo-sub {
	font-family: var(--font-primary);
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 0.62rem;
	font-weight: 800;
	letter-spacing: 0.8px;
	color: #ffffff;
	opacity: 0.95;
	text-transform: uppercase;
	margin-top: 6px;
}

.footer-sub-star {
	font-size: 6px;
	color: #ffffff;
}

.footer-heading {
	font-family: var(--font-heading);
	font-size: 0.88rem;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: 4px;
}

.footer-heading-line {
	width: 32px;
	height: 2px;
	background-color: rgba(255, 255, 255, 0.5);
	margin-bottom: 16px;
	border-radius: 1px;
}

.footer-links-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.footer-links-list a {
	color: #ffffff;
	font-size: 0.9rem;
	opacity: 0.9;
	transition: var(--transition-smooth);
}

.footer-links-list a:hover {
	opacity: 1;
	padding-left: 4px;
}

.footer-contact-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.footer-contact-list li {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 0.88rem;
	color: #ffffff;
	overflow-wrap: break-word;
	word-break: break-word;
}

.footer-contact-list a {
	color: #ffffff;
	opacity: 0.95;
}

.footer-contact-list a:hover {
	opacity: 1;
	text-decoration: underline;
}

.footer-icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	border: 1.5px solid rgba(255, 255, 255, 0.6);
	color: #ffffff;
	flex-shrink: 0;
}

.footer-icon-circle svg {
	width: 14px;
	height: 14px;
}

/* White Bottom Bar matching Mockup 3 */
.footer-bottom-bar {
	background-color: #ffffff;
	padding: 14px 20px;
	text-align: center;
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-disclaimer-text {
	font-size: 0.80rem;
	font-weight: 600;
	color: var(--primary-blue);
	letter-spacing: 0.3px;
	text-transform: none;
	line-height: 1.4;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 24px;
	right: 20px;
	width: 42px;
	height: 42px;
	background-color: var(--primary-blue);
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-smooth);
	z-index: 999;
}

.back-to-top.show {
	opacity: 1;
	visibility: visible;
}

.back-to-top:hover {
	background-color: var(--primary-blue-dark);
	transform: translateY(-3px);
	color: #ffffff;
}

.back-to-top svg {
	width: 20px;
	height: 20px;
}

/* ==========================================================================
   8. Responsive Media Queries (Tablet & Mobile Optimized)
   ========================================================================== */

/* --- Tablet / Medium Devices (max-width: 1024px) --- */
@media (max-width: 1024px) {
	.hero-section {
		padding: 50px 0;
	}

	.about-grid {
		grid-template-columns: 1fr 1fr;
		gap: 32px;
	}

	.contact-grid {
		grid-template-columns: 1.1fr 1px 0.9fr;
		gap: 32px;
	}

	.priorities-grid {
		gap: 20px;
	}
}

/* --- Mobile / Small Tablet (max-width: 768px) --- */
@media (max-width: 768px) {
	.main-navigation {
		display: none;
	}

	.mobile-menu-toggle {
		display: flex;
	}

	/* Clean Mobile Header */
	.header-container {
		min-height: 0;
		padding: 4px 16px;
	}

	.site-branding {
		max-width: calc(100% - 50px);
	}

	/* Mobile Hero: Dedicated Portrait Layout with ZERO Face Obstruction */
	.hero-section {
		background-image: none !important;
		background: #ffffff !important;
		min-height: auto;
		padding: 24px 0 36px 0;
	}

	.hero-overlay {
		display: none !important;
	}

	.hero-content {
		max-width: 100%;
		text-align: center;
	}

	.hero-eyebrow {
		font-size: 0.9rem;
		margin-bottom: 8px;
	}

	.hero-title {
		font-size: clamp(1.75rem, 6.5vw, 2.3rem);
		margin-bottom: 16px;
	}

	/* Display Dedicated Portrait Photo */
	.hero-mobile-photo-box {
		display: block;
		width: 100%;
		max-width: 320px;
		margin: 12px auto 20px auto;
		border-radius: 12px;
		overflow: hidden;
		box-shadow: 0 10px 25px rgba(0, 86, 179, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
		border: 4px solid #ffffff;
		background-color: #f1f5f9;
	}

	.hero-mobile-portrait-img {
		width: 100%;
		height: auto;
		display: block;
		object-fit: cover;
		object-position: top center;
	}

	.hero-star-divider {
		justify-content: center;
		margin: 14px auto;
		max-width: 200px;
	}

	.hero-quotes {
		text-align: center;
		margin-bottom: 16px;
	}

	.hero-quote-line {
		font-size: 0.92rem;
	}

	.hero-highlight-text {
		text-align: center;
		font-size: 0.98rem;
		margin-bottom: 22px;
	}

	.hero-cta-wrapper {
		justify-content: center;
		width: 100%;
	}

	.hero-btn {
		width: 100%;
		max-width: 300px;
		padding: 13px 24px;
	}

	/* Ticker on Mobile */
	.ticker-content {
		flex-direction: column;
		gap: 6px;
	}

	.ticker-divider {
		display: none;
	}

	/* About Section */
	.about-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.features-grid-2x2 {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.feature-card {
		padding: 6px 0;
	}

	/* Priorities Section */
	.priorities-grid {
		grid-template-columns: 1fr;
		gap: 24px;
		max-width: 440px;
		margin: 0 auto;
	}

	/* Contact Section */
	.contact-grid {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.contact-divider-col {
		display: none;
	}

	.contact-info-col {
		padding-top: 10px;
		border-top: 1px solid var(--border-color);
		padding-top: 28px;
	}

	.submit-btn {
		max-width: 100%;
	}

	/* Footer on Mobile */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.footer-col-brand {
		grid-column: span 1;
	}
}

/* --- Mobile Extra Small Screens (max-width: 400px) --- */
@media (max-width: 400px) {
	.zarak-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.logo-name {
		font-size: 1.15rem;
	}

	.hero-title {
		font-size: 1.65rem;
	}

	.hero-mobile-photo-box {
		max-width: 270px;
	}
}
