/* Typography */
body {
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
	color: #212529;
}
h1, h2, h3, .navbar-brand {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.lead {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}
.section-title {
	font-weight: 700;
}

/* Layout helpers */
.py-lg-6 {
	padding-top: 5.5rem !important;
	padding-bottom: 5.5rem !important;
}
.object-cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Hero */
.hero-section {
	background:
		radial-gradient(1200px 600px at -10% -20%, rgba(99, 102, 241, .08), transparent 60%),
		radial-gradient(1000px 500px at 110% -10%, rgba(16, 185, 129, .08), transparent 60%);
}
.hero-image-wrapper {
	position: relative;
	padding: 1rem;
	display: flex;
	justify-content: flex-start;
}
.hero-image {
	width: 85%;
	max-width: 450px;
	height: auto;
	border-radius: 1rem;
	object-fit: cover;
	filter: brightness(1.02) saturate(1.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
}
@media (max-width: 991px) {
	.hero-image-wrapper {
		margin-top: 1.5rem;
		margin-bottom: 0;
		padding: 0;
		justify-content: center;
	}
	.hero-image {
		width: 100%;
		max-width: 100%;
		border-radius: 0.75rem;
		box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
	}
}
@media (max-width: 576px) {
	.hero-image-wrapper {
		margin-top: 1rem;
		padding: 0 0.5rem;
	}
	.hero-image {
		border-radius: 0.5rem;
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
	}
}

/* Icon circle */
.icon-circle {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	display: inline-grid;
	place-items: center;
	font-weight: 600;
}

/* Feature cards */
.feature-card {
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 1rem;
	padding: 1rem;
	background: #fff;
	box-shadow: 0 1px 2px rgba(0,0,0,.03);
}
.feature-title {
	font-weight: 600;
}
.feature-text {
	color: #6c757d;
	font-size: .9rem;
}

/* Stats */
.stat {
	border: 1px solid rgba(0,0,0,.06);
	border-radius: 1rem;
	padding: .9rem 1.2rem;
	background: #fff;
	min-width: 120px;
}
.stat-value {
	font-weight: 700;
	font-size: 1.25rem;
}
.stat-label {
	color: #6c757d;
	font-size: .85rem;
}

/* Testimonial */
.testimonial-card {
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 1rem;
	padding: 1.2rem;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0,0,0,.04);
	height: 100%;
}

/* Contact */
.contact-card {
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 1rem;
	padding: 1.2rem;
	background: #fff;
}
.contact-avatar {
	width: 56px;
	height: 56px;
	object-fit: cover;
}

/* Utilities */
.btn-lg {
	padding: .8rem 1.2rem;
}

/* Small tweaks */
.navbar-brand {
	letter-spacing: .2px;
}
.badge {
	border: 1px solid rgba(0,0,0,.08);
}

/* Site width */
.container {
	max-width: 1080px;
}

/* Classic black & white buttons */
.btn-primary {
	background-color: #000;
	border-color: #000;
	color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: #111;
	border-color: #111;
	color: #fff;
}
.btn-outline-secondary {
	background-color: #fff;
	color: #000;
	border-color: #000;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
	background-color: #f8f9fa;
	color: #000;
	border-color: #000;
}

/* Button enhancements */
.btn {
	font-weight: 600;
	letter-spacing: .2px;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn:active {
	transform: translateY(0);
	box-shadow: none;
}
.btn:focus-visible {
	outline: none;
	box-shadow: 0 0 0 3px rgba(0,0,0,.15);
}
.btn-primary {
	border-width: 2px;
	box-shadow: 0 2px 0 rgba(0,0,0,.6);
}
.btn-primary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 0 rgba(0,0,0,.6);
}
.btn-primary:active {
	transform: translateY(0);
	box-shadow: 0 1px 0 rgba(0,0,0,.6);
}
.btn-outline-secondary {
	border-width: 2px;
	box-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.btn-outline-secondary:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 0 rgba(0,0,0,.08);
}
.btn-outline-secondary:active {
	transform: translateY(0);
	box-shadow: 0 1px 0 rgba(0,0,0,.06);
}

/* Add subtle arrow to primary CTAs */
.btn-primary::after {
	content: " →";
	transition: transform .15s ease;
	display: inline-block;
}
.btn-primary:hover::after {
	transform: translateX(2px);
}

@media (prefers-reduced-motion: reduce) {
	.btn,
	.btn-primary::after {
		transition: none;
	}
}

/* Hero CTA special styling */
.hero-cta {
	padding: .9rem 1.3rem;
	position: relative;
	isolation: isolate;
}
.hero-cta.btn-primary {
	box-shadow: 0 8px 24px rgba(0,0,0,.15), 0 2px 0 rgba(0,0,0,.6);
}
.hero-cta.btn-primary:hover {
	box-shadow: 0 12px 28px rgba(0,0,0,.18), 0 4px 0 rgba(0,0,0,.6);
}
.hero-cta.btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(255,255,255,0));
	opacity: .6;
	pointer-events: none;
	z-index: -1;
}
.hero-cta.btn-primary::after {
	/* existing arrow preserved */
}
.hero-cta.btn-outline-secondary {
	background-image: linear-gradient(currentColor, currentColor);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: 0% 2px;
}
.hero-cta.btn-outline-secondary:hover {
	background-size: 100% 2px;
}

/* Book price */
.book-price .price-amount {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}
.book-price .price-note {
	margin-top: .35rem;
}

/* Embedded Google Form in modal */
.embed-iframe {
	width: 100%;
	height: 70vh;
	border: 0;
}
@media (max-width: 576px) {
	.embed-iframe {
		height: 80vh;
	}
}

/* Remove all rounded corners site-wide */
:root {
	--bs-border-radius: 0;
	--bs-border-radius-sm: 0;
	--bs-border-radius-lg: 0;
	--bs-border-radius-xl: 0;
	--bs-border-radius-xxl: 0;
	--bs-border-radius-pill: 0;
	--bs-btn-border-radius: 0;
	--bs-card-border-radius: 0;
	--bs-modal-border-radius: 0;
	--bs-badge-border-radius: 0;
	--bs-alert-border-radius: 0;
	--bs-tooltip-border-radius: 0;
	--bs-toast-border-radius: 0;
	--bs-dropdown-border-radius: 0;
	--bs-progress-border-radius: 0;
	--bs-pagination-border-radius: 0;
}
.rounded,
.rounded-1,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-5,
.rounded-pill,
.rounded-circle {
	border-radius: 0 !important;
}
.feature-card,
.testimonial-card,
.stat,
.contact-card,
.ratio,
.badge,
.btn,
.form-control,
.navbar,
.dropdown-menu,
.modal-content {
	border-radius: 0 !important;
}


/* Product grid */
.product-card {
	border: 1px solid rgba(0,0,0,.08);
	background: #fff;
}
.product-cover {
	background: linear-gradient(180deg, #f8f9fa, #f1f3f5);
}
.price-tag {
	font-weight: 700;
}

/* Appeal & interactions */
.product-card {
	position: relative;
	transition: transform .2s ease, box-shadow .2s ease;
	box-shadow: 0 2px 6px rgba(0,0,0,.04);
	border-left: 5px solid #000;
}
.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.product-head .fw-semibold {
	font-size: 1.15rem;
}
.product-card .p-3 {
	padding: 1.35rem 1.5rem;
}
.price-tag {
	font-size: 1.05rem;
}
.product-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	background: #000;
	color: #fff;
	padding: .25rem .5rem;
	font-size: .75rem;
	font-weight: 600;
	letter-spacing: .2px;
}
.chip {
	border: 1px solid rgba(0,0,0,.08);
	background: #fff;
	padding: .2rem .55rem;
	font-size: .8rem;
	border-radius: .5rem;
	color: #6c757d;
}

/* Callout */
.callout {
	border: 1px dashed rgba(0,0,0,.25);
	background: linear-gradient(180deg, #fff, #f8f9fa);
	padding: 1rem 1.2rem;
}
.callout-emoji {
	font-size: 1.5rem;
	line-height: 1;
}

/* Insights Section */
.insight-card {
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.08);
	padding: 2rem;
	height: 100%;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	position: relative;
}
.insight-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
	border-color: rgba(0, 0, 0, 0.12);
}
.insight-icon {
	font-size: 3rem;
	line-height: 1;
	margin-bottom: 1.25rem;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.insight-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 1rem;
	line-height: 1.3;
}
.insight-text {
	font-size: 1rem;
	color: #6c757d;
	line-height: 1.7;
	margin: 0;
}

@media (max-width: 767px) {
	.insight-card {
		padding: 1.5rem;
	}
	.insight-icon {
		font-size: 2.5rem;
	}
	.insight-title {
		font-size: 1.3rem;
	}
	.insight-text {
		font-size: 0.95rem;
	}
}

/* Bundle section */
.bundle-section {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	position: relative;
	overflow: hidden;
}
.bundle-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.05), transparent 50%),
	            radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.05), transparent 50%);
	pointer-events: none;
}
.bundle-content {
	position: relative;
	z-index: 1;
}
.bundle-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.bundle-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1rem;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
	transition: all 0.3s ease;
}
.bundle-item:hover {
	transform: translateX(8px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-color: rgba(0, 0, 0, 0.1);
}
.bundle-item-number {
	width: 32px;
	height: 32px;
	min-width: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
	color: #fff;
	font-weight: 700;
	font-size: 1rem;
	border-radius: 50% !important;
}
.bundle-item-content {
	flex: 1;
}
.bundle-stats {
	flex-wrap: wrap;
	gap: 1.5rem !important;
	padding: 1rem;
	background: rgba(0, 0, 0, 0.02);
	border-left: 3px solid #000;
}

/* Bundle visual - Modern Minimal Style */
.bundle-visual-modern {
	position: relative;
	z-index: 1;
	height: 100%;
	display: flex;
	align-items: center;
}
.bundle-hero-visual {
	width: 100%;
	background: #fff;
	color: #000;
	padding: 3rem 2.5rem;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 500px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.bundle-hero-visual::before {
	content: "";
	position: absolute;
	top: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(0, 0, 0, 0.03), transparent 70%);
	animation: subtleRotate 20s linear infinite;
}
@keyframes subtleRotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

/* Main Price Section */
.bundle-main-price {
	text-align: center;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}
.price-display {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}
.price-currency {
	font-size: 2.5rem;
	font-weight: 300;
	opacity: 0.8;
	letter-spacing: -2px;
	color: #000;
}
.price-number {
	font-size: 6rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -4px;
	position: relative;
	display: inline-block;
	color: #000;
	animation: priceGlow 3s ease-in-out infinite;
}
@keyframes priceGlow {
	0%, 100% { text-shadow: 0 0 20px rgba(0, 0, 0, 0.1); }
	50% { text-shadow: 0 0 30px rgba(0, 0, 0, 0.2), 0 0 40px rgba(0, 0, 0, 0.1); }
}
.price-label {
	font-size: 1rem;
	color: rgba(0, 0, 0, 0.6);
	font-weight: 400;
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* Divider Line */
.bundle-divider-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding: 2rem 0;
	position: relative;
	z-index: 2;
}
.divider-dot {
	width: 8px;
	height: 8px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 50% !important;
	animation: dotPulse 2s ease-in-out infinite;
}
.divider-dot:nth-child(1) { animation-delay: 0s; }
.divider-dot:nth-child(2) { animation-delay: 0.3s; }
.divider-dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes dotPulse {
	0%, 100% { transform: scale(1); opacity: 0.3; }
	50% { transform: scale(1.3); opacity: 0.6; }
}

/* Books Display */
.bundle-books-display {
	display: flex;
	justify-content: space-around;
	gap: 1.5rem;
	margin-bottom: 2rem;
	position: relative;
	z-index: 2;
}
.book-visual-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
	flex: 1;
	transition: transform 0.3s ease;
}
.book-visual-item:hover {
	transform: translateY(-8px);
}
.book-emoji {
	font-size: 3rem;
	line-height: 1;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	animation: emojiFloat 3s ease-in-out infinite;
}
.book-visual-item:nth-child(1) .book-emoji { animation-delay: 0s; }
.book-visual-item:nth-child(2) .book-emoji { animation-delay: 0.4s; }
.book-visual-item:nth-child(3) .book-emoji { animation-delay: 0.8s; }
@keyframes emojiFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}
.book-label {
	font-size: 0.9rem;
	color: rgba(0, 0, 0, 0.7);
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.5px;
}

/* Highlight Badge */
.bundle-highlight {
	text-align: center;
	position: relative;
	z-index: 2;
	padding-top: 1.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.highlight-text {
	display: inline-block;
	font-size: 1.1rem;
	font-weight: 600;
	color: #000;
	letter-spacing: 1px;
	padding: 0.75rem 1.5rem;
	background: rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	animation: highlightPulse 2.5s ease-in-out infinite;
}
@keyframes highlightPulse {
	0%, 100% { 
		transform: scale(1);
		box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	}
	50% { 
		transform: scale(1.05);
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	}
}

.bundle-cta {
	position: relative;
	overflow: hidden;
}

@media (max-width: 991px) {
	.bundle-hero-visual {
		padding: 2.5rem 2rem;
		min-height: 450px;
	}
	.price-number {
		font-size: 4.5rem;
	}
	.price-currency {
		font-size: 2rem;
	}
	.bundle-books-display {
		flex-direction: column;
		gap: 1.5rem;
	}
	.book-visual-item {
		flex-direction: row;
		justify-content: center;
		gap: 1rem;
	}
	.book-emoji {
		font-size: 2.5rem;
	}
	.bundle-divider-line {
		padding: 1.5rem 0;
	}
}

/* Kofe.al Platform Section - Image */
.kofe-image-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}
.kofe-image {
	width: 100%;
	max-width: 500px;
	height: auto;
	border-radius: 1rem;
	object-fit: cover;
	filter: brightness(1.02) saturate(1.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 24px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.kofe-image:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 72px rgba(0, 0, 0, 0.15), 0 12px 32px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
	.kofe-image-wrapper {
		margin-top: 2rem;
		padding: 0;
	}
	.kofe-image {
		border-radius: 0.75rem;
		max-width: 100%;
	}
}

/* Mail Modal Styles */
.mail-modal-content {
	border: 2px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
	background: #fff;
}
.mail-modal-header {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	padding: 1.5rem 2rem;
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}
.mail-modal-title {
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 700;
	font-size: 1.5rem;
	color: #000;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}
.mail-icon {
	font-size: 1.75rem;
	line-height: 1;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
	animation: mailIconFloat 3s ease-in-out infinite;
}
@keyframes mailIconFloat {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}
.mail-modal-body {
	padding: 2rem;
}
.mail-modal-description {
	font-size: 1.1rem;
	font-weight: 500;
	line-height: 1.6;
	color: #495057;
}
.mail-form-label {
	font-weight: 600;
	color: #000;
	margin-bottom: 0.5rem;
	font-size: 0.95rem;
	letter-spacing: 0.2px;
}
.mail-form-control {
	border: 2px solid rgba(0, 0, 0, 0.1);
	padding: 0.75rem 1rem;
	font-size: 1rem;
	transition: all 0.2s ease;
	background: #fff;
	color: #000;
}
.mail-form-control:focus {
	border-color: #000;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
	outline: none;
	background: #fff;
}
.mail-form-control::placeholder {
	color: #6c757d;
	opacity: 0.6;
}
.mail-submit-btn {
	position: relative;
	overflow: hidden;
	min-width: 120px;
}
.mail-submit-loader {
	display: flex;
	align-items: center;
	justify-content: center;
}
.spinner-border-sm {
	width: 1rem;
	height: 1rem;
	border-width: 0.15em;
}

/* Modal backdrop */
.modal-backdrop {
	background-color: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(4px);
}

/* Toast styles */
.toast {
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.toast-header {
	background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	font-weight: 600;
}

/* Responsive modal */
@media (max-width: 576px) {
	.mail-modal-header {
		padding: 1.25rem 1.5rem;
	}
	.mail-modal-title {
		font-size: 1.3rem;
	}
	.mail-modal-body {
		padding: 1.5rem;
	}
	.mail-form-control {
		padding: 0.65rem 0.9rem;
		font-size: 0.95rem;
	}
}

