	/* Google Fonts */
	@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
	@import url('https://fonts.googleapis.com/css2?family=Cal+Sans&family=Lexend:wght@100..900&display=swap');

	/* Base Styles & Variables */
	:root {
		--primary: #dfad4d;
		--primary-dark: #c7962b;
		--primary-light: #f2d795;
		--dark: #222222;
		--light: #ffffff;
		--gray: #f5f5f5;
		--accent: #e74c3c;
		--text: #333333;
		--transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
		--heading-font: 'Cal Sans', serif;
		--title-font: 'Montserrat', sans-serif;
		--body-font: 'Poppins', sans-serif;
	}

	body {
		font-family: var(--body-font);
		overflow-x: hidden;
	}

	.section-spacing {
		padding: 100px 0;
	}

	.section-spacing-sm {
		padding: 60px 0;
	}

	/* Hero Section */
	.franchise-hero {
		position: relative;
		height: 100vh;
		min-height: 700px;
		background: #000;
		overflow: hidden;
		display: flex;
		align-items: center;
	}

	.franchise-hero::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1;
	}

	@keyframes zoomEffect {
		0% {
			transform: scale(1);
		}

		100% {
			transform: scale(1.2);
		}
	}

	.franchise-hero::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 200px;
		background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
	}

	.hero-content {
		position: relative;
		z-index: 3;
		color: var(--light);
		max-width: 800px;
		margin: 0 auto;
		text-align: center;
		padding: 0 20px;
	}

	.hero-title {
		font-size: 6rem;
		font-weight: 800;
		margin-bottom: 30px;
		text-transform: uppercase;
		letter-spacing: 3px;
		background: linear-gradient(to right, #ffffff, var(--primary), #ffffff);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		animation: shimmer 3s infinite;
		background-size: 200% 100%;
		font-family: var(--heading-font);
		line-height: 1.1;
		text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
	}

	@keyframes shimmer {
		0% {
			background-position: -100% 0;
		}

		100% {
			background-position: 100% 0;
		}
	}

	.hero-subtitle {
		font-size: 1.8rem;
		margin-bottom: 40px;
		font-weight: 300;
		font-family: var(--title-font);
		letter-spacing: 1px;
		color: wheat;
	}

	.hero-btn {
		display: inline-block;
		padding: 18px 40px;
		background: var(--primary);
		color: var(--dark);
		text-decoration: none;
		font-size: 1.2rem;
		font-weight: 600;
		border-radius: 50px;
		position: relative;
		overflow: hidden;
		z-index: 1;
		transition: var(--transition);
		box-shadow: 0 10px 30px rgba(223, 173, 77, 0.4);
	}

	.hero-btn::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background: var(--light);
		transition: var(--transition);
		z-index: -1;
	}

	.hero-btn:hover {
		color: var(--primary);
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(223, 173, 77, 0.6);
	}

	.hero-btn:hover::before {
		width: 100%;
	}

	.scroll-indicator {
		position: absolute;
		bottom: 50px;
		left: 50%;
		transform: translateX(-50%);
		z-index: 3;
		animation: bounce 2s infinite;
	}

	@keyframes bounce {

		0%,
		20%,
		50%,
		80%,
		100% {
			transform: translateY(0) translateX(-50%);
		}

		40% {
			transform: translateY(-20px) translateX(-50%);
		}

		60% {
			transform: translateY(-10px) translateX(-50%);
		}
	}

	.scroll-indicator i {
		color: var(--primary);
		font-size: 2rem;
	}

	/* Hero Slideshow Styles */
	.hero-slideshow {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		z-index: 0;
	}

	.hero-slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0;
		transition: opacity 1s ease-in-out;
		z-index: 0;
	}

	.hero-slide.active {
		opacity: 1;
		z-index: 1;
	}

	/* About Section */
	.about-section {
		background-color: var(--dark);
		color: var(--light);
		position: relative;
		overflow: hidden;
	}

	.about-bg-pattern {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image:
			radial-gradient(circle at 20% 30%, rgba(223, 173, 77, 0.1) 0%, transparent 10%),
			radial-gradient(circle at 80% 70%, rgba(223, 173, 77, 0.1) 0%, transparent 10%);
		background-size: 60px 60px;
		opacity: 0.5;
	}

	.about-container {
		position: relative;
		z-index: 1;
	}

	.about-title {
		font-size: 3.2rem;
		font-weight: 700;
		margin-bottom: 50px;
		position: relative;
		font-family: var(--heading-font);
		letter-spacing: 0.5px;
	}

	.about-title::after {
		content: '';
		position: absolute;
		bottom: -15px;
		left: 0;
		width: 80px;
		height: 4px;
		background: var(--primary);
	}

	.about-content {
		font-size: 1.2rem;
		line-height: 1.8;
		margin-bottom: 30px;
		color: #ffffff;
	}

	.about-highlight {
		color: var(--primary);
		font-weight: 600;
	}

	.about-image-container {
		position: relative;
		height: 100%;
		min-height: 500px;
	}

	.about-image {
		position: absolute;
		border-radius: 10px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
		overflow: hidden;
	}

	.about-image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: var(--transition);
	}

	.about-image:hover img {
		transform: scale(1.05);
	}

	.about-image-1 {
		width: 70%;
		height: 60%;
		top: 0;
		right: 0;
		z-index: 3;
	}

	.about-image-2 {
		width: 60%;
		height: 50%;
		bottom: 0;
		left: 0;
		z-index: 2;
	}

	.about-catalog-btn {
		display: inline-block;
		padding: 15px 35px;
		background: var(--primary);
		color: var(--dark);
		text-decoration: none;
		font-weight: 600;
		border-radius: 50px;
		margin-top: 20px;
		position: relative;
		overflow: hidden;
		z-index: 1;
		transition: var(--transition);
	}

	.about-catalog-btn::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background: var(--light);
		transition: var(--transition);
		z-index: -1;
	}

	.about-catalog-btn:hover {
		color: var(--primary);
	}

	.about-catalog-btn:hover::before {
		width: 100%;
	}

	.about-catalog-btn i {
		margin-right: 10px;
	}

	/* Benefits Section */
	.benefits-section {
		background-color: var(--gray);
		position: relative;
	}

	.benefits-title-container {
		text-align: center;
		margin-bottom: 80px;
	}

	.benefits-title {
		font-size: 3.2rem;
		font-weight: 700;
		color: var(--dark);
		margin-bottom: 20px;
		position: relative;
		display: inline-block;
		font-family: var(--heading-font);
		letter-spacing: 0.5px;
	}

	.benefits-title::after {
		content: '';
		position: absolute;
		bottom: -15px;
		left: 50%;
		transform: translateX(-50%);
		width: 100px;
		height: 4px;
		background: var(--primary);
	}

	.benefits-subtitle {
		font-size: 1.2rem;
		color: var(--text);
		max-width: 700px;
		margin: 0 auto;
		font-family: var(--title-font);
		letter-spacing: 0.5px;
	}

	.benefit-card {
		background: var(--light);
		border-radius: 20px;
		overflow: hidden;
		box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
		height: 100%;
		transition: var(--transition);
		position: relative;
	}

	.benefit-card::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 5px;
		background: var(--primary);
		transform: scaleX(0);
		transform-origin: left;
		transition: var(--transition);
	}

	.benefit-card:hover {
		transform: translateY(-15px);
		box-shadow: 0 20px 40px rgba(223, 173, 77, 0.3);
	}

	.benefit-card:hover::before {
		transform: scaleX(1);
	}

	.benefit-icon {
		width: 100%;
		height: 440px;
		position: relative;
		overflow: hidden;
	}

	.benefit-icon img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: var(--transition);
	}

	.benefit-card:hover .benefit-icon img {
		transform: scale(1.1);
	}

	.benefit-content {
		padding: 30px;
	}

	.benefit-number {
		position: absolute;
		top: 15px;
		right: 15px;
		width: 50px;
		height: 50px;
		background: var(--primary);
		color: var(--dark);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 1.5rem;
		font-weight: 700;
		z-index: 1;
	}

	.benefit-title {
		font-size: 1.5rem;
		font-weight: 700;
		color: var(--dark);
		margin-bottom: 15px;
		position: relative;
		font-family: var(--title-font);
		letter-spacing: 0.5px;
	}

	.benefit-description {
		font-size: 1rem;
		color: var(--text);
		line-height: 1.7;
		font-family: var(--body-font);
	}

	/* Stats Section */
	.stats-section {
		background: linear-gradient(45deg, var(--primary-dark), var(--primary), var(--primary-light));
		color: var(--dark);
		position: relative;
		overflow: hidden;
	}

	.stats-title {
		text-align: center;
		font-size: 2.8rem;
		font-weight: 700;
		margin-bottom: 50px;
		color: var(--light);
		font-family: var(--heading-font);
		letter-spacing: 1px;
	}

	.stats-bg-pattern {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 75%, transparent 75%, transparent);
		background-size: 100px 100px;
		animation: moveBackground 20s linear infinite;
	}

	@keyframes moveBackground {
		0% {
			background-position: 0 0;
		}

		100% {
			background-position: 100px 100px;
		}
	}

	.stat-container {
		position: relative;
		z-index: 1;
		background: rgba(255, 255, 255, 0.1);
		backdrop-filter: blur(10px);
		border-radius: 20px;
		padding: 40px 30px;
		text-align: center;
		border: 1px solid rgba(255, 255, 255, 0.2);
		height: 100%;
		transition: var(--transition);
		margin-bottom: 30px;
	}

	.stat-container:hover {
		transform: translateY(-10px);
		box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
		background: rgba(255, 255, 255, 0.2);
	}

	.stat-icon {
		font-size: 3rem;
		margin-bottom: 20px;
		color: var(--light);
	}

	.stat-number {
		font-size: 3.8rem;
		font-weight: 800;
		margin-bottom: 10px;
		color: var(--light);
		font-family: var(--heading-font);
	}

	.stat-number2 {
		font-size: 3.8rem;
		font-weight: 800;
		margin-bottom: 10px;
		color: var(--light);
		font-family: var(--heading-font);
	}

	.stat-title {
		font-size: 1.2rem;
		font-weight: 600;
		color: var(--light);
		font-family: var(--title-font);
		letter-spacing: 1px;
		text-transform: uppercase;
	}

	/* CTA Section */
	.cta-section {
		background: var(--dark);
		position: relative;
		overflow: hidden;
	}

	.cta-bg-pattern {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: radial-gradient(circle at 10% 20%, rgba(223, 173, 77, 0.1) 0%, transparent 20%),
			radial-gradient(circle at 90% 80%, rgba(223, 173, 77, 0.1) 0%, transparent 20%);
		opacity: 0.5;
	}

	.cta-container {
		position: relative;
		z-index: 1;
		background: linear-gradient(45deg, rgba(223, 173, 77, 0.1), rgba(223, 173, 77, 0.2));
		border-radius: 30px;
		padding: 60px;
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
		backdrop-filter: blur(10px);
		border: 1px solid rgba(223, 173, 77, 0.2);
	}

	.cta-title {
		font-size: 2.5rem;
		font-weight: 700;
		color: var(--light);
		margin-bottom: 20px;
		font-family: var(--heading-font);
		letter-spacing: 0.5px;
		line-height: 1.3;
	}

	.cta-content {
		font-size: 1.2rem;
		color: rgba(255, 255, 255, 0.8);
		margin-bottom: 40px;
		font-family: var(--body-font);
	}

	.cta-btn {
		display: inline-block;
		padding: 18px 40px;
		background: var(--primary);
		color: var(--dark);
		text-decoration: none;
		font-size: 1.2rem;
		font-weight: 600;
		border-radius: 50px;
		position: relative;
		overflow: hidden;
		z-index: 1;
		transition: var(--transition);
		box-shadow: 0 10px 30px rgba(223, 173, 77, 0.4);
	}

	.cta-btn::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 0;
		height: 100%;
		background: var(--light);
		transition: var(--transition);
		z-index: -1;
	}

	.cta-btn:hover {
		color: var(--primary);
		transform: translateY(-5px);
		box-shadow: 0 15px 30px rgba(223, 173, 77, 0.6);
	}

	.cta-btn:hover::before {
		width: 100%;
	}

	.cta-btn i {
		margin-right: 10px;
	}

	/* FAQ Section */
	.faq-section {
		background-color: var(--gray);
		position: relative;
	}

	.faq-title-container {
		text-align: center;
		margin-bottom: 60px;
	}

	.faq-title {
		font-size: 3.2rem;
		font-weight: 700;
		color: var(--dark);
		margin-bottom: 20px;
		position: relative;
		display: inline-block;
		font-family: var(--heading-font);
		letter-spacing: 0.5px;
	}

	.faq-title::after {
		content: '';
		position: absolute;
		bottom: -15px;
		left: 50%;
		transform: translateX(-50%);
		width: 100px;
		height: 4px;
		background: var(--primary);
	}

	/* Responsive Styles */
	@media (max-width: 1199px) {
		.hero-title {
			font-size: 4rem;
		}

		.about-image-container {
			min-height: 400px;
		}
	}

	@media (max-width: 991px) {
		.section-spacing {
			padding: 80px 0;
		}

		.hero-title {
			font-size: 3.5rem;
		}

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

		.about-title,
		.benefits-title,
		.faq-title {
			font-size: 2.5rem;
		}

		.about-content {
			font-size: 1.1rem;
		}

		.about-image-container {
			min-height: 350px;
			margin-top: 50px;
		}

		.cta-container {
			padding: 40px;
		}

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

	@media (max-width: 767px) {
		.section-spacing {
			padding: 60px 0;
		}

		.franchise-hero {
			height: 80vh;
			min-height: 600px;
		}

		.hero-title {
			font-size: 2.8rem;
		}

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

		.hero-btn {
			padding: 15px 30px;
			font-size: 1rem;
		}

		.about-title,
		.benefits-title,
		.faq-title {
			font-size: 2rem;
		}

		.about-content {
			font-size: 1rem;
		}

		.about-image-container {
			min-height: 300px;
		}

		.stat-number {
			font-size: 2.5rem;
		}

		.cta-container {
			padding: 30px;
		}

		.cta-title {
			font-size: 1.8rem;
		}

		.cta-content {
			font-size: 1rem;
		}

		.cta-btn {
			padding: 15px 30px;
			font-size: 1rem;
		}
	}

	/* Animation Classes */
	.fade-in {
		opacity: 0;
		transform: translateY(30px);
		transition: opacity 0.8s ease, transform 0.8s ease;
	}

	.fade-in.active {
		opacity: 1;
		transform: translateY(0);
	}

	.slide-in-left {
		opacity: 0;
		transform: translateX(-50px);
		transition: opacity 0.8s ease, transform 0.8s ease;
	}

	.slide-in-left.active {
		opacity: 1;
		transform: translateX(0);
	}

	.slide-in-right {
		opacity: 0;
		transform: translateX(50px);
		transition: opacity 0.8s ease, transform 0.8s ease;
	}

	.slide-in-right.active {
		opacity: 1;
		transform: translateX(0);
	}

	.zoom-in {
		opacity: 0;
		transform: scale(0.9);
		transition: opacity 0.8s ease, transform 0.8s ease;
	}

	.zoom-in.active {
		opacity: 1;
		transform: scale(1);
	}

	.delay-1 {
		transition-delay: 0.1s;
	}

	.delay-2 {
		transition-delay: 0.2s;
	}

	.delay-3 {
		transition-delay: 0.3s;
	}

	.delay-4 {
		transition-delay: 0.4s;
	}

	.delay-5 {
		transition-delay: 0.5s;
	}

	.delay-6 {
		transition-delay: 0.6s;
	}