/* ==========================================================
   Zagwear / GMI Premium Toolbox – Page Styles
   ========================================================== */

/* ----------------------------------------------------------
   1. TYPOGRAPHY UTILITIES
   ---------------------------------------------------------- */
.zpt-page,
.zpt-page * {
	box-sizing: border-box;
	font-family: 'Open Sans', sans-serif;
}

/* Original VPB / Jupiter custom classes kept for compatibility */
.homehead1 {
	color: #ffffff;
	font-size: 55px;
	font-weight: 900 !important;
	letter-spacing: -0.04em;
	line-height: 1.1;
	display: block;
	text-align: center;
}

.homehead2 {
	color: #ffffff;
	font-size: 46px;
	font-weight: 200 !important;
}

.home_hero_icons {
	color: #acacac;
	font-size: 14px;
	margin-top: 0;
	line-height: 18px;
	text-align: center;
}

.desc {
	color: #ffffff;
	font-size: 18px;
	text-align: center;
}

.desc2a {
	color: #0054a5;
	font-size: 40px;
	line-height: 50px;
	font-weight: 100 !important;
	text-align: center;
}

.desc2b {
	color: #acacac;
	font-size: 18px;
	line-height: 28px;
	font-weight: 100 !important;
	text-align: center;
}

.tellus {
	color: #0999f1;
	font-size: 36px;
	letter-spacing: -0.04em;
	font-weight: 400 !important;
	text-align: center;
}

.deuce {
	color: #125eab;
	font-size: 14px;
	font-weight: 300;
}

.start {
	color: #ffffff;
	font-size: 24px;
}

.tag {
	letter-spacing: -0.03em;
	font-size: 16px;
	font-weight: 600;
	color: #8c8e91;
	text-align: center;
}

/* ----------------------------------------------------------
   2. SECTION WRAPPERS
   ---------------------------------------------------------- */

/* Shared: full-width sections use a blue gradient overlay */
.zpt-hero-section,
.zpt-form-section {
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center center;
	background-attachment: scroll;
}

.zpt-hero-section::before,
.zpt-form-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(45deg, #088dff 0%, #0054a5 100%);
	opacity: 0.7;
	z-index: 0;
}

.zpt-hero-section > *,
.zpt-form-section > * {
	position: relative;
	z-index: 1;
}

/* ----------------------------------------------------------
   3. HERO SECTION
   ---------------------------------------------------------- */
.zpt-hero-section {
	min-height: 600px;
	padding: 120px 20px 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.zpt-hero-inner {
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}

.zpt-hero-inner .homehead1 {
	margin-bottom: 20px;
}

.zpt-hero-inner .desc {
	margin-bottom: 0;
}

/* CTA Buttons */
.zpt-btn-wrap {
	margin-top: 50px;
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

.zpt-btn {
	display: inline-block;
	padding: 10px 30px;
	border: 2px solid #ffffff;
	color: #ffffff;
	background: transparent;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	transition: background 0.25s, border-color 0.25s, color 0.25s;
	font-family: 'Open Sans', sans-serif;
}

.zpt-btn:hover {
	background: #6fc833;
	border-color: #6fc833;
	color: #ffffff;
	text-decoration: none;
}

/* ----------------------------------------------------------
   4. FEATURES SECTION
   ---------------------------------------------------------- */
.zpt-features-section {
	padding: 50px 20px 80px;
	background: #ffffff;
}

.zpt-features-heading {
	text-align: center;
	margin-bottom: 50px;
}

.zpt-features-grid {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 24px;
	max-width: 1100px;
	margin: 0 auto;
}

.zpt-feature-item {
	flex: 0 1 160px;
	text-align: center;
	padding: 0 10px;
}

.zpt-feature-item img {
	display: block;
	margin: 0 auto 14px;
	max-width: 70px;
	height: auto;
}

/* ----------------------------------------------------------
   5. FORM / START-A-PROJECT SECTION
   ---------------------------------------------------------- */
.zpt-form-section {
	padding: 110px 20px;
	min-height: 500px;
}

.zpt-form-outer {
	max-width: 600px;
	margin: 0 auto;
}

.zpt-form-box {
	background: rgba(255, 255, 255, 0.96);
	border-radius: 15px;
	padding: 40px 50px;
}

.zpt-form-box .tellus {
	margin-bottom: 20px;
}

.zpt-form-box .desc2b {
	margin-bottom: 30px;
}

/* Ninja Forms / CF7 inside the box */
.zpt-form-box .nf-form-wrap,
.zpt-form-box .wpcf7 {
	margin-top: 10px;
}

/* Match original form input styles */
.zpt-form-box input[type="text"],
.zpt-form-box input[type="email"],
.zpt-form-box input[type="number"],
.zpt-form-box input[type="tel"],
.zpt-form-box select,
.zpt-form-box textarea {
	font-size: 16px;
	color: #088dff;
	font-family: 'Open Sans', sans-serif;
	width: 100%;
	border: 1px solid #ddd;
	padding: 8px 12px;
	border-radius: 4px;
	margin-bottom: 10px;
}

.zpt-form-box input[type="submit"],
.zpt-form-box button[type="submit"],
.zpt-form-box .nf-field-element input[type="button"] {
	display: block !important;
	margin: 10px auto !important;
	min-width: 150px;
	height: 40px !important;
	background: #0999f1;
	color: #fff;
	border: none;
	border-radius: 4px;
	font-size: 16px;
	cursor: pointer;
	transition: background 0.25s;
}

.zpt-form-box input[type="submit"]:hover,
.zpt-form-box button[type="submit"]:hover {
	background: #0054a5;
}

/* ----------------------------------------------------------
   6. ARCHIVE / PREVIOUS PROJECTS SECTION
   ---------------------------------------------------------- */
.zpt-archive-section {
	background: #3d4045;
	padding: 65px 20px 60px;
	text-align: center;
}

.zpt-archive-section img {
	display: block;
	margin: 0 auto 16px;
	max-width: 139px;
	height: auto;
}

.zpt-archive-section .tag {
	color: #8c8e91;
	margin-bottom: 24px;
}

.zpt-archive-section hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(16, 97, 168, 0), rgba(16, 97, 168, 0.75), rgba(16, 97, 168, 0));
	max-width: 80%;
	margin: 0 auto;
}

/* ----------------------------------------------------------
   7. FOOTER
   ---------------------------------------------------------- */
.zpt-footer {
	background: #3d4045;
	padding: 20px 40px;
}

.zpt-footer-inner {
	max-width: 1140px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	border-top: 1px solid #55575c;
	padding-top: 20px;
}

.zpt-footer-left {
	color: #aaa;
	font-size: 13px;
}

.zpt-footer-right {
	color: #aaa;
	font-size: 13px;
}

.zpt-footer-right a {
	color: #ccc;
	text-decoration: none;
}

.zpt-footer-right a:hover {
	color: #fff;
	text-decoration: underline;
}

/* ----------------------------------------------------------
   8. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 768px) {
	.homehead1 {
		font-size: 36px;
	}

	.desc2a {
		font-size: 28px;
		line-height: 36px;
	}

	.zpt-form-box {
		padding: 24px 20px;
	}

	.zpt-features-grid {
		gap: 16px;
	}

	.zpt-feature-item {
		flex: 0 1 120px;
	}
}
