/**
 * One Fit Weight Loss Theme Styles
 * Modern, attractive landing page design
 */

/* ============================================
   Variables & Reset
   ============================================ */

:root {
	--color-primary: #003366;
	--color-accent: #FF6B35;
	--color-orange: #FF6B35;
	--color-teal: #2C5F7C;
	--color-light-blue: #E8F4F8;
	--color-white: #FFFFFF;
	--color-text-dark: #333333;
	--color-text-light: #666666;
	--color-background: #FFFFFF;
	--font-primary: 'Poppins', sans-serif;
	--font-heading: 'Urbanist', sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: var(--font-primary);
	color: var(--color-text-dark);
	line-height: 1.6;
	background: var(--color-background);
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
}

html, body {
	max-width: 100%;
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   Header
   ============================================ */

.site-header {
	display: none;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
	background: linear-gradient(to right, #E8F4F8 0%, #E8F4F8 50%, #FFFFFF 50%, #FFFFFF 100%);
	padding: 30px 0 0;
	position: relative;
	overflow: hidden;
}

.hero-logo {
	text-align: left;
	margin-bottom: 0;
	padding-bottom: 0;
}

.hero-logo .site-logo {
	max-height: 60px;
	width: auto;
	height: auto;
	display: block;
	margin-bottom: 12px;
}

.hero-location {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--color-text-light);
	font-family: var(--font-primary);
}

.hero-location .location-icon {
	color: var(--color-orange);
	flex-shrink: 0;
}

.desktop-only {
	display: block;
}

.hero-background-text {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 50px;
	font-size: 120px;
	font-weight: 700;
	color: var(--color-text-dark);
	pointer-events: none;
	z-index: 1;
}

.hero-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
	min-height: 600px;
}

.hero-content {
	max-width: 600px;
	padding-right: 20px;
}

.hero-description {
	display: block;
}

.hero-title {
	font-size: 56px;
	font-weight: 800;
	color: var(--color-text-dark);
	margin-bottom: 20px;
	line-height: 1.2;
	font-family: var(--font-heading);
}

.hero-subtitle {
	font-size: 20px;
	color: var(--color-text-light);
	margin-bottom: 20px;
	line-height: 1.6;
}

.hero-description {
	font-size: 16px;
	color: var(--color-text-light);
	margin-bottom: 30px;
	line-height: 1.8;
}

.hero-price {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 30px;
}

.hero-cta-note {
	font-size: 14px;
	color: var(--color-text-light);
	margin-top: 15px;
	text-align: center;
}

.cta-button {
	display: inline-block;
	background: var(--color-orange);
	color: var(--color-white);
	padding: 18px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
	border: none;
	cursor: pointer;
}

.cta-button:hover {
	background: #E55A2B;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}


.hero-features {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.hero-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	flex: 1;
	min-width: 200px;
	max-width: 300px;
}

.feature-icon {
	font-size: 48px;
	width: 80px;
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-white);
	border-radius: 50%;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	margin-bottom: 15px;
}

.hero-feature-item p {
	font-size: 14px;
	color: var(--color-white);
	font-weight: 500;
	margin: 0;
	line-height: 1.4;
}

.hero-features-fullwidth .feature-icon {
	background: var(--color-white);
}

.hero-image {
	position: relative;
	height: 100%;
	display: flex;
	align-items: stretch;
}

.hero-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 15px;
	overflow: visible;
}

.hero-image-wrapper img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.workout-popup {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--color-white);
	padding: 15px 20px;
	border-radius: 15px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 10;
	max-width: 220px;
}

.popup-day {
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 10px;
	text-align: center;
}

.popup-content {
	display: flex;
	align-items: center;
	gap: 10px;
}

.popup-icon {
	width: 24px;
	height: 24px;
	background: #4CAF50;
	color: var(--color-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 14px;
	flex-shrink: 0;
}

.popup-text {
	flex: 1;
}

.popup-text p {
	margin: 0;
	font-size: 12px;
	font-weight: 500;
	color: var(--color-text-dark);
	line-height: 1.4;
}

.hero-features-fullwidth {
	width: 100%;
	background: var(--color-orange);
	padding: 30px 0;
	margin-top: 20px;
}

.before-after-slider {
	position: relative;
}

.before-after-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.before-image,
.after-image {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.before-image img,
.after-image img {
	width: 100%;
	height: auto;
	display: block;
}

.image-label {
	position: absolute;
	bottom: 15px;
	left: 15px;
	background: var(--color-white);
	padding: 8px 15px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	color: var(--color-text-dark);
}

.slider-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
}

.slider-arrow {
	background: var(--color-white);
	border: 2px solid var(--color-accent);
	color: var(--color-accent);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	font-size: 24px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.slider-arrow {
	border-color: var(--color-gold);
	color: var(--color-gold);
}

.slider-arrow:hover {
	background: var(--color-gold);
	color: var(--color-white);
}

.slider-dots {
	display: flex;
	gap: 8px;
}

.slider-dots .dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ddd;
	cursor: pointer;
	transition: background 0.3s;
}

.slider-dots .dot.active {
	background: var(--color-gold);
}

.before-after-split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.before-image,
.after-image {
	position: relative;
	overflow: hidden;
}

.before-image img,
.after-image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.image-label {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-white);
	padding: 8px 20px;
	border-radius: 20px;
	font-weight: 600;
	font-size: 14px;
	color: var(--color-text-dark);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.before-image .image-label {
	left: 20px;
	transform: none;
}

.after-image .image-label {
	right: 20px;
	left: auto;
	transform: none;
}

/* ============================================
   Program Section
   ============================================ */

.program-section {
	padding: 40px 0;
	background: var(--color-white);
}

.section-title {
	font-size: 48px;
	font-weight: 700;
	color: var(--color-text-dark);
	text-align: center;
	margin-bottom: 20px;
	font-family: var(--font-heading);
	position: relative;
	padding-bottom: 15px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 4px;
	background: var(--color-orange);
	border-radius: 2px;
}

.section-intro {
	text-align: center;
	font-size: 18px;
	color: var(--color-text-light);
	margin-bottom: 20px;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.program-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 25px;
	margin-bottom: 0;
}

.program-item {
	background: var(--color-white);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s, box-shadow 0.3s;
}

.program-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.program-content {
	padding: 30px;
}

.program-content h3 {
	font-size: 24px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 20px;
	font-family: var(--font-heading);
}

.program-content ul {
	list-style: none;
	padding: 0;
}

.program-content ul li {
	padding: 10px 0;
	padding-left: 25px;
	position: relative;
	color: var(--color-text-light);
	font-size: 16px;
	line-height: 1.6;
}

.program-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #4CAF50;
	font-weight: bold;
	font-size: 18px;
}

.section-cta {
	text-align: center;
	margin-top: 20px;
}

/* ============================================
   Steps Section
   ============================================ */

.steps-section {
	padding: 40px 0;
	background: var(--color-light-blue);
}

.steps-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 25px;
}

.step-item {
	background: var(--color-light-blue);
	padding: 40px 30px;
	border-radius: 15px;
	text-align: center;
	transition: transform 0.3s;
	position: relative;
}

.step-item:hover {
	transform: translateY(-5px);
}

.step-number {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--color-orange);
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 36px;
	margin: 0 auto 25px;
	box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.step-item h3 {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 15px;
	font-family: var(--font-heading);
}

.step-item p {
	color: var(--color-text-light);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   Testimonial Section
   ============================================ */

.testimonial-section {
	padding: 100px 0;
	background: var(--color-teal);
	color: var(--color-white);
}

.testimonial-section .section-title {
	color: var(--color-white);
}

.testimonial-section .section-title::after {
	background: var(--color-orange);
}

.testimonial-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.testimonial-content {
	position: relative;
}

.quote-icon {
	font-size: 120px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.2);
	line-height: 1;
	margin-bottom: 20px;
	font-family: 'Georgia', serif;
}

.testimonial-text {
	font-size: 24px;
	line-height: 1.8;
	color: var(--color-white);
	margin-bottom: 30px;
	font-style: italic;
}

.testimonial-author {
	font-size: 18px;
	font-weight: 600;
	color: var(--color-white);
	font-style: normal;
}

.testimonial-image {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-image img {
	width: 100%;
	height: auto;
	display: block;
}

.success-popup {
	position: absolute;
	bottom: 20px;
	right: 20px;
	background: var(--color-white);
	padding: 15px 20px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 10px;
}

.success-popup .popup-icon {
	background: #4CAF50;
}

.success-popup p {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-text-dark);
}

/* ============================================
   Treatments Layout
   ============================================ */

.treatments-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

.no-gym-section {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
}

.no-gym-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: var(--color-orange);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.no-text {
	color: var(--color-primary);
	font-weight: 700;
	font-size: 24px;
}

.no-gym-text p {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 5px;
}

.perfect-program {
	font-size: 14px;
	color: var(--color-text-light);
	font-weight: normal;
}

.treatments-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.treatments-image img {
	width: 100%;
	height: auto;
	display: block;
}

.treatment-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.treatment-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.treatment-icon {
	color: var(--color-orange);
	font-size: 24px;
	flex-shrink: 0;
	margin-top: 5px;
}

.treatment-content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 10px;
	font-family: var(--font-heading);
}

.treatment-content p {
	color: var(--color-text-light);
	font-size: 16px;
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   Eligibility Section
   ============================================ */

.eligibility-section {
	padding: 40px 0;
	background: var(--color-white);
}

.eligibility-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: start;
}

.eligibility-image-wrapper {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.eligibility-image {
	margin-bottom: 0;
}

.eligibility-phone {
	margin-bottom: 30px;
	text-align: left;
	background: #F8F9FA;
	padding: 25px;
	border-radius: 12px;
	border: 1px solid #E9ECEF;
}

.eligibility-phone-bottom {
	margin-bottom: 0;
	margin-top: 25px;
}

.phone-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
	flex-wrap: wrap;
}

.phone-context {
	font-size: 14px;
	color: #6C757D;
	margin: 0;
	font-weight: 400;
	text-transform: none;
	letter-spacing: 0;
	flex-shrink: 0;
}

.phone-link {
	font-size: 28px;
	font-weight: 700;
	color: #0066CC;
	text-decoration: none;
	transition: color 0.3s;
	font-family: var(--font-heading);
	line-height: 1.2;
	white-space: nowrap;
}

.phone-link:hover {
	color: #0052A3;
}

.call-now-btn {
	margin-top: 0;
	display: inline-block;
	background: var(--color-orange);
	color: var(--color-white);
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-family: var(--font-primary);
	box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.call-now-btn-full {
	width: 100%;
	text-align: center;
	display: block;
	padding: 16px 32px;
}

.call-now-btn:hover {
	background: #E55A2B;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
	color: var(--color-white);
}

.eligibility-list {
	list-style: none;
	padding: 0;
	margin: 30px 0;
}

.eligibility-list li {
	padding: 15px 0;
	padding-left: 30px;
	position: relative;
	color: var(--color-text-dark);
	font-size: 16px;
	line-height: 1.6;
}

.eligibility-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--color-orange);
	font-weight: bold;
	font-size: 20px;
}

.eligibility-disclaimer {
	font-size: 14px;
	color: var(--color-text-light);
	margin: 30px 0;
	line-height: 1.6;
}

.eligibility-image {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.eligibility-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* ============================================
   Video Section
   ============================================ */

.video-section {
	padding: 40px 0;
	background: var(--color-white);
}

.video-wrapper {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	position: relative;
	padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
	height: 0;
	overflow: hidden;
}

.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ============================================
   Testimonials Section
   ============================================ */

.testimonials-section {
	padding: 40px 0;
	background: var(--color-white);
}

.trustindex-reviews {
	width: 100%;
	margin-top: 20px;
}

.trustindex-reviews iframe {
	max-width: 100%;
}

/* Trustindex widget styling */
.trustindex-reviews .ti-widget,
.trustindex-reviews .ti-widget-container {
	max-width: 100%;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
	padding: 40px 0;
	background: var(--color-white);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
}

.appointment-column {
	display: flex;
	flex-direction: column;
}

.appointment-column.full-width {
	max-width: 800px;
	margin: 0 auto;
}

.appointment-column .section-title {
	text-align: center;
	margin-bottom: 30px;
}

.appointment-column .section-title::after {
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-orange);
}

.contact-description {
	color: var(--color-text-light);
	margin-bottom: 30px;
	font-size: 16px;
}

.contact-info h2 {
	font-size: 42px;
	font-weight: 700;
	color: var(--color-text-dark);
	margin-bottom: 40px;
	font-family: var(--font-heading);
	text-align: left;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 15px;
	font-size: 18px;
	color: var(--color-text-dark);
}

.contact-icon {
	font-size: 24px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-light-blue);
	border-radius: 50%;
}

.contact-item a {
	color: var(--color-text-dark);
	text-decoration: none;
	transition: color 0.3s;
}

.contact-item a:hover {
	color: var(--color-orange);
}

.contact-form-wrapper {
	background: var(--color-white);
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.form-group label {
	font-weight: 600;
	color: var(--color-text-dark);
	font-size: 16px;
}

.form-group input[type="tel"],
.form-group input[type="text"],
.form-group input[type="email"] {
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	font-family: var(--font-primary);
	transition: border-color 0.3s;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}


.radio-group {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
}

.radio-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	font-weight: 500;
	padding: 12px 24px;
	border: 2px solid #ddd;
	border-radius: 50px;
	transition: all 0.3s;
	background: var(--color-white);
	box-sizing: border-box;
	flex: 1 1 auto;
	min-width: 0;
}

.radio-label:hover {
	border-color: var(--color-orange);
}

.radio-label input[type="radio"] {
	width: 18px;
	height: 18px;
	cursor: pointer;
	margin: 0;
}

.radio-label input[type="radio"]:checked + span {
	color: var(--color-orange);
	font-weight: 600;
}

.radio-label:has(input[type="radio"]:checked) {
	border-color: var(--color-orange);
	background: rgba(255, 107, 53, 0.1);
}

.contact-form .cta-button {
	width: 100%;
	text-align: center;
	margin-top: 10px;
	position: relative;
}

.contact-form .cta-button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.btn-loader {
	display: inline-block;
	vertical-align: middle;
	animation: spin 1s linear infinite;
}

.btn-loader svg {
	display: block;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

.form-message {
	padding: 15px;
	border-radius: 5px;
	margin-bottom: 20px;
	border: 1px solid;
	animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
	from {
		opacity: 0;
		transform: translateY(-10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.form-message.form-success {
	background: #d4edda;
	color: #155724;
	border-color: #c3e6cb;
}

.form-message.form-error {
	background: #f8d7da;
	color: #721c24;
	border-color: #f5c6cb;
}

.cta-button-blue {
	background: var(--color-primary);
}

.cta-button-blue:hover {
	background: #002244;
}

.contact-info .contact-description {
	color: var(--color-text-light);
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.6;
}

.contact-form textarea {
	padding: 15px;
	border: 2px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	font-family: var(--font-primary);
	transition: border-color 0.3s;
	resize: vertical;
	min-height: 120px;
}

.contact-form textarea:focus,
.form-group input:focus {
	border-color: var(--color-orange);
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
	background: var(--color-text-dark);
	color: var(--color-white);
	padding: 30px 0;
}

.footer-content {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
}

.footer-content p {
	margin: 0;
	font-size: 14px;
}

.privacy-link {
	color: var(--color-white);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s;
}

.privacy-link:hover {
	color: var(--color-orange);
}

/* ============================================
   Floating Action Buttons
   ============================================ */

.floating-actions {
	position: fixed;
	bottom: 30px;
	right: 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	z-index: 999;
}

.floating-phone,
.floating-whatsapp {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	transition: transform 0.3s, box-shadow 0.3s;
	text-decoration: none;
}

.floating-phone {
	background: var(--color-primary);
	color: var(--color-white);
}

.floating-whatsapp {
	background: #25D366;
	color: var(--color-white);
}

.floating-phone:hover,
.floating-whatsapp:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 968px) {
	.hero-section {
		padding: 40px 0 60px;
		min-height: auto;
	}

	.hero-wrapper {
		grid-template-columns: 1fr;
		gap: 25px;
		min-height: auto;
	}

	.hero-features-fullwidth {
		margin-top: 15px;
		padding: 20px 0;
	}

	.program-grid,
	.steps-grid {
		gap: 20px;
	}

	.eligibility-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.eligibility-content {
		width: 100%;
		order: 1;
	}

	.eligibility-image-wrapper {
		width: 100%;
		order: 2;
		gap: 25px;
	}

	.eligibility-disclaimer {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.contact-wrapper {
		gap: 25px;
	}

	.contact-form-wrapper {
		padding: 30px 20px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.contact-form {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.section-cta {
		margin-top: 15px;
	}

	.hero-content {
		padding-right: 0;
		text-align: center;
		margin-top: 10%;
	}

	.hero-image {
		height: 400px;
	}

	.hero-features-fullwidth {
		margin-top: 10px;
		padding: 15px 0;
	}

	.hero-features {
		gap: 20px;
	}

	.testimonial-wrapper,
	.contact-wrapper,
	.eligibility-wrapper,
	.treatments-layout,
	.trustindex-reviews {
		margin-top: 15px;
	}

	.hero-title {
		font-size: 42px;
	}

	.section-title {
		font-size: 40px;
	}

	.program-section .section-title {
		font-size: 48px;
		font-weight: 800;
		letter-spacing: -0.5px;
	}

	.program-grid {
		grid-template-columns: 1fr;
	}

	.steps-grid {
		grid-template-columns: 1fr;
	}

	.reviews-carousel {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.hero-section {
		padding: 40px 0 20px;
		background: var(--color-light-blue);
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}

	.program-section,
	.steps-section,
	.eligibility-section,
	.video-section,
	.testimonials-section,
	.contact-section {
		padding: 25px 0;
	}

	.section-title {
		margin-bottom: 15px;
		padding-bottom: 10px;
		font-size: 32px;
	}

	.program-section .section-title {
		font-size: 42px;
		font-weight: 800;
		letter-spacing: -0.5px;
		color: var(--color-text-dark);
	}

	.section-intro {
		margin-bottom: 15px;
		font-size: 16px;
	}

	.hero-section .container {
		padding: 0 20px;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}

	.hero-logo {
		margin-bottom: 0;
		text-align: center;
	}

	.hero-logo .site-logo {
		max-height: 60px;
		margin: 0 auto;
	}

	.hero-location {
		font-size: 13px;
		justify-content: center;
		text-align: center;
	}

	.hero-wrapper {
		gap: 30px;
	}

	.hero-image {
		height: 350px;
	}

	.hero-title {
		font-size: 32px;
	}

	.hero-subtitle {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.hero-description.desktop-only {
		display: none;
	}

	.section-title {
		font-size: 32px;
	}

	.hero-features {
		flex-direction: row;
		gap: 20px;
		flex-wrap: wrap;
	}

	.hero-feature-item {
		min-width: calc(50% - 10px);
		max-width: calc(50% - 10px);
		flex: 0 0 calc(50% - 10px);
	}

	.hero-features-fullwidth {
		padding: 30px 0;
	}

	.feature-icon {
		width: 60px;
		height: 60px;
		font-size: 32px;
		margin-bottom: 10px;
	}

	.hero-feature-item p {
		font-size: 12px;
		color: var(--color-white);
	}

	.contact-form-wrapper {
		padding: 30px 20px;
	}

	.video-section {
		padding: 50px 0;
	}

	.step-number {
		width: 60px;
		height: 60px;
		font-size: 28px;
	}

	.eligibility-phone {
		padding: 20px;
		text-align: left;
	}

	.phone-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 10px;
		margin-bottom: 15px;
	}

	.phone-context {
		font-size: 13px;
	}

	.phone-link {
		font-size: 24px;
		white-space: normal;
	}

	.call-now-btn {
		width: 100%;
		padding: 14px 24px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.hero-section {
		padding: 40px 0 30px;
		background: var(--color-light-blue);
		width: 100vw;
		margin-left: calc(-50vw + 50%);
		margin-right: calc(-50vw + 50%);
	}

	.hero-section .container {
		padding: 0 15px;
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
	}

	.hero-logo {
		margin-bottom: 0;
		text-align: center;
	}

	.hero-logo .site-logo {
		max-height: 50px;
		margin: 0 auto;
	}

	.hero-location {
		justify-content: center;
		text-align: center;
		font-size: 13px;
	}

	.hero-wrapper {
		gap: 15px;
	}

	.hero-features-fullwidth {
		margin-top: 10px;
		padding: 15px 0;
	}

	.program-grid,
	.steps-grid {
		gap: 15px;
	}

	.eligibility-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.eligibility-content {
		width: 100%;
		order: 1;
	}

	.eligibility-image-wrapper {
		width: 100%;
		order: 2;
		gap: 20px;
	}

	.eligibility-disclaimer {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
	}

	.contact-wrapper {
		gap: 20px;
	}

	.hero-image {
		height: 300px;
	}

	.hero-title {
		font-size: 24px;
		line-height: 1.3;
	}

	.hero-subtitle {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.hero-description.desktop-only {
		display: none;
	}

	.hero-price {
		font-size: 18px;
	}

	.cta-button {
		padding: 15px 30px;
		font-size: 14px;
		width: 100%;
		text-align: center;
	}

	.hero-cta-note {
		font-size: 12px;
	}

	.hero-features {
		gap: 15px;
	}

	.hero-feature-item {
		min-width: calc(50% - 7.5px);
		max-width: calc(50% - 7.5px);
		flex: 0 0 calc(50% - 7.5px);
	}

	.feature-icon {
		width: 50px;
		height: 50px;
		font-size: 28px;
		margin-bottom: 8px;
	}

	.hero-feature-item p {
		font-size: 11px;
		line-height: 1.3;
		color: var(--color-white);
	}

	.hero-features-fullwidth {
		padding: 25px 0;
	}

	.section-title {
		font-size: 28px;
	}

	.step-item {
		padding: 30px 20px;
	}

	.step-number {
		width: 50px;
		height: 50px;
		font-size: 24px;
		margin-bottom: 20px;
	}

	.step-item h3 {
		font-size: 18px;
	}

	.step-item p {
		font-size: 14px;
	}

	.eligibility-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.eligibility-content {
		width: 100%;
		order: 1;
	}

	.eligibility-image-wrapper {
		width: 100%;
		order: 2;
		gap: 15px;
	}

	.eligibility-disclaimer {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 0;
		font-size: 13px;
	}

	.contact-form-wrapper {
		padding: 20px 15px;
		width: 100%;
		max-width: 100%;
	}

	.contact-form {
		width: 100%;
		max-width: 100%;
	}

	.form-group input[type="tel"],
	.form-group input[type="text"],
	.form-group input[type="email"] {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.phone-link {
		font-size: 20px;
	}

	.phone-context {
		font-size: 14px;
	}

	.container {
		padding: 0 15px;
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
	}

	.video-section {
		padding: 40px 0;
	}

	.section-title {
		font-size: 20px;
		margin-bottom: 30px;
	}
}

