/*
Theme Name: Cutting Edge DE
Theme URI: https://cuttingedgede.com
Description: A custom single-page WordPress theme for Cutting Edge Irrigation and Landscape with Tailwind CSS, ACF Pro, and Gravity Forms.
Version: 1.0.0
Author: Cutting Edge DE
Author URI: https://cuttingedgede.com
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cuttingedgede
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ==========================================
   OVERLAY & BACKGROUND EFFECTS
   ========================================== */

.overlay-base {
	background-color: #064e3b;
	opacity: 0.7;
	mix-blend-mode: multiply;
}

.overlay-tint {
	background-color: #1e3a8a;
	opacity: 0.6;
	mix-blend-mode: hard-light;
}

.overlay-dark {
	background-color: #064e3b;
	opacity: 0.92;
}

.shape-circle {
	position: fixed;
	border-radius: 50%;
	background-color: #3b82f6;
	opacity: 0.15;
}

.shape-circle.shape-green {
	background-color: #10B981;
	opacity: 0.10;
}

.hero-strip {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 280px;
	z-index: 0;
	background-image: url("https://page.gensparksite.com/slides_images/e3b2873af366f1f88d681b2096bc8cdf.webp");
	background-size: cover;
	background-position: center bottom;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(6, 78, 59, 0.85);
	z-index: 1;
}

.image-overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.25);
	z-index: 10;
}

/* ==========================================
   LOGO & HEADER STYLES
   ========================================== */

.logo-container {
	background-color: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(12px);
	padding: 8px 24px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.header-logo {
	height: 48px;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.chip {
	background-color: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================
   CARD COMPONENTS
   ========================================== */

.service-card {
	background: white;
	border-radius: 1rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	z-index: 10;
	border: 1px solid #E5E7EB;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 1.25rem;
	height: 100%;
	overflow: hidden;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	border-color: #3B82F6;
}

.service-card::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #10B981;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	opacity: 1;
}

.service-card:hover::after {
	background-color: #3B82F6;
}

.card-top-accent {
	height: 6px;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #10B981, #2563EB);
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
}

/* ==========================================
   ICON STYLES
   ========================================== */

.icon-circle {
	width: 70px;
	height: 70px;
	background-color: #ECFDF5;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #059669;
	font-size: 1.75rem;
	margin-bottom: 1.5rem;
	border: 1px solid #D1FAE5;
}

.icon-circle i {
	background: -webkit-linear-gradient(#10B981, #2563EB);
	background: linear-gradient(#10B981, #2563EB);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.icon-box {
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background-color: #ECFDF5;
	color: #059669;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.service-card:hover .icon-box {
	background-color: #EFF6FF;
	color: #2563EB;
}

.icon-wrapper {
	width: 56px;
	height: 56px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.check-icon {
	color: #059669;
	font-size: 1.1rem;
	margin-right: 0.75rem;
	flex-shrink: 0;
}

.contact-item-icon {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: rgba(255, 255, 255, 0.15);
	color: #ffffff;
	border-radius: 12px;
	font-size: 1.25rem;
}

/* ==========================================
   LIST STYLES
   ========================================== */

.custom-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.custom-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.75rem;
	font-size: 0.9rem;
	color: #4B5563;
	line-height: 1.4;
}

.custom-list li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	color: #10B981;
	font-size: 0.8rem;
}

.check-list li {
	position: relative;
	padding-left: 1.5rem;
	margin-bottom: 0.6rem;
	color: #4B5563;
	font-size: 0.95rem;
	line-height: 1.4;
}

.check-list li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 3px;
	font-size: 0.8rem;
}

.checklist-item {
	display: flex;
	align-items: center;
	padding: 0.75rem 1rem;
	background-color: #F9FAFB;
	border-radius: 0.5rem;
	border-left: 4px solid #10B981;
	transition: transform 0.2s ease;
	margin-bottom: 0.75rem;
}

.checklist-item:hover {
	transform: translateX(3px);
	background-color: #ECFDF5;
}

.checklist-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-bottom: 2.5rem;
}

/* ==========================================
   SIDEBAR & BACKGROUND STYLES
   ========================================== */

.sidebar-bg {
	background-color: #111827;
	background-image: url("https://page.gensparksite.com/slides_images/0e44f26fe87906486e62d9c2eaf4a502.webp");
	background-size: cover;
	background-position: center;
	position: relative;
}

.sidebar-overlay {
	background: linear-gradient(to bottom, rgba(16, 55, 92, 0.92), rgba(6, 78, 59, 0.92));
	position: absolute;
	inset: 0;
}

.trust-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 0;
	border-bottom: 1px solid rgba(255,255,255,0.15);
}

.trust-item:last-child {
	border-bottom: none;
}

.image-side {
	position: relative;
	height: 100%;
	overflow: hidden;
}

/* ==========================================
   GRID LAYOUTS
   ========================================== */

.content-wrapper {
	position: relative;
	z-index: 10;
	padding: 2rem 4rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 1.25rem;
	flex: 1;
	margin-top: 1rem;
}

.quadrant-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	height: 100%;
	width: 100%;
}

.quadrant {
	padding: 2.5rem 3rem;
	display: flex;
	flex-direction: column;
	transition: all 0.3s ease;
	position: relative;
}

.quadrant:nth-child(1) { border-right: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB; }
.quadrant:nth-child(2) { border-bottom: 1px solid #E5E7EB; }
.quadrant:nth-child(3) { border-right: 1px solid #E5E7EB; }

.quadrant:hover {
	background-color: #ffffff;
	box-shadow: 0 0 30px rgba(0,0,0,0.05);
	z-index: 10;
}

/* Mobile responsive styles for quadrants */
@media (max-width: 768px) {
	.quadrant-grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}

	.quadrant {
		padding: 1.5rem 1.25rem;
		border: none !important;
		border-bottom: 1px solid #E5E7EB !important;
	}

	.quadrant:last-child {
		border-bottom: none !important;
	}

	.center-badge {
		position: relative;
		top: auto;
		left: auto;
		transform: none;
		margin: 1.5rem auto;
		display: block;
		width: fit-content;
		padding: 0.75rem 1.5rem;
		font-size: 0.875rem;
	}

	.season-header {
		gap: 0.75rem;
	}

	.icon-wrapper {
		width: 48px;
		height: 48px;
		font-size: 1.25rem;
	}

	.check-list li {
		font-size: 0.875rem;
		margin-bottom: 0.5rem;
	}
}

/* ==========================================
   TIMELINE & PROCESS STYLES
   ========================================== */

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 12rem;
	position: relative;
}

.step-node,
.process-step-number {
	width: 80px;
	height: 80px;
	background-color: white;
	border: 4px solid #10B981;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 800;
	color: #047857;
	z-index: 10;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	transition: all 0.3s ease;
	margin-bottom: 1.5rem;
}

.step-item:hover .step-node,
.process-step:hover .process-step-number {
	background-color: #10B981;
	color: white;
	transform: scale(1.1);
}

.process-step h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1F2937;
	margin-bottom: 0.5rem;
	transition: color 0.3s ease;
}

.process-step:hover h3 {
	color: #059669;
}

.process-step p {
	font-size: 0.875rem;
	color: #6B7280;
	line-height: 1.375;
	padding: 0 0.5rem;
}

.timeline-line {
	position: absolute;
	top: 40px;
	left: 5%;
	right: 5%;
	height: 4px;
	background-color: #E5E7EB;
	z-index: 0;
}

.timeline-line-progress {
	position: absolute;
	top: 40px;
	left: 5%;
	width: 0%;
	height: 4px;
	background-color: #10B981;
	z-index: 1;
}

/* ==========================================
   SEASONAL THEMES
   ========================================== */

.season-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.spring-theme .icon-wrapper { background-color: #ECFDF5; color: #10B981; }
.spring-theme h3 { color: #065F46; }
.spring-theme .check-list li::before { color: #10B981; }

.summer-theme .icon-wrapper { background-color: #FEF3C7; color: #F59E0B; }
.summer-theme h3 { color: #92400E; }
.summer-theme .check-list li::before { color: #F59E0B; }

.fall-theme .icon-wrapper { background-color: #FFEDD5; color: #EA580C; }
.fall-theme h3 { color: #9A3412; }
.fall-theme .check-list li::before { color: #EA580C; }

.winter-theme .icon-wrapper { background-color: #EFF6FF; color: #3B82F6; }
.winter-theme h3 { color: #1E40AF; }
.winter-theme .check-list li::before { color: #3B82F6; }

/* ==========================================
   BUTTONS & CTA STYLES
   ========================================== */

.btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	background-color: #10B981;
	color: white;
	font-weight: 700;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-primary:hover {
	background-color: #059669;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	background-color: #3B82F6;
	color: white;
	font-weight: 700;
	border-radius: 0.5rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	text-decoration: none;
}

.btn-secondary:hover {
	background-color: #2563EB;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.schedule-badge {
	background-color: #064E3B;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 9999px;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	font-weight: 600;
	font-size: 0.875rem;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cta-pattern {
	background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.15) 1px, transparent 0);
	background-size: 20px 20px;
}

.center-badge {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #111827;
	color: white;
	padding: 1rem 2rem;
	border-radius: 9999px;
	z-index: 20;
	box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	text-align: center;
	border: 4px solid #fff;
}

/* ==========================================
   FORM STYLES
   ========================================== */

.form-input {
	background-color: #F9FAFB;
	border: 1px solid #E5E7EB;
	transition: all 0.2s ease;
}

.form-input:focus {
	border-color: #10B981;
	background-color: #ffffff;
	outline: none;
	box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.quote-block {
	border-left: 4px solid #10B981;
	padding-left: 1.5rem;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	font-style: italic;
	color: #374151;
	background-color: #F9FAFB;
	border-radius: 0 0.5rem 0.5rem 0;
}

.quote-block cite {
	font-style: normal;
	font-weight: 600;
	color: #059669;
	display: block;
	margin-top: 0.5rem;
}

.section-container {
	max-width: 80rem;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

.text-brand-green {
	color: #10B981;
}

.bg-brand-green {
	background-color: #10B981;
}

.hover-bg-brand-green:hover {
	background-color: #059669;
}

::-webkit-scrollbar {
	width: 0px;
	background: transparent;
}

@media (min-width: 640px) {
	.section-container {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.section-container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}
