/* ============================================
   Global Styles
   ============================================ */

:root {
	--primary-color: #B8860B;
	--primary-dark: #8B6914;
	--primary-light: #DAA520;
	--secondary-color: #CD853F;
	--accent-color: #F4A460;
	--text-dark: #2C2C2C;
	--text-light: #6C6C6C;
	--bg-light: #FAFAFA;
	--white: #FFFFFF;
	--shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	--shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.2);
	--shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Inter', sans-serif;
	color: var(--text-dark);
	line-height: 1.6;
	overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
	color: var(--text-dark);
}

.section-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--secondary-color));
	border-radius: 2px;
	box-shadow: 0 2px 8px rgba(184, 134, 11, 0.3);
}

/* ============================================
   Navigation
   ============================================ */

.navbar {
	padding: 1rem 0;
	transition: all 0.3s ease;
}

.navbar-brand {
	font-family: 'Playfair Display', serif;
	font-size: 1.5rem;
	color: var(--primary-color) !important;
	text-decoration: none;
}

.brand-name {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.navbar-nav .nav-link {
	color: var(--text-dark) !important;
	font-weight: 500;
	margin: 0 0.5rem;
	padding: 0.5rem 1rem !important;
	transition: all 0.3s ease;
	position: relative;
}

.navbar-nav .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 2px;
	background: var(--primary-color);
	transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
	width: 80%;
}

.navbar-nav .nav-link:hover {
	color: var(--primary-color) !important;
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
	position: relative;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.85), rgba(205, 133, 63, 0.85)),
				url('https://images.unsplash.com/photo-1581044777550-4cfa60707c03?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: var(--white);
	overflow: hidden;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.75), rgba(205, 133, 63, 0.75));
	z-index: 1;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, 0.03) 10px, rgba(255, 255, 255, 0.03) 20px);
	z-index: 1;
	pointer-events: none;
}

.hero-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0.5px;
	animation: fadeInUp 1s ease 0.1s both;
}

.hero-section .container {
	position: relative;
	z-index: 2;
}

.hero-title {
	font-size: 4.5rem;
	font-weight: 700;
	text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
	animation: fadeInUp 1s ease;
	letter-spacing: -1px;
	line-height: 1.1;
}

.hero-subtitle {
	font-size: 1.8rem;
	font-weight: 400;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
	animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
	animation: fadeInUp 1s ease 0.6s both;
}

.btn-primary {
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border: none;
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 50px;
	box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
	position: relative;
	overflow: hidden;
}

.btn-primary::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;
}

.btn-primary:hover::before {
	width: 300px;
	height: 300px;
}

.btn-primary:hover {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
}

.btn-primary:active {
	transform: translateY(-1px);
}

.btn-outline-light {
	border: 2px solid var(--white);
	color: var(--white);
	padding: 0.75rem 2rem;
	font-weight: 600;
	transition: all 0.3s ease;
	border-radius: 50px;
}

.btn-outline-light:hover {
	background: var(--white);
	color: var(--primary-color);
	transform: translateY(-2px);
	box-shadow: var(--shadow-lg);
}

.scroll-indicator {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: var(--white);
	font-size: 2rem;
	animation: bounce 2s infinite;
	z-index: 2;
	cursor: pointer;
}

/* ============================================
   About Section
   ============================================ */

#about {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.about-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: var(--shadow-xl);
	transform: perspective(1000px) rotateY(-5deg);
	transition: all 0.5s ease;
}

.about-image-wrapper:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.02);
	box-shadow: var(--shadow-xl);
}

.about-image {
	width: 100%;
	height: 500px;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.about-image-wrapper:hover .about-image {
	transform: scale(1.1);
}

.image-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.1), rgba(205, 133, 63, 0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
	opacity: 1;
}

.image-badge {
	position: absolute;
	top: 20px;
	right: 20px;
	background: var(--white);
	padding: 0.75rem 1.25rem;
	border-radius: 50px;
	box-shadow: var(--shadow);
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	color: var(--primary-color);
	font-size: 0.9rem;
	z-index: 2;
}

.image-badge i {
	font-size: 1.2rem;
}

.features-list {
	margin-top: 2rem;
}

.feature-item {
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}

.feature-item i {
	font-size: 1.3rem;
}

/* ============================================
   Services Section
   ============================================ */

#services {
	padding: 100px 0;
}

.service-card {
	background: var(--white);
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	text-align: center;
	border-top: 4px solid var(--primary-color);
	position: relative;
	overflow: hidden;
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.1), transparent);
	transition: left 0.5s ease;
}

.service-card:hover::before {
	left: 100%;
}

.service-card:hover {
	transform: translateY(-15px) scale(1.02);
	box-shadow: var(--shadow-xl);
	border-top-color: var(--primary-light);
}

.service-icon {
	width: 90px;
	height: 90px;
	margin: 0 auto 1.5rem;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 2.2rem;
	box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
	transition: all 0.4s ease;
	position: relative;
}

.service-card:hover .service-icon {
	transform: rotate(360deg) scale(1.1);
	box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
}

.service-card h4 {
	color: var(--text-dark);
	margin-bottom: 1rem;
}

/* ============================================
   Products Section
   ============================================ */

#products {
	padding: 100px 0;
	background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.product-features {
	margin-top: 2rem;
}

.product-feature-item {
	display: flex;
	align-items: center;
	font-size: 1.1rem;
}

.product-gallery {
	margin-top: 2rem;
}

.product-image-main,
.product-image-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: all 0.4s ease;
	cursor: pointer;
	background: #f0f0f0;
}

.product-image-main:hover,
.product-image-item:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-xl);
}

.product-image-main img,
.product-image-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
	background: #f0f0f0;
}

.product-image-main {
	height: 400px;
	min-height: 400px;
}

.product-image-item {
	height: 200px;
	min-height: 200px;
}

.product-image-main:hover img,
.product-image-item:hover img {
	transform: scale(1.1);
}

.image-hover-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(184, 134, 11, 0.8), rgba(205, 133, 63, 0.8));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.product-image-main:hover .image-hover-overlay,
.product-image-item:hover .image-hover-overlay {
	opacity: 1;
}

.image-hover-overlay i {
	font-size: 3rem;
	color: var(--white);
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.product-image-main:hover .image-hover-overlay i,
.product-image-item:hover .image-hover-overlay i {
	transform: scale(1);
}

/* ============================================
   Gallery Section
   ============================================ */

.gallery-item {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: all 0.4s ease;
	cursor: pointer;
	height: 350px;
	min-height: 350px;
	background: #f0f0f0;
}

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

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	display: block;
	background: #f0f0f0;
}

.gallery-item:hover img {
	transform: scale(1.15);
}

.gallery-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	padding: 2rem 1.5rem 1.5rem;
	color: var(--white);
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
	transform: translateY(0);
}

.gallery-overlay h5 {
	font-size: 1.3rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: var(--white);
}

.gallery-overlay p {
	font-size: 0.95rem;
	margin: 0;
	opacity: 0.9;
}

/* ============================================
   Process Section
   ============================================ */

.process-step {
	padding: 2rem;
}

.process-number {
	width: 90px;
	height: 90px;
	margin: 0 auto;
	background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 2.2rem;
	font-weight: 700;
	font-family: 'Playfair Display', serif;
	box-shadow: 0 8px 20px rgba(184, 134, 11, 0.3);
	transition: all 0.4s ease;
	position: relative;
}

.process-number::before {
	content: '';
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 3px solid var(--primary-light);
	opacity: 0;
	transition: opacity 0.4s ease;
}

.process-step:hover .process-number {
	transform: scale(1.15);
	box-shadow: 0 12px 30px rgba(184, 134, 11, 0.4);
}

.process-step:hover .process-number::before {
	opacity: 1;
}

.process-step h5 {
	color: var(--text-dark);
	font-weight: 600;
}

/* ============================================
   Contact Section
   ============================================ */

#contact {
	padding: 100px 0;
}

.contact-info {
	padding: 2rem 0;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.contact-item i {
	font-size: 1.5rem;
	margin-top: 0.25rem;
}

.contact-item h5 {
	margin-bottom: 0.5rem;
	color: var(--text-dark);
}

.contact-form {
	background: linear-gradient(135deg, var(--white), var(--bg-light));
	padding: 2.5rem;
	border-radius: 20px;
	box-shadow: var(--shadow-lg);
	border: 1px solid rgba(184, 134, 11, 0.1);
	transition: all 0.3s ease;
}

.contact-form:hover {
	box-shadow: var(--shadow-xl);
	transform: translateY(-5px);
}

.form-control {
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	padding: 0.75rem 1rem;
	transition: all 0.3s ease;
}

.form-control:focus {
	border-color: var(--primary-color);
	box-shadow: 0 0 0 0.2rem rgba(139, 69, 19, 0.25);
}

.form-label {
	font-weight: 600;
	color: var(--text-dark);
	margin-bottom: 0.5rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
	background: var(--text-dark) !important;
	padding: 3rem 0;
}

.social-links a {
	transition: all 0.3s ease;
	display: inline-block;
}

.social-links a:hover {
	color: var(--secondary-color) !important;
	transform: translateY(-3px);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		transform: translateX(-50%) translateY(0);
	}
	40% {
		transform: translateX(-50%) translateY(-10px);
	}
	60% {
		transform: translateX(-50%) translateY(-5px);
	}
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
	.hero-title {
		font-size: 2.8rem;
	}
	
	.about-image-wrapper {
		transform: none;
		margin-bottom: 2rem;
	}
	
	.gallery-item {
		height: 280px;
		margin-bottom: 1.5rem;
	}

	.hero-subtitle {
		font-size: 1.3rem;
	}

	.hero-description {
		font-size: 1rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.hero-buttons .btn {
		display: block;
		width: 100%;
		margin-bottom: 1rem;
	}

	.hero-buttons .btn.me-3 {
		margin-right: 0 !important;
	}

	#about,
	#services,
	#products,
	#contact {
		padding: 60px 0;
	}

	.service-card,
	.contact-form {
		margin-bottom: 2rem;
	}
}

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

	.hero-subtitle {
		font-size: 1.1rem;
	}

	.section-title {
		font-size: 1.75rem;
	}

	.navbar-brand {
		font-size: 1.2rem;
	}
}

/* Smooth Scroll */
html {
	scroll-behavior: smooth;
}

/* Section Spacing */
section {
	scroll-margin-top: 80px;
}
