/**
 * GSEWS Theme - Home Page Stylesheet
 *
 * Homepage section styles.
 *
 * @package GSEWS_Theme
 * @since 1.0.0
 */

/* ==========================================================
   01. COMMON HOME SECTION STYLES
========================================================== */

.gsews-home-section {
	position: relative;
	overflow: hidden;
}

.gsews-home-bg-soft {
	background: var(--gsews-bg-soft);
}

.gsews-home-pattern::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle at 20% 20%, rgba(11, 87, 208, 0.06) 0, transparent 26%),
		radial-gradient(circle at 80% 0%, rgba(244, 180, 0, 0.10) 0, transparent 28%);
	pointer-events: none;
}

.gsews-home-section > .gsews-container {
	position: relative;
	z-index: 1;
}

.gsews-home-card {
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-sm);
	transition: var(--gsews-transition);
}

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

/* ==========================================================
   02. HERO SECTION
========================================================== */

.gsews-hero {
	position: relative;
	padding: 92px 0 72px;
	background:
		radial-gradient(circle at top right, rgba(244, 180, 0, 0.16), transparent 32%),
		linear-gradient(135deg, #ffffff 0%, #f8fbff 48%, #eef5ff 100%);
	overflow: hidden;
}

.gsews-hero::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 420px;
	height: 420px;
	background: rgba(11, 87, 208, 0.08);
	border-radius: 50%;
}

.gsews-hero::after {
	content: "";
	position: absolute;
	left: -160px;
	bottom: -160px;
	width: 340px;
	height: 340px;
	background: rgba(244, 180, 0, 0.12);
	border-radius: 50%;
}

.gsews-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	gap: 64px;
	align-items: center;
}

.gsews-hero-content {
	max-width: 720px;
}

.gsews-hero-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 9px 15px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border: 1px solid rgba(11, 87, 208, 0.10);
	border-radius: var(--gsews-radius-pill);
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}

.gsews-hero-title {
	margin-bottom: 22px;
	color: var(--gsews-heading);
	font-size: clamp(2.7rem, 5.2vw, 5.1rem);
	line-height: 1.08;
	letter-spacing: -0.055em;
}

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

.gsews-hero-text {
	max-width: 620px;
	margin-bottom: 30px;
	color: var(--gsews-text-light);
	font-size: 1.12rem;
	line-height: 1.8;
}

.gsews-hero-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin-bottom: 34px;
}

.gsews-hero-note {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	color: var(--gsews-text-light);
	font-size: 0.94rem;
	font-weight: 600;
}

.gsews-hero-note strong {
	color: var(--gsews-heading);
}

.gsews-hero-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: 650px;
	margin-top: 36px;
}

.gsews-hero-stat {
	padding: 20px;
	background: rgba(255, 255, 255, 0.78);
	border: 1px solid rgba(226, 232, 240, 0.82);
	border-radius: var(--gsews-radius-md);
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.gsews-hero-stat strong {
	display: block;
	margin-bottom: 4px;
	color: var(--gsews-primary);
	font-family: var(--gsews-font-heading);
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1;
}

.gsews-hero-stat span {
	display: block;
	color: var(--gsews-text-light);
	font-size: 0.88rem;
	font-weight: 700;
}

/* Hero visual */

.gsews-hero-visual {
	position: relative;
	min-height: 560px;
}

.gsews-hero-image-card {
	position: relative;
	height: 520px;
	padding: 14px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: 34px;
	box-shadow: var(--gsews-shadow-lg);
	overflow: hidden;
}

.gsews-hero-image,
.gsews-hero-image-placeholder {
	width: 100%;
	height: 100%;
	border-radius: 24px;
	object-fit: cover;
}

.gsews-hero-image-placeholder {
	display: flex;
	align-items: flex-end;
	justify-content: center;
	padding: 32px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.10), rgba(15, 23, 42, 0.30)),
		linear-gradient(135deg, #eaf2ff 0%, #ffffff 45%, #fff8df 100%);
	color: var(--gsews-heading);
	text-align: center;
}

.gsews-hero-image-placeholder-content {
	max-width: 360px;
	padding: 24px;
	background: rgba(255, 255, 255, 0.84);
	border: 1px solid rgba(255, 255, 255, 0.84);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-sm);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
}

.gsews-hero-image-placeholder-content strong {
	display: block;
	margin-bottom: 8px;
	color: var(--gsews-heading);
	font-family: var(--gsews-font-heading);
	font-size: 1.35rem;
	line-height: 1.25;
}

.gsews-hero-image-placeholder-content span {
	display: block;
	color: var(--gsews-text-light);
	font-size: 0.95rem;
	line-height: 1.55;
}

.gsews-hero-floating-card {
	position: absolute;
	z-index: 2;
	padding: 18px 20px;
	background: rgba(255, 255, 255, 0.92);
	border: 1px solid rgba(226, 232, 240, 0.78);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-md);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.gsews-hero-floating-card strong {
	display: block;
	margin-bottom: 4px;
	color: var(--gsews-heading);
	font-family: var(--gsews-font-heading);
	font-size: 1rem;
}

.gsews-hero-floating-card span {
	display: block;
	color: var(--gsews-text-light);
	font-size: 0.86rem;
	font-weight: 600;
}

.gsews-hero-floating-card-one {
	top: 44px;
	left: -26px;
}

.gsews-hero-floating-card-two {
	right: -18px;
	bottom: 72px;
}

.gsews-hero-floating-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	margin-bottom: 10px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: 50%;
	font-size: 1.2rem;
}

/* ==========================================================
   03. TRUST STRIP
========================================================== */

.gsews-trust-strip {
	padding: 26px 0;
	background: var(--gsews-white);
	border-top: 1px solid var(--gsews-border-soft);
	border-bottom: 1px solid var(--gsews-border-soft);
}

.gsews-trust-strip-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.gsews-trust-label {
	margin: 0;
	color: var(--gsews-text-light);
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.gsews-trust-items {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.gsews-trust-item {
	display: inline-flex;
	align-items: center;
	min-height: 38px;
	padding: 8px 14px;
	background: var(--gsews-bg-soft);
	color: var(--gsews-heading);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-pill);
	font-family: var(--gsews-font-heading);
	font-size: 0.86rem;
	font-weight: 700;
}

/* ==========================================================
   04. ABOUT SECTION
========================================================== */

.gsews-about {
	background: var(--gsews-white);
}

.gsews-about-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
	gap: 64px;
	align-items: center;
}

.gsews-about-visual {
	position: relative;
}

.gsews-about-image-card {
	position: relative;
	padding: 14px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: 30px;
	box-shadow: var(--gsews-shadow-md);
}

.gsews-about-image,
.gsews-about-image-placeholder {
	width: 100%;
	aspect-ratio: 4 / 4.4;
	border-radius: 22px;
	object-fit: cover;
}

.gsews-about-image-placeholder {
	display: grid;
	place-items: center;
	padding: 28px;
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.20), rgba(15, 23, 42, 0.18)),
		linear-gradient(135deg, var(--gsews-primary-soft), var(--gsews-white), var(--gsews-accent-soft));
	text-align: center;
}

.gsews-about-image-placeholder strong {
	display: block;
	max-width: 320px;
	color: var(--gsews-heading);
	font-family: var(--gsews-font-heading);
	font-size: 1.55rem;
	line-height: 1.3;
}

.gsews-about-badge {
	position: absolute;
	right: -22px;
	bottom: 34px;
	max-width: 230px;
	padding: 18px 20px;
	background: var(--gsews-primary);
	color: var(--gsews-white);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-md);
}

.gsews-about-badge strong {
	display: block;
	margin-bottom: 4px;
	color: var(--gsews-white);
	font-family: var(--gsews-font-heading);
	font-size: 1.1rem;
}

.gsews-about-badge span {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.88rem;
	line-height: 1.5;
}

.gsews-about-content .gsews-section-header {
	margin: 0 0 28px;
	text-align: left;
}

.gsews-about-text {
	color: var(--gsews-text-light);
	font-size: 1.04rem;
	line-height: 1.8;
}

.gsews-about-list {
	display: grid;
	gap: 14px;
	margin: 28px 0 32px;
	padding: 0;
	list-style: none;
}

.gsews-about-list li {
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr);
	gap: 12px;
	align-items: start;
	color: var(--gsews-text);
	font-weight: 600;
}

.gsews-about-list li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: 50%;
	font-size: 0.9rem;
	font-weight: 800;
}

/* ==========================================================
   05. SERVICES SECTION
========================================================== */

.gsews-services {
	background: var(--gsews-bg-soft);
}

.gsews-services-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.gsews-service-card {
	position: relative;
	padding: 30px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-sm);
	overflow: hidden;
	transition: var(--gsews-transition);
}

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

.gsews-service-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--gsews-shadow-md);
}

.gsews-service-card:hover::before {
	opacity: 1;
}

.gsews-service-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 22px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: var(--gsews-radius-md);
	font-size: 1.55rem;
}

.gsews-service-card h3 {
	margin-bottom: 12px;
	font-size: 1.28rem;
}

.gsews-service-card p {
	margin-bottom: 20px;
	color: var(--gsews-text-light);
}

.gsews-service-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--gsews-primary);
	font-family: var(--gsews-font-heading);
	font-size: 0.9rem;
	font-weight: 700;
}

.gsews-service-link:hover {
	gap: 10px;
}

/* ==========================================================
   06. SMART COURSE FINDER
========================================================== */

.gsews-course-finder {
	background:
		radial-gradient(circle at top left, rgba(11, 87, 208, 0.10), transparent 32%),
		linear-gradient(135deg, var(--gsews-white) 0%, var(--gsews-bg-soft) 100%);
}

.gsews-course-finder-shell {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 40px;
	align-items: stretch;
	padding: 34px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: 32px;
	box-shadow: var(--gsews-shadow-md);
}

.gsews-course-finder-content {
	padding: 12px 10px;
}

.gsews-course-finder-content .gsews-section-header {
	margin: 0 0 24px;
	text-align: left;
}

.gsews-course-finder-points {
	display: grid;
	gap: 14px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.gsews-course-finder-points li {
	display: flex;
	align-items: center;
	gap: 12px;
	color: var(--gsews-text);
	font-weight: 600;
}

.gsews-course-finder-points span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	background: var(--gsews-accent-soft);
	color: var(--gsews-heading);
	border-radius: 50%;
	font-size: 0.85rem;
	font-weight: 800;
}

.gsews-finder-box {
	padding: 28px;
	background: var(--gsews-bg-soft);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-lg);
}

.gsews-finder-form {
	display: grid;
	gap: 18px;
}

.gsews-finder-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.gsews-finder-field {
	display: grid;
	gap: 8px;
}

.gsews-finder-field label {
	margin: 0;
	font-size: 0.9rem;
}

.gsews-finder-field select,
.gsews-finder-field input {
	background: var(--gsews-white);
}

.gsews-finder-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 6px;
}

.gsews-finder-result {
	margin-top: 22px;
	padding: 22px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border);
	border-radius: var(--gsews-radius-md);
}

.gsews-finder-result h3 {
	margin-bottom: 10px;
	font-size: 1.18rem;
}

.gsews-finder-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 16px;
}

.gsews-finder-tags span {
	display: inline-flex;
	padding: 7px 11px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: var(--gsews-radius-pill);
	font-size: 0.82rem;
	font-weight: 700;
}

/* ==========================================================
   07. STUDENT JOURNEY
========================================================== */

.gsews-journey {
	background: var(--gsews-white);
}

.gsews-journey-timeline {
	position: relative;
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	gap: 16px;
}

.gsews-journey-timeline::before {
	content: "";
	position: absolute;
	top: 42px;
	left: 7%;
	right: 7%;
	height: 2px;
	background: linear-gradient(90deg, var(--gsews-primary), var(--gsews-accent));
	opacity: 0.24;
}

.gsews-journey-step {
	position: relative;
	z-index: 1;
	padding: 20px 16px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-lg);
	text-align: center;
	box-shadow: var(--gsews-shadow-sm);
	transition: var(--gsews-transition);
}

.gsews-journey-step:hover {
	transform: translateY(-5px);
	box-shadow: var(--gsews-shadow-md);
}

.gsews-journey-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 16px;
	background: var(--gsews-primary);
	color: var(--gsews-white);
	border: 4px solid var(--gsews-white);
	border-radius: 50%;
	box-shadow: 0 8px 22px rgba(11, 87, 208, 0.24);
	font-family: var(--gsews-font-heading);
	font-size: 0.95rem;
	font-weight: 800;
}

.gsews-journey-step h3 {
	margin-bottom: 9px;
	font-size: 1rem;
}

.gsews-journey-step p {
	margin: 0;
	color: var(--gsews-text-light);
	font-size: 0.86rem;
	line-height: 1.55;
}

/* ==========================================================
   08. PARTNER COLLEGES
========================================================== */

.gsews-colleges {
	background: var(--gsews-bg-soft);
}

.gsews-college-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.gsews-college-card {
	display: grid;
	gap: 14px;
	align-content: start;
	min-height: 180px;
	padding: 24px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-sm);
	transition: var(--gsews-transition);
}

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

.gsews-college-logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: var(--gsews-radius-md);
	font-family: var(--gsews-font-heading);
	font-size: 1.1rem;
	font-weight: 800;
}

.gsews-college-card h3 {
	margin-bottom: 0;
	font-size: 1.05rem;
}

.gsews-college-card p {
	margin: 0;
	color: var(--gsews-text-light);
	font-size: 0.9rem;
	line-height: 1.55;
}

.gsews-colleges-footer {
	margin-top: 34px;
	text-align: center;
}

/* ==========================================================
   09. TESTIMONIALS
========================================================== */

.gsews-testimonials {
	background: var(--gsews-white);
}

.gsews-testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.gsews-testimonial-card {
	padding: 30px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-lg);
	box-shadow: var(--gsews-shadow-sm);
	transition: var(--gsews-transition);
}

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

.gsews-testimonial-stars {
	margin-bottom: 16px;
	color: var(--gsews-accent);
	font-size: 1rem;
	letter-spacing: 0.08em;
}

.gsews-testimonial-text {
	margin-bottom: 22px;
	color: var(--gsews-text);
	font-size: 1rem;
	line-height: 1.75;
}

.gsews-testimonial-author {
	display: flex;
	align-items: center;
	gap: 14px;
}

.gsews-testimonial-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: 50%;
	font-family: var(--gsews-font-heading);
	font-weight: 800;
}

.gsews-testimonial-author strong {
	display: block;
	color: var(--gsews-heading);
	font-family: var(--gsews-font-heading);
}

.gsews-testimonial-author span {
	display: block;
	color: var(--gsews-text-light);
	font-size: 0.86rem;
}

/* ==========================================================
   10. FAQ
========================================================== */

.gsews-faq {
	background: var(--gsews-bg-soft);
}

.gsews-faq-wrap {
	max-width: 900px;
	margin: 0 auto;
}

.gsews-faq-item {
	margin-bottom: 14px;
	background: var(--gsews-white);
	border: 1px solid var(--gsews-border-soft);
	border-radius: var(--gsews-radius-md);
	box-shadow: var(--gsews-shadow-sm);
	overflow: hidden;
}

.gsews-faq-item:last-child {
	margin-bottom: 0;
}

.gsews-faq-item summary {
	position: relative;
	padding: 20px 58px 20px 24px;
	color: var(--gsews-heading);
	font-family: var(--gsews-font-heading);
	font-size: 1.02rem;
	font-weight: 700;
	list-style: none;
	cursor: pointer;
}

.gsews-faq-item summary::-webkit-details-marker {
	display: none;
}

.gsews-faq-item summary::after {
	content: "+";
	position: absolute;
	top: 50%;
	right: 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: var(--gsews-primary-soft);
	color: var(--gsews-primary);
	border-radius: 50%;
	font-size: 1.2rem;
	line-height: 1;
	transform: translateY(-50%);
	transition: var(--gsews-transition);
}

.gsews-faq-item[open] summary::after {
	content: "−";
	background: var(--gsews-primary);
	color: var(--gsews-white);
}

.gsews-faq-content {
	padding: 0 24px 22px;
	color: var(--gsews-text-light);
	line-height: 1.75;
}

.gsews-faq-content p {
	margin: 0;
}

/* ==========================================================
   11. CONTACT CTA
========================================================== */

.gsews-contact-cta {
	background:
		radial-gradient(circle at top right, rgba(244, 180, 0, 0.20), transparent 34%),
		linear-gradient(135deg, var(--gsews-primary) 0%, var(--gsews-primary-dark) 100%);
	color: var(--gsews-white);
}

.gsews-contact-cta-inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: center;
	padding: 48px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 32px;
	box-shadow: var(--gsews-shadow-lg);
}

.gsews-contact-cta h2 {
	margin-bottom: 12px;
	color: var(--gsews-white);
}

.gsews-contact-cta p {
	max-width: 720px;
	margin: 0;
	color: rgba(255, 255, 255, 0.80);
	font-size: 1.06rem;
	line-height: 1.75;
}

.gsews-contact-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: flex-end;
}

.gsews-contact-cta .gsews-btn-secondary {
	background: var(--gsews-white);
	color: var(--gsews-primary);
	border-color: var(--gsews-white);
}

.gsews-contact-cta .gsews-btn-outline {
	color: var(--gsews-white);
	border-color: rgba(255, 255, 255, 0.38);
}

.gsews-contact-cta .gsews-btn-outline:hover {
	background: var(--gsews-white);
	color: var(--gsews-primary);
}

/* ==========================================================
   12. HOME RESPONSIVE
========================================================== */

@media (max-width: 1180px) {
	.gsews-hero-inner {
		grid-template-columns: minmax(0, 1fr);
		gap: 46px;
	}

	.gsews-hero-content {
		max-width: 880px;
	}

	.gsews-hero-visual {
		min-height: auto;
		max-width: 720px;
	}

	.gsews-journey-timeline {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.gsews-journey-timeline::before {
		display: none;
	}

	.gsews-college-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 1024px) {
	.gsews-services-grid,
	.gsews-testimonial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.gsews-course-finder-shell {
		grid-template-columns: 1fr;
	}

	.gsews-about-grid {
		grid-template-columns: 1fr;
		gap: 44px;
	}

	.gsews-about-visual {
		max-width: 620px;
	}

	.gsews-contact-cta-inner {
		grid-template-columns: 1fr;
	}

	.gsews-contact-cta-actions {
		justify-content: flex-start;
	}
}

@media (max-width: 767px) {
	.gsews-hero {
		padding: 64px 0 54px;
	}

	.gsews-hero-inner {
		gap: 38px;
	}

	.gsews-hero-title {
		font-size: clamp(2.2rem, 12vw, 3.4rem);
		letter-spacing: -0.045em;
	}

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

	.gsews-hero-actions {
		align-items: stretch;
	}

	.gsews-hero-stats {
		grid-template-columns: 1fr;
		margin-top: 28px;
	}

	.gsews-hero-image-card {
		height: 430px;
		border-radius: 26px;
	}

	.gsews-hero-floating-card {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		margin-top: 14px;
	}

	.gsews-trust-strip-inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.gsews-trust-items {
		justify-content: flex-start;
	}

	.gsews-services-grid,
	.gsews-testimonial-grid,
	.gsews-college-grid,
	.gsews-journey-timeline {
		grid-template-columns: 1fr;
	}

	.gsews-course-finder-shell {
		padding: 24px;
		border-radius: 24px;
	}

	.gsews-finder-row {
		grid-template-columns: 1fr;
	}

	.gsews-finder-actions {
		flex-direction: column;
	}

	.gsews-about-badge {
		position: relative;
		right: auto;
		bottom: auto;
		max-width: 100%;
		margin-top: 16px;
	}

	.gsews-contact-cta-inner {
		padding: 32px 24px;
		border-radius: 24px;
	}

	.gsews-contact-cta-actions {
		flex-direction: column;
	}
}

@media (max-width: 480px) {
	.gsews-hero {
		padding: 54px 0 46px;
	}

	.gsews-hero-kicker {
		font-size: 0.72rem;
		line-height: 1.4;
	}

	.gsews-hero-image-card {
		height: 360px;
		padding: 10px;
	}

	.gsews-hero-image,
	.gsews-hero-image-placeholder {
		border-radius: 18px;
	}

	.gsews-hero-image-placeholder {
		padding: 18px;
	}

	.gsews-hero-image-placeholder-content {
		padding: 18px;
	}

	.gsews-hero-stat,
	.gsews-service-card,
	.gsews-testimonial-card,
	.gsews-college-card {
		padding: 22px;
	}

	.gsews-course-finder-shell {
		padding: 18px;
	}

	.gsews-finder-box {
		padding: 20px;
	}

	.gsews-faq-item summary {
		padding: 18px 52px 18px 20px;
		font-size: 0.96rem;
	}

	.gsews-faq-content {
		padding: 0 20px 20px;
	}
}

/* ==========================================================
   13. CONTACT CTA DETAILS
========================================================== */

.gsews-contact-cta-details {
	display: grid;
	gap: 10px;
	margin-top: 24px;
}

.gsews-contact-cta-details span {
	display: block;
	color: rgba(255, 255, 255, 0.82);
	font-size: 0.95rem;
	line-height: 1.65;
}

.gsews-contact-cta-details strong {
	color: var(--gsews-white);
	font-weight: 700;
}

/* Contact CTA details responsive */

@media (max-width: 767px) {
	.gsews-contact-cta-details {
		margin-top: 20px;
	}

	.gsews-contact-cta-details span {
		font-size: 0.9rem;
	}
}
