* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
	--primary: #1a365d;
	--secondary: #2d3748;
	--accent: #c53030;
	--light: #f7fafc;
	--text: #2d3748;
	--text-light: #718096;
}

body {
	color: var(--text);
	line-height: 1.6;
	background-color: #f9f9f9;
	overflow-x: hidden;
	min-width: 1200px;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* 滚动动画类 */
.section-hidden {
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease-out;
}

.section-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 卡片动画类 */
.card-hidden {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s ease-out;
}

.card-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 两侧飞入动画类 */
.product-card-left {
	opacity: 0;
	transform: translateX(-100px);
	transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card-right {
	opacity: 0;
	transform: translateX(100px);
	transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-fly-in {
	opacity: 1;
	transform: translateX(0);
}

/* 延迟动画 */
.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; }

/* Hero/Banner Section */
.hero {
	height: 100vh;
	position: relative;
	overflow: hidden;
	background-color: #000;
}

/* Banner Slider */
.banner-slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

.slide.active {
	opacity: 1;
}

.slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
}

/* Navigation inside the banner */
.banner-header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	transition: all 0.3s;
}

.banner-header.scrolled {
	background: rgba(0, 0, 0, 0.8);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 0;
}

.logo {
	display: flex;
	align-items: center;
}

.logo h1 {
	font-size: 1.5rem;
	color: white;
	margin-left: 10px;
}

.logo-img {
	height: 50px;
	width: auto;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	font-weight: bold;
}

nav ul {
	display: flex;
	list-style: none;
	align-items: center;
}

nav ul li {
	margin-left: 25px;
	position: relative;
}

nav ul li a {
	text-decoration: none;
	color: white;
	font-weight: 500;
	transition: color 0.3s;
	position: relative;
	padding: 5px 0;
	display: block;
}

nav ul li a:hover {
	color: var(--accent);
}

nav ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent);
	transition: width 0.3s;
}

nav ul li a:hover::after {
	width: 100%;
}

/* 下拉菜单样式 - 纵向纯文本 */
.has-dropdown {
	position: relative;
}

.dropdown-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(0, 0, 0, 0.95);
	min-width: 200px;
	border-radius: 8px;
	padding: 10px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 100;
	display: flex;
	flex-direction: column;
}

.has-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.dropdown-menu li {
	margin: 0;
	padding: 0;
	width: 100%;
}

.dropdown-menu a {
	padding: 12px 20px;
	color: #e2e8f0;
	font-size: 0.95rem;
	display: block;
	width: 100%;
	transition: all 0.3s ease;
	text-align: left;
	border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
	color: white;
	background: rgba(255, 255, 255, 0.1);
	border-left: 3px solid var(--accent);
	padding-left: 25px;
}

.language-switcher {
	margin-left: 20px;
}

.lang-btn {
	background: var(--accent);
	color: white;
	border: none;
	padding: 8px 15px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 0.9rem;
	transition: background 0.3s;
}

.lang-btn:hover {
	background: #9c2c2c;
}

.mobile-menu {
	display: none;
	font-size: 1.5rem;
	cursor: pointer;
	color: white;
}

/* Hero Content */
.hero-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: white;
	z-index: 5;
	width: 90%;
	max-width: 900px;
}

.hero-content h2 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.hero-content p {
	font-size: 1.3rem;
	margin-bottom: 30px;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn {
	display: inline-block;
	background-color: var(--accent);
	color: white;
	padding: 12px 30px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s;
	border: 2px solid var(--accent);
}

.btn:hover {
	background-color: transparent;
	color: white;
}

/* Banner Controls */
.banner-controls {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 10;
}

.slide-dots {
	display: flex;
	gap: 10px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s;
}

.dot.active {
	background-color: var(--accent);
	transform: scale(1.2);
}

.prev-btn, .next-btn {
	background-color: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}

.prev-btn:hover, .next-btn:hover {
	background-color: var(--accent);
}

/* Banner Indicators */
.slide-indicator {
	position: absolute;
	bottom: 30px;
	right: 30px;
	color: white;
	font-size: 1.2rem;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 5px 15px;
	border-radius: 20px;
}

/* Sections */
section {
	padding: 80px 0;
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
		
.products .section-title h2,
.products .section-title p,
.contact .section-title h2,
.contact .section-title p {
	color: #fff;
}

.section-title h2 {
	font-size: 2.5rem;
	color: var(--primary);
	margin-bottom: 15px;
}

.section-title p {
	color: var(--text-light);
	max-width: 700px;
	margin: 0 auto;
}

/* About Section */
#about {
	background: url(../images/aboutbg.jpg) no-repeat center;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.about-text {
	flex: 1;
}

.about-text h3 {
	font-size: 1.8rem;
	margin-bottom: 20px;
	color: var(--primary);
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.stat {
	text-align: center;
	padding: 20px;
	background-color: white;
	border-radius: 8px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.6s ease-out, opacity 0.6s ease-out, 
				all 0.3s ease-in-out;
	cursor: pointer;
}

.stat:hover {
	background: var(--accent);
	color: #fff;
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.stat:hover h4 {
	color: #fff;
}

.stat h4 {
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 5px;
	transition: color 0.3s ease-in-out;
}

.stat p {
	color: var(--text-light);
	font-size: 0.9rem;
	transition: color 0.3s ease-in-out;
}

.stat:hover p {
	color: rgba(255, 255, 255, 0.9);
}

.about-image {
	flex: 1;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Products Section - 图片变亮效果 */
.products {
	background: #1b1b1b url(../images/hotproductsbg.jpg) no-repeat center top;
}

.product-categories {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-bottom: 40px;
}

.category-btn {
	padding: 10px 20px;
	background-color: white;
	border: 1px solid #e2e8f0;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s;
}

.category-btn.active {
	background-color: var(--primary);
	color: white;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.product-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}
.product-card a {
	text-decoration: none;
	display: block;
}

.product-card:hover {
	transform: translateY(-10px);
}

.product-img {
	height: 360px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.8rem;
	font-style: italic;
	background-size: cover;
	background-position: center;
	transition: all 0.5s ease;
	position: relative;
	overflow: hidden;
}

/* 产品图片变亮效果 */
.product-img::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(0 0 0 / 29%);
	transition: background-color 0.3s ease;
	z-index: 1;
}

.product-card:hover .product-img {
	transform: scale(1.05);
}

.product-card:hover .product-img::before {
	background-color: rgba(255, 255, 255, 0.2);
}

.product-img h3 {
	position: relative;
	z-index: 2;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	transition: transform 0.3s ease;
}

.product-card:hover .product-img h3 {
	transform: scale(1.05);
}

.product-info {
	padding: 20px;
}

.product-info h3 {
	margin-bottom: 10px;
	color: var(--primary);
}

/* Partners Section - 显示酒店英文名称 */
.partners {
	background-color: white;
	position: relative;
	background-image: url(../images/Cooperation.jpg);
	background-position: center;
	padding: 80px 0;
}

.partners-container {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 60px;
}

.partners-scroll-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.partners-slider {
	display: flex;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	width: 100%;
}

.partners-page {
	flex: 0 0 100%;
	min-width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.partners-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.partner-item {
	/* background-color: white; */
	border-radius: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	height: 205px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	cursor: pointer;
	/* border: 1px solid rgba(0, 0, 0, 0.05); */
	overflow: hidden;
	position: relative;
}

.partner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
	border-color: var(--accent);
}

.partner-img {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.partner-img img {
	max-width: 100%;
	max-height: 205px;
	width: auto;
	height: auto;
	object-fit: contain;
	/* filter: grayscale(100%); */
	transition: filter 0.3s ease, transform 0.3s ease;
}

.partner-item:hover .partner-img img {
	filter: grayscale(0%);
	transform: scale(1.05);
}

/* 酒店英文名称显示 */
.partner-name {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
	color: white;
	padding: 20px 15px 15px;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	transition: all 0.3s ease;
	z-index: 2;
	pointer-events: none;
}

.partner-item:hover .partner-name {
	opacity: 1;
	transform: translateY(0);
}

.partner-name span {
	font-size: 0.95rem;
	font-weight: 600;
	display: block;
	text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* 导航按钮 */
.partners-nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 60px;
	height: 60px;
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: all 0.3s;
	z-index: 10;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.partners-nav-btn:hover {
	background: var(--accent);
	transform: translateY(-50%) scale(1.1);
}

.partners-prev-btn {
	left: 0;
}

.partners-next-btn {
	right: 0;
}

/* 滚动指示器 */
.scroll-indicator {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 40px;
	gap: 12px;
}

.scroll-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.3s;
}

.scroll-dot.active {
	background-color: var(--primary);
	transform: scale(1.3);
}

/* 控制按钮 */
.scroll-controls {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 30px;
}

.control-btn {
	background: var(--primary);
	color: white;
	border: none;
	border-radius: 25px;
	padding: 10px 25px;
	cursor: pointer;
	font-size: 1rem;
	font-weight: 600;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.control-btn:hover {
	background: var(--accent);
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

#pauseBtn {
	background: #f0ad4e;
}

#pauseBtn:hover {
	background: #ec971f;
}

/* News Section */
.news {
	background-color: var(--light);
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.news-card {
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s;
}

.news-card:hover {
	transform: translateY(-5px);
}

.news-image {
	height: 200px;
	background-color: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--text-light);
}

.news-content {
	padding: 25px;
}

.news-date {
	color: var(--accent);
	font-size: 0.9rem;
	margin-bottom: 10px;
	display: block;
}

.news-content h3 {
	margin-bottom: 15px;
	color: var(--primary);
	font-size: 1.2rem;
}

.news-content p {
	color: var(--text-light);
	margin-bottom: 20px;
	font-size: 0.95rem;
}

.read-more {
	color: var(--primary);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	display: inline-flex;
	align-items: center;
}

.read-more i {
	margin-left: 5px;
	transition: transform 0.3s;
}

.read-more:hover i {
	transform: translateX(3px);
}

.news-cta {
	text-align: center;
	margin-top: 50px;
}

/* Quality Section */
.quality-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature {
	text-align: center;
	padding: 30px 20px;
}

.feature i {
	font-size: 2.5rem;
	color: var(--accent);
	margin-bottom: 20px;
}

.feature h3 {
	margin-bottom: 15px;
	color: var(--primary);
}

/* Contact Section */
.contact {
	background: linear-gradient(135deg, var(--primary) 0%, #2c5282 100%);
	color: white;
	position: relative;
	overflow: hidden;
}

.contact::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('images/photo-1557804506-669a67965ba0.jpg') center/cover;
	opacity: 0.1;
}

.contact-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	position: relative;
	z-index: 1;
}

.contact-info {
	padding: 30px;
}

.contact-info h3 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: white;
}

.contact-info > p {
	font-size: 1.1rem;
	margin-bottom: 40px;
	opacity: 0.9;
}

.contact-details {
	margin-bottom: 40px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 8px;
	backdrop-filter: blur(10px);
}

.contact-item i {
	font-size: 1.2rem;
	color: var(--accent);
	margin-right: 15px;
	margin-top: 2px;
}

.contact-item-content h4 {
	margin-bottom: 5px;
	font-size: 1.1rem;
}

.contact-item-content p {
	opacity: 0.9;
	margin: 0;
}

.social-links {
	display: flex;
	gap: 15px;
}

.social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	color: white;
	font-size: 1.2rem;
	transition: all 0.3s;
	backdrop-filter: blur(10px);
}

.social-links a:hover {
	background: var(--accent);
	transform: translateY(-3px);
}

.contact-form-container {
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
	color: var(--primary);
	font-size: 1.8rem;
	margin-bottom: 10px;
}

.form-subtitle {
	color: var(--text-light);
	margin-bottom: 30px;
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: var(--primary);
}

.form-group input,
.form-group textarea,
.form-group select {
	width: 100%;
	padding: 15px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1rem;
	transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
	outline: none;
	border-color: var(--primary);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Footer */
footer {
	background-color: var(--secondary);
	color: white;
	padding: 20px 0 20px;
}

.footer-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: nowrap;
	justify-content: center;
}

.footer-nav ul li {
	margin: 10px;
}

.footer-nav ul li a {
	color: #cbd5e0;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-nav ul li a:hover {
	color: white;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.footer-column h3 {
	font-size: 1.2rem;
	margin-bottom: 20px;
	color: var(--light);
}

.footer-column ul {
	list-style: none;
}

.footer-column ul li {
	margin-bottom: 10px;
}

.footer-column ul li a {
	color: #cbd5e0;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-column ul li a:hover {
	color: white;
}

.certifications {
	display: flex;
	gap: 15px;
	margin-top: 15px;
}

.certification {
	background-color: rgba(255, 255, 255, 0.1);
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 0.8rem;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid #4a5568;
	color: #cbd5e0;
	font-size: 0.9rem;
}

/* Responsive Design */
/* @media (max-width: 1200px) {
	.partners-container {
		padding: 0 50px;
	}
	
	.partner-item {
		height: 130px;
		padding: 20px;
	}
}

@media (max-width: 992px) {
	.hero-content h2 {
		font-size: 2.8rem;
	}
	
	.about-content {
		flex-direction: column;
	}
	
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.news-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.contact-container {
		grid-template-columns: 1fr;
	}
	
	.quality-features {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}

	.partner-item {
		height: 120px;
		padding: 15px;
	}

	.partners-nav-btn {
		width: 50px;
		height: 50px;
		font-size: 1.2rem;
	}

	.partners-row {
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.hero-content h2 {
		font-size: 2.2rem;
	}
	
	.hero-content p {
		font-size: 1.1rem;
	}
	
	nav ul {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background-color: rgba(0, 0, 0, 0.95);
		flex-direction: column;
		padding: 20px 0;
		z-index: 100;
	}
	
	nav ul li {
		margin: 0;
		padding: 0;
		width: 100%;
		text-align: center;
	}
	
	nav ul li a {
		padding: 12px 20px;
		display: block;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	//* 移动端下拉菜单
	.dropdown-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: rgba(255, 255, 255, 0.1);
		box-shadow: none;
		margin: 0;
		padding: 0;
		border-radius: 0;
		width: 100%;
		display: none;
	}
	
	.dropdown-menu a {
		padding: 12px 40px;
		border-left: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	}
	
	.dropdown-menu a:hover {
		padding-left: 40px;
		border-left: none;
	}
	
	.mobile-menu {
		display: block;
	}
	
	.product-grid {
		grid-template-columns: 1fr;
	}
	
	.news-grid {
		grid-template-columns: 1fr;
	}
	
	.quality-features {
		grid-template-columns: 1fr;
	}
	
	.form-row {
		grid-template-columns: 1fr;
	}

	.partners-container {
		padding: 0 20px;
	}
	
	.partner-item {
		height: 110px;
		padding: 12px;
	}

	.partners-nav-btn {
		width: 40px;
		height: 40px;
		font-size: 1rem;
	}

	.scroll-indicator {
		margin-top: 30px;
	}

	.control-btn {
		padding: 8px 20px;
		font-size: 0.9rem;
	}
	
	.product-card-left,
	.product-card-right {
		transform: translateX(0) translateY(50px);
	}
}

@media (max-width: 576px) {
	.hero-content h2 {
		font-size: 1.8rem;
	}
	
	.slide-indicator {
		display: none;
	}

	.partners-row {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.partner-item {
		height: 100px;
		padding: 10px;
	}
	
	.scroll-controls {
		flex-direction: column;
		gap: 10px;
	}
	
	.control-btn {
		width: 150px;
		justify-content: center;
	}
}*/