/*
 * Helpline Nurse – Complete Theme Stylesheet
 *
 * Compiled from:
 *   - frontend-prototype/assets/css/style.css
 *   - frontend-prototype/assets/css/components.css
 *
 * @package HelplineNurse
 * @version 1.0.0
 */

/* =========================================================================
   DESIGN TOKENS
   ========================================================================= */

:root {
	/* Color Palette */
	--primary-color:   #1a9381;
	--primary-light:   #28b8a3;
	--primary-dark:    #127263;
	--secondary-color: #11363e;
	--secondary-light: #1b4b56;

	--text-color:    #2d3748;
	--text-light:    #718096;
	--text-lighter:  #a0aec0;

	--bg-color:   #f8fafc;
	--bg-light:   #ffffff;
	--bg-accent:  #e6fdfa;

	--accent-color: #f59e0b;
	--accent-light: #fbbf24;
	--accent-dark:  #d97706;

	--white:        #ffffff;
	--error:        #e53e3e;
	--success:      #38a169;
	--border-color: #e2e8f0;

	/* Typography */
	--font-main: 'Inter', system-ui, -apple-system, sans-serif;

	/* Spacing */
	--space-xs:  0.5rem;
	--space-sm:  1rem;
	--space-md:  2rem;
	--space-lg:  4rem;
	--space-xl:  6rem;
	--space-xxl: 8rem;

	/* Shadows */
	--shadow-sm:      0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
	--shadow-md:      0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.025);
	--shadow-lg:      0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
	--shadow-colored: 0 20px 25px -5px rgba(26,147,129,0.25);

	/* Border Radius */
	--radius-sm:   8px;
	--radius-md:   16px;
	--radius-lg:   24px;
	--radius-full: 9999px;

	/* Transitions */
	--transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	--transition:      all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================================
   CSS RESET & BASE
   ========================================================================= */

*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-main);
	color: var(--text-color);
	background-color: var(--bg-color);
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
	list-style: none;
}

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */

h1, h2, h3, h4, h5, h6 {
	color: var(--secondary-color);
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: var(--space-sm);
	letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem;  letter-spacing: -0.03em; }
h2 { font-size: 2.75rem; }
h3 { font-size: 2rem;    }
h4 { font-size: 1.5rem;  }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem;    }

p {
	margin-bottom: var(--space-sm);
	color: var(--text-light);
}

/* =========================================================================
   ACCESSIBILITY
   ========================================================================= */

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--primary-color);
	color: var(--white);
	padding: 8px 16px;
	z-index: 10000;
	font-weight: 600;
	text-decoration: none;
	transition: top 0.2s;
}

.skip-link:focus {
	top: 0;
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

:focus-visible {
	outline: 3px solid var(--primary-color);
	outline-offset: 3px;
}

/* =========================================================================
   LAYOUT UTILITIES
   ========================================================================= */

.container {
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.section-padding {
	padding: var(--space-xxl) 0;
}

.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-right   { text-align: right; }

.text-gradient {
	background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	display: inline-block;
}

.bg-gradient {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

/* =========================================================================
   SECTION TITLE
   ========================================================================= */

.section-title {
	margin-bottom: var(--space-lg);
	text-align: center;
}

.section-title .badge,
.badge {
	display: inline-block;
	padding: 0.25rem 1rem;
	background: var(--bg-accent);
	color: var(--primary-color);
	border-radius: var(--radius-full);
	font-weight: 600;
	font-size: 0.875rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: var(--space-sm);
}

.section-title h2 {
	font-size: 2.75rem;
	color: var(--secondary-color);
	margin-bottom: var(--space-xs);
}

.section-title p {
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
	font-size: 1.125rem;
}

/* =========================================================================
   FLEXBOX & GRID UTILITIES
   ========================================================================= */

.d-flex               { display: flex; }
.flex-column          { flex-direction: column; }
.justify-content-center   { justify-content: center; }
.justify-content-between  { justify-content: space-between; }
.align-items-center   { align-items: center; }
.flex-wrap            { flex-wrap: wrap; }
.gap-1 { gap: var(--space-xs); }
.gap-2 { gap: var(--space-sm); }
.gap-3 { gap: var(--space-md); }
.gap-4 { gap: var(--space-lg); }

.grid { display: grid; gap: var(--space-md); }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

/* =========================================================================
   GLASSMORPHISM
   ========================================================================= */

.glass {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.5);
}

/* =========================================================================
   HEADER
   ========================================================================= */

.site-header {
	background-color: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid var(--border-color);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: var(--space-sm) 0;
	transition: var(--transition);
}

.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.logo img,
.logo svg {
	height: 65px;
	width: auto;
}

.logo-text-link { display: block; }

/* Navigation */
.main-nav ul {
	display: flex;
	gap: var(--space-md);
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-nav a {
	color: var(--text-color);
	font-weight: 600;
	font-size: 0.9375rem;
	letter-spacing: 0.02em;
	position: relative;
}

.main-nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav li.current-menu-item > a::after,
.main-nav a.active::after {
	width: 100%;
}

.main-nav a:hover,
.main-nav li.current-menu-item > a,
.main-nav a.active {
	color: var(--primary-color);
}

.menu-toggle {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--secondary-color);
	cursor: pointer;
	padding: 4px;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.875rem 1.75rem;
	border-radius: var(--radius-full);
	font-family: var(--font-main);
	font-weight: 600;
	font-size: 1rem;
	text-align: center;
	cursor: pointer;
	border: 2px solid transparent;
	transition: var(--transition-fast);
	text-decoration: none;
	box-shadow: var(--shadow-sm);
	line-height: 1;
}

.btn:active {
	transform: translateY(1px);
	box-shadow: none;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
	color: var(--white);
	border: none;
	box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
	color: var(--white);
	transform: translateY(-2px);
	box-shadow: 0 25px 30px -5px rgba(26, 147, 129, 0.3);
}

.btn-secondary {
	background-color: var(--secondary-color);
	color: var(--white);
}

.btn-secondary:hover {
	background-color: var(--secondary-light);
	color: var(--white);
	transform: translateY(-2px);
}

.btn-outline {
	background-color: transparent;
	border-color: var(--primary-color);
	color: var(--primary-color);
	box-shadow: none;
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: var(--white);
	box-shadow: var(--shadow-colored);
}

.btn-white {
	background-color: var(--white);
	color: var(--primary-color);
}

.btn-white:hover {
	background-color: var(--bg-light);
	color: var(--primary-dark);
	transform: translateY(-2px);
}

.btn-solid-primary {
	background: var(--primary-color);
	box-shadow: none;
}

.btn-block-sm { width: 100%; margin-top: var(--space-sm); }

/* =========================================================================
   CARDS
   ========================================================================= */

.card {
	background-color: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	padding: var(--space-md);
	transition: var(--transition);
	border: 1px solid rgba(0,0,0,0.03);
	height: 100%;
}

.card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-5px);
}

/* Service Cards */
.service-card {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
	transition: var(--transition);
}

.service-card:hover::before { height: 100%; z-index: -1; }

.service-card h3 {
	color: var(--secondary-color);
	font-size: 1.25rem;
	margin-bottom: var(--space-xs);
	transition: var(--transition);
}

.service-card p {
	color: var(--text-light);
	font-size: 0.95rem;
	transition: var(--transition);
}

.service-card:hover h3,
.service-card:hover p { color: var(--white); }

.service-card-image { padding: 0; }

.service-card-image .card-image-wrapper {
	overflow: hidden;
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-image .card-image-wrapper img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
}

.service-card:hover .link-with-icon,
.service-card:hover .link-with-icon svg {
	color: var(--white) !important;
}

/* =========================================================================
   SEARCH FORM
   ========================================================================= */

.search-form {
	display: flex;
	max-width: 500px;
	margin: 0 auto;
	align-items: center;
}

.search-form label {
	flex-grow: 1;
	margin-bottom: 0;
	width: 100%;
}

.search-form .search-field {
	width: 100%;
	margin-bottom: 0;
}

.search-form .search-submit {
	margin-bottom: 0;
	white-space: nowrap;
}


.service-card-image:hover .card-image-wrapper img { transform: scale(1.05); }

.service-card-image .card-content {
	padding: var(--space-md);
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: space-between;
}

/* Blog Cards */
.blog-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: var(--transition);
	border: 1px solid var(--border-color);
	display: flex;
	flex-direction: column;
}

.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-lg);
	border-color: var(--primary-light);
}

.blog-card-image {
	width: 100%;
	height: 200px;
	object-fit: cover;
	background-color: var(--bg-accent);
	display: block;
}

.blog-card-no-image { min-height: 200px; }
.blog-card-image-link { display: block; overflow: hidden; }

.blog-card-content {
	padding: var(--space-md);
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.blog-card-meta {
	font-size: 0.85rem;
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: var(--space-xs);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.blog-card-meta a,
.blog-card-meta .cat-links a { color: var(--primary-color); font-weight: 600; }

.blog-card-title {
	font-size: 1.25rem;
	color: var(--secondary-color);
	margin-bottom: var(--space-xs);
	line-height: 1.4;
}

.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary-color); }

.blog-card-excerpt {
	color: var(--text-light);
	font-size: 0.95rem;
	margin-bottom: var(--space-sm);
	flex-grow: 1;
}

.blog-card-footer {
	margin-top: auto;
	border-top: 1px solid var(--border-color);
	padding-top: var(--space-sm);
}

.read-more-link {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-weight: 600;
	color: var(--primary-color);
}

/* Feature Cards */
.feature-card {
	text-align: left;
	padding: var(--space-md);
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
}

.feature-card .icon-wrapper {
	width: 60px;
	height: 60px;
	background: var(--bg-accent);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: var(--space-md);
	color: var(--primary-color);
}

.feature-card h4 { font-size: 1.25rem; margin-bottom: var(--space-xs); }

/* Compact Service Cards */
.compact-service-card {
	padding: var(--space-sm) var(--space-md);
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	gap: var(--space-sm);
	background: var(--white);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

.compact-service-card:hover {
	border-color: var(--primary-light);
	box-shadow: var(--shadow-colored);
	transform: translateY(-3px);
}

/* =========================================================================
   STAT / COUNTER ITEMS
   ========================================================================= */

.stat-item {
	text-align: center;
	padding: var(--space-md);
	background: var(--white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
}

.stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: var(--space-xs);
}

.stat-text {
	font-size: 0.9rem;
	color: var(--text-light);
	font-weight: 500;
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */

.hero-modern-light {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: linear-gradient(90deg, #eefaf8 0%, #eefaf8 45%, #f4fbf9 100%);
	padding: 0;
}

.hero-modern-light .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: var(--space-xl);
	position: relative;
	z-index: 2;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.hero-modern-light .hero-content {
	padding: var(--space-lg) 0;
	max-width: 600px;
}

.hero-modern-light .hero-title {
	font-size: clamp(2.8rem, 5vw, 4.5rem);
	font-weight: 800;
	color: var(--secondary-color);
	line-height: 1.1;
	margin-bottom: var(--space-sm);
	letter-spacing: -0.03em;
}

.hero-modern-light .hero-title span { color: var(--primary-color); }

.hero-modern-light .hero-subtitle {
	font-size: 1.2rem;
	color: #64748b;
	margin-bottom: var(--space-md);
	font-weight: 500;
	letter-spacing: 0.02em;
}

.hero-modern-light .hero-checklist-card {
	background: var(--white);
	border-radius: var(--radius-lg);
	padding: var(--space-md) var(--space-lg);
	box-shadow: 0 10px 40px -10px rgba(26, 147, 129, 0.15);
	margin-bottom: var(--space-md);
	border: 1px solid rgba(26, 147, 129, 0.05);
}

.hero-modern-light .checklist {
	margin: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.hero-modern-light .checklist li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--secondary-color);
	font-size: 1.05rem;
	font-weight: 600;
}

.hero-modern-light .checklist li svg {
	flex-shrink: 0;
	color: var(--primary-color);
	stroke: var(--primary-color);
}

.hero-modern-light .hero-image-wrapper {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	z-index: 1;
}

.hero-modern-light .hero-image-wrapper img {
	height: auto;
	max-height: 80vh;
	width: 70%;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* =========================================================================
   PAGE HEADER (Inner Pages)
   ========================================================================= */

.page-header {
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
	color: var(--white);
	padding: var(--space-xxl) 0 var(--space-xl);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-header::before {
	content: '';
	position: absolute;
	width: 400px;
	height: 400px;
	background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
}

.page-header h1 { color: var(--white); margin-bottom: var(--space-xs); position: relative; z-index: 2; }
.page-subtitle   { font-size: 1.25rem; color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto; position: relative; z-index: 2; }

/* Blog Header */
.blog-header {
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
	color: var(--white);
	padding: var(--space-xxl) 0 var(--space-xl);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.blog-header::before {
	content: '';
	position: absolute;
	width: 400px; height: 400px;
	background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
}

.blog-meta {
	display: flex;
	justify-content: center;
	gap: var(--space-md);
	color: rgba(255,255,255,0.8);
	margin-bottom: var(--space-sm);
	font-size: 0.95rem;
	flex-wrap: wrap;
}

.blog-meta span { display: inline-flex; align-items: center; gap: 4px; }

.blog-title {
	color: var(--white);
	margin-bottom: var(--space-md);
	line-height: 1.2;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	z-index: 2;
}

.blog-hero-image {
	width: 100%;
	height: 400px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	margin-top: -50px;
	position: relative;
	z-index: 10;
	box-shadow: var(--shadow-lg);
}

.blog-content {
	max-width: 800px;
	margin: 0 auto;
	font-size: 1.1rem;
	color: var(--text-color);
	line-height: 1.8;
	padding: var(--space-xl) 0;
}

.blog-content h2 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); }
.blog-content p  { margin-bottom: var(--space-md); }

.blog-content ul {
	margin-bottom: var(--space-md);
	padding-left: var(--space-md);
	list-style-type: disc;
}

.blog-content li { margin-bottom: var(--space-xs); }

.blog-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: var(--space-xl);
	margin-top: var(--space-xl);
}

.blog-sidebar {
	background: var(--bg-accent);
	padding: var(--space-md);
	border-radius: var(--radius-lg);
	position: sticky;
	top: 100px;
	height: fit-content;
}

.sidebar-widget { margin-bottom: var(--space-lg); }

.sidebar-widget h4 {
	margin-bottom: var(--space-md);
	border-bottom: 2px solid var(--primary-light);
	padding-bottom: 5px;
}

.sidebar-widget ul { list-style: none; padding: 0; }

.sidebar-widget ul li {
	margin-bottom: var(--space-xs);
}

.sidebar-widget ul a {
	color: var(--text-color);
	font-size: 0.9rem;
}

.sidebar-widget ul a:hover { color: var(--primary-color); }

.sidebar-help-widget {
	background: var(--primary-color);
	color: var(--white);
	padding: var(--space-md);
	border-radius: var(--radius-md);
}

.sidebar-help-title {
	color: var(--white) !important;
	border-color: rgba(255,255,255,0.3) !important;
}

.sidebar-help-desc {
	font-size: 0.9rem;
	color: rgba(255,255,255,0.9);
	margin-bottom: var(--space-sm);
}

/* =========================================================================
   SERVICE SINGLE
   ========================================================================= */

.service-hero {
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
	color: var(--white);
	padding: var(--space-xxl) 0 var(--space-xl);
	position: relative;
	overflow: hidden;
}

.service-hero::before {
	content: '';
	position: absolute;
	width: 600px; height: 600px;
	background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 70%);
	top: -150px; right: -100px;
	border-radius: 50%;
}

.service-hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
	align-items: stretch;
}

.service-hero-img {
	width: 100%;
	height: 100%;
	min-height: 400px;
	object-fit: cover;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

.service-hero-text h1 { color: var(--white); }

.service-hero-title {
	font-size: 1.8rem;
	margin-bottom: var(--space-md);
	color: rgba(255,255,255,0.85);
}

.service-hero-intro { color: rgba(255,255,255,0.9); }
.service-hero-intro p { color: rgba(255,255,255,0.9); }

.service-content { background: var(--white); padding: var(--space-xl) 0; }

.services-grid-large {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: var(--space-sm);
}

/* Feature / Benefit Lists */
.feature-list,
.benefit-list {
	list-style: none;
	padding: 0;
	margin: var(--space-sm) 0 var(--space-md);
}

.feature-list-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 0.5rem 0;
	border-bottom: 1px solid var(--border-color);
	font-size: 0.95rem;
	color: var(--text-color);
}

.feature-list-item svg { color: var(--primary-color); flex-shrink: 0; }

/* Process Steps */
.process-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--space-md);
	margin-top: var(--space-lg);
}

.process-step {
	text-align: center;
	padding: var(--space-md);
	background: var(--white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	position: relative;
}

.step-number {
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	margin: 0 auto var(--space-sm);
}

/* FAQ Accordion */
.faq-list { margin-top: var(--space-sm); }

.faq-item {
	border-bottom: 1px solid var(--border-color);
	margin-bottom: var(--space-xs);
}

.faq-question {
	width: 100%;
	background: none;
	border: none;
	text-align: left;
	padding: var(--space-sm) 0;
	font-family: var(--font-main);
	font-size: 1rem;
	font-weight: 600;
	color: var(--secondary-color);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-sm);
}

.faq-question:hover { color: var(--primary-color); }

.faq-icon {
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 0 var(--space-sm);
	color: var(--text-light);
}

.faq-answer[hidden] { display: none; }

/* =========================================================================
   CONTACT PAGE
   ========================================================================= */

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-xl);
}

.contact-info-item {
	display: flex;
	gap: var(--space-sm);
	margin-bottom: var(--space-md);
}

.contact-icon { color: var(--primary-color); font-size: 1.5rem; }

.map-wrapper { margin-top: var(--space-lg); border-radius: var(--radius-md); overflow: hidden; }
.map-wrapper iframe { display: block; }

.map-placeholder {
	background-color: var(--bg-accent);
	width: 100%;
	height: 300px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	border-radius: var(--radius-md);
	margin-top: var(--space-lg);
}

.contact-title { color: var(--primary-color); margin-bottom: var(--space-md); }
.contact-desc  { margin-bottom: var(--space-lg); }

/* =========================================================================
   ABOUT PAGE
   ========================================================================= */

.story-card { background: var(--white); padding: var(--space-lg); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.story-card > div { flex: 1; }
.story-card img { border-radius: var(--radius-md); max-width: 100%; }

.mission-icon {
	width: 60px; height: 60px;
	background: var(--bg-accent);
	border-radius: var(--radius-full);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	margin-bottom: var(--space-md);
}

.mission-title { color: var(--secondary-color); }
.mission-desc  { font-size: 1.125rem; }

/* =========================================================================
   CTA BANNER
   ========================================================================= */

.cta-banner {
	padding: var(--space-lg);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
	color: var(--white);
	border: none;
	text-align: center;
}

.cta-title { color: var(--white); margin-bottom: var(--space-sm); }
.cta-desc  { color: var(--text-lighter); font-size: 1.25rem; margin-bottom: var(--space-md); max-width: 600px; margin-left: auto; margin-right: auto; }

/* =========================================================================
   FEATURES GRID (5-COL)
   ========================================================================= */

.feature-icon-circle {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 64px; height: 64px;
	background: var(--bg-accent);
	border-radius: 50%;
	margin-bottom: var(--space-xs);
}

.feature-icon-circle.color-primary { color: var(--primary-color); }
.feature-icon-circle.color-accent  { color: var(--accent-color);  }
.feature-title { font-size: 1.1rem; color: var(--secondary-color); margin-bottom: 5px; }
.feature-desc  { font-size: 0.9rem; color: var(--text-light); }

/* =========================================================================
   FOOTER
   ========================================================================= */

.site-footer {
	background-color: var(--secondary-color);
	color: var(--white);
	padding: var(--space-xl) 0 var(--space-md);
	position: relative;
	overflow: hidden;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: var(--space-lg);
	margin-bottom: var(--space-lg);
	position: relative;
	z-index: 2;
}

.footer-widget h4 { color: var(--white); margin-bottom: var(--space-md); }
.footer-widget p  { color: var(--text-lighter); }

.footer-links { list-style: none; padding: 0; }

.footer-links li { margin-bottom: var(--space-xs); }

.footer-links a {
	color: var(--text-lighter);
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--primary-light);
	padding-left: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: var(--space-md);
	text-align: center;
	color: var(--text-lighter);
	font-size: 0.9rem;
	position: relative;
	z-index: 2;
}

.footer-social { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-top: var(--space-sm); }

.footer-social-link {
	color: var(--text-lighter);
	font-size: 0.875rem;
	font-weight: 600;
	transition: var(--transition);
}

.footer-social-link:hover { color: var(--primary-light); }

.footer-logo-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; color: var(--white); }

/* =========================================================================
   FORMS
   ========================================================================= */

.form-group { margin-bottom: var(--space-md); }

label,
.form-label {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
	color: var(--text-color);
}

.form-control {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-md);
	font-family: var(--font-main);
	background: var(--bg-color);
	transition: var(--transition);
	font-size: 1rem;
	color: var(--text-color);
}

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	background: var(--white);
	box-shadow: 0 0 0 3px rgba(26, 147, 129, 0.15);
}

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

select.form-control { appearance: auto; }

/* =========================================================================
   BREADCRUMBS
   ========================================================================= */

.breadcrumbs { margin-bottom: var(--space-lg); }

.breadcrumb-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 4px;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0.875rem;
}

.breadcrumb-item a { color: rgba(255,255,255,0.7); }
.breadcrumb-item a:hover { color: var(--white); }
.breadcrumb-item.active span,
.breadcrumb-item[aria-current="page"] span { color: rgba(255,255,255,0.9); font-weight: 600; }
.breadcrumb-separator { color: rgba(255,255,255,0.5); }

/* =========================================================================
   PAGINATION
   ========================================================================= */

.pagination-nav ul { display: flex; justify-content: center; gap: var(--space-xs); list-style: none; padding: 0; margin: 0; flex-wrap: wrap; }

.pagination-nav ul li a,
.pagination-nav ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 var(--space-xs);
	border-radius: var(--radius-md);
	border: 1px solid var(--border-color);
	color: var(--text-color);
	font-weight: 500;
	font-size: 0.9rem;
	transition: var(--transition);
}

.pagination-nav ul li a:hover { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

.pagination-nav ul li span.current { background: var(--primary-color); color: var(--white); border-color: var(--primary-color); }

/* =========================================================================
   POST NAVIGATION (PREV/NEXT)
   ========================================================================= */

.post-navigation { margin: var(--space-lg) 0; }

.post-navigation .nav-links { display: flex; justify-content: space-between; gap: var(--space-md); }

.post-navigation .nav-previous a,
.post-navigation .nav-next a { color: var(--primary-color); font-weight: 600; display: flex; flex-direction: column; }

.nav-direction { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); }

/* =========================================================================
   POST SHARE
   ========================================================================= */

.post-share { display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; margin: var(--space-md) 0; }

.share-label { font-weight: 600; color: var(--secondary-color); }

.share-link {
	display: inline-flex;
	align-items: center;
	padding: 0.375rem 0.875rem;
	background: var(--bg-accent);
	border-radius: var(--radius-full);
	color: var(--primary-color);
	font-size: 0.875rem;
	font-weight: 600;
	transition: var(--transition);
}

.share-link:hover { background: var(--primary-color); color: var(--white); }

/* =========================================================================
   404 PAGE
   ========================================================================= */

.error-404-content { max-width: 600px; margin: 0 auto; }

.error-code {
	font-size: 8rem;
	font-weight: 800;
	color: var(--primary-color);
	line-height: 1;
	margin-bottom: var(--space-sm);
	opacity: 0.15;
}

.search-form-wrapper { max-width: 500px; margin: 0 auto; }

.search-form-wrapper input[type="search"] {
	width: 100%;
	padding: 1rem;
	border: 1px solid var(--border-color);
	border-radius: var(--radius-full) 0 0 var(--radius-full);
	font-family: var(--font-main);
	font-size: 1rem;
}

.search-form-wrapper input[type="submit"] {
	padding: 1rem 1.5rem;
	background: var(--primary-color);
	color: var(--white);
	border: none;
	border-radius: 0 var(--radius-full) var(--radius-full) 0;
	font-family: var(--font-main);
	font-size: 1rem;
	cursor: pointer;
}

/* =========================================================================
   ICONS & UTILITIES
   ========================================================================= */

.logo-text     { white-space: pre; }
.link-with-icon { margin-top: var(--space-md); display: flex; align-items: center; color: var(--accent-color); font-weight: 600; }
.icon-right    { margin-left: 5px; }
.icon-left     { margin-right: 5px; vertical-align: text-bottom; }
.text-1-125    { font-size: 1.125rem; color: var(--text-color); }
.text-color-primary   { color: var(--primary-color); }
.text-color-secondary { color: var(--secondary-color); }
.text-color-light     { color: var(--text-color); }
.bg-white      { background-color: var(--white); }
.bg-accent     { background-color: var(--bg-accent); }
.border-top    { border-top: 1px solid var(--border-color); }
.position-relative { position: relative; }
.overflow-hidden   { overflow: hidden; }
.z-index-1  { position: relative; z-index: 1; }
.z-index-10 { position: relative; z-index: 10; }
.mt-neg-50  { margin-top: -50px; }
.mt-neg-30  { margin-top: -30px; }
.mt-space-md { margin-top: var(--space-md); }
.mt-space-lg { margin-top: var(--space-lg); }
.mt-space-xl { margin-top: var(--space-xl); }
.mb-space-sm { margin-bottom: var(--space-sm); }
.mb-space-md { margin-bottom: var(--space-md); }
.mb-space-lg { margin-bottom: var(--space-lg); }
.w-100       { width: 100%; }
.hr-separator { margin: var(--space-xl) 0; border: none; border-top: 1px solid var(--border-color); }
.hero-content-padding { border-radius: var(--radius-lg); margin-left: var(--space-md); margin-right: var(--space-md); box-shadow: var(--shadow-md); }
.blog-content-container { padding-top: var(--space-lg); max-width: 100%; }

/* =========================================================================
   SVG BACKGROUND PATTERN
   ========================================================================= */

.bg-svg-pattern {
	position: absolute;
	top: 0; left: 0; right: 0;
	width: 100%; height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='2' cy='2' r='2' fill='%231a9381' opacity='0.05'/%3E%3C/svg%3E");
	background-repeat: repeat;
	z-index: 0;
}

/* =========================================================================
   ENTRANCE ANIMATIONS
   ========================================================================= */

.animate-on-scroll {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
	will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* =========================================================================
   PAGE CONTENT (Generic page.php)
   ========================================================================= */

.page-content, .prose {
	max-width: 900px;
	margin: 0 auto;
	font-size: 1.05rem;
	color: var(--text-color);
	line-height: 1.8;
}

.page-content h1, .page-content h2, .page-content h3,
.page-content h4, .page-content h5, .page-content h6 { margin-top: var(--space-lg); margin-bottom: var(--space-sm); }

.page-content p  { margin-bottom: var(--space-md); }

.page-content ul, .page-content ol {
	padding-left: var(--space-md);
	margin-bottom: var(--space-md);
}

.page-content ul { list-style-type: disc; }
.page-content ol { list-style-type: decimal; }

.page-content li { margin-bottom: var(--space-xs); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */

@media (max-width: 1200px) {
	.hero-modern-light .hero-title { font-size: clamp(2.5rem, 4vw, 3.5rem); }
}

@media (max-width: 1024px) {
	.grid-cols-4, .grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
	h1 { font-size: 3rem; }
	h2 { font-size: 2.25rem; }
	.services-grid-large  { grid-template-columns: repeat(2, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contact-grid { grid-template-columns: 1fr; }
	.service-hero-content { grid-template-columns: 1fr; }
	.service-hero-img { min-height: 250px; }
	.process-steps { grid-template-columns: repeat(2, 1fr); }
	.blog-layout { grid-template-columns: 1fr; }
	.blog-sidebar { position: static !important; }
	.blog-hero-image { height: 250px !important; }
}

@media (max-width: 768px) {
	:root {
		--space-xs:  0.25rem;
		--space-sm:  0.5rem;
		--space-md:  1rem;
		--space-lg:  2rem;
		--space-xl:  3rem;
		--space-xxl: 4rem;
	}

	/* Mobile nav */
	.menu-toggle { display: block; }

	.main-nav {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: var(--white);
		box-shadow: var(--shadow-md);
		display: none;
		border-top: 1px solid var(--border-color);
		z-index: 1000;
	}

	.main-nav.is-open { display: block; }

	.main-nav ul {
		flex-direction: column;
		gap: 0;
		padding: var(--space-sm) 0;
		align-items: flex-start;
	}

	.main-nav a {
		display: block;
		width: 100%;
		padding: var(--space-sm) var(--space-md);
	}

	.main-nav a::after { display: none; }

	/* Grids */
	.grid-cols-2, .grid-cols-3, .grid-cols-4, .grid-cols-5 { grid-template-columns: 1fr; }
	.services-grid-large { grid-template-columns: 1fr; }
	.footer-grid { grid-template-columns: 1fr; text-align: center; }
	.footer-logo { width: 100%; display: flex; justify-content: center; }
	.footer-logo img, .footer-logo svg { margin: 0 auto; }
	.process-steps { grid-template-columns: 1fr; }
	.section-padding { padding: var(--space-xl) 0; }

	/* Hero mobile */
	.hero-modern-light { min-height: auto; padding-bottom: var(--space-lg); flex-direction: column; }
	.hero-modern-light .container { grid-template-columns: 1fr; gap: var(--space-md); }
	.hero-modern-light .hero-image-wrapper { 
		position: relative;
		width: 100%;
		height: auto;
		display: flex;
		justify-content: center;
		margin-top: var(--space-md);
		padding: var(--space-md);
	}
	.hero-modern-light .hero-image-wrapper img {
		max-height: 400px;
		width: 100%;
	}
	.hero-modern-light .hero-content { padding: var(--space-lg) 0 0 0; }

	/* Typography */
	h1, .page-header h1, .blog-title, .service-content h1 { font-size: 2.1rem; }
	h2 { font-size: 1.65rem; }
	h3 { font-size: 1.3rem; }
	h4 { font-size: 1.15rem; }

	/* Story card */
	.story-card.d-flex { flex-direction: column; }

	/* Blog meta stack */
	.blog-meta { flex-direction: column; gap: var(--space-xs); }

	/* Checklist */
	.hero-modern-light .hero-checklist-card { padding: var(--space-md); }
}

@media (max-width: 480px) {
	h1, .page-header h1, .blog-title { font-size: 1.8rem; }
	h2  { font-size: 1.4rem; }
	.stat-number { font-size: 2rem; }
	.cta-banner  { padding: var(--space-lg); }
	.error-code  { font-size: 5rem; }
}

