/* ASHP Program Page Styles - Providence Wave Group Design System */

:root {
	--primary-blue: #233E7D;
	--primary-green: #5C7F39;
	--text-gray: #59595B;
	--light-gray: #F8F9FA;
	--border-gray: #DADADA;
}

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

body {
	font-family: Georgia, serif;
	color: var(--text-gray);
	overflow-x: hidden;
	line-height: 1.7;
	font-size: 1.1rem;
}

body.has-loader {
	overflow: hidden;
}

/* Page Loading Spinner */
.ashp-loader {
	position: fixed;
	inset: 0;
	background: rgba(9, 16, 32, 0.35);
	backdrop-filter: blur(3px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 3000;
	transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ashp-loader.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.ashp-loader__inner {
	width: 120px;
	height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.ashp-loader__logo {
	width: 90px;
	height: auto;
	animation: ashp-loader-pulse 1.2s ease-in-out infinite;
}

@keyframes ashp-loader-pulse {
	0%, 100% { transform: scale(1); opacity: 0.9; }
	50% { transform: scale(1.06); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
	.ashp-loader__logo {
		animation: none;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-family: Arial, sans-serif;
	font-weight: 600;
	color: var(--primary-blue);
}

.page-wrap {
	overflow: hidden;
}

/* Navbar Styles */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 15px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease, transform 0.3s ease;
	transform: translateY(0);
}

.navbar.navbar-hidden {
	transform: translateY(-100%);
}

.navbar.scrolled {
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(15px);
	-webkit-backdrop-filter: blur(15px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.navbar__logo {
	display: flex;
	align-items: center;
}

.navbar__logo a {
	display: flex;
	align-items: center;
}

.navbar__logo img {
	height: 60px;
	width: auto;
	transition: all 0.3s ease;
}

.navbar__menu {
	flex: 1;
	display: flex;
	justify-content: center;
}

.nav-list {
	display: flex;
	list-style: none;
	gap: 35px;
	align-items: center;
	margin: 0;
	padding: 0;
}

.nav-link {
	color: var(--primary-blue);
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 15px;
	font-weight: 500;
	padding: 10px 0;
	transition: color 0.3s ease;
	display: flex;
	align-items: center;
	gap: 5px;
}

.nav-link:hover {
	color: var(--primary-green);
}

.navbar.scrolled .nav-link {
	color: var(--primary-blue);
}

.navbar.scrolled .nav-link:hover {
	color: var(--primary-green);
}

/* Dropdown Menu */
.nav-dropdown {
	position: relative;
}

/* Invisible bridge to maintain hover between nav item and dropdown */
.nav-dropdown::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	height: 20px;
	background: transparent;
	z-index: 1000;
}

.nav-dropdown .fa-chevron-down {
	font-size: 10px;
	transition: transform 0.3s ease;
	margin-left: 3px;
}

.nav-dropdown:hover .fa-chevron-down {
	transform: rotate(180deg);
}

.nav-dropdown:hover > .nav-link {
	color: var(--primary-green);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	transform: translateX(-50%);
	background: #fff;
	min-width: 280px;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	border-radius: 8px;
	border-top: 3px solid var(--primary-green);
	padding: 20px 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 1001;
	display: none;
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	display: block;
}

.dropdown-menu::before {
	content: '';
	position: absolute;
	top: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-bottom: 8px solid var(--primary-green);
}

.dropdown-menu li {
	padding: 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child {
	border-bottom: none;
}

.dropdown-menu a {
	display: block;
	padding: 14px 30px;
	color: var(--text-gray);
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	font-weight: 400;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 30px;
}

.dropdown-menu a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 0;
	background: var(--primary-green);
	transition: width 0.3s ease;
}

.dropdown-menu a:hover {
	background: var(--light-gray);
	color: var(--primary-blue);
	padding-left: 35px;
}

.dropdown-menu a:hover::before {
	width: 4px;
}

.navbar__right {
	display: flex;
	gap: 15px;
	align-items: center;
}

/* Hamburger Menu Button */
.hamburger-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
}

.hamburger-btn span {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--primary-blue);
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger-btn.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	max-width: 320px;
	height: 100vh;
	background: #fff;
	z-index: 2500;
	padding: 80px 20px 30px;
	box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
	transition: right 0.3s ease;
	overflow-y: auto;
	flex-direction: column;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 2400;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

.mobile-menu-nav {
	flex: 1;
}

.mobile-menu-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.mobile-menu-nav > ul > li {
	border-bottom: 1px solid var(--border-gray);
}

.mobile-menu-nav a {
	display: block;
	padding: 15px 10px;
	color: var(--text-gray);
	text-decoration: none;
	font-size: 1rem;
	transition: color 0.3s ease, background 0.3s ease;
}

.mobile-menu-nav a:hover {
	color: var(--primary-green);
	background: rgba(92, 127, 57, 0.05);
}

.mobile-menu-nav .mobile-dropdown-toggle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.mobile-menu-nav .mobile-dropdown-toggle i {
	transition: transform 0.3s ease;
}

.mobile-menu-nav .mobile-dropdown.active .mobile-dropdown-toggle i {
	transform: rotate(180deg);
}

.mobile-dropdown-menu {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
	background: var(--light-gray);
}

.mobile-dropdown.active .mobile-dropdown-menu {
	max-height: 500px;
}

.mobile-dropdown-menu a {
	padding: 12px 25px;
	font-size: 0.95rem;
}

.mobile-menu-social {
	padding-top: 30px;
	border-top: 1px solid var(--border-gray);
	margin-top: auto;
}

.mobile-menu-social-title {
	font-size: 0.85rem;
	color: var(--text-gray);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 15px;
	text-align: center;
}

.mobile-menu-social-icons {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

.social-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(92, 127, 57, 0.1);
	color: var(--primary-blue);
	transition: all 0.3s ease;
	text-decoration: none;
}

.navbar.scrolled .social-icon {
	background: rgba(92, 127, 57, 0.15);
	color: var(--primary-blue);
}

.social-icon:hover {
	background: var(--primary-green);
	color: #fff;
	transform: translateY(-3px);
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: #fff;
	padding-top: 80px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(35, 62, 125, 0.9) 0%, rgba(35, 62, 125, 0.7) 100%);
	z-index: 1;
}

.hero__wrapper {
	position: relative;
	z-index: 5;
	text-align: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px 60px;
}

.hero__title {
	font-size: 3.5rem;
	font-weight: 700;
	margin: 20px 0;
	line-height: 1.2;
	color: #fff;
}

.hero__text {
	font-size: 1.3rem;
	line-height: 1.8;
	margin: 30px auto;
	max-width: 800px;
	opacity: 0.95;
	font-family: Georgia, serif;
}

/* Wave Divider */
.wave-divider {
	position: relative;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	transform: rotate(180deg);
	margin-top: -1px;
}

.wave-divider svg {
	position: relative;
	display: block;
	width: calc(100% + 1.3px);
	height: 80px;
}

/* Content Sections */
.content-section {
	background: #fff;
	padding: 100px 20px;
}

.content-section.alt-bg {
	background: var(--light-gray);
}

.content-section.section-with-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	position: relative;
}

.content-section.section-with-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 0;
}

.content-section.section-with-bg .section-container {
	position: relative;
	z-index: 1;
}

.section-container {
	max-width: 1500px;
	margin: 0 auto;
}

.section-header {
	text-align: center;
	margin-bottom: 60px;
}

.section-header h2 {
	font-size: 2.5rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
}

.section-header p {
	font-size: 1.2rem;
	color: var(--text-gray);
	max-width: 800px;
	margin: 0 auto;
}

/* Content Block Styles */
.intro-block {
	text-align: center;
	margin-bottom: 60px;
	padding-bottom: 40px;
	border-bottom: 2px solid var(--border-gray);
}

.intro-block h2 {
	font-size: 2.5rem;
	color: var(--primary-blue);
	margin-bottom: 15px;
	line-height: 1.3;
}

.lead-text {
	font-size: 1.25rem;
	color: var(--primary-green);
	font-weight: 500;
}

.content-block {
	margin-bottom: 50px;
	padding: 30px;
	background: #fff;
	border-left: 4px solid var(--primary-green);
	border-radius: 4px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-block h3 {
	font-size: 1.75rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
	font-weight: 600;
}

.content-block h4 {
	font-size: 1.25rem;
	color: var(--primary-blue);
	margin-bottom: 15px;
	font-weight: 600;
}

.content-block p {
	margin-bottom: 15px;
	line-height: 1.8;
	color: var(--text-gray);
}

.content-block ul {
	margin-left: 25px;
	margin-bottom: 15px;
}

.content-block ul li {
	margin-bottom: 10px;
	line-height: 1.7;
	color: var(--text-gray);
}

.two-column-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 20px;
}

.two-column-list .column {
	background: var(--light-gray);
	padding: 25px;
	border-radius: 4px;
}

.closing-block {
	margin-top: 60px;
	padding: 40px;
	background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2e5c 100%);
	border-radius: 8px;
	text-align: center;
	color: #fff;
}

.closing-block-2 {
	margin-top: 60px;
	padding: 40px;
	background: linear-gradient(
  135deg,
  color-mix(in srgb, var(--primary-green) 100%, white) 0%,
  color-mix(in srgb, var(--primary-green) 70%, black) 100%
);
	border-radius: 8px;
	text-align: center;
	color: #fff;
}

.closing-block h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #fff;
}

.closing-block p {
	font-size: 1.1rem;
	line-height: 1.8;
	color: #fff;
	margin-bottom: 15px;
}

/* Content Grid */
.content-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 40px;
	margin-top: 40px;
}

.content-grid.two-column {
	grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.content-grid.three-column {
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.content-grid.four-column {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Fixed 4-column layout: 4→2→1 (never 3 columns) */
.content-grid.four-column-fixed {
	grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
	.content-grid.four-column-fixed {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.content-grid.four-column-fixed {
		grid-template-columns: 1fr;
	}
}

/* Section Divider */
.section-divider {
	margin: 60px 0;
	padding: 30px;
	background: linear-gradient(135deg, rgba(35, 62, 125, 0.05) 0%, rgba(92, 127, 57, 0.05) 100%);
	border-radius: 10px;
	border-left: 4px solid var(--pwg-green);
}

.section-divider p {
	margin: 0;
	font-size: 1.1rem;
	color: var(--text-dark);
}

/* Section Spacing */
.intro-block + .content-grid {
	margin-top: 40px;
}

.content-grid + .intro-block {
	margin-top: 80px;
}

/* Branded Cards */
.content-card.branded-blue {
	background: linear-gradient(135deg, #233E7D 0%, #1a2f5e 100%);
	color: #fff;
	border: none;
}

.content-card.branded-blue h3 {
	color: #fff;
}

.content-card.branded-blue p {
	color: #fff;
}

.content-card.branded-blue p strong {
	/* background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3); */
	color: #fff;
}

.content-card.branded-green {
	background: linear-gradient(135deg, #5C7F39 0%, #4a6530 100%);
	color: #fff;
	border: none;
}

.content-card.branded-green h3 {
	color: #fff;
}

.content-card.branded-green p {
	color: #fff;
}

.content-card.branded-green p strong{
	color: #fff;
}

.content-card.branded-green li {
	color: #fff;
}

/* Card Icons */
.card-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 28px;
}

.content-card:not(.branded-blue):not(.branded-green) .card-icon {
	background: linear-gradient(135deg, rgba(35, 62, 125, 0.1) 0%, rgba(92, 127, 57, 0.1) 100%);
	color: var(--pwg-blue);
}

/* Content Cards */
.content-card {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	border: 1px solid var(--border-gray);
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.content-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.content-card.blur-bg {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.content-card h3 {
	font-size: 1.6rem;
	color: var(--primary-blue);
	margin-bottom: 20px;
}

.content-card p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-gray);
	margin-bottom: 15px;
}

.content-card strong {
	color: var(--primary-blue);
}

/* Framework Cards - Special Styling */
.framework-card {
	background: linear-gradient(135deg, var(--primary-blue) 0%, #1a2f5f 100%);
	color: #fff;
	padding: 50px 40px;
	border-radius: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(35, 62, 125, 0.2);
}

.framework-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 50px rgba(35, 62, 125, 0.3);
}

.framework-card h3 {
	color: #fff;
	font-size: 1.8rem;
	margin-bottom: 25px;
}

.framework-card p {
	color: rgba(255, 255, 255, 0.95);
	font-size: 1.05rem;
	line-height: 1.8;
	margin-bottom: 15px;
}

.framework-card strong {
	color: #fff;
	background: var(--primary-green);
	padding: 2px 8px;
	border-radius: 3px;
}

.framework-number {
	display: inline-block;
	width: 40px;
	height: 40px;
	background: var(--primary-green);
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 40px;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 1.2rem;
}

/* List Styling */
.check-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.check-list li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
	color: var(--text-gray);
}

.check-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #fff;
	font-weight: bold;
	font-size: 1.2rem;
}

.framework-card .check-list li::before {
	color: #fff;
}

/* X List - for "not" items */
.x-list {
	list-style: none;
	padding: 0;
	margin: 20px 0;
}

.x-list li {
	padding-left: 30px;
	position: relative;
	margin-bottom: 12px;
	color: var(--text-gray);
}

.x-list li::before {
	content: '✗';
	position: absolute;
	left: 0;
	color: #fff;
	background: #c0392b;
	font-weight: bold;
	font-size: 0.8rem;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	top: 3px;
}

/* Highlight Box */
.highlight-box {
	background: var(--light-gray);
	border-left: 4px solid var(--primary-green);
	padding: 30px 40px;
	margin: 40px 0;
	border-radius: 5px;
}

.highlight-box h3 {
	color: var(--primary-blue);
	margin-bottom: 15px;
	font-size: 1.5rem;
}

/* Card Slider */
.card-slider-wrapper {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 60px;
}

.card-slider {
	overflow: hidden;
	border-radius: 15px;
}

.card-slider-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
}

.slider-card {
	min-width: 100%;
	background: #fff;
	padding: 50px 60px;
	border: 1px solid var(--border-gray);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.slider-card h3 {
	color: var(--primary-blue);
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.slider-card h4 {
	color: var(--primary-green);
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 20px;
	font-style: italic;
}

.slider-card p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--text-gray);
	margin-bottom: 15px;
}

.slider-card-number {
	display: inline-block;
	width: 50px;
	height: 50px;
	background: var(--primary-green);
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 50px;
	font-weight: 700;
	margin-bottom: 20px;
	font-size: 1.5rem;
	font-family: Arial, sans-serif;
}

.slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--primary-blue);
	color: #fff;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 5px 15px rgba(35, 62, 125, 0.3);
}

.slider-arrow:hover {
	background: var(--primary-green);
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 8px 20px rgba(92, 127, 57, 0.4);
}

.slider-arrow-left {
	left: 0;
}

.slider-arrow-right {
	right: 0;
}

.slider-indicators {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 30px;
}

.slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--border-gray);
	cursor: pointer;
	transition: all 0.3s ease;
}

.slider-dot:hover {
	background: var(--primary-green);
	transform: scale(1.2);
}

.slider-dot.active {
	background: var(--primary-blue);
	width: 30px;
	border-radius: 6px;
}

/* Footer */
.footer {
	background: #fff;
	padding: 60px 40px 30px;
	border-top: 1px solid var(--border-gray);
}

.footer-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {
	color: var(--primary-blue);
	font-size: 1.2rem;
	margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
	font-size: 0.95rem;
	color: var(--text-gray);
	line-height: 1.8;
	text-decoration: none;
	font-family: Arial, sans-serif;
}

.footer-section a:hover {
	color: var(--primary-green);
}

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

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.footer-social .social-icon {
	background: rgba(92, 127, 57, 0.1);
	color: var(--primary-blue);
}

.footer-social .social-icon:hover {
	background: var(--primary-green);
	color: #fff;
}

.footer-bottom {
	text-align: center;
	padding-top: 30px;
	border-top: 1px solid var(--border-gray);
	font-size: 0.9rem;
	color: var(--text-gray);
	font-family: Arial, sans-serif;
}

/* Responsive Styles */
@media (max-width: 992px) {
	.hero__title {
		font-size: 2.5rem;
	}

	.section-header h2 {
		font-size: 2rem;
	}

	.content-section {
		padding: 60px 20px;
	}

	.footer-container {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 768px) {
	/* Navbar Mobile Styles */
	.navbar {
		padding: 12px 20px;
	}

	.navbar__logo img {
		height: 40px;
	}

	.navbar__menu {
		display: none;
	}

	.navbar__right {
		display: none;
	}

	.hamburger-btn {
		display: flex;
	}

	.mobile-menu,
	.mobile-menu-overlay {
		display: flex;
	}

	/* Footer Mobile Styles */
	.footer-container {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	.footer-section {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-section img {
		width: 100%;
		max-width: 100%;
		height: auto !important;
		margin-bottom: 20px;
	}

	.footer-links {
		align-items: center;
	}

	.footer-social {
		justify-content: center;
	}

	/* Other Mobile Styles */
	.hero__title {
		font-size: 2rem;
	}

	.hero__text {
		font-size: 1.1rem;
	}

	body {
		font-size: 1rem;
	}

	.content-grid,
	.content-grid.two-column,
	.content-grid.three-column,
	.content-grid.four-column {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.two-column-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.content-block {
		padding: 20px;
		margin-bottom: 30px;
	}

	.content-block h3 {
		font-size: 1.5rem;
	}

	.closing-block {
		padding: 30px 20px;
	}

	.closing-block h3 {
		font-size: 1.5rem;
	}

	.wave-divider svg {
		height: 50px;
	}

	.card-slider-wrapper {
		padding: 0 50px;
	}

	.slider-card {
		padding: 40px 30px;
	}

	.slider-card h3 {
		font-size: 1.5rem;
	}

	.slider-card h4 {
		font-size: 1.1rem;
	}

	.slider-arrow {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.content-card,
	.framework-card {
		padding: 30px 25px;
	}

	.highlight-box {
		padding: 20px 25px;
	}

	.card-slider-wrapper {
		padding: 0 45px;
	}

	.slider-card {
		padding: 30px 20px;
	}

	.slider-card h3 {
		font-size: 1.3rem;
	}

	.slider-card h4 {
		font-size: 1rem;
	}

	.slider-arrow {
		width: 35px;
		height: 35px;
		font-size: 0.9rem;
	}

	.slider-card-number {
		width: 40px;
		height: 40px;
		line-height: 40px;
		font-size: 1.2rem;
	}
}

/* ============================================
   HAMBURGER MENU NAVBAR STYLES
   ============================================ */

.spark-hamburger-menu-with-logo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.spark-hamburger-menu-inner {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px 40px;
	position: relative;
	max-width: 1400px;
	margin: 0 auto;
}

.spark-centered-brand-logo {
	display: flex;
	align-items: center;
	justify-content: center;
}

.spark-centered-brand-logo img,
.navbar-logo-centered {
	height: 45px;
	width: auto;
	max-width: 280px;
}

/* Hamburger Button */
.spark-simple-menu-button-right {
	position: absolute;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	padding: 10px;
	z-index: 1001;
}

.spark-simple-line {
	width: 24px;
	height: 2px;
	background-color: var(--primary-blue);
	border-radius: 2px;
	transition: all 0.3s ease;
}

.spark-simple-menu-button-right:hover .spark-simple-line {
	background-color: var(--primary-green);
}

/* Menu open state - X animation */
.spark-simple-menu-button-right.menu-open .spark-line-5 {
	transform: rotate(45deg) translate(5px, 5px);
}

.spark-simple-menu-button-right.menu-open .spark-line-6 {
	opacity: 0;
}

.spark-simple-menu-button-right.menu-open .spark-line-4 {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu (Slide-out) */
.spark-simple-nav-menu {
	position: fixed;
	top: 70px;
	right: -400px;
	width: 350px;
	max-width: 90vw;
	height: calc(100vh - 70px);
	background: white;
	box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
	padding: 30px;
	overflow-y: auto;
	transition: right 0.4s ease;
	z-index: 999;
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.spark-simple-nav-menu.menu-open {
	right: 0;
}

/* Nav Links */
.spark-nav-link {
	display: block;
	color: var(--primary-blue);
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 16px;
	font-weight: 500;
	padding: 15px 0;
	border-bottom: 1px solid var(--border-gray);
	transition: all 0.2s ease;
	cursor: pointer;
}

.spark-nav-link:hover {
	color: var(--primary-green);
	padding-left: 10px;
}

/* Dropdown in Slide Menu */
.spark-nav-dropdown {
	border-bottom: 1px solid var(--border-gray);
}

.spark-nav-dropdown .spark-nav-link {
	border-bottom: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.spark-nav-dropdown .spark-nav-link i {
	transition: transform 0.3s ease;
}

.spark-nav-dropdown.dropdown-open .spark-nav-link i {
	transform: rotate(180deg);
}

.spark-dropdown-list {
	display: none;
	padding-left: 20px;
	padding-bottom: 10px;
}

.spark-nav-dropdown.dropdown-open .spark-dropdown-list {
	display: block;
}

.spark-dropdown-link {
	display: block;
	color: var(--text-gray);
	text-decoration: none;
	font-family: Arial, sans-serif;
	font-size: 14px;
	padding: 10px 0;
	transition: all 0.2s ease;
}

.spark-dropdown-link:hover {
	color: var(--primary-green);
	padding-left: 10px;
}

/* Menu Overlay */
.menu-overlay {
	position: fixed;
	top: 70px;
	left: 0;
	width: 100%;
	height: calc(100vh - 70px);
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
	z-index: 998;
}

.menu-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Responsive adjustments for hamburger menu */
@media (max-width: 768px) {
	.spark-hamburger-menu-inner {
		padding: 10px 20px;
	}

	.spark-centered-brand-logo img,
	.navbar-logo-centered {
		height: 35px;
	}

	.spark-simple-menu-button-right {
		right: 20px;
	}

	.spark-simple-nav-menu {
		width: 100%;
		max-width: 100%;
		right: -100%;
	}
}
