/**
 * CEGER Theme Custom Styles
 *
 * Supplemental styles beyond what theme.json provides.
 * Keep this minimal — prefer theme.json for all global styles.
 *
 * @package CEGER
 * @since 1.0.0
 */

/* ============================================
   List style: no bullets
   ============================================ */
.is-style-no-bullets {
	list-style: none;
	padding-left: 0;
}

.is-style-no-bullets li {
	padding: 0.25em 0;
}

/* ============================================
   Card hover effects
   ============================================ */
.ceger-card {
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ceger-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ============================================
   Service area badge styles
   ============================================ */
.ceger-badge {
	display: inline-block;
	padding: 0.25em 0.75em;
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* ============================================
   Header: remove default block margins for balanced vertical centering
   ============================================ */
.ceger-header-logo {
	margin: 0;
}

/* Reduce gap between logo and site title */
.ceger-header-logo + .wp-block-site-title {
	margin-left: -0.5rem;
}

/* Mobile nav: 3-line hamburger icon */
.wp-block-navigation__responsive-container-open svg {
	display: none !important;
}

.wp-block-navigation__responsive-container-open {
	width: 28px;
	height: 20px;
	background:
		linear-gradient(to bottom, currentColor, currentColor) top center / 100% 2px no-repeat,
		linear-gradient(to bottom, currentColor, currentColor) center center / 100% 2px no-repeat,
		linear-gradient(to bottom, currentColor, currentColor) bottom center / 100% 2px no-repeat;
}

/* Remove gap between header/footer and main content */
.wp-site-blocks > * {
	margin-block-start: 0 !important;
}

/* ============================================
   Navigation: Services dropdown submenu
   ============================================ */
.wp-block-navigation-submenu {
	position: relative;
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-container {
	background: #ffffff !important;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
	padding: 0.5rem 0;
	min-width: 260px;
	z-index: 100;
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	padding: 0.5rem 1.25rem;
	font-size: 0.875rem;
	color: #1a1a1a !important;
	display: block;
	white-space: nowrap;
}

.wp-block-navigation-submenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
	background: var(--wp--preset--color--ceger-light-yellow, #f5f5b7);
	color: var(--wp--preset--color--ceger-dark-green, #006838) !important;
}

/* Keep overlay colours in mobile menu */
.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
	background: transparent !important;
	border: none;
	box-shadow: none;
	padding-left: 1rem;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	color: inherit !important;
}

/* ============================================
   Sticky header shadow on scroll
   ============================================ */
.site-header-shadow {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Footer list links
   ============================================ */
.wp-block-group.has-ceger-dark-green-background-color a {
	color: #ffffff;
	text-decoration: none;
}

.wp-block-group.has-ceger-dark-green-background-color a:hover {
	color: var(--wp--preset--color--ceger-medium-green);
}

/* ============================================
   Responsive adjustments
   ============================================ */
@media (max-width: 768px) {
	.wp-block-columns {
		gap: var(--wp--preset--spacing--40);
	}
}

/* ============================================
   DESIGN CONCEPTS — Shared
   ============================================ */
.design-concept-page {
	overflow-x: hidden;
}

/* Override root padding for design pages */
body:has(.design-concept-page) .wp-site-blocks {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

body:has(.design-concept-page) .wp-site-blocks > main > .design-concept-page {
	max-width: none !important;
}

/* ============================================
   DESIGN 1: Bold & Organic
   ============================================ */

/* Hero */
.design1-hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #006838 0%, #39b54a 50%, #21b9a2 100%);
	overflow: hidden;
	text-align: center;
	padding: 2rem;
}

.design1-hero-title {
	font-size: clamp(3rem, 8vw, 7rem);
	font-weight: 800;
	line-height: 1.05;
	color: #ffffff;
	letter-spacing: -0.02em;
	margin-bottom: 0.5em;
	position: relative;
	z-index: 2;
}

.design1-hero-subtitle {
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	color: rgba(255, 255, 255, 0.9);
	max-width: 700px;
	margin: 0 auto 2rem;
	position: relative;
	z-index: 2;
}

.design1-hero .wp-block-buttons {
	position: relative;
	z-index: 2;
}

/* Floating organic blobs */
.design1-blob {
	position: absolute;
	opacity: 0.15;
	z-index: 1;
	animation: design1Float 8s ease-in-out infinite;
}

.design1-blob--1 {
	top: -5%;
	right: -5%;
	width: 500px;
	height: 500px;
	color: #21b9a2;
}

.design1-blob--2 {
	bottom: -10%;
	left: -8%;
	width: 600px;
	height: 600px;
	color: #d7df23;
	animation-delay: -3s;
	animation-duration: 10s;
}

.design1-blob--3 {
	top: 40%;
	left: 50%;
	width: 350px;
	height: 350px;
	color: #f5f5b7;
	animation-delay: -5s;
	animation-duration: 12s;
}

@keyframes design1Float {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	33% { transform: translateY(-20px) rotate(3deg); }
	66% { transform: translateY(15px) rotate(-2deg); }
}

/* Wave section divider */
.design1-wave {
	display: block;
	width: 100%;
	height: auto;
	margin-bottom: -2px;
}

.design1-wave--flip {
	transform: scaleY(-1);
	margin-top: -2px;
	margin-bottom: 0;
}

/* Impact stats */
.design1-stats {
	padding: 5rem 2rem;
	background: #ffffff;
}

.design1-stat {
	text-align: center;
	padding: 1.5rem 1rem;
}

.design1-stat-number {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: #006838;
	line-height: 1.1;
	display: block;
}

.design1-stat-label {
	font-size: 0.95rem;
	color: #555;
	margin-top: 0.5rem;
}

/* Glassmorphism cards */
.design1-services {
	padding: 5rem 2rem;
	background: linear-gradient(160deg, #006838 0%, #21b9a2 100%);
}

.design1-glass-card {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 2.5rem 2rem;
	color: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.design1-glass-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.design1-glass-card h3 {
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.design1-glass-card p {
	font-size: 0.95rem;
	opacity: 0.9;
	line-height: 1.6;
}

.design1-glass-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.25rem;
	font-size: 1.5rem;
}

/* Featured project */
.design1-featured {
	position: relative;
	min-height: 500px;
	display: flex;
	align-items: flex-end;
	padding: 4rem 2rem;
	background: linear-gradient(to top, rgba(0, 104, 56, 0.85) 0%, rgba(0, 104, 56, 0.3) 50%, transparent 100%),
		linear-gradient(135deg, #006838, #39b54a);
	background-size: cover;
}

.design1-featured-content {
	position: relative;
	z-index: 2;
	color: #ffffff;
	max-width: 700px;
}

.design1-featured-content h2 {
	font-size: clamp(2rem, 4vw, 3rem);
	font-weight: 800;
	margin-bottom: 1rem;
}

.design1-featured-content p {
	font-size: 1.1rem;
	line-height: 1.7;
	opacity: 0.9;
}

/* CTA */
.design1-cta {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, #21b9a2 0%, #39b54a 100%);
	text-align: center;
	color: #ffffff;
}

.design1-cta h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
}

/* ============================================
   DESIGN 2: Dark & Dramatic
   ============================================ */

/* Hero */
.design2-hero {
	min-height: 100vh;
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
	.design2-hero {
		grid-template-columns: 1fr;
	}
}

.design2-hero-text {
	background: #1a1a1a;
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 4rem 3rem;
}

.design2-hero-text h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: -0.03em;
	margin-bottom: 1.5rem;
}

.design2-hero-text p {
	font-size: 1.15rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.7);
	max-width: 500px;
	margin-bottom: 2rem;
}

.design2-hero-image {
	position: relative;
	background: linear-gradient(135deg, #006838, #21b9a2);
	min-height: 400px;
	overflow: hidden;
}

.design2-hero-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(33, 185, 162, 0.6) 0%, transparent 60%);
	z-index: 1;
}

/* About snippet */
.design2-about {
	background: #006838;
	padding: 6rem 3rem;
	color: #ffffff;
}

.design2-about-inner {
	max-width: 900px;
	margin: 0 auto;
}

.design2-teal-line {
	width: 60px;
	height: 3px;
	background: #21b9a2;
	margin-bottom: 2rem;
}

.design2-about p {
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	line-height: 1.7;
	font-weight: 300;
}

/* Glow effect */
.design2-glow {
	text-shadow:
		0 0 20px rgba(33, 185, 162, 0.5),
		0 0 40px rgba(33, 185, 162, 0.3);
}

/* Horizontal scroll services */
.design2-services {
	background: #1a1a1a;
	padding: 5rem 0 5rem 3rem;
}

.design2-services h2 {
	color: #ffffff;
	margin-bottom: 2rem;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	font-weight: 700;
}

.design2-scroll-container {
	display: flex;
	gap: 1.5rem;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	padding-bottom: 1.5rem;
	-webkit-overflow-scrolling: touch;
}

.design2-scroll-container::-webkit-scrollbar {
	height: 6px;
}

.design2-scroll-container::-webkit-scrollbar-track {
	background: #333;
	border-radius: 3px;
}

.design2-scroll-container::-webkit-scrollbar-thumb {
	background: #21b9a2;
	border-radius: 3px;
}

.design2-scroll-card {
	min-width: 300px;
	max-width: 340px;
	flex-shrink: 0;
	scroll-snap-align: start;
	background: #2a2a2a;
	border-radius: 12px;
	padding: 2rem;
	color: #ffffff;
	border-top: 3px solid #39b54a;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.design2-scroll-card:nth-child(2) { border-top-color: #21b9a2; }
.design2-scroll-card:nth-child(3) { border-top-color: #d7df23; }
.design2-scroll-card:nth-child(4) { border-top-color: #006838; }
.design2-scroll-card:nth-child(5) { border-top-color: #f5f5b7; }
.design2-scroll-card:nth-child(6) { border-top-color: #39b54a; }

.design2-scroll-card:last-child {
	margin-right: 3rem;
}

.design2-scroll-card:hover {
	box-shadow: 0 0 30px rgba(33, 185, 162, 0.3);
	transform: translateY(-4px);
}

.design2-scroll-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.design2-scroll-card p {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.65);
	line-height: 1.6;
}

/* Neon stats */
.design2-stats {
	background: #111111;
	padding: 5rem 2rem;
	text-align: center;
}

.design2-neon-stat {
	text-align: center;
	padding: 1.5rem;
}

.design2-neon-stat .stat-number {
	font-size: clamp(2.5rem, 5vw, 4rem);
	font-weight: 800;
	color: #d7df23;
	text-shadow:
		0 0 10px rgba(215, 223, 35, 0.4),
		0 0 30px rgba(215, 223, 35, 0.2);
	display: block;
	line-height: 1.1;
}

.design2-neon-stat .stat-label {
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
	margin-top: 0.5rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* CTA */
.design2-cta {
	padding: 5rem 2rem;
	background: linear-gradient(135deg, #21b9a2 0%, #006838 100%);
	text-align: center;
	color: #ffffff;
}

.design2-cta h2 {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	margin-bottom: 1.5rem;
}

/* ============================================
   DESIGN 3: Clean & Vibrant
   ============================================ */

/* Hero */
.design3-hero {
	position: relative;
	min-height: 85vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #006838, #39b54a);
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 4rem 2rem;
	overflow: hidden;
}

.design3-hero::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 40%;
	background: linear-gradient(to top, #ffffff 0%, transparent 100%);
	pointer-events: none;
	z-index: 1;
}

.design3-hero-content {
	position: relative;
	z-index: 2;
	color: #ffffff;
}

.design3-hero-content h1 {
	font-size: clamp(2.5rem, 6vw, 5rem);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1rem;
}

.design3-hero-content p {
	font-size: clamp(1rem, 2vw, 1.35rem);
	max-width: 650px;
	margin: 0 auto 2rem;
	opacity: 0.95;
}

/* Mission quote */
.design3-mission {
	padding: 5rem 2rem;
	background: #ffffff;
}

.design3-quote {
	border-left: 4px solid #21b9a2;
	padding-left: 2rem;
	font-size: clamp(1.2rem, 2.5vw, 1.75rem);
	font-style: italic;
	line-height: 1.7;
	color: #1a1a1a;
	max-width: 800px;
	margin: 0 auto;
}

/* Color-blocked service cards */
.design3-services {
	padding: 5rem 2rem;
	background: #fafafa;
}

.design3-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

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

@media (max-width: 600px) {
	.design3-services-grid {
		grid-template-columns: 1fr;
	}
}

.design3-color-card {
	border-radius: 16px;
	padding: 2.5rem 2rem;
	color: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 220px;
	display: flex;
	flex-direction: column;
}

.design3-color-card:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.design3-color-card:nth-child(1) { background: #006838; }
.design3-color-card:nth-child(2) { background: #21b9a2; }
.design3-color-card:nth-child(3) { background: #39b54a; }
.design3-color-card:nth-child(4) { background: #d7df23; color: #1a1a1a; }
.design3-color-card:nth-child(5) { background: #006838; }
.design3-color-card:nth-child(6) { background: #21b9a2; }

.design3-card-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.25);
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.design3-color-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
}

.design3-color-card p {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.9;
}

/* Staggered project grid */
.design3-projects {
	padding: 5rem 2rem;
	background: #ffffff;
}

.design3-stagger-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
	max-width: 1100px;
	margin: 0 auto;
}

@media (max-width: 700px) {
	.design3-stagger-grid {
		grid-template-columns: 1fr;
	}
}

.design3-project-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 300px;
	background: linear-gradient(135deg, #006838, #39b54a);
	display: flex;
	align-items: flex-end;
}

.design3-project-card:nth-child(odd) {
	min-height: 380px;
}

.design3-project-card:nth-child(even) {
	min-height: 280px;
	margin-top: 3rem;
}

.design3-project-overlay {
	position: relative;
	z-index: 2;
	padding: 2rem;
	color: #ffffff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
	width: 100%;
}

.design3-project-overlay h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 0.5rem;
}

.design3-project-overlay p {
	font-size: 0.9rem;
	opacity: 0.85;
}

/* Testimonial */
.design3-testimonial {
	padding: 5rem 2rem;
	background: #f5f5b7;
	text-align: center;
}

.design3-testimonial blockquote,
.design3-testimonial-quote {
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	font-style: italic;
	line-height: 1.7;
	color: #1a1a1a;
	max-width: 750px;
	margin: 0 auto 1.5rem;
}

.design3-testimonial cite,
.design3-testimonial-cite {
	font-style: normal;
	font-weight: 600;
	color: #006838;
	font-size: 1rem;
}

/* CTA */
.design3-cta {
	padding: 5rem 2rem;
	background: #ffffff;
	text-align: center;
}

.design3-cta h2 {
	font-size: clamp(1.75rem, 4vw, 3rem);
	font-weight: 800;
	color: #006838;
	margin-bottom: 1.5rem;
}

/* Fade-in-on-scroll animation */
.design3-fade-in {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}

.design3-fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* ============================================
   Design Concepts — Responsive polish
   ============================================ */
@media (max-width: 768px) {
	.design1-hero {
		min-height: 80vh;
		padding: 3rem 1.5rem;
	}

	.design1-blob {
		display: none;
	}

	.design1-glass-card {
		padding: 2rem 1.5rem;
	}

	.design2-hero-text {
		padding: 3rem 1.5rem;
	}

	.design2-services {
		padding-left: 1.5rem;
	}

	.design3-project-card:nth-child(even) {
		margin-top: 0;
	}
}

/* ============================================
   SELECTED DESIGN: Merged Concept
   ============================================ */

/* Hero — split screen with image backdrop */
.selected-hero {
	height: calc(100svh - var(--header-height, 80px));
	position: relative;
	overflow: hidden;
}

.selected-hero-text {
	background: rgba(26, 26, 26, 0.82);
	color: #ffffff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 3rem 3.5rem;
	position: relative;
	z-index: 2;
	width: 35%;
	height: 100%;
}

.selected-hero-image {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.selected-hero-text .selected-label {
	text-transform: uppercase;
	letter-spacing: 0.15em;
	font-size: 0.8rem;
	color: #21b9a2;
	font-weight: 600;
	margin-bottom: 1rem;
}

.selected-hero-text h1 {
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin-bottom: 1.25rem;
	color: #ffffff;
}

.selected-hero-text h1 .highlight {
	color: #21b9a2;
	text-shadow:
		0 0 20px rgba(33, 185, 162, 0.4),
		0 0 40px rgba(33, 185, 162, 0.2);
}

.selected-hero-text p {
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	max-width: 500px;
	margin-bottom: 1.5rem;
}

.selected-hero-text .selected-hero-buttons {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
}

.selected-hero-text .selected-hero-buttons a {
	display: inline-block;
	min-width: 160px;
	text-align: center;
	padding: 0.8rem 1.5rem;
	border-radius: 6px;
	font-weight: 700;
	text-decoration: none;
	font-size: 0.95rem;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.selected-hero-text .selected-hero-buttons a:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.selected-hero-text .btn-primary {
	background: #21b9a2;
	color: #ffffff;
	border: 2px solid #21b9a2;
}

.selected-hero-text .btn-primary:hover {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.selected-hero-text .btn-outline {
	background: transparent;
	color: #ffffff;
	border: 2px solid rgba(255, 255, 255, 0.6);
}

.selected-hero-text .btn-outline:hover {
	background: #21b9a2;
	color: #ffffff;
	border: 2px solid #21b9a2;
}

.selected-hero-image {
	overflow: hidden;
	background-color: #006838;
	background-size: cover;
	background-position: center;
}

.selected-hero-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(0, 104, 56, 0.35) 0%, rgba(33, 185, 162, 0.2) 50%, transparent 100%);
	z-index: 1;
}

/* Section shared styles */
.selected-section {
	padding: 5rem 2rem;
}

.selected-section-inner {
	max-width: 1200px;
	margin: 0 auto;
}

.selected-section-title {
	text-align: center;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 800;
	color: #1a1a1a;
	margin-bottom: 1rem;
}

.selected-section-subtitle {
	text-align: center;
	font-size: 1.05rem;
	color: #666;
	max-width: 650px;
	margin: 0 auto 3rem;
	line-height: 1.6;
}

/* Focus Areas — 3 large color cards */
.selected-focus {
	background: #fafafa;
}

.selected-focus-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.selected-focus-card {
	border-radius: 16px;
	padding: 2.75rem 2.25rem;
	color: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 260px;
	display: flex;
	flex-direction: column;
}

.selected-focus-card {
	position: relative;
	cursor: pointer;
}

.selected-focus-card:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	filter: brightness(1.12);
}

.selected-focus-card .card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.selected-focus-card:nth-child(1) {
	background: linear-gradient(135deg, #006838 0%, #39b54a 100%);
}

.selected-focus-card:nth-child(2) {
	background: linear-gradient(135deg, #21b9a2 0%, #006838 100%);
}

.selected-focus-card:nth-child(3) {
	background: linear-gradient(135deg, #39b54a 0%, #21b9a2 100%);
}

.selected-focus-card .card-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.selected-focus-card h3 {
	font-size: 1.35rem;
	font-weight: 700;
	margin-bottom: 0.75rem;
	color: #ffffff;
}

.selected-focus-card p {
	font-size: 0.95rem;
	line-height: 1.65;
	opacity: 0.9;
}

/* Services — 5 color cards */
.selected-services {
	background: #ffffff;
}

.selected-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.selected-service-card {
	border-radius: 16px;
	padding: 2.25rem 2rem;
	color: #ffffff;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 200px;
	display: flex;
	flex-direction: column;
}

.selected-service-card {
	position: relative;
	cursor: pointer;
}

.selected-service-card:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	filter: brightness(1.12);
}

.selected-service-card .card-link {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.selected-service-card:nth-child(1) { background: #006838; }
.selected-service-card:nth-child(2) { background: #21b9a2; }
.selected-service-card:nth-child(3) { background: #39b54a; }
.selected-service-card:nth-child(4) { background: #d7df23; color: #1a1a1a; }
.selected-service-card:nth-child(5) { background: #006838; }
.selected-service-card:nth-child(6) { background: #21b9a2; }

.selected-service-card .card-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.selected-service-card:nth-child(4) .card-icon {
	background: rgba(0, 0, 0, 0.1);
}

.selected-focus-card .card-icon svg,
.selected-service-card .card-icon svg {
	width: 26px;
	height: 26px;
}

.selected-service-card h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.6rem;
	color: inherit;
}

.selected-service-card p {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.9;
}

/* Testimonial */
.selected-testimonial {
	background: #f5f5b7;
	text-align: center;
}

.selected-testimonial .quote-icon {
	font-size: 3rem;
	line-height: 1;
	color: #006838;
	opacity: 0.3;
	margin-bottom: 1.5rem;
}

.selected-testimonial blockquote {
	font-size: clamp(1.15rem, 2.2vw, 1.5rem);
	font-style: italic;
	line-height: 1.7;
	color: #1a1a1a;
	max-width: 750px;
	margin: 0 auto 1.5rem;
	border: none;
	padding: 0;
}

.selected-testimonial cite {
	font-style: normal;
	font-weight: 600;
	color: #006838;
	font-size: 1rem;
	display: block;
}

.selected-testimonial .cite-role {
	font-weight: 400;
	color: #555;
	font-size: 0.9rem;
}

/* Projects */
.selected-projects {
	background: #ffffff;
}

.selected-projects-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.selected-project-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	min-height: 300px;
	display: flex;
	align-items: flex-end;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.selected-project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.selected-project-card:nth-child(odd) { min-height: 340px; }
.selected-project-card:nth-child(even) { min-height: 280px; margin-top: 2rem; }

.selected-project-overlay {
	padding: 2rem;
	color: #ffffff;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 100%);
	width: 100%;
}

.selected-project-overlay h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.4rem;
	color: #ffffff;
}

.selected-project-overlay p {
	font-size: 0.9rem;
	opacity: 0.85;
}

.selected-project-overlay .project-tag {
	display: inline-block;
	padding: 0.2em 0.6em;
	background: rgba(33, 185, 162, 0.8);
	border-radius: 4px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 0.75rem;
}

/* Clients / Partners */
.selected-clients {
	background: #fafafa;
}

.selected-clients-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem 4rem;
	align-items: center;
}

.selected-client-item {
	text-align: center;
	color: #888;
	font-size: 0.85rem;
	font-weight: 600;
	max-width: 160px;
}

.selected-client-item .client-logo-placeholder {
	width: 80px;
	height: 80px;
	background: #e0e0e0;
	border-radius: 12px;
	margin: 0 auto 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.7rem;
	color: #aaa;
}

.selected-client-item .client-logo {
	width: 80px;
	height: 80px;
	object-fit: contain;
	border-radius: 12px;
	margin: 0 auto 0.75rem;
	display: block;
}

/* CTA */
.selected-cta {
	background: linear-gradient(135deg, #006838 0%, #21b9a2 100%);
	text-align: center;
	color: #ffffff;
}

.selected-cta h2 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 800;
	margin-bottom: 1rem;
	color: #ffffff;
}

.selected-cta p {
	font-size: 1.1rem;
	max-width: 600px;
	margin: 0 auto 2rem;
	opacity: 0.9;
}

.selected-cta a {
	display: inline-block;
	padding: 1rem 3rem;
	background: #ffffff;
	color: #006838;
	border-radius: 50px;
	font-weight: 700;
	text-decoration: none;
	font-size: 1.05rem;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.selected-cta a:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Our Work — project cards matching color card style */
.selected-work .wp-block-post-template {
	gap: 1.5rem !important;
}

.selected-work .wp-block-post {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
	color: #ffffff;
	cursor: pointer;
}

.selected-work .wp-block-post:nth-child(1) {
	background: linear-gradient(135deg, #006838 0%, #39b54a 100%);
}

.selected-work .wp-block-post:nth-child(2) {
	background: linear-gradient(135deg, #21b9a2 0%, #006838 100%);
}

.selected-work .wp-block-post:nth-child(3) {
	background: linear-gradient(135deg, #39b54a 0%, #21b9a2 100%);
}

.selected-work .wp-block-post:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	filter: brightness(1.12);
}

.selected-work .wp-block-post > .wp-block-group {
	padding: 2.75rem 2.25rem;
	border-radius: 16px;
	height: 100%;
	min-height: 260px;
	display: flex;
	flex-direction: column;
}

/* Icon pseudo-element */
.selected-work .wp-block-post > .wp-block-group::before {
	content: "";
	display: block;
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 19a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V7a2 2 0 0 1 2-2h5l2 3h7a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") no-repeat center;
	border-radius: 14px;
	margin-bottom: 1.5rem;
	flex-shrink: 0;
}

/* Hide featured image */
.selected-work .wp-block-post-featured-image {
	display: none;
}

.selected-work .wp-block-post-title,
.selected-work .wp-block-post-title a {
	color: #ffffff !important;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.2rem !important;
	padding: 0;
}

/* Stretched link — make entire card clickable */
.selected-work .wp-block-post-title a::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
}

.selected-work .wp-block-post-excerpt {
	color: rgba(255, 255, 255, 0.85);
	padding: 0;
	font-size: 0.9rem;
	line-height: 1.6;
}

.selected-work .wp-block-post-excerpt a {
	display: none;
}

.selected-work .wp-block-buttons {
	margin-top: var(--wp--preset--spacing--50);
}

/* Selected Design — Responsive */
@media (max-width: 1024px) {
	.selected-hero-text {
		width: 100%;
		padding: 3rem 2rem;
		background: rgba(26, 26, 26, 0.75);
	}

	.selected-hero-text h1 {
		font-size: clamp(2rem, 7vw, 3rem);
	}

	.selected-hero-text p {
		font-size: 1rem;
	}

	.selected-focus-grid {
		grid-template-columns: 1fr;
	}

	.selected-services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.selected-projects-grid {
		grid-template-columns: 1fr;
	}

	.selected-project-card:nth-child(even) {
		margin-top: 0;
	}
}

@media (max-width: 600px) {
	.selected-hero-text {
		padding: 2.5rem 1.5rem;
	}

	.selected-services-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   Projects Table (Listing Page)
   ============================================ */
.ceger-projects-table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.ceger-projects-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.95rem;
}

.ceger-projects-table thead {
	background: #006838;
	color: #ffffff;
}

.ceger-projects-table th {
	padding: 0.85rem 1rem;
	text-align: left;
	font-weight: 600;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.ceger-projects-table td {
	padding: 0.85rem 1rem;
	border-bottom: 1px solid #e8e8e8;
	vertical-align: middle;
}

.ceger-projects-table tbody tr:hover {
	background: #f8fdf8;
}

.ceger-projects-table tbody tr:last-child td {
	border-bottom: 2px solid #006838;
}

/* Status badges */
.ceger-status-badge {
	display: inline-block;
	padding: 0.2em 0.7em;
	border-radius: 12px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.ceger-status-completed {
	background: #e6f7e9;
	color: #006838;
}

.ceger-status-ongoing {
	background: #e0f7f4;
	color: #177a6b;
}

.ceger-status-planned {
	background: #fdfde6;
	color: #7a7a0a;
}

/* View Details link */
.ceger-view-link {
	color: #21b9a2;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.875rem;
	white-space: nowrap;
	transition: color 0.2s ease;
}

.ceger-view-link:hover {
	color: #006838;
	text-decoration: underline;
}

/* Pagination */
.ceger-projects-pagination {
	display: flex;
	justify-content: center;
	gap: 0.25rem;
	margin-top: 2.5rem;
	flex-wrap: wrap;
}

.ceger-projects-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.25rem;
	height: 2.25rem;
	padding: 0 0.5rem;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	text-decoration: none;
	font-size: 0.875rem;
	font-weight: 500;
	color: #1a1a1a;
	transition: background 0.2s ease, color 0.2s ease;
}

.ceger-projects-pagination .page-numbers:hover {
	background: #006838;
	color: #ffffff;
	border-color: #006838;
}

.ceger-projects-pagination .page-numbers.current {
	background: #006838;
	color: #ffffff;
	border-color: #006838;
}

/* Mobile: responsive table */
@media (max-width: 768px) {
	.ceger-projects-table thead {
		display: none;
	}

	.ceger-projects-table,
	.ceger-projects-table tbody,
	.ceger-projects-table tr,
	.ceger-projects-table td {
		display: block;
	}

	.ceger-projects-table tr {
		padding: 1rem 0;
		border-bottom: 1px solid #e0e0e0;
	}

	.ceger-projects-table td {
		padding: 0.35rem 0;
		border-bottom: none;
		text-align: right;
	}

	.ceger-projects-table td::before {
		content: attr(data-label);
		float: left;
		font-weight: 600;
		color: #006838;
		font-size: 0.8rem;
		text-transform: uppercase;
	}
}

/* ============================================
   Featured Projects Grid (Homepage)
   ============================================ */
.ceger-featured-projects-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ceger-featured-project-card {
	border-radius: 16px;
	padding: 2.75rem 2.25rem;
	color: #ffffff;
	text-decoration: none;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
	cursor: pointer;
}

.ceger-featured-project-card:hover {
	transform: scale(1.03);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
	filter: brightness(1.12);
	color: #ffffff;
}

.ceger-featured-project-icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
	flex-shrink: 0;
}

.ceger-featured-project-icon svg {
	width: 26px;
	height: 26px;
	color: #ffffff;
}

.ceger-featured-project-title {
	font-size: 1.25rem;
	font-weight: 700;
	margin: 0 0 0.6rem;
	color: #ffffff;
}

.ceger-featured-project-excerpt {
	font-size: 0.9rem;
	line-height: 1.6;
	opacity: 0.9;
	margin: 0;
}

@media (max-width: 900px) {
	.ceger-featured-projects-grid {
		grid-template-columns: 1fr;
	}
}

/* ============================================
   Project Details Meta (Single Project)
   ============================================ */
.ceger-project-meta {
	margin-top: 2.5rem;
	margin-bottom: 2rem;
	padding: 2rem;
	background: #f8fdf8;
	border-radius: 12px;
	border: 1px solid #e0e8e0;
}

.ceger-project-meta-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: #006838;
	margin: 0 0 1.25rem;
	padding-bottom: 0.75rem;
	border-bottom: 2px solid #006838;
}

.ceger-project-meta-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem;
}

.ceger-project-meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.ceger-project-meta-label {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666;
}

.ceger-project-meta-value {
	font-size: 0.95rem;
	color: #1a1a1a;
	font-weight: 500;
}

/* ============================================
   Blog Grid
   ============================================ */

/* Controls: filters + search row */
.ceger-blog-controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-bottom: 2.5rem;
}

/* Filter pill buttons */
.ceger-blog-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.ceger-blog-filter-btn {
	display: inline-block;
	padding: 0.45em 1.1em;
	border: 1.5px solid #d0d0d0;
	border-radius: 50px;
	background: #ffffff;
	color: #1a1a1a;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
	white-space: nowrap;
	font-family: inherit;
}

.ceger-blog-filter-btn:hover {
	border-color: #006838;
	color: #006838;
}

.ceger-blog-filter-btn--active {
	background: #006838;
	color: #ffffff;
	border-color: #006838;
}

/* Search bar */
.ceger-blog-search {
	position: relative;
	flex-shrink: 0;
}

.ceger-blog-search__icon {
	position: absolute;
	left: 0.85rem;
	top: 50%;
	transform: translateY(-50%);
	color: #888;
	pointer-events: none;
}

.ceger-blog-search__input {
	padding: 0.55em 1em 0.55em 2.5em;
	border: 1.5px solid #d0d0d0;
	border-radius: 50px;
	font-size: 0.9rem;
	font-family: inherit;
	width: 240px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	outline: none;
}

.ceger-blog-search__input:focus {
	border-color: #006838;
	box-shadow: 0 0 0 3px rgba(0, 104, 56, 0.1);
}

/* 2-column card grid */
.ceger-blog-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

/* Blog card */
.ceger-blog-card {
	background: #ffffff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
}

.ceger-blog-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

/* Card image */
.ceger-blog-card__image-link {
	display: block;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.ceger-blog-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.ceger-blog-card:hover .ceger-blog-card__image {
	transform: scale(1.05);
}

.ceger-blog-card__image--placeholder {
	background: linear-gradient(135deg, #006838 0%, #39b54a 50%, #21b9a2 100%);
}

/* Card body */
.ceger-blog-card__body {
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	flex: 1;
}

/* Author meta row */
.ceger-blog-card__meta {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	margin-bottom: 0.75rem;
}

.ceger-blog-card__avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}

.ceger-blog-card__author {
	font-size: 0.8rem;
	font-weight: 600;
	color: #555;
}

/* Title */
.ceger-blog-card__title {
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.35;
	margin: 0 0 0.6rem;
}

.ceger-blog-card__title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.2s ease;
}

.ceger-blog-card__title a:hover {
	color: #006838;
}

/* Excerpt */
.ceger-blog-card__excerpt {
	font-size: 0.9rem;
	line-height: 1.6;
	color: #555;
	margin: 0 0 1rem;
	flex: 1;
}

/* Footer: category pill + date */
.ceger-blog-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	margin-top: auto;
}

.ceger-blog-card__category {
	display: inline-block;
	padding: 0.2em 0.65em;
	background: rgba(33, 185, 162, 0.12);
	color: #177a6b;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	white-space: nowrap;
}

.ceger-blog-card__date {
	font-size: 0.8rem;
	color: #888;
	white-space: nowrap;
}

/* Empty state */
.ceger-blog-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 3rem 1rem;
	color: #888;
	font-size: 1rem;
}

/* Infinite scroll sentinel — invisible trigger zone */
.ceger-blog-sentinel {
	height: 1px;
}

/* Loading spinner */
.ceger-blog-loading {
	display: none;
	justify-content: center;
	padding: 2rem 0;
}

.ceger-blog-spinner {
	width: 36px;
	height: 36px;
	border: 3px solid #e0e0e0;
	border-top-color: #006838;
	border-radius: 50%;
	animation: cegerBlogSpin 0.7s linear infinite;
}

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

/* End-of-posts message */
.ceger-blog-end {
	display: none;
	text-align: center;
	padding: 1.5rem 0;
	color: #999;
	font-size: 0.9rem;
}

/* ============================================
   Blog Grid — Responsive
   ============================================ */
@media (max-width: 768px) {
	.ceger-blog-controls {
		flex-direction: column;
		align-items: stretch;
	}

	.ceger-blog-search__input {
		width: 100%;
	}

	.ceger-blog-grid {
		grid-template-columns: 1fr;
	}
}
