/* Full Styles from index5.html */
:root {
	--bg-dark: var(--secondary-light);
	--bg-dark-accent: #0a163f;
	--white: #ffffff;
	--text-gray: #e2e8f0;
	--text-muted: #94a3b8;
	--orange: var(--button-border);
	--orange-hover: #2f62d8;
	--teal: var(--button-cyan);
	--yellow: #f3f9ff;
	--light-blue: #f0f9ff;
	--border-gray: var(--border-light);
	--shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	--shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
	--pkg-section-space: 80px;
	--pkg-section-space-sm: 60px;
}

/* Base Overrides for Exact Mirror */
body {
	font-family: "Poppins", sans-serif;
	color: var(--secondary-light);
	line-height: 1.6;
	background-color: var(--white);
	overflow-x: hidden;
}

/* Keep this page visually aligned with the core theme scale */
p {
	font-size: 16px;
	line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-inria {
	font-family: "Jost", sans-serif;
}

.max-w-7xl {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Header Adjustments to match landing page style if possible within theme */
header {
	/* If we wanted to match the absolute header exactly, we would need to override theme header styles */
	/* For now, assuming standard theme header is acceptable or user will request header change separately */
}

/* Buttons */
.btn-orange {
	background: var(--secondary-light);
	color: #fff;
	border: 1px solid var(--secondary-light);
	padding: 10px 24px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: 600;
	font-size: 15px;
	text-decoration: none;
	transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
	min-height: 48px;
	display: inline-block;
}

.btn-orange:hover {
	background: var(--button-border);
	border-color: var(--button-border);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(61, 114, 251, 0.25);
	color: #fff;
}

.btn-orange:active {
	transform: translateY(2px);
	box-shadow: 0 0 0 transparent;
}

.btn-yellow {
	background: #fff;
	color: var(--secondary-light);
	border: 1px solid var(--border-light);
	padding: 10px 22px;
	border-radius: 10px;
	font-weight: 600;
	font-size: 15px;
	min-height: 48px;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	transition: all 0.25s ease-in-out;
}

.btn-yellow:hover {
	border-color: var(--button-border);
	color: var(--button-border);
}

.info-btn {
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
}

.btn-black-large {
	background: var(--secondary-light);
	color: #fff;
	padding: 10px 30px;
	border-radius: 10px;
	font-size: 16px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	min-height: 48px;
	transition: all 0.25s ease-in-out;
}

.btn-black-large:hover {
	background: var(--button-border);
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(61, 114, 251, 0.25);
	color: #fff;
}

.btn-black-plain {
	background: var(--secondary-light);
	color: #fff;
	padding: 10px 24px;
	border-radius: 10px;
	font-size: 15px;
	min-height: 48px;
	font-weight: 600;
	border: 1px solid var(--secondary-light);
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.btn-black-plain:hover {
	background: var(--button-border);
	border-color: var(--button-border);
	transform: translateY(-2px);
}

.btn-outline-orange {
	border: 1px solid var(--button-border);
	background: transparent;
	color: var(--button-border);
	padding: 10px 24px;
	border-radius: 10px;
	font-size: 15px;
	min-height: 48px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.25s ease-in-out;
}

.btn-outline-orange:hover {
	background: var(--orange);
	color: white;
}

/* Hero Section */
.hero {
	position: relative;
	background: var(--secondary-light) url('../images/dark-section-bg.png') 0 0 repeat-y;
	height: auto;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	padding: 96px 0 80px;
	overflow: hidden;
}

.hero-bg-glow {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(1, 6, 24, 0.72) 0%, rgba(0, 60, 255, 0.45) 100%);
	pointer-events: none;
}

.hero-content {
	position: relative;
	z-index: 10;
	width: 95%;
	max-width: 1200px;
	padding: 0 1rem;
}

.hero h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	font-weight: 600;
	line-height: 1.1;
	margin-bottom: 2rem;
	letter-spacing: -0.01em;
	font-family: "Jost", sans-serif;
	color: white;
	white-space: normal;
	width: 100%;
}

.results-box {
	background-color: var(--button-cyan);
	color: var(--secondary-light);
	padding: 0.1em 0.5em;
	border-radius: 10px;
	display: inline-block;
	box-shadow: 3px 3px 0 var(--button-border);
	margin-left: 0.2em;
	transform: none;
}

.hero p {
	font-size: 1.05rem;
	color: #cbd5e1;
	margin-bottom: 3.5rem;
	max-width: 950px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 400;
	line-height: 1.6;
}

.hero-btn {
	padding: 10px 30px !important;
	font-size: 16px !important;
	border-radius: 10px !important;
	background: var(--secondary-light) !important;
	border: 1px solid #fff !important;
	box-shadow: none !important;
}

.hero-btn:hover {
	background: var(--button-border) !important;
	border-color: var(--button-border) !important;
}

/* Floating Shapes */
.shape {
	position: absolute;
	z-index: 1;
	opacity: 0.2;
}

.shape.diamond {
	width: 280px;
	height: 280px;
	border: 1px solid rgba(151, 247, 147, 0.2);
	top: 15%;
	left: -2%;
	transform: rotate(45deg);
}

.shape.square {
	width: 120px;
	height: 120px;
	background: rgba(45, 55, 72, 0.2);
	bottom: 15%;
	left: 8%;
	transform: rotate(15deg);
}

.shape.circle.outline {
	width: 180px;
	height: 180px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	top: 25%;
	right: -2%;
}

.shape.circle.solid-small {
	width: 100px;
	height: 100px;
	background: rgba(45, 55, 72, 0.2);
	border-radius: 50%;
	bottom: 25%;
	right: 12%;
}

/* Sections General */
.section-title {
	font-size: clamp(2rem, 3.6vw, 3.25rem);
	margin-bottom: 1.5rem;
	text-align: center;
	line-height: 1.1;
}

.section-services .global-header h2,
.section-packages .global-header h2,
.section-faq .global-header h2,
.section-inclusions .global-header h2,
.packages-lp-intro .global-header h2 {
	-webkit-text-fill-color: #f6f6f6;
}

.section-results .global-header h2,
.section-gradient-cta .global-header h2 {
	-webkit-text-fill-color: #ffffff;
}

.section-services .global-header h5,
.section-packages .global-header h5,
.section-faq .global-header h5,
.section-inclusions .global-header h5,
.packages-lp-intro .global-header h5 {
	color: var(--secondary-light);
}

.pkg-intro-header {
	margin-bottom: 20px;
}

.pkg-intro-header p {
	width: 100%;
	text-align: left;
	color: #5f6b82;
}

.packages-lp-intro {
	padding: var(--pkg-section-space) 0 !important;
	background: #fff;
}

.packages-lp-intro .global-header {
	max-width: 1020px;
	margin-bottom: 24px;
}

.packages-lp-intro .lp-stats {
	max-width: 680px;
}

.section-services .global-header,
.section-packages .global-header,
.section-faq .global-header,
.section-inclusions .global-header {
	max-width: 980px;
	margin-left: auto;
	margin-right: auto;
}

.section-services .global-header p,
.section-packages .global-header p,
.section-faq .global-header p,
.section-inclusions .global-header p {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.section-services .global-header .min-title,
.section-packages .global-header .min-title,
.section-faq .global-header .min-title,
.section-inclusions .global-header .min-title {
	margin-top: -28px !important;
}

.section-subtitle {
	font-size: 1.1rem;
	color: #4f5d75;
	max-width: 800px;
	margin: 0 auto 3.5rem;
}

/* Process Section */
.section-process {
	padding: var(--pkg-section-space) 0;
	background: white;
}

.process-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	align-items: start;
}

.process-item {
	text-align: center;
}

.process-icon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
}

.bg-light-teal {
	background-color: #eff8ff;
}

.bg-light-orange {
	background-color: #f5f8ff;
}

.bg-light-yellow {
	background-color: #f0f9ff;
}

.process-item h3 {
	margin-bottom: 0.75rem;
	font-size: 1.4rem;
}

.process-item p {
	font-size: 0.95rem;
	color: #666;
}

/* Integrated Solutions Section */
.section-info.dark {
	padding: var(--pkg-section-space) 0;
	background-color: var(--secondary-light);
	color: white;
}

.info-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
}

.info-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-image-container {
	position: relative;
	max-width: 500px;
}

.consultant-img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 20px 20px 0 rgba(71, 85, 105, 0.2);
}

.stat-badge {
	position: absolute;
	background: #fff;
	color: var(--secondary-light);
	padding: 1.5rem;
	border-radius: 12px;
	bottom: -20px;
	right: -20px;
	box-shadow: var(--shadow-md);
}

.stat-badge .val {
	font-size: 2rem;
	font-weight: 900;
	color: var(--secondary-light);
}

.stat-badge .lbl {
	font-size: 0.8rem;
	color: #666;
}

.info-feature {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 2.5rem;
	align-items: flex-start;
}

.feature-icon-circle {
	min-width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon-circle.orange {
	background-color: var(--orange);
	color: white;
}

.feature-text h3 {
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	color: white;
}

.feature-text p {
	color: #cbd5e1;
	font-size: 1rem;
}

/* Services Section */
.section-services {
	padding: var(--pkg-section-space) 0;
	background: #f6f6f6;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	align-items: stretch;
}

.service-card {
	background: white;
	padding: 35px 35px 25px;
	border-radius: 10px;
	border: 1px solid var(--border-light);
	transition: all 0.3s;
	height: 100%;
}

.service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.service-icon-box.small-cyan {
	width: 44px;
	height: 44px;
	background: #eff8ff;
	color: var(--button-border);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	margin-bottom: 1rem;
	font-size: 1.6rem;
}

.service-card p {
	color: #666;
	font-size: 0.95rem;
	margin-bottom: 1.5rem;
}

.orange-bullets {
	list-style: none;
}

.orange-bullets li {
	padding-left: 1.5rem;
	position: relative;
	margin-bottom: 0.5rem;
	color: #444;
	font-size: 0.95rem;
}

.orange-bullets li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 8px;
	height: 8px;
	background-color: var(--orange);
	border-radius: 50%;
}

/* Results Stats */
.section-results {
	padding: calc(var(--pkg-section-space) - 10px) 0;
	background: #fff;
}

.results-card {
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 10px;
	padding: 3rem 0;
}

.results-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.result-stat {
	text-align: center;
	padding: 0 2rem;
	border-right: 1px solid #e2e8f0;
}

.result-stat:last-child {
	border-right: none;
}

.result-stat h2 {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 0.25rem;
}

.result-stat p {
	color: #4f5d75;
	font-size: 0.9rem;
}

/* Packages */
.section-packages {
	padding: var(--pkg-section-space) 0;
	background: #f6f6f6;
}

.package-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	align-items: stretch;
}

.package-grid--four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
}

.package-subsection {
	margin-top: 70px;
}

.package-subsection__header {
	margin-bottom: 30px;
}

.package-subsection__title {
	font-family: "Jost", sans-serif;
	font-size: clamp(1.7rem, 3vw, 2.3rem);
	font-weight: 600;
	line-height: 1.2;
	color: var(--secondary-light);
	text-align: center;
	margin-bottom: 10px;
}

.package-subsection__subtitle {
	max-width: 860px;
	margin: 0 auto 34px;
	text-align: center;
	color: #5f6b82;
}

.package-card {
	background: white;
	border: 1px solid var(--border-light);
	border-radius: 10px;
	padding: 3rem 2rem;
	position: relative;
	transition: all 0.3s;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.package-card:hover {
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.package-card.popular {
	transform: translateY(-4px);
	border: 2px solid var(--orange);
}

.popular-tag {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	background: var(--orange);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 10px;
	font-size: 0.85rem;
	font-weight: 700;
}

.p-header {
	height: 6px;
	width: 100px;
	margin: 0 auto 2rem;
	border-radius: 3px;
}

.p-header.cyan {
	background-color: var(--teal);
}

.p-header.orange {
	background-color: var(--orange);
}

.p-price {
	font-size: 2.5rem;
	font-weight: 900;
	margin-bottom: 1rem;
	color: var(--secondary-light);
	display: flex;
	flex-direction: column;
}

.p-price span {
	font-size: 1.3rem;
	color: #666;
	font-weight: 400;
}

.p-desc {
	font-size: 0.95rem;
	color: #666;
	margin-bottom: 2rem;
	min-height: 72px;
}

.p-list {
	list-style: none;
	text-align: left;
	margin-bottom: 2.5rem;
	flex-grow: 1;
}

.p-list li {
	margin-bottom: 1rem;
	color: #444;
	display: flex;
	gap: 0.75rem;
}

.p-list span {
	color: var(--button-border);
	font-weight: 900;
}

/* Inclusions */
.section-inclusions {
	padding: var(--pkg-section-space) 0;
	text-align: center;
	background: #fff;
}

.inclusions-card {
	background: #f6f6f6;
	border: 1px solid var(--border-light);
	border-radius: 14px;
	padding: 3rem;
	margin-bottom: 3rem;
}

.inclusions-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
	margin-top: 2.25rem;
}

.inclusion-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.85rem;
	background: #fff;
	border: 1px solid var(--border-light);
	border-radius: 12px;
	padding: 1.2rem 1rem;
	min-height: 145px;
	transition: all 0.25s ease-in-out;
}

.inclusion-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(2, 14, 55, 0.08);
}

.inclusion-icon {
	width: 54px;
	height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.inclusion-icon svg,
.inclusion-icon i {
	width: 22px;
	height: 22px;
}

.inclusion-icon.green {
	background-color: #1fbf8f;
}

.inclusion-icon.yellow {
	background-color: #f0b429;
}

.inclusion-icon.orange {
	background-color: #ef7f45;
}

.inclusion-icon.dark-orange {
	background-color: #d5683a;
}

.inclusion-label {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--secondary-light);
}

.inclusion-footer-text {
	margin: 0 auto 1.5rem;
	color: #4f5d75;
	text-align: center;
	max-width: 600px;
}

.inclusions-footer-box {
	margin-top: 2.25rem;
	padding-top: 1.25rem;
	border-top: 1px dashed #d6dbe6;
}

.inclusions-footer-box .globalBtnDark {
	margin-top: 4px;
}

/* FAQ */
.section-faq {
	padding: var(--pkg-section-space) 0;
	background: #f6f6f6;
}

.faq-container {
	max-width: 1100px;
	margin: 0 auto;
}

.faq-list {
	max-width: 860px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid var(--border-light);
}

.faq-quest {
	width: 100%;
	padding: 2rem 0;
	background: none;
	border: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	font-size: 1.15rem;
	font-weight: 600;
	cursor: pointer;
	font-family: "Poppins", sans-serif;
}

.faq-ans {
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-toggle {
	font-size: 1.5rem;
	color: var(--orange);
}

/* Gradient CTA */
.section-gradient-cta {
	padding: var(--pkg-section-space) 0;
	background: #fff;
}

.gradient-banner {
	max-width: 1100px;
	margin: 0 auto;
	background: linear-gradient(90deg, #eef5ff 0%, #d8e6ff 100%);
	padding: 4rem;
	border-radius: 10px;
	text-align: center;
	color: var(--secondary-light);
}

.gradient-banner h2 {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.gradient-banner p {
	margin-bottom: 2.5rem;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	font-weight: 500;
}

.w-full {
	width: 100%;
}

/* Chat Widget */
.chat-widget {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background: #31c48d;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 25px rgba(49, 196, 141, 0.4);
	cursor: pointer;
	z-index: 1000;
}

/* Responsive */
@media (max-width: 1024px) {
	.process-grid {
		grid-template-columns: repeat(3, 1fr);
	}

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

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

}

@media (max-width: 991px) {
	.packages-lp-intro .global-header,
	.section-services .global-header,
	.section-packages .global-header,
	.section-faq .global-header,
	.section-inclusions .global-header {
		max-width: 100%;
	}

	.section-services .global-header h2,
	.section-packages .global-header h2,
	.section-faq .global-header h2,
	.section-inclusions .global-header h2,
	.packages-lp-intro .global-header h2 {
		font-size: 78px;
	}

	.section-services .global-header h5,
	.section-packages .global-header h5,
	.section-faq .global-header h5,
	.section-inclusions .global-header h5,
	.packages-lp-intro .global-header h5 {
		font-size: 34px;
		line-height: 1.25;
	}

	.section-services .global-header .min-title,
	.section-packages .global-header .min-title,
	.section-faq .global-header .min-title,
	.section-inclusions .global-header .min-title {
		margin-top: -16px !important;
	}

	.info-grid {
		gap: 2rem;
		padding: 0;
	}

	.stat-badge {
		position: static;
		margin-top: 1rem;
		right: auto;
		bottom: auto;
		display: inline-block;
	}

	.gradient-banner h2 {
		font-size: 2.4rem;
	}
}

@media (max-width: 768px) {
	.hero {
		height: auto;
		min-height: auto;
		padding: 88px 0 48px;
	}

	.hero h1 {
		font-size: 2.5rem;
		white-space: normal;
	}

	.shape {
		display: none;
	}

	.process-grid {
		grid-template-columns: 1fr;
	}

	.info-grid {
		grid-template-columns: 1fr;
	}

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

	.package-grid {
		grid-template-columns: 1fr;
	}

	.inclusions-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}

	.inclusions-card {
		padding: 2rem 1.2rem;
	}

	.inclusion-item {
		min-height: 130px;
	}

	.results-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}

	.result-stat {
		border: none;
	}

	.section-process,
	.section-info.dark,
	.section-services,
	.section-results,
	.section-packages,
	.section-inclusions,
	.section-faq,
	.section-gradient-cta {
		padding: var(--pkg-section-space-sm) 0;
	}

	.gradient-banner {
		padding: 2.5rem 1.5rem;
		border-radius: 16px;
	}

	.gradient-banner h2 {
		font-size: 2rem;
	}

	.faq-quest {
		padding: 1.25rem 0;
		font-size: 1.02rem;
	}

	.faq-container,
	.faq-list {
		padding-left: 8px;
		padding-right: 8px;
	}

	.package-subsection {
		margin-top: 50px;
	}
}

@media (max-width: 575px) {
	.section-services .global-header h2,
	.section-packages .global-header h2,
	.section-faq .global-header h2,
	.section-inclusions .global-header h2,
	.packages-lp-intro .global-header h2 {
		font-size: 58px;
	}

	.section-services .global-header h5,
	.section-packages .global-header h5,
	.section-faq .global-header h5,
	.section-inclusions .global-header h5,
	.packages-lp-intro .global-header h5 {
		font-size: 27px;
	}

	.inclusions-grid,
	.results-grid {
		grid-template-columns: 1fr;
	}

	.package-grid--four {
		grid-template-columns: 1fr;
	}

	.inclusions-card {
		padding: 1.5rem 1rem;
	}

	.gradient-banner {
		padding: 1.8rem 1rem;
	}

	.gradient-banner h2 {
		font-size: 1.65rem;
	}

	.info-feature {
		gap: 1rem;
	}

	.feature-text h3 {
		font-size: 1.25rem;
	}
}

/* Utility for left alignment */
.text-left {
	text-align: left !important;
}
