/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Variables
# Reset & Typography
# Layout & Utilities
# Buttons
# Header
# Hero Section
# About Section
# Products Section
# Features Section
# Testimonials Section
# Blog Section
# FAQ Section
# Contact Section
# Footer
# Animations & Effects
--------------------------------------------------------------*/

:root {
	/* Colors */
	--primary-color: #2e7d32; /* Natural Green */
	--primary-light: #4caf50;
	--primary-dark: #1b5e20;
	--secondary-color: #1a365d; /* Trustworthy Navy */
	--accent-color: #d1fae5; /* Very light green */
	--text-color: #334155;
	--text-light: #64748b;
	--heading-color: #0f172a;
	--bg-light: #f8fafc;
	--bg-white: #ffffff;
	--border-color: #e2e8f0;

	/* Typography */
	--font-primary: 'Inter', sans-serif;
	--font-heading: 'Playfair Display', serif;

	/* Shadows & Effects */
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
	--glass-bg: rgba(255, 255, 255, 0.7);
	--glass-border: rgba(255, 255, 255, 0.5);
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	--radius-md: 12px;
	--radius-lg: 24px;
}

/*--------------------------------------------------------------
# Reset & Typography
--------------------------------------------------------------*/
*, *::before, *::after {
	box-sizing: border-box;
}

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

body {
	margin: 0;
	font-family: var(--font-primary);
	color: var(--text-color);
	background-color: var(--bg-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	color: var(--heading-color);
	margin-top: 0;
	margin-bottom: 1rem;
	line-height: 1.2;
}

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

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

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

ul, ol {
	margin: 0 0 1.5rem 0;
	padding-left: 1.5rem;
}

/*--------------------------------------------------------------
# Layout & Utilities
--------------------------------------------------------------*/
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.section-padding {
	padding: 6rem 0;
}

@media (max-width: 768px) {
	.section-padding {
		padding: 4rem 0;
	}
}

.bg-light {
	background-color: var(--bg-light);
}

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

.w-100 {
	width: 100%;
}

.shadow-lg {
	box-shadow: var(--shadow-lg);
}

.rounded-img {
	border-radius: var(--radius-lg);
}

/* Glassmorphism */
.glass-card {
	background: var(--glass-bg);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
}

/*--------------------------------------------------------------
# Section Headers
--------------------------------------------------------------*/
.section-header {
	margin-bottom: 4rem;
}

.section-badge {
	display: inline-block;
	padding: 0.5rem 1rem;
	background: var(--accent-color);
	color: var(--primary-dark);
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.section-title {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

@media (max-width: 768px) {
	.section-title {
		font-size: 2rem;
	}
}

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

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1rem;
	cursor: pointer;
	transition: var(--transition);
	border: none;
	outline: none;
}

.btn-primary {
	background-color: var(--primary-color);
	color: #fff;
	box-shadow: 0 4px 14px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
	background-color: var(--primary-dark);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.btn-outline {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn-outline:hover {
	background-color: var(--primary-color);
	color: #fff;
}

.btn-text {
	color: var(--primary-color);
	font-weight: 600;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.btn-text:hover {
	gap: 0.75rem;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	transition: var(--transition);
	background: transparent;
	padding: 1.5rem 0;
}

.site-header.scrolled {
	background: var(--glass-bg);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	padding: 1rem 0;
	box-shadow: var(--shadow-sm);
	border-bottom: 1px solid var(--glass-border);
}

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

.site-title {
	margin: 0;
	font-size: 1.5rem;
}

.site-title a {
	color: var(--secondary-color);
}

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

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: 2rem;
}

.main-navigation a {
	color: var(--heading-color);
	font-weight: 500;
	font-size: 1rem;
	position: relative;
}

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

.main-navigation a:hover::after {
	width: 100%;
}

.header-cta {
	display: flex;
	gap: 1rem;
}

.menu-toggle {
	display: none;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
}

.hamburger, .hamburger::before, .hamburger::after {
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--heading-color);
	transition: var(--transition);
}

.hamburger::before, .hamburger::after {
	content: '';
	position: absolute;
}

.hamburger::before { transform: translateY(-8px); }
.hamburger::after { transform: translateY(8px); }

@media (max-width: 992px) {
	.desktop-only { display: none !important; }
	.menu-toggle { display: block; position: relative; z-index: 1001; }
	
	.main-navigation {
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 400px;
		height: 100vh;
		background: var(--bg-white);
		box-shadow: var(--shadow-xl);
		transition: right 0.3s ease;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.main-navigation.toggled { right: 0; }
	
	.main-navigation ul {
		flex-direction: column;
		align-items: center;
		gap: 2rem;
	}

	.main-navigation a { font-size: 1.5rem; }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding-top: 80px; /* Header offset */
	overflow: hidden;
}

.hero-bg-effect {
	position: absolute;
	top: -50%;
	right: -20%;
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, var(--accent-color) 0%, rgba(255,255,255,0) 70%);
	border-radius: 50%;
	z-index: -1;
	filter: blur(60px);
}

.hero-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.hero-title {
	font-size: 4rem;
	margin-bottom: 1rem;
	line-height: 1.1;
	color: var(--primary-dark);
}

.hero-title span {
	color: #64748b; /* Slate color matching the image for the second line */
	font-style: italic;
	font-weight: 500;
}

.hero-subtitle {
	font-size: 1.125rem;
	color: var(--text-color);
	margin-bottom: 2.5rem;
	max-width: 500px;
	line-height: 1.8;
}

.hero-actions {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 4rem;
	align-items: center;
}

.btn-play {
	border-color: var(--primary-dark);
	color: var(--primary-dark);
	border-radius: 50px;
	gap: 0.5rem;
}

.btn-play svg {
	width: 20px;
	height: 20px;
}

.hero-stats {
	display: flex;
	gap: 3rem;
}

.stat-item {
	display: flex;
	flex-direction: column;
}

.stat-num {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-dark);
	line-height: 1;
}

.stat-text {
	font-size: 0.875rem;
	color: var(--text-light);
	margin-top: 0.25rem;
}


.medical-vector {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.vector-art {
	width: 100%;
	max-width: 600px;
	opacity: 0.9;
}

.floating-badge {
	position: absolute;
	bottom: 10%;
	left: -5%;
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem 1.5rem;
	background: var(--bg-white);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	z-index: 10;
}

.floating-badge .badge-icon {
	color: #d97706;
}

.floating-badge .badge-text {
	display: flex;
	flex-direction: column;
}

.floating-badge .title {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--primary-color);
	text-transform: uppercase;
}

.floating-badge .desc {
	font-size: 1rem;
	font-weight: 600;
	color: var(--heading-color);
}

.hero-curved-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(circle at 10% 20%, transparent 20%, rgba(209, 250, 229, 0.1) 21%, transparent 22%), radial-gradient(circle at 90% 80%, transparent 20%, rgba(209, 250, 229, 0.1) 21%, transparent 22%);
	z-index: -1;
}

@media (max-width: 992px) {
	.hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
		gap: 2rem;
		padding-top: 4rem;
	}
	.hero-title { font-size: 2.5rem; }
	.hero-subtitle { margin: 0 auto 2rem; }
	.hero-actions { justify-content: center; flex-direction: column; }
	.hero-stats { justify-content: center; }
	.floating-badge { left: 50%; transform: translateX(-50%); width: 90%; bottom: 0; }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-image {
	position: relative;
}

.experience-badge {
	position: absolute;
	bottom: -30px;
	right: -30px;
	padding: 2rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	width: 180px;
	height: 180px;
	text-align: center;
}

.experience-badge .num {
	font-size: 3rem;
	font-weight: 700;
	font-family: var(--font-heading);
	color: var(--primary-color);
	line-height: 1;
}

.experience-badge .text {
	font-size: 0.875rem;
	font-weight: 500;
}

.feature-list {
	list-style: none;
	padding: 0;
	margin-top: 2rem;
}

.feature-list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
	font-weight: 500;
	color: var(--heading-color);
}

.feature-list svg {
	color: var(--primary-color);
}

@media (max-width: 992px) {
	.about-inner { grid-template-columns: 1fr; }
	.about-image { margin-bottom: 3rem; }
	.experience-badge { right: 20px; bottom: -20px; width: 140px; height: 140px; }
	.experience-badge .num { font-size: 2rem; }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	justify-content: center;
}

.product-card {
	padding: 2rem;
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.product-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.product-img-wrapper {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	padding: 2rem;
	margin-bottom: 1.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 300px;
}

.product-img {
	max-height: 100%;
	object-fit: contain;
	transition: var(--transition);
}

.product-card:hover .product-img {
	transform: scale(1.05);
}

.product-title {
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
}

.product-excerpt {
	color: var(--text-light);
	margin-bottom: 1.5rem;
	flex-grow: 1;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.feature-box {
	text-align: center;
	padding: 2.5rem 2rem;
	background: var(--bg-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: var(--transition);
}

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

.feature-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonial-slider {
	padding: 2rem 0 4rem;
}

.testimonial-card {
	background: var(--bg-white);
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
	margin: 1rem;
	height: calc(100% - 2rem);
}

.stars {
	color: #fbbf24;
	font-size: 1.5rem;
	margin-bottom: 1rem;
	letter-spacing: 2px;
}

.testimonial-content {
	font-size: 1.125rem;
	font-style: italic;
	margin-bottom: 2rem;
	color: var(--text-color);
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.author-img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
}

.author-placeholder {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--primary-color);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
}

.testimonial-author h4 {
	margin: 0;
	font-size: 1rem;
	font-family: var(--font-primary);
}

.testimonial-author .location {
	font-size: 0.875rem;
	color: var(--text-light);
	width: 100%;
	margin-top: 0.25rem;
}

.swiper-pagination-bullet-active {
	background: var(--primary-color);
}

/*--------------------------------------------------------------
# Blog Section
--------------------------------------------------------------*/
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.blog-card {
	overflow: hidden;
	transition: var(--transition);
}

.blog-card:hover {
	transform: translateY(-5px);
}

.post-thumbnail {
	height: 240px;
	overflow: hidden;
}

.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.blog-card:hover .post-thumbnail img {
	transform: scale(1.1);
}

.placeholder-bg {
	background: var(--accent-color);
	width: 100%;
	height: 100%;
}

.post-content {
	padding: 2rem;
}

.post-meta {
	font-size: 0.875rem;
	color: var(--text-light);
	margin-bottom: 0.5rem;
}

.entry-title {
	font-size: 1.25rem;
	margin-bottom: 1rem;
}

.entry-title a {
	color: var(--heading-color);
}

.entry-title a:hover {
	color: var(--primary-color);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

/*--------------------------------------------------------------
# Floating WhatsApp
--------------------------------------------------------------*/
.floating-whatsapp {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 60px;
	height: 60px;
	background-color: #25d366;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
	z-index: 1000;
	transition: var(--transition);
}

.floating-whatsapp:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 15px rgba(37, 211, 102, 0.5);
	color: #fff;
}

.floating-whatsapp svg {
	width: 35px;
	height: 35px;
}

@media (max-width: 768px) {
	.floating-whatsapp {
		bottom: 20px;
		right: 20px;
		width: 50px;
		height: 50px;
	}
	.floating-whatsapp svg {
		width: 30px;
		height: 30px;
	}
}

.faq-item {
	background: var(--bg-white);
	border-radius: var(--radius-md);
	margin-bottom: 1rem;
	box-shadow: var(--shadow-sm);
	overflow: hidden;
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 1.5rem 2rem;
	background: none;
	border: none;
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--heading-color);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-primary);
}

.faq-question .icon {
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.3s ease;
	color: var(--primary-color);
}

.faq-question.active .icon {
	transform: rotate(45deg);
}

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

.faq-answer p {
	padding: 0 2rem 1.5rem;
	margin: 0;
	color: var(--text-light);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	padding: 3rem;
}

.contact-details {
	margin-top: 2rem;
}

.detail-item {
	display: flex;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

.detail-item .icon-box {
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.detail-item h4 {
	margin: 0 0 0.25rem 0;
	font-size: 1.125rem;
	font-family: var(--font-primary);
}

.detail-item p {
	margin: 0;
	color: var(--text-light);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	font-weight: 500;
	margin-bottom: 0.5rem;
	color: var(--heading-color);
}

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

.form-control:focus {
	outline: none;
	border-color: var(--primary-color);
	box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

@media (max-width: 992px) {
	.contact-wrapper { grid-template-columns: 1fr; padding: 2rem; }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	background: var(--secondary-color);
	color: rgba(255, 255, 255, 0.8);
	padding-top: 4rem;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 4rem;
	margin-bottom: 3rem;
}

.footer-title {
	color: #fff;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}

.widget-title {
	color: #fff;
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
	position: relative;
	padding-bottom: 0.5rem;
}

.widget-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 40px;
	height: 2px;
	background: var(--primary-color);
}

.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}

.social-links a {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}

.social-links a:hover {
	background: var(--primary-color);
	transform: translateY(-3px);
}

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

.links-widget li {
	margin-bottom: 0.75rem;
}

.links-widget a {
	color: rgba(255, 255, 255, 0.8);
}

.links-widget a:hover {
	color: #fff;
	padding-left: 5px;
}

.contact-info {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-info li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.contact-info svg {
	color: var(--primary-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.5rem 0;
	text-align: center;
	font-size: 0.875rem;
}

.footer-bottom p {
	margin: 0;
}

@media (max-width: 992px) {
	.footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
