/* ================================================================
   AKTAR HOME — PREMIUM ORGANIC/BOTANICAL THEME REDESIGN
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* --- Design Tokens --- */
.organic-theme {
	/* Backgrounds */
	--bg-main: #fcfbf9;      /* Warm, light sand */
	--bg-surface: #ffffff;   /* Pure white cards */
	--bg-alt: #f0f3ea;       /* Very light sage ground */
	--bg-dark: #223225;      /* Deep forest green for dark sections */
	
	/* Colors */
	--text-main: #2a342b;    /* Dark pine */
	--text-light: #5f6b5f;   /* Sage grey */
	--text-inverse: #fcfbf9; /* White on dark */
	
	--accent-clay: #c86f56;  /* Terracotta/Clay */
	--accent-olive: #6c8253; /* Olive Green */
	--accent-sand: #e6dac3;  /* Latte/Sand */
	--accent-gold: #d4af37;  /* Muted Gold */
	
	/* Typography */
	--font-title: 'Lora', Georgia, serif;
	--font-body: 'Montserrat', system-ui, sans-serif;
	
	/* Spacing & Borders */
	--radius-sm: 8px;
	--radius-md: 20px;
	--radius-lg: 40px;
	--radius-pill: 999px;
	
	--shadow-sm: 0 4px 20px rgba(42, 52, 43, 0.04);
	--shadow-md: 0 12px 40px rgba(42, 52, 43, 0.08);
	--shadow-lg: 0 24px 60px rgba(42, 52, 43, 0.12);
	
	--transition: 0.4s cubic-bezier(0.25, 1, 0.5, 1);

	background-color: var(--bg-main);
	color: var(--text-main);
	font-family: var(--font-body);
	overflow-x: hidden;
}

.organic-theme * {
	box-sizing: border-box;
}

.organic-theme img {
	display: block;
	max-width: 100%;
}

.ak-container {
	margin: 0 auto;
	padding: 0 24px;
	width: min(1320px, 100%);
}

/* ================================================================
   TYPOGRAPHY & UTILITIES
   ================================================================ */
.subtext {
	color: var(--accent-clay);
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 16px;
	text-transform: uppercase;
}

.title {
	color: var(--text-main);
	font-family: var(--font-title);
	font-size: clamp(32px, 4vw, 56px);
	font-weight: 500;
	line-height: 1.15;
	margin: 0 0 24px;
	text-wrap: balance;
}

.title em {
	color: var(--accent-olive);
	font-style: italic;
}

.ak-section-header {
	margin-bottom: 60px;
}

.ak-section-header.align-center {
	align-items: center;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.ak-section-header.split-header {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
}

.ak-section-header.split-header .title {
	margin-bottom: 0;
}

.divider {
	background: var(--accent-sand);
	height: 1px;
	margin-top: 24px;
	width: 100%;
}

/* Buttons */
.btn-primary {
	align-items: center;
	background-color: var(--accent-clay);
	border-radius: var(--radius-pill);
	color: #fff;
	display: inline-flex;
	font-weight: 600;
	gap: 12px;
	padding: 16px 36px;
	text-decoration: none;
	transition: var(--transition);
}

.btn-primary:hover {
	background-color: var(--text-main);
	transform: translateY(-2px);
}

.btn-outline {
	align-items: center;
	background-color: transparent;
	border: 1px solid var(--text-main);
	border-radius: var(--radius-pill);
	color: var(--text-main);
	display: inline-flex;
	font-weight: 600;
	padding: 16px 36px;
	text-decoration: none;
	transition: var(--transition);
}

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

.btn-text {
	align-items: center;
	color: var(--text-main);
	display: inline-flex;
	font-weight: 600;
	gap: 8px;
	text-decoration: none;
	text-transform: uppercase;
	transition: var(--transition);
}

.btn-text span {
	background: var(--accent-sand);
	border-radius: 50%;
	display: flex;
	height: 32px;
	align-items: center;
	justify-content: center;
	width: 32px;
	transition: var(--transition);
}

.btn-text:hover span {
	background: var(--accent-clay);
	color: #fff;
	transform: translateX(4px);
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.ak-hero {
	background: var(--bg-alt);
	border-radius: 0 0 var(--radius-lg) var(--radius-lg);
	overflow: visible;
	padding: 80px 0 0;
	position: relative;
}

.ak-hero__wrapper {
	align-items: center;
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr 1fr;
}

.ak-hero__content {
	padding-bottom: 80px;
}

.ak-badge {
	background: rgba(108, 130, 83, 0.1);
	border-radius: var(--radius-pill);
	color: var(--accent-olive);
	display: inline-block;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 32px;
	padding: 8px 16px;
	text-transform: uppercase;
}

.ak-hero .ak-title {
	font-family: var(--font-title);
	font-size: clamp(40px, 5vw, 64px);
	font-weight: 400;
	line-height: 1.1;
	margin-bottom: 24px;
}

.ak-hero .ak-title strong {
	color: var(--accent-clay);
	font-style: italic;
	font-weight: 500;
}

.ak-summary {
	color: var(--text-light);
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 40px;
	max-width: 480px;
}

.ak-hero__actions {
	display: flex;
	gap: 16px;
	margin-bottom: 60px;
}

.ak-hero__stats {
	border-top: 1px solid rgba(42, 52, 43, 0.1);
	display: flex;
	gap: 40px;
	padding-top: 32px;
}

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

.stat-num {
	color: var(--text-main);
	font-family: var(--font-title);
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 4px;
}

.stat-lbl {
	color: var(--text-light);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.ak-hero__visual {
	height: 100%;
	overflow: visible;
	position: relative;
	z-index: 2;
}

.visual-frame {
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.visual-frame img {
	height: 100%;
	min-height: 700px;
	object-fit: cover;
	width: 100%;
}

.visual-stamp {
	align-items: center;
	background: var(--bg-main);
	border-radius: 50%;
	bottom: 80px;
	box-shadow: var(--shadow-lg);
	display: flex;
	height: 140px;
	justify-content: center;
	left: -70px;
	pointer-events: none;
	position: absolute;
	width: 140px;
	z-index: 10;
}

.stamp-text {
	animation: spin 12s linear infinite;
	fill: var(--text-main);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	transform-origin: center;
}

.stamp-center {
	color: var(--accent-clay);
	font-family: var(--font-title);
	font-size: 18px;
	font-style: italic;
	position: absolute;
}

@keyframes spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* ================================================================
   CATEGORIES BENTO GRID
   ================================================================ */
.ak-categories {
	padding: 120px 0;
}

.ak-bento-grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(2, 280px);
}

.bento-box {
	border-radius: var(--radius-md);
	display: flex;
	flex-direction: column;
	padding: 40px;
	position: relative;
	transition: var(--transition);
}

.bento-box:hover {
	transform: translateY(-8px);
}

.bento-icon {
	color: inherit;
	font-family: var(--font-title);
	font-size: 48px;
	font-style: italic;
	font-weight: 400;
	line-height: 1;
	margin-bottom: auto;
	opacity: 0.2;
}

.bento-box h3 {
	font-family: var(--font-title);
	font-size: 26px;
	font-weight: 500;
	margin: 0 0 12px;
}

.bento-box p {
	font-size: 15px;
	line-height: 1.6;
	margin: 0;
	opacity: 0.8;
}

/* Bento Placements & Colors */
.bento-box:nth-child(1) {
	background-color: var(--accent-sand);
	color: var(--text-main);
	grid-column: 1 / 3;
}
.bento-box:nth-child(2) {
	background-color: var(--accent-olive);
	color: #fff;
	grid-column: 3 / 4;
}
.bento-box:nth-child(3) {
	background-color: var(--bg-surface);
	color: var(--text-main);
	grid-column: 4 / 5;
}
.bento-box:nth-child(4) {
	background-color: var(--accent-clay);
	color: #fff;
	grid-column: 1 / 2;
}
.bento-box:nth-child(5) {
	background-color: var(--text-main);
	color: #fff;
	grid-column: 2 / 5;
}

/* ================================================================
   ABOUT (ASYMMETRIC)
   ================================================================ */
.ak-about {
	background: var(--bg-surface);
	padding: 120px 0;
}

.ak-about__wrapper {
	align-items: center;
	display: grid;
	gap: 80px;
	grid-template-columns: 1fr 1fr;
}

.ak-about__image {
	position: relative;
}

.image-mask {
	border-radius: var(--radius-pill) var(--radius-pill) 0 0;
	height: 600px;
	overflow: hidden;
	position: relative;
	z-index: 2;
}

.image-mask img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bg-shape {
	background: var(--accent-sand);
	border-radius: var(--radius-pill);
	bottom: -40px;
	height: 80%;
	left: -40px;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.ak-about__content {
	max-width: 500px;
}

.content-text {
	color: var(--text-light);
	font-size: 17px;
	line-height: 1.8;
}

/* ================================================================
   PRODUCTS CARDS
   ================================================================ */
.ak-products {
	padding: 120px 0;
}

.ak-product-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.product-card {
	background: var(--bg-surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	text-decoration: none;
	transition: var(--transition);
}

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

.product-img-wrapper {
	border-radius: var(--radius-md) var(--radius-md) 0 0;
	height: 280px;
	overflow: hidden;
	position: relative;
}

.product-img-wrapper img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

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

.product-img-wrapper .tag {
	background: var(--bg-surface);
	border-radius: var(--radius-pill);
	color: var(--text-main);
	font-size: 11px;
	font-weight: 700;
	left: 20px;
	padding: 8px 16px;
	position: absolute;
	text-transform: uppercase;
	top: 20px;
}

.product-info {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 32px;
}

.product-info h3 {
	color: var(--text-main);
	font-family: var(--font-title);
	font-size: 24px;
	font-weight: 500;
	margin: 0 0 12px;
}

.product-info p {
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 24px;
}

.product-price {
	align-items: center;
	border-top: 1px solid var(--accent-sand);
	display: flex;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 20px;
}

.product-price strong {
	color: var(--accent-clay);
	font-size: 18px;
	font-weight: 600;
}

.plus-icon {
	align-items: center;
	background: var(--bg-alt);
	border-radius: 50%;
	color: var(--accent-olive);
	display: flex;
	height: 40px;
	justify-content: center;
	transition: var(--transition);
	width: 40px;
}

.product-card:hover .plus-icon {
	background: var(--accent-olive);
	color: #fff;
}

/* ================================================================
   PROCESS TIMELINE
   ================================================================ */
.ak-process {
	background: var(--bg-alt);
	padding: 120px 0;
}

.ak-timeline {
	display: grid;
	gap: 40px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: 60px;
}

.timeline-step {
	position: relative;
}

.timeline-step::before {
	background: var(--accent-olive);
	content: "";
	height: 1px;
	left: 60px;
	opacity: 0.3;
	position: absolute;
	top: 30px;
	width: calc(100% - 20px);
}

.timeline-step:last-child::before {
	display: none;
}

.step-marker {
	align-items: center;
	background: var(--bg-surface);
	border-radius: 50%;
	box-shadow: var(--shadow-sm);
	color: var(--accent-olive);
	display: flex;
	font-family: var(--font-title);
	font-size: 24px;
	font-style: italic;
	height: 60px;
	justify-content: center;
	margin-bottom: 24px;
	position: relative;
	width: 60px;
	z-index: 2;
}

.step-content h3 {
	color: var(--text-main);
	font-family: var(--font-title);
	font-size: 22px;
	font-weight: 500;
	margin: 0 0 12px;
}

.step-content p {
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.7;
	margin: 0;
}

/* ================================================================
   TESTIMONIAL
   ================================================================ */
.ak-testimonial {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 600px;
	padding: 120px 0;
	position: relative;
}

.testimonial-bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.testimonial-bg img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.testimonial-bg .overlay {
	background: rgba(34, 50, 37, 0.85); /* Deep forest green overlay */
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.testimonial-content {
	align-items: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	position: relative;
	text-align: center;
	z-index: 2;
}

.quote-icon {
	color: var(--accent-clay);
	margin-bottom: 40px;
	opacity: 0.8;
}

.testimonial-content blockquote {
	font-family: var(--font-title);
	font-size: clamp(28px, 4vw, 48px);
	font-style: italic;
	font-weight: 400;
	line-height: 1.4;
	margin: 0 0 40px;
	max-width: 900px;
	text-wrap: balance;
}

.testimonial-content .author strong {
	color: var(--accent-sand);
	display: block;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 8px;
	text-transform: uppercase;
}

.testimonial-content .author span {
	font-size: 14px;
	opacity: 0.7;
}

/* ================================================================
   FAQ SCROLL BENTO
   ================================================================ */
.ak-faq {
	background: var(--bg-main);
	padding: 120px 0;
}

.ak-faq__wrapper {
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr 1fr;
}

.ak-faq__header {
	position: sticky;
	top: 120px;
}

.faq-graphic {
	border-radius: var(--radius-md);
	height: 400px;
	margin-top: 40px;
	object-fit: cover;
	width: 100%;
}

.ak-accordion {
	display: flex;
	flex-direction: column;
}

.accordion-item {
	border-bottom: 1px solid var(--accent-sand);
}

.accordion-title {
	align-items: center;
	color: var(--text-main);
	cursor: pointer;
	display: flex;
	font-family: var(--font-title);
	font-size: 20px;
	font-weight: 500;
	justify-content: space-between;
	list-style: none;
	padding: 32px 0;
}

.accordion-title::-webkit-details-marker {
	display: none;
}

.accordion-title .icon {
	position: relative;
	width: 20px;
	height: 20px;
}

.accordion-title .icon::before,
.accordion-title .icon::after {
	background: var(--accent-clay);
	content: "";
	position: absolute;
	transition: transform 0.3s ease;
}

.accordion-title .icon::before {
	height: 2px;
	top: 9px;
	width: 20px;
}

.accordion-title .icon::after {
	height: 20px;
	left: 9px;
	width: 2px;
}

.accordion-item[open] .icon::after {
	transform: rotate(90deg) scale(0);
}

.accordion-content {
	color: var(--text-light);
	font-size: 16px;
	line-height: 1.8;
	padding-bottom: 32px;
}

/* ================================================================
   BLOG POSTS
   ================================================================ */
.ak-blog {
	background: var(--bg-main);
	padding: 120px 0;
}

.ak-post-grid {
	display: grid;
	gap: 32px;
	grid-template-columns: repeat(3, 1fr);
}

.ak-post-card {
	background: var(--bg-surface);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
	color: var(--text-main);
	display: flex;
	flex-direction: column;
	overflow: hidden;
	text-decoration: none;
	transition: var(--transition);
}

.ak-post-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-8px);
}

.ak-post-card__image {
	aspect-ratio: 16 / 10;
	background: var(--bg-alt);
	overflow: hidden;
}

.ak-post-card__image img {
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	width: 100%;
}

.ak-post-card:hover .ak-post-card__image img {
	transform: scale(1.05);
}

.ak-post-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 32px;
}

.ak-post-card__content time {
	color: var(--accent-clay);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-bottom: 14px;
	text-transform: uppercase;
}

.ak-post-card__content h3 {
	color: var(--text-main);
	font-family: var(--font-title);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.25;
	margin: 0 0 12px;
}

.ak-post-card__content p {
	color: var(--text-light);
	font-size: 15px;
	line-height: 1.7;
	margin: 0 0 24px;
}

.ak-post-card__content span {
	color: var(--accent-olive);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	margin-top: auto;
	text-transform: uppercase;
}

/* ================================================================
   CONTACT (MAP OVERLAY)
   ================================================================ */
.ak-contact {
	position: relative;
}

.ak-contact-map {
	height: 700px;
	width: 100%;
}

.ak-contact-map iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.map-placeholder {
	align-items: center;
	background: var(--bg-alt);
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.ak-contact .ak-container {
	bottom: 0;
	left: 0;
	padding: 60px 24px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
}

.ak-contact-card {
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	max-width: 480px;
	padding: 48px;
	pointer-events: auto;
}

.contact-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	list-style: none;
	margin: 32px 0 0;
	padding: 0;
}

.contact-list li {
	align-items: flex-start;
	display: flex;
	gap: 16px;
}

.contact-list .icon {
	color: var(--accent-clay);
	margin-top: 4px;
}

.contact-list .info {
	color: var(--text-light);
	font-size: 16px;
	line-height: 1.6;
}

/* ================================================================
   RESPONSIVE DESIGN
   ================================================================ */
@media (max-width: 1024px) {
	.ak-hero__wrapper,
	.ak-about__wrapper,
	.ak-faq__wrapper {
		grid-template-columns: 1fr;
	}

	.ak-hero__content {
		padding-bottom: 0;
		padding-top: 40px;
	}

	.ak-bento-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto;
	}

	.bento-box {
		grid-column: span 1 !important;
		min-height: 240px;
	}

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

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

	.timeline-step::before {
		display: none;
	}
	
	.visual-stamp {
		display: none;
	}
}

@media (max-width: 768px) {
	.ak-container {
		padding: 0 20px;
	}

	.title {
		font-size: 32px;
	}

	.ak-hero .ak-title {
		font-size: 40px;
	}

	.ak-hero__actions {
		flex-direction: column;
	}

	.btn-primary, .btn-outline {
		justify-content: center;
		width: 100%;
	}

	.ak-hero__stats {
		flex-direction: column;
		gap: 24px;
	}

	.ak-bento-grid,
	.ak-product-grid,
	.ak-timeline,
	.ak-post-grid {
		grid-template-columns: 1fr;
	}

	.image-mask {
		height: 400px;
	}

	.ak-contact .ak-container {
		position: static;
		padding: 0;
	}

	.ak-contact-card {
		border-radius: 0;
		box-shadow: none;
		max-width: 100%;
	}

	.ak-contact-map {
		height: 400px;
	}
}
