@charset "utf-8";
/* CSS Document 

Tooplate 2148 Bistro Elegance

https://www.tooplate.com/view/2148-bistro-elegance

*/

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	color: #333;
	background: #fff;
	overflow-x: hidden;
}

/* Desktop Navigation */
.desktop-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: white;
	z-index: 1000;
	box-shadow: 0px 1px 13.8px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
	display: block;
}

/* Mobile Navigation */
.mobile-nav {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: white;
	z-index: 1000;
	box-shadow: 0px 1px 13.8px rgba(0, 0, 0, 0.15);
	display: none;
}

.nav-container {
	max-width: 1512px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	height: 80px;
}

.logo {
	font-size: 1.8rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.logo:hover {
	transform: translateY(-2px);
}

.logo img {
	height: 70px;
	width: auto;
}

.logo span {
	font-size: 1.5rem;
	font-weight: 600;
	color: #333;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 40px;
	margin-left: auto;
	align-items: center;
}

.nav-links li {
	display: inline-block;
}

.nav-links a {
	text-decoration: none;
	color: #000;
	font-weight: 400;
	font-size: 16px;
	line-height: 19.63px;
	transition: all 0.3s ease;
	cursor: pointer;
	padding: 0;
	border: none;
	position: relative;
}

.nav-links a:hover,
.nav-links a.active {
	color: #D84C4C;
	border: none;
	background: none;
}

/* Mobile Navigation Styles */
.mobile-nav-container {
	max-width: 1512px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	height: 70px;
}

.mobile-logo {
	font-size: 1.5rem;
	font-weight: bold;
	color: #333;
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.mobile-logo img {
	height: 55px;
	width: auto;
}

.mobile-logo span {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
}

.hamburger-menu {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 32px;
	height: 28px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	position: relative;
}

.hamburger-menu span {
	width: 100%;
	height: 3px;
	background: #333;
	transition: all 0.3s ease;
	border-radius: 2px;
	display: block;
}

.hamburger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu-overlay {
	position: fixed;
	top: 70px;
	left: -100%;
	width: 280px;
	height: calc(100vh - 70px);
	background: white;
	box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
	transition: left 0.3s ease;
	z-index: 999;
	overflow-y: auto;
}

.mobile-menu-overlay.active {
	left: 0;
}

.mobile-nav-links {
	list-style: none;
	padding: 20px;
	margin: 0;
}

.mobile-nav-links li {
	margin-bottom: 5px;
}

.mobile-nav-link {
	display: block;
	padding: 15px 20px;
	color: #000;
	text-decoration: none;
	font-size: 16px;
	font-weight: 400;
	border-radius: 8px;
	transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
	background: rgba(216, 76, 76, 0.1);
	color: #D84C4C;
}

/* Hero Banner Section */
.hero-banner {
	position: relative;
	width: 100%;
	max-width: none;
	height: calc(100vh - 80px);
	min-height: 600px;
	margin-top: 80px;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	overflow: hidden;
	background: #1a1a1a;
}

.banner-slideshow {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.banner-slide {
	position: absolute;
	width: 100%;
	height: 100%;
	display: none;
	animation: bannerFade 1s ease-in-out;
}

/* Make first slide visible by default to prevent black screen */
.banner-slide:first-child {
	display: block;
}

.banner-slide.active {
	display: block;
}

.banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.banner-content {
	position: relative;
	z-index: 10;
	height: 100%;
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0 80px;
}

.banner-text {
	max-width: 800px;
	color: white;
	animation: slideInLeft 1s ease-out;
}

.banner-title {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 1.5rem;
	color: #21b406;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-description {
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 2.5rem;
	color: #f0f0f0;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-buttons {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.banner-btn {
	padding: 14px 32px;
	font-size: 1rem;
	font-weight: 500;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.3s ease;
	display: inline-block;
	cursor: pointer;
}

.banner-btn.primary {
	background: #21b406;
	color: white;
	box-shadow: 0 4px 15px rgba(33, 180, 6, 0.3);
}

.banner-btn.primary:hover {
	background: #1a9005;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(33, 180, 6, 0.4);
}

.banner-btn.secondary {
	background: transparent;
	color: white;
	border: 2px solid white;
}

.banner-btn.secondary:hover {
	background: white;
	color: #21b406;
	transform: translateY(-2px);
}

.banner-dots {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 15;
	display: flex;
	gap: 12px;
}

.banner-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.banner-dot:hover {
	background: rgba(255, 255, 255, 0.8);
}

.banner-dot.active {
	background: white;
	width: 40px;
	border-radius: 6px;
}

@keyframes bannerFade {
	from {
		opacity: 0.4;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.diagonal-grid {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.soft-block {
	position: absolute;
	height: 800px;
	background: #f0f0f0;
	transform: rotate(45deg);
	animation: moveBackForth 20s ease-in-out infinite;
	border-radius: 5px;
	opacity: 0.4;
}

@keyframes moveBackForth {

	0%,
	100% {
		transform: translateX(-50px) rotate(45deg);
	}

	50% {
		transform: translateX(50px) rotate(45deg);
	}
}

.static-decoration {
	position: absolute;
	top: 0;
	right: 0;
	width: 400px;
	height: 400px;
	pointer-events: none;
	z-index: 1;
}

.bottom-right-decoration {
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 300px;
	height: 200px;
	pointer-events: none;
	z-index: 1;
}

.static-block {
	position: absolute;
	background: linear-gradient(45deg, #f0f0f0, #e5e5e5, #f5f5f5);
	transform: rotate(45deg);
	border-radius: 3px;
	opacity: 0.6;
}

.static-block-outline {
	position: absolute;
	background: transparent;
	border: 2px solid #e0e0e0;
	transform: rotate(45deg);
	border-radius: 3px;
	opacity: 0.6;
}

.red-block {
	position: absolute;
	background: #21b406;
	transform: rotate(45deg);
	border-radius: 4px;
	opacity: 0.7;
}

.red-block-outline {
	position: absolute;
	background: transparent;
	border: 2px solid #21b406;
	transform: rotate(45deg);
	border-radius: 4px;
	opacity: 0.7;
}

.hero-content {
	text-align: center;
	z-index: 2;
	max-width: 800px;
	padding: 0 2rem;
	margin-top: 100px;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	animation: fadeInUp 1s ease;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: #666;
	animation: fadeInUp 1s ease 0.3s both;
	position: relative;
	min-height: 2em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.text-option {
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	right: 0;
	opacity: 0;
	animation: textCycle 12s ease-in-out infinite;
	white-space: normal;
	padding: 0 20px;
}

.text-option:nth-child(1) {
	animation-delay: 0s;
}

.text-option:nth-child(2) {
	animation-delay: 4s;
}

.text-option:nth-child(3) {
	animation-delay: 8s;
}

@keyframes textCycle {

	0%,
	100% {
		opacity: 0;
		transform: translateY(20px) scale(0.95);
	}

	8%,
	25% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	33% {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
}

.cta-btn {
	background: #e74c3c;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 50px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	animation: fadeInUp 1s ease 0.6s both;
	text-decoration: none;
	display: inline-block;
}

.cta-btn:hover {
	background: #c0392b;
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Section Styles */
section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: 3rem;
	color: #333;
	position: relative;
}

h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: #e0e0e0;
	border-radius: 2px;
}

/* Products Section */
.products-section {
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	padding: 6rem 0;
	position: relative;
	overflow: hidden;
	max-width: none;
	margin: 0;
}

.products-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 200px;
	background: linear-gradient(180deg, rgba(33, 180, 6, 0.03) 0%, transparent 100%);
	pointer-events: none;
}

.products-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
}

.products-badge {
	display: inline-block;
	background: linear-gradient(135deg, #21b406 0%, #1a9005 100%);
	color: white;
	padding: 0.5rem 1.5rem;
	border-radius: 50px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1.5rem;
	box-shadow: 0 4px 15px rgba(33, 180, 6, 0.3);
	animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
	0%, 100% {
		transform: scale(1);
		box-shadow: 0 4px 15px rgba(33, 180, 6, 0.3);
	}
	50% {
		transform: scale(1.05);
		box-shadow: 0 6px 20px rgba(33, 180, 6, 0.4);
	}
}

.products-title {
	font-size: 3rem;
	font-weight: 700;
	color: #1a3d1f;
	margin-bottom: 1rem;
	line-height: 1.2;
	position: relative;
}

.products-title::after {
	display: none;
}

.products-subtitle {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.8;
	margin-bottom: 2rem;
	font-weight: 400;
}

.products-divider {
	width: 100px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #21b406, transparent);
	margin: 0 auto;
	border-radius: 2px;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
	margin-bottom: 3rem;
	padding: 0 2rem;
	position: relative;
	z-index: 1;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 768px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.product-card {
	background: white;
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
	border: 2px solid transparent;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.product-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(33, 180, 6, 0.05) 0%, transparent 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 0;
}

.product-card:hover::before {
	opacity: 1;
}

.product-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: 0 20px 50px rgba(33, 180, 6, 0.15);
	border-color: #21b406;
}

.product-badges-group {
	position: absolute;
	top: 15px;
	left: 15px;
	z-index: 10;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.product-badge-white {
	background: white;
	color: #1a3d1f;
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	display: inline-block;
}

.product-badge-green {
	background: linear-gradient(135deg, #21b406 0%, #1a9005 100%);
	color: white;
	padding: 0.4rem 1rem;
	border-radius: 50px;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.3px;
	box-shadow: 0 2px 8px rgba(33, 180, 6, 0.4);
	display: inline-block;
}

.product-image-wrapper {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	border-radius: 18px 18px 0 0;
	background: #f0f0f0;
}

.product-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .product-image {
	transform: scale(1.15) rotate(2deg);
}

.product-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(33, 180, 6, 0.9) 0%, rgba(26, 144, 5, 0.9) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.product-card:hover .product-overlay {
	opacity: 0;
}

.overlay-icon {
	font-size: 4rem;
	animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
}

.menu-item {
	background: white;
	padding: 0;
	border-radius: 20px;
	transition: all 0.4s ease;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.menu-item-image {
	width: 100%;
	height: 200px;
	border-radius: 10px;
	margin-bottom: 1.5rem;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.menu-item-image:hover {
	transform: scale(1.05);
}

/* Enhanced Product Card Content */
.product-card .menu-item-content {
	padding: 2rem;
	position: relative;
	z-index: 1;
}

.product-card .menu-item-content h3 {
	color: #1a3d1f;
	margin-bottom: 0.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	transition: color 0.3s ease;
}

.product-card:hover .menu-item-content h3 {
	color: #21b406;
}

.product-category {
	color: #21b406;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 1rem;
}

.product-description {
	color: #666;
	font-size: 0.95rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	flex: 1;
}

.product-btn {
	background: linear-gradient(135deg, #21b406 0%, #1a9005 100%);
	border: none;
	color: white;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
	box-shadow: 0 4px 15px rgba(33, 180, 6, 0.3);
	position: relative;
	overflow: hidden;
}

.product-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0;
	height: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	transform: translate(-50%, -50%);
	transition: width 0.6s, height 0.6s;
}
/* Product SKU */
.product-sku {
	color: #21b406;
	font-size: 0.875rem;
	font-weight: 700;
	margin-bottom: 1rem;
	letter-spacing: 0.5px;
}

/* Product Features List */
.product-features {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	flex: 1;
}

.product-features li {
	color: #555;
	font-size: 0.9rem;
	line-height: 1.8;
	padding: 0.4rem 0;
	position: relative;
	padding-left: 0;
}

.product-features li::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background: #21b406;
	border-radius: 50%;
	margin-right: 0.5rem;
	vertical-align: middle;
}

/* Product Buttons */
.product-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: auto;
	align-items: center;
	justify-content: center;
}

.btn-request-quote {
	width: 100%;
	background: linear-gradient(135deg, #21b406 0%, #1a9005 100%);
	color: white;
	border: none;
	padding: 0.5rem 1.5rem;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 12px rgba(33, 180, 6, 0.3);
}

.btn-request-quote:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(33, 180, 6, 0.4);
	background: linear-gradient(135deg, #1a9005 0%, #157a04 100%);
}

.btn-learn-more {
	width: 100%;
	background: white;
	color: #21b406;
	border: 2px solid #21b406;
	padding: 0.5rem 1.5rem;
	border-radius: 8px;
	font-size: 0.75rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.btn-learn-more:hover {
	background: #21b406;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(33, 180, 6, 0.3);
}

.product-btn:hover::before {
	width: 300px;
	height: 300px;
}

.product-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(33, 180, 6, 0.4);
}
.menu-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.menu-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.1), transparent);
	transition: left 0.5s ease;
}

.menu-item:hover::before {
	left: 100%;
}

.menu-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menu-item h3 {
	color: #333;
	margin-bottom: 1rem;
	font-size: 1.5rem;
}

.menu-item p {
	color: #666;
	margin-bottom: 1rem;
}

.price {
	font-size: 1.2rem;
	font-weight: bold;
	color: #e74c3c;
	margin-top: auto;
	margin-bottom: 1rem;
}

.ingredients-btn {
	background: none;
	border: 2px solid #21b406;
	color: #21b406;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	margin-top: 1rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 0.875rem;
}

.ingredients-btn:hover {
	background: #21b406;
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(33, 180, 6, 0.3);
}

/* Responsive Design for Products Section */
@media (max-width: 1200px) {
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 2rem;
	}
}

@media (max-width: 768px) {
	.products-section {
		padding: 4rem 1.5rem;
	}
	
	.products-title {
		font-size: 2.2rem;
	}
	
	.products-subtitle {
		font-size: 1rem;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}
	
	.product-image-wrapper {
		height: 250px;
	}
	
	.product-card .menu-item-content {
		padding: 1.5rem;
	}
	
	.product-badges-group {
		top: 12px;
		left: 12px;
		gap: 6px;
	}
	
	.product-badge-white,
	.product-badge-green {
		padding: 0.3rem 0.8rem;
		font-size: 0.7rem;
	}
	
	.product-buttons {
		flex-direction: column;
	}
	
	.btn-request-quote,
	.btn-learn-more {
		width: 100%;
	}
}

@media (max-width: 480px) {
	.products-title {
		font-size: 1.8rem;
	}
	
	.products-badge {
		padding: 0.4rem 1rem;
		font-size: 0.75rem;
	}
	
	.product-image-wrapper {
		height: 220px;
	}
	
	.overlay-icon {
		font-size: 3rem;
	}
	
	.product-features li {
		font-size: 0.85rem;
	}
}

/* Ingredients Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	animation: fadeIn 0.3s ease;
}

.modal-content {
	background: white;
	margin: 10% auto;
	padding: 2rem;
	border-radius: 15px;
	width: 90%;
	max-width: 500px;
	position: relative;
	animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes slideIn {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 2rem;
	cursor: pointer;
	color: #999;
}

.close:hover {
	color: #333;
}

.ingredient-list {
	list-style: none;
	margin-top: 1rem;
}

.ingredient-list li {
	padding: 0.5rem 0;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
}

.allergen {
	color: #e74c3c;
	font-weight: bold;
}

/* Reservation Section */
.reservation {
	background: #f8f9fa;
	border-radius: 20px;
	padding: 3rem;
	margin: 3rem 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.reservation-left {
	width: 100%;
}

.reservation-right {
	width: 100%;
	height: 100%;
	min-height: 500px;
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}

.reservation-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 15px;
}

.reservation-form {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

.form-group {
	display: flex;
	flex-direction: column;
}

.form-group.full-width {
	grid-column: 1 / -1;
}

.form-group label {
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 1rem;
	border: 2px solid #eee;
	border-radius: 10px;
	font-size: 1rem;
	font-family: 'Arial', sans-serif;
	transition: border-color 0.3s ease;
	resize: vertical;
}

.form-group textarea {
	min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #e74c3c;
}

.submit-btn {
	grid-column: 1 / -1;
	background: #e74c3c;
	color: white;
	padding: 1rem 2rem;
	border: none;
	border-radius: 10px;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s ease;
	justify-self: start;
}

.submit-btn:hover {
	background: #c0392b;
	transform: translateY(-2px);
}
/* Contact Section Styles */
.contact-section {
	background: white;
	padding: 40px 0;
	max-width: 100%;
	margin: 0;
}

@media (min-width: 640px) {
	.contact-section {
		padding: 60px 0;
	}
}

@media (min-width: 768px) {
	.contact-section {
		padding: 80px 0;
	}
}

.contact-container {
	max-width: 1538px;
	margin: 0 auto;
	padding: 0 1rem;
	height: 100%;
	display: flex;
	align-items: center;
}

@media (min-width: 640px) {
	.contact-container {
		padding: 0 1.5rem;
	}
}

@media (min-width: 768px) {
	.contact-container {
		padding: 0 70px;
	}
}

.contact-grid {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	align-items: start;
}

@media (min-width: 640px) {
	.contact-grid {
		gap: 2rem;
	}
}

@media (min-width: 768px) {
	.contact-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem;
	}
}

.contact-image-wrapper {
	width: 100%;
	height: 400px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
	.contact-image-wrapper {
		height: 100%;
		min-height: 500px;
	}
}

.contact-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-form-wrapper {
	margin-top: 2rem;
}

@media (min-width: 768px) {
	.contact-form-wrapper {
		margin-top: 0;
	}
}

.contact-title {
	font-size: 32px;
	font-weight: 400;
	color: #21b406;
	line-height: 1.3;
	margin-bottom: 18px;
}

.contact-subtitle {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
	margin-bottom: 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.form-field {
	width: 100%;
}

.form-field input,
.form-field textarea {
	width: 100%;
	padding: 1rem;
	border-radius: 4px;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Arial', sans-serif;
	color: #666;
	background: #f5f5f5;
	border: none;
	outline: none;
	transition: all 0.3s ease;
}

.form-field input.error,
.form-field textarea.error {
	border: 2px solid #dc2626;
}

.form-field input.error:focus,
.form-field textarea.error:focus {
	border: 2px solid #dc2626;
}

.error-message {
	color: #dc2626;
	font-size: 14px;
	margin-top: 0.25rem;
	display: none;
}

.error-message.show {
	display: block;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
	color: #999;
}

.form-field input:focus,
.form-field textarea:focus {
	background: #ebebeb;
	outline: none;
}
.form-checkbox {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin-top: 2px;
	cursor: pointer;
	flex-shrink: 0;
	accent-color: #21b406;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 2px solid #ccc;
	border-radius: 3px;
	background-color: white;
	position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
	background-color: #21b406;
	border-color: #21b406;
}

.form-checkbox input[type="checkbox"]:checked::after {
	content: '✓';
	position: absolute;
	color: white;
	font-size: 14px;
	font-weight: bold;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.form-checkbox label {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	cursor: pointer;
}

.privacy-link {
	color: #21b406;
	text-decoration: underline;
}

.privacy-link:hover {
	color: #1a9005;
}

.form-field textarea {
	resize: none;
	min-height: 120px;
}

.form-submit {
	margin-top: 1.5rem;
}

.contact-submit-btn {
	width: 100%;
	background: #21b406;
	border: 2px solid #21b406;
	color: white;
	padding: 1rem 2rem;
	border-radius: 30px;
	font-size: 16px;
	font-weight: 500;
	cursor: pointer;
/* New About Section Styles */
.about-section-new {
	padding: 5rem 2rem;
	background: white;
	max-width: 100%;
	margin: 0;
}

.about-container-new {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {
	.about-container-new {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.about-image-side {
	width: 100%;
	height: 100%;
	min-height: 400px;
}

@media (min-width: 768px) {
	.about-image-side {
		min-height: 500px;
	}
}

.about-main-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content-side {
	padding: 1rem 0;
}

.about-heading {
	font-size: 2.5rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 600;
}

.about-intro {
	font-size: 1.2rem;
	color: #21b406;
	margin-bottom: 2rem;
	font-weight: 500;
	line-height: 1.6;
}

.about-text-block {
	margin-bottom: 2rem;
}

.about-text-block h3 {
	font-size: 1.5rem;
	color: #333;
	margin-bottom: 0.75rem;
	font-weight: 600;
}

.about-text-block p {
	font-size: 1rem;
	color: #666;
	line-height: 1.8;
}
/* Enhanced About Section Styles */
.about-section {
	background: #f8f9fa;
	padding: 5rem 2rem;
	max-width: 100%;
	margin: 0;
}

.about-section h2 {
	font-size: 3rem;
	color: #333;
	margin-bottom: 1rem;
	font-weight: 700;
}

.about-intro {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 4rem;
	background: white;
	padding: 2.5rem 3rem;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	border-top: 4px solid #21b406;
}

.about-lead {
	font-size: 1.4rem;
	color: #21b406;
	line-height: 1.8;
	font-weight: 500;
	margin: 0;
}

.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2.5rem;
	max-width: 1200px;
	margin: 0 auto 4rem;
}

.about-card {
	background: white;
	padding: 3rem 2.5rem;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.4s ease;
	text-align: center;
	border-left: 5px solid #21b406;
	position: relative;
	overflow: hidden;
}

.about-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, #21b406, #1a9005);
}

.about-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 15px 45px rgba(33, 180, 6, 0.2);
	border-left-color: #1a9005;
}

.about-icon {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	display: inline-block;
	animation: float 3s ease-in-out infinite;
	filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.about-card h3 {
	color: #333;
	font-size: 1.8rem;
	margin-bottom: 1.2rem;
	font-weight: 700;
}

.about-card p {
	color: #666;
	line-height: 1.9;
	font-size: 1.05rem;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto 4rem;
	padding: 3.5rem 2.5rem;
	background: white;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
	border: 2px solid #e8f5e9;
}

.stat-item {
	text-align: center;
	padding: 1.5rem;
	transition: all 0.3s ease;
	border-radius: 10px;
}

.stat-item:hover {
	background: #f1f8f4;
	transform: scale(1.05);
}

.stat-number {
	font-size: 3rem;
	font-weight: 800;
	color: #21b406;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px 4px rgba(33, 180, 6, 0.1);
}

.stat-label {
	font-size: 1.1rem;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	font-weight: 600;
}

.about-cta {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	padding: 3.5rem 3rem;
	border-radius: 20px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
	border-left: 6px solid #21b406;
}

.about-cta h3 {
	text-align: center;
	font-size: 2.2rem;
	color: #333;
	margin-bottom: 3rem;
	font-weight: 700;
	position: relative;
	padding-bottom: 1rem;
}

.about-cta h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: #21b406;
	border-radius: 2px;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 12px;
	transition: all 0.3s ease;
	border: 2px solid transparent;
}

.feature-item:hover {
	background: #e8f5e9;
	border-color: #21b406;
	transform: translateX(8px);
	box-shadow: 0 5px 15px rgba(33, 180, 6, 0.15);
}

.feature-icon {
	font-size: 1.8rem;
	color: #21b406;
	font-weight: bold;
	flex-shrink: 0;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(33, 180, 6, 0.2);
}

.feature-item span:last-child {
	font-size: 1.05rem;
	font-weight: 500;
	color: #333;
	line-height: 1.5;
}

/* Simple About Section Styles */
.about-section-simple {
	padding: 6rem 2rem;
	background: white;
	max-width: 100%;
	margin: 0;
}

.about-container-simple {
	max-width: 1200px;
	margin: 0 auto;
}

.about-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	align-items: center;
}

@media (min-width: 768px) {
	.about-row {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.about-image-col {
	text-align: center;
	margin-bottom: 2rem;
}

@media (min-width: 768px) {
	.about-image-col {
		margin-bottom: 0;
	}
}

.about-image-simple {
	width: 100%;
	max-width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 992px) {
	.about-image-simple {
		padding-right: 2rem;
	}
}

.about-content-col {
	padding: 0;
}

.about-header-line {
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
	padding: 0;
}

.about-hr {
	width: 60px;
	height: 2px;
	background: #21b406;
	border: none;
	margin: 0 1rem 0 0;
}

.about-label {
	text-transform: uppercase;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 1.5px;
	color: #666;
}

.about-title-simple {
	font-size: 2.5rem;
	font-weight: 700;
	color: #333;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.about-text-simple {
	font-size: 1.05rem;
	color: #666;
	line-height: 1.8;
	margin-bottom: 2rem;
}

.about-btn-custom {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: #21b406;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-transform: capitalize;
}

.about-btn-custom:hover {
	background: #1a9005;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(33, 180, 6, 0.3);
}

/* Redesigned About Section - Enhanced Professional Design */
.about-section-redesign {
	padding: 8rem 2rem;
	background: linear-gradient(135deg, #0a1f0d 0%, #1a3d1f 50%, #0f2912 100%);
	max-width: 100%;
	margin: 0;
	position: relative;
	overflow: hidden;
}

/* Animated background pattern */
.about-section-redesign::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(circle at 20% 30%, rgba(33, 180, 6, 0.15) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(26, 144, 5, 0.12) 0%, transparent 50%),
		radial-gradient(circle at 40% 80%, rgba(33, 180, 6, 0.1) 0%, transparent 50%);
	animation: patternMove 20s ease-in-out infinite;
	pointer-events: none;
}

/* Floating particles effect */
.about-section-redesign::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image:
		radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(2px 2px at 60% 70%, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(1px 1px at 80% 10%, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(2px 2px at 90% 60%, rgba(255, 255, 255, 0.3), transparent),
		radial-gradient(1px 1px at 33% 80%, rgba(255, 255, 255, 0.3), transparent);
	background-size: 200% 200%;
	animation: particlesFloat 30s linear infinite;
	pointer-events: none;
	opacity: 0.4;
}

@keyframes particlesFloat {
	0% {
		background-position: 0% 0%;
	}
	100% {
		background-position: 100% 100%;
	}
}

@keyframes patternMove {
	0%, 100% {
		transform: translate(0, 0) scale(1);
	}
	50% {
		transform: translate(20px, 20px) scale(1.05);
	}
}

.about-header-section {
	text-align: center;
	max-width: 900px;
	margin: 0 auto 5rem;
	position: relative;
	z-index: 1;
}

.about-main-title {
	font-size: 4rem;
	font-weight: 900;
	color: #ffffff;
	margin-bottom: 1.5rem;
	position: relative;
	display: inline-block;
	letter-spacing: -1px;
	text-shadow: 0 4px 20px rgba(33, 180, 6, 0.3);
	animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
	0%, 100% {
		text-shadow: 0 4px 20px rgba(33, 180, 6, 0.3), 0 0 40px rgba(33, 180, 6, 0.1);
	}
	50% {
		text-shadow: 0 4px 30px rgba(33, 180, 6, 0.5), 0 0 60px rgba(33, 180, 6, 0.2);
	}
}

.about-main-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	height: 6px;
	background: linear-gradient(90deg, transparent, #21b406, #1a9005, #21b406, transparent);
	border-radius: 3px;
	box-shadow: 0 0 20px rgba(33, 180, 6, 0.6);
	animation: lineGlow 2s ease-in-out infinite;
}

@keyframes lineGlow {
	0%, 100% {
		box-shadow: 0 0 20px rgba(33, 180, 6, 0.6);
	}
	50% {
		box-shadow: 0 0 30px rgba(33, 180, 6, 0.9);
	}
}

.about-tagline {
	font-size: 1.4rem;
	color: #b8e6b8;
	font-weight: 400;
	margin-top: 2.5rem;
	font-style: italic;
	letter-spacing: 0.5px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-cards-container {
	max-width: 1300px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 4rem;
	position: relative;
	z-index: 1;
}

@media (min-width: 992px) {
	.about-cards-container {
		grid-template-columns: 1fr 1fr;
		gap: 4rem;
	}
}

.about-mission-card,
.about-vision-card {
	background: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(15px);
	border-radius: 35px;
	padding: 0;
	box-shadow:
		0 25px 70px rgba(0, 0, 0, 0.35),
		0 0 0 1px rgba(255, 255, 255, 0.15) inset,
		0 10px 30px rgba(33, 180, 6, 0.1);
	transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	overflow: hidden;
	position: relative;
	border: 3px solid rgba(33, 180, 6, 0.25);
}

/* Animated gradient border */
.about-mission-card::before,
.about-vision-card::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	background: linear-gradient(
		60deg,
		#21b406,
		#1a9005,
		#2dd40f,
		#21b406,
		#1a9005
	);
	background-size: 400% 400%;
	border-radius: 35px;
	z-index: -1;
	animation: gradientRotate 8s ease infinite;
	opacity: 0;
	transition: opacity 0.6s ease;
	filter: blur(8px);
}

@keyframes gradientRotate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.about-mission-card:hover::before,
.about-vision-card:hover::before {
	opacity: 1;
}

/* Decorative glow elements */
.about-mission-card::after,
.about-vision-card::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80%;
	height: 80%;
	background: radial-gradient(
		circle,
		rgba(33, 180, 6, 0.08) 0%,
		transparent 70%
	);
	border-radius: 50%;
	opacity: 0;
	transition: all 0.8s ease;
	pointer-events: none;
	z-index: 0;
}

.about-mission-card:hover,
.about-vision-card:hover {
	transform: translateY(-30px) scale(1.05);
	box-shadow:
		0 40px 90px rgba(33, 180, 6, 0.45),
		0 0 0 1px rgba(33, 180, 6, 0.4) inset,
		0 0 80px rgba(33, 180, 6, 0.2);
	border-color: #21b406;
}

.about-mission-card:hover::after,
.about-vision-card:hover::after {
	opacity: 1;
	width: 90%;
	height: 90%;
}

.card-icon-wrapper {
	background: linear-gradient(135deg, #21b406 0%, #1a9005 50%, #21b406 100%);
	background-size: 200% 200%;
	padding: 4rem 2rem 2.5rem;
	text-align: center;
	position: relative;
	transition: all 0.6s ease;
	animation: gradientSlide 8s ease infinite;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) inset;
}

@keyframes gradientSlide {
	0%, 100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.about-mission-card:hover .card-icon-wrapper,
.about-vision-card:hover .card-icon-wrapper {
	padding-top: 4.5rem;
	background: linear-gradient(135deg, #1a9005 0%, #21b406 50%, #1a9005 100%);
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2) inset;
}

/* Sparkle effect on icon wrapper */
.card-icon-wrapper::before {
	content: '';
	position: absolute;
	top: 10%;
	left: 10%;
	width: 6px;
	height: 6px;
	background: white;
	border-radius: 50%;
	box-shadow:
		20px 30px 0 2px rgba(255, 255, 255, 0.8),
		40px 10px 0 1px rgba(255, 255, 255, 0.6),
		70px 40px 0 1px rgba(255, 255, 255, 0.7),
		90% 20% 0 1px rgba(255, 255, 255, 0.5);
	animation: sparkle 3s ease-in-out infinite;
	opacity: 0.6;
}

@keyframes sparkle {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.8;
		transform: scale(1.2);
	}
}

/* Decorative wave effect */
.card-icon-wrapper::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 40px;
	background: white;
	clip-path: ellipse(60% 100% at 50% 100%);
	transition: all 0.6s ease;
}

.about-mission-card:hover .card-icon-wrapper::after,
.about-vision-card:hover .card-icon-wrapper::after {
	clip-path: ellipse(70% 100% at 50% 100%);
}

.card-icon {
	font-size: 5.5rem;
	background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
	width: 140px;
	height: 140px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow:
		0 15px 40px rgba(0, 0, 0, 0.3),
		0 0 0 8px rgba(255, 255, 255, 0.3),
		0 0 0 16px rgba(255, 255, 255, 0.15),
		inset 0 -5px 15px rgba(0, 0, 0, 0.05);
	position: relative;
	z-index: 1;
	margin: 0 auto;
	animation: iconFloat 4s ease-in-out infinite;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Icon inner glow */
.card-icon::before {
	content: '';
	position: absolute;
	inset: 10px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(33, 180, 6, 0.1) 0%, transparent 70%);
	opacity: 0;
	transition: opacity 0.6s ease;
}

@keyframes iconFloat {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}
	25% {
		transform: translateY(-10px) rotate(-5deg);
	}
	75% {
		transform: translateY(-10px) rotate(5deg);
	}
}

.about-mission-card:hover .card-icon,
.about-vision-card:hover .card-icon {
	transform: scale(1.25) rotate(360deg);
	background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
	box-shadow:
		0 25px 60px rgba(33, 180, 6, 0.6),
		0 0 0 12px rgba(33, 180, 6, 0.25),
		0 0 0 24px rgba(33, 180, 6, 0.12),
		0 0 80px rgba(33, 180, 6, 0.4),
		inset 0 -5px 20px rgba(33, 180, 6, 0.1);
}

.about-mission-card:hover .card-icon::before,
.about-vision-card:hover .card-icon::before {
	opacity: 1;
}

.card-content-wrapper {
	padding: 3rem 3rem 3.5rem;
	transition: all 0.6s ease;
	position: relative;
	z-index: 1;
}

.about-mission-card:hover .card-content-wrapper,
.about-vision-card:hover .card-content-wrapper {
	padding: 3rem 3.5rem 4rem;
}

.card-title {
	font-size: 2.3rem;
	font-weight: 800;
	color: #1a3d1f;
	margin-bottom: 1.2rem;
	text-align: center;
	transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	letter-spacing: -0.5px;
	position: relative;
	text-transform: uppercase;
}

.about-mission-card:hover .card-title,
.about-vision-card:hover .card-title {
	color: #21b406;
	transform: scale(1.08);
	text-shadow: 0 2px 15px rgba(33, 180, 6, 0.3);
	letter-spacing: 1px;
}

.card-divider {
	width: 70px;
	height: 4px;
	background: linear-gradient(90deg, transparent, #21b406, #1a9005, #21b406, transparent);
	margin: 0 auto 2rem;
	border-radius: 2px;
	transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	box-shadow: 0 2px 10px rgba(33, 180, 6, 0.3);
	position: relative;
}

/* Animated dots on divider */
.card-divider::before,
.card-divider::after {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
	height: 8px;
	background: #21b406;
	border-radius: 50%;
	opacity: 0;
	transition: all 0.6s ease;
}

.card-divider::before {
	left: -15px;
}

.card-divider::after {
	right: -15px;
}

.about-mission-card:hover .card-divider,
.about-vision-card:hover .card-divider {
	width: 140px;
	height: 5px;
	box-shadow: 0 4px 20px rgba(33, 180, 6, 0.6);
}

.about-mission-card:hover .card-divider::before,
.about-mission-card:hover .card-divider::after,
.about-vision-card:hover .card-divider::before,
.about-vision-card:hover .card-divider::after {
	opacity: 1;
}

.card-description {
	font-size: 1.1rem;
	line-height: 2;
	color: #555;
	text-align: center;
	transition: all 0.5s ease;
	font-weight: 400;
	letter-spacing: 0.3px;
	position: relative;
}

.about-mission-card:hover .card-description,
.about-vision-card:hover .card-description {
	color: #2d2d2d;
	transform: translateY(-5px);
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
	.about-section-redesign {
		padding: 6rem 2rem;
	}
	
	.about-main-title {
		font-size: 3rem;
	}
	
	.about-tagline {
		font-size: 1.2rem;
	}
	
	.about-cards-container {
		gap: 3rem;
	}
}

@media (max-width: 768px) {
	.about-section-redesign {
		padding: 5rem 1.5rem;
	}
	
	.about-main-title {
		font-size: 2.5rem;
	}
	
	.about-tagline {
		font-size: 1.1rem;
	}
	
	.card-icon {
		width: 110px;
		height: 110px;
		font-size: 4.5rem;
	}
	
	.card-title {
		font-size: 1.9rem;
	}
	
	.card-description {
		font-size: 1rem;
		line-height: 1.8;
	}
	
	.card-content-wrapper {
		padding: 2.5rem 2rem 3rem;
	}
}

@media (max-width: 480px) {
	.about-main-title {
		font-size: 2rem;
	}
	
	.card-icon-wrapper {
		padding: 3rem 1.5rem 2rem;
	}
	
	.card-icon {
		width: 100px;
		height: 100px;
		font-size: 4rem;
	}
	
	.card-title {
		font-size: 1.7rem;
	}
}

.contact-submit-btn:hover {
	background: #1a9005;
	border-color: #1a9005;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(33, 180, 6, 0.3);
}

.contact-info-bottom {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.contact-info-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	color: #666;
	font-size: 16px;
}

.contact-icon {
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	stroke: #21b406;
}

.contact-info-item span {
	line-height: 1.5;
}

/* Footer */
footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 3rem 2rem;
}

.footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
	color: #e74c3c;
}

.footer-section p,
.footer-section a {
	color: #ccc;
	text-decoration: none;
	line-height: 1.8;
}

.footer-section a:hover {
	color: #e74c3c;
}

.footer-links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 1rem;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	padding: 0 10px;
	transition: color 0.3s ease;
}

.footer-links a:hover {
	color: #e74c3c;
}

.footer-links span {
	color: #555;
}

/* Mobile Responsive */
/* Hide desktop nav and show mobile nav on smaller screens */
@media (max-width: 1023px) {
	.desktop-nav {
		display: none;
	}

	.mobile-nav {
		display: block;
	}
	.hero-banner {
		height: calc(100vh - 70px);
		min-height: 500px;
		margin-top: 70px;
	}

	.banner-content {
		padding: 0 20px;
	}

	.banner-text {
		max-width: 100%;
	}

	.banner-title {
		font-size: 2.5rem;
	}

	.banner-subtitle {
		font-size: 1.2rem;
	}

	.banner-description {
		font-size: 1rem;
		margin-bottom: 2rem;
	}

	.banner-buttons {
		flex-direction: column;
		gap: 1rem;
	}

	.banner-btn {
		width: 100%;
		text-align: center;
	}

	.nav-container {
		height: 70px;
		padding: 0 16px;
	}

	.logo img {
		height: 60px;
	}

	/* Mobile Navigation */
	.nav-links {
		position: fixed;
		top: 70px;
		left: -100%;
		width: 280px;
		height: auto;
		max-height: calc(100vh - 70px);
		background: white;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		padding: 20px;
		gap: 0;
		margin-left: 0;
		box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
		border-bottom-right-radius: 20px;
		overflow-y: auto;
		transition: left 0.3s ease;
		z-index: 999;
	}

	.nav-links.active {
		left: 0;
	}

	.nav-links li {
		width: 100%;
		display: block;
	}

	.nav-links a {
		display: block;
		padding: 14px 16px;
		width: 100%;
		border-radius: 8px;
		margin-bottom: 4px;
	}

	.nav-links a:hover,
	.nav-links a.active {
		background: rgba(216, 76, 76, 0.1);
		color: #D84C4C;
	}

	.menu-toggle {
		display: flex;
	}

	.hero-content {
		margin-top: 80px;
		margin-bottom: 80px;
	}

	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1rem;
	}

	h2 {
		font-size: 2rem;
	}

	section {
		padding: 3rem 1rem;
	}

	.reservation {
		padding: 2rem 1rem;
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.reservation-right {
		min-height: 300px;
	}

	.modal-content {
		width: 95%;
		margin: 20% auto;
	}
}

@media (max-width: 768px) {
	.banner-title {
		font-size: 2rem;
	}

	.banner-subtitle {
		font-size: 1.1rem;
	}

	.banner-description {
		font-size: 0.95rem;
	}

	.banner-btn {
		padding: 12px 24px;
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.hero-banner {
		min-height: 500px;
		height: auto;
	}

	.banner-content {
		padding: 20px 16px;
		align-items: flex-start;
	}

	.banner-text {
		width: 100%;
	}

	.banner-title {
		font-size: 1.5rem;
		margin-bottom: 0.75rem;
		line-height: 1.3;
		word-wrap: break-word;
		overflow-wrap: break-word;
	}

	.banner-subtitle {
		font-size: 0.95rem;
		margin-bottom: 0.75rem;
		line-height: 1.4;
	}

	.banner-description {
		font-size: 0.85rem;
		line-height: 1.5;
		margin-bottom: 1.25rem;
	}

	.banner-btn {
		padding: 10px 20px;
		font-size: 0.85rem;
	}

	.banner-buttons {
		width: 100%;
	}

	.banner-dots {
		bottom: 15px;
		gap: 8px;
	}

	.banner-dot {
		width: 10px;
		height: 10px;
	}

	.banner-dot.active {
		width: 30px;
	}

	.nav-container {
		height: 60px;
		padding: 0 12px;
	}

	.logo img {
		height: 50px;
	}

	.logo span {
		font-size: 1.2rem;
	}

	.nav-links {
		top: 60px;
		max-height: calc(100vh - 60px);
	}

	.hero h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	section {
		padding: 2.5rem 1rem;
	}

	.menu-grid {
		grid-template-columns: 1fr;
	}

	.reservation-form {
		grid-template-columns: 1fr;
	}
}

/* Extra small screens */
@media (max-width: 375px) {
	.hero-banner {
		min-height: 480px;
		height: auto;
	}

	.banner-content {
		padding: 15px 12px;
	}

	.banner-title {
		font-size: 1.35rem;
		line-height: 1.25;
		margin-bottom: 0.6rem;
	}

	.banner-subtitle {
		font-size: 0.9rem;
		line-height: 1.3;
		margin-bottom: 0.6rem;
	}

	.banner-description {
		font-size: 0.8rem;
		line-height: 1.4;
		margin-bottom: 1rem;
	}

	.banner-btn {
		padding: 9px 16px;
		font-size: 0.8rem;
	}

	.logo img {
		height: 45px;
	}

	.logo span {
		font-size: 1.1rem;
	}

	.nav-container {
		height: 55px;
	}

	.nav-links {
		top: 55px;
		max-height: calc(100vh - 55px);
		padding: 12px;
	}

	.nav-links a {
		padding: 10px 12px;
		font-size: 15px;
	}
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
	.hero-banner {
		min-height: 100vh;
		height: auto;
	}

	.banner-content {
		padding: 40px 20px;
	}

	.banner-title {
		font-size: 1.8rem;
		margin-bottom: 0.75rem;
	}

	.banner-subtitle {
		font-size: 1rem;
		margin-bottom: 0.75rem;
	}

	.banner-description {
		font-size: 0.9rem;
		margin-bottom: 1.25rem;
	}

	.banner-buttons {
		flex-direction: row;
		gap: 1rem;
	}

	.banner-btn {
		width: auto;
		padding: 10px 24px;
	}
}

/* Contact Section Responsive */
@media (max-width: 768px) {
	.contact-section {
		padding: 3rem 1rem;
	}

	.contact-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.contact-image-wrapper {
		height: 250px;
		order: 1;
	}

	.contact-form-wrapper {
		order: 2;
	}

	.contact-title {
		font-size: 2rem;
	}

	.contact-subtitle {
		font-size: 0.95rem;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 2.5rem 1rem;
	}

	.contact-title {
		font-size: 1.75rem;
	}

	.contact-subtitle {
		font-size: 0.9rem;
	}

	.contact-image-wrapper {
		height: 200px;
	}

	.form-field input,
	.form-field textarea {
		font-size: 14px;
		padding: 12px;
	}

	.contact-submit-btn {
		padding: 12px 24px;
		font-size: 14px;
	}
}

/* Ensure all sections are visible on small screens */
@media (max-width: 768px) {
	body {
		overflow-x: hidden;
	}

	* {
		max-width: 100%;
	}

	img {
		max-width: 100%;
		height: auto;
	}
}
