/* Modern Design System */
:root {
	/* Colors - Modern Professional Palette */
	--primary: #0A2463;
	--primary-light: #1E3A8A;
	--primary-dark: #061538;
	--accent: #FB8500;
	--accent-light: #FFB703;
	--success: #06D6A0;
	--background: #FAFBFC;
	--surface: #FFFFFF;
	--text-primary: #1A1D23;
	--text-secondary: #6B7280;
	--text-muted: #9CA3AF;
	--border: #E5E7EB;
	--shadow-sm: 0 2px 8px rgba(10, 36, 99, 0.08);
	--shadow-md: 0 4px 16px rgba(10, 36, 99, 0.12);
	--shadow-lg: 0 8px 32px rgba(10, 36, 99, 0.16);
	--shadow-xl: 0 16px 48px rgba(10, 36, 99, 0.2);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	color: var(--text-primary);
	background: var(--background);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	line-height: 1.2;
	color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
	font-size: 1.0625rem;
	line-height: 1.7;
	color: var(--text-secondary);
}

a {
	text-decoration: none;
	color: inherit;
	transition: var(--transition);
}

/* Header */
.site-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	transition: var(--transition);
}

.site-header.scrolled {
	box-shadow: var(--shadow-md);
}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 0;
	gap: 40px;
}

/* Logo */
.brand {
	display: flex;
	align-items: center;
	gap: 14px;
	font-weight: 700;
	transition: var(--transition);
}

.brand:hover {
	transform: translateY(-2px);
}

.brand-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--primary), var(--primary-light));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	box-shadow: var(--shadow-sm);
}

.brand-text {
	display: flex;
	flex-direction: column;
}

.brand-title {
	font-size: 1.25rem;
	color: var(--text-primary);
	letter-spacing: -0.01em;
}

.brand-subtitle {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Navigation */
.main-nav {
	display: flex;
	align-items: center;
	gap: 8px;
}

.nav-item {
	position: relative;
	padding: 8px 16px;
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.nav-item:hover, .nav-item.active {
	color: var(--primary);
	background: rgba(10, 36, 99, 0.05);
}

/* Dropdown */
.nav-dropdown {
	position: relative;
}

.dropdown-trigger {
	display: flex;
	align-items: center;
	gap: 6px;
	cursor: pointer;
}

.dropdown-icon {
	font-size: 0.625rem;
	transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-icon {
	transform: rotate(180deg);
}

.dropdown-menu {
	position: absolute;
	top: calc(100% + 12px);
	left: 50%;
	transform: translateX(-50%);
	background: var(--surface);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-xl);
	padding: 24px;
	min-width: 720px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	transform: translateX(-50%) translateY(-8px);
	border: 1px solid var(--border);
}

.nav-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) translateY(0);
}

.dropdown-column h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 16px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.dropdown-column a {
	display: block;
	padding: 8px 12px;
	font-size: 0.9375rem;
	color: var(--text-secondary);
	border-radius: var(--radius-sm);
	transition: var(--transition);
}

.dropdown-column a:hover {
	color: var(--primary);
	background: rgba(10, 36, 99, 0.05);
	transform: translateX(4px);
}

/* Header Actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 16px;
}

.phone-link {
	font-weight: 600;
	color: var(--text-primary);
	font-size: 1.0625rem;
	transition: var(--transition);
}

.phone-link:hover {
	color: var(--accent);
}

.social-links {
	display: flex;
	gap: 8px;
}

.social-btn {
	width: 40px;
	height: 40px;
	border-radius: var(--radius-sm);
	background: var(--background);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
	border: 1px solid var(--border);
}

.social-btn:hover {
	background: var(--primary);
	border-color: var(--primary);
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.social-btn:hover svg {
	fill: white;
}

.social-btn svg {
	width: 18px;
	height: 18px;
	fill: var(--text-secondary);
	transition: var(--transition);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	font-weight: 600;
	font-size: 0.9375rem;
	border-radius: var(--radius-md);
	border: none;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
	gap: 8px;
	white-space: nowrap;
}

.btn-primary {
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	color: white;
	box-shadow: 0 4px 14px rgba(251, 133, 0, 0.3);
}

.btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(251, 133, 0, 0.4);
}

.btn-secondary {
	background: var(--surface);
	color: var(--primary);
	border: 2px solid var(--primary);
}

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

.btn-large {
	padding: 18px 36px;
	font-size: 1.0625rem;
}

.btn-header {
	padding: 10px 20px;
	font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
	position: relative;
	padding: 120px 0 80px;
	overflow: hidden;
	background: url("/img/bg-title.jpg") top center no-repeat;
}

.hero-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content {
	animation: fadeInUp 0.8s ease;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: rgba(6, 214, 160, 0.1);
	color: var(--success);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	margin-bottom: 24px;
}

.hero-title {
	margin-bottom: 24px;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.25rem;
	margin-bottom: 36px;
	max-width: 540px;
}

.hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 48px;
	flex-wrap: wrap;
}

.hero-features {
	display: flex;
	flex-wrap: wrap;
	gap: 32px;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 12px;
}

.feature-check {
	width: 28px;
	height: 28px;
	background: linear-gradient(135deg, var(--success), #05C096);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: 700;
	font-size: 0.875rem;
	flex-shrink: 0;
}

.feature-text {
	font-weight: 600;
	color: var(--text-primary);
}

.hero-visual {
	position: relative;
	animation: fadeInRight 0.8s ease 0.2s both;
}

.hero-image {
	width: 100%;
	height: auto;
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-xl);
	object-fit: cover;
}

/* Section Styles */
.section {
	padding: 100px 0;
}

.section-header {
	text-align: center;
	max-width: 720px;
	margin: 0 auto 60px;
}

.section-badge {
	display: inline-block;
	padding: 6px 14px;
	background: rgba(251, 133, 0, 0.1);
	color: var(--accent);
	border-radius: 100px;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.section-title {
	margin-bottom: 16px;
}

.section-description {
	font-size: 1.125rem;
}

/* Product Grid */
.products-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.product-card {
	background: var(--surface);
	border-radius: var(--radius-lg);
	padding: 32px;
	border: 1px solid var(--border);
	transition: var(--transition);
	display: flex;
	flex-direction: column;
	margin: 10px;
	max-width: 380px;
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-lg);
	border-color: var(--accent);
}

.product-image-wrapper {
	width: 100%;
	height: 220px;
	margin-bottom: 24px;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--background);
}

.product-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.product-card:hover .product-img {
	transform: scale(1.05);
}

.product-title {
	font-size: 1.375rem;
	margin-bottom: 16px;
	color: var(--text-primary);
}

.product-features {
	list-style: none;
	margin-bottom: 24px;
	flex-grow: 1;
}

.product-features li {
	padding: 10px 0;
	color: var(--text-secondary);
	font-size: 0.9375rem;
	border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
	border-bottom: none;
}

.product-price {
	font-size: 1.75rem;
	font-weight: 700;
	color: var(--accent);
	margin-bottom: 20px;
}

/* Benefits Section */
.benefits-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.benefit-card {
	padding: 36px;
	background: var(--surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	transition: var(--transition);
	text-align: center;
	margin: 10px;
	max-width: 380px;
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
	border-color: var(--accent);
}

.benefit-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 24px;
	background: linear-gradient(135deg, rgba(251, 133, 0, 0.1), rgba(255, 183, 3, 0.1));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
}

.benefit-title {
	font-size: 1.125rem;
	margin-bottom: 12px;
}

.benefit-text {
	color: var(--text-secondary);
	font-size: 0.9375rem;
}

/* Process Steps */
.process-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 32px;
	position: relative;
}

.process-step {
	position: relative;
	padding: 32px;
	background: var(--surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	transition: var(--transition);
}

.process-step:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.step-number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	color: white;
	font-size: 1.5rem;
	font-weight: 700;
	border-radius: var(--radius-md);
	margin-bottom: 20px;
	box-shadow: 0 4px 14px rgba(251, 133, 0, 0.3);
}

.step-title {
	font-size: 1.125rem;
	margin-bottom: 12px;
}

.step-text {
	color: var(--text-secondary);
	font-size: 0.9375rem;
}

/* Guarantees */
.guarantees-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
	max-width: 900px;
	margin: 0 auto;
}

.guarantee-item {
	display: flex;
	gap: 24px;
	padding: 32px;
	background: var(--surface);
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	transition: var(--transition);
}

.guarantee-item:hover {
	transform: translateX(8px);
	box-shadow: var(--shadow-md);
	border-color: var(--success);
}

.guarantee-icon {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	background: linear-gradient(135deg, rgba(6, 214, 160, 0.1), rgba(5, 192, 150, 0.1));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.75rem;
}

.guarantee-content h3 {
	font-size: 1.125rem;
	margin-bottom: 8px;
}

.guarantee-content p {
	font-size: 0.9375rem;
}

/* CTA Section */
.cta-section {
	padding: 120px 0;
	background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
	position: relative;
	overflow: hidden;
}

.cta-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
	opacity: 0.3;
}

.cta-content {
	text-align: center;
	position: relative;
	z-index: 1;
	max-width: 720px;
	margin: 0 auto;
}

.cta-title {
	color: white;
	margin-bottom: 16px;
}

.cta-description {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.125rem;
	margin-bottom: 36px;
}

/* Content Section */
.content-section {
	padding: 80px 0;
	background: var(--surface);
}

.content-wrapper {
	max-width: 880px;
	margin: 0 auto;
}

.content-wrapper h2 {
	margin: 48px 0 20px;
	font-size: 1.75rem;
}

.content-wrapper h2:first-child {
	margin-top: 0;
}

.content-wrapper p {
	margin-bottom: 20px;
}

/* Footer */
.site-footer {
	background: var(--primary-dark);
	color: rgba(255, 255, 255, 0.8);
	padding: 80px 0 32px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 48px;
	margin-bottom: 48px;
}

.footer-brand {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 20px;
}

.footer-brand-icon {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, var(--accent), var(--accent-light));
	border-radius: var(--radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.footer-brand-text {
	display: flex;
	flex-direction: column;
}

.footer-brand-title {
	font-size: 1.25rem;
	color: white;
	font-weight: 700;
}

.footer-brand-subtitle {
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-description {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	line-height: 1.6;
}

.footer-title {
	color: white;
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--accent);
	transform: translateX(4px);
}

.footer-contacts {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.footer-contacts li {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.9375rem;
}

.footer-contacts a {
	color: rgba(255, 255, 255, 0.7);
	transition: var(--transition);
}

.footer-contacts a:hover {
	color: var(--accent);
}

.footer-social {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.footer-social-link {
	padding: 10px 20px;
	background: rgba(255, 255, 255, 0.1);
	color: white;
	border-radius: var(--radius-sm);
	font-size: 0.875rem;
	font-weight: 500;
	transition: var(--transition);
}

.footer-social-link:hover {
	background: var(--accent);
	transform: translateY(-2px);
}

.footer-bottom {
	padding-top: 32px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.875rem;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 48px;
	}
	
	.hero-visual {
		order: -1;
	}
	
	.dropdown-menu {
		min-width: 600px;
		grid-template-columns: repeat(2, 1fr);
	}
	
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.header-wrapper {
		flex-wrap: wrap;
		gap: 20px;
	}
	
	.main-nav {
		order: 3;
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.dropdown-menu {
		min-width: 90vw;
		grid-template-columns: 1fr;
	}
	
	.hero-section {
		padding: 80px 0 60px;
	}
	
	.section {
		padding: 60px 0;
	}
	
	.products-grid {
		grid-template-columns: 1fr;
	}
	
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	
	.cta-section {
		padding: 80px 0;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 0 16px;
	}
	
	h1 { font-size: 2rem; }
	h2 { font-size: 1.75rem; }
	
	.hero-actions {
		flex-direction: column;
		width: 100%;
	}
	
	.btn {
		width: 100%;
	}
}


/* Payment Page */
.payment-section,
.delivery-section {
	background: #f8f9fa;
	margin-bottom: 50px;
}

.payment-methods {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.payment-card {
	background: #ffffff;
	padding: 35px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
	max-width: 300px;
	margin: 20px;
}

.payment-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.payment-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.payment-title {
	font-size: 20px;
	font-weight: 600;
	color: #1a2b5f;
	margin-bottom: 15px;
}

.payment-text {
	font-size: 15px;
	color: #7f8c8d;
	line-height: 1.7;
}

.payment-info {
	margin-top: 60px;
}


.payment-info {
	margin-top: 60px;
}

.info-block {
	background: #ffffff;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
	font-size: 24px;
	color: #1a2b5f;
	margin-bottom: 20px;
}

.info-block ul {
	list-style: none;
}

.info-block li {
	padding: 12px 0;
	font-size: 15px;
	color: #2c3e50;
	border-bottom: 1px solid #eee;
}

.info-block li:last-child {
	border-bottom: none;
}

/* Delivery Page */
.delivery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.delivery-card {
	background: #ffffff;
	background: #f8f9fa;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: all 0.3s ease;
}

.delivery-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.delivery-header {
	background: linear-gradient(135deg, #1a2b5f 0%, #2c4a8c 100%);
	color: #ffffff;
	padding: 25px;
	text-align: center;
}

.delivery-icon {
	font-size: 42px;
	margin-bottom: 15px;
}

.delivery-title {
	font-size: 22px;
	font-weight: 600;
	color: #ffffff;
}

.delivery-body {
	padding: 30px;
	background: #ffffff;
}

.delivery-description {
	font-size: 15px;
	color: #7f8c8d;
	margin-bottom: 20px;
}

.delivery-features {
	list-style: none;
}

.delivery-features li {
	padding: 10px 0;
	font-size: 14px;
	color: #2c3e50;
	border-bottom: 1px solid #eee;
}

.delivery-features li:last-child {
	border-bottom: none;
}

.delivery-footer {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 30px;
	background: #f8f9fa;
	border-top: 2px solid #eee;
}

.delivery-time {
	font-size: 15px;
	font-weight: 600;
	color: #1a2b5f;
}

.delivery-price {
	font-size: 20px;
	font-weight: 700;
	color: #d4af37;
}

.delivery-info-section {
	background: #ffffff;
	padding-bottom: 40px;
}


.info-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.info-card {
	background: #f8f9fa;
	padding: 30px;
	border-radius: 15px;
	text-align: center;
}

.info-icon {
	font-size: 42px;
	margin-bottom: 20px;
}

.info-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #1a2b5f;
	margin-bottom: 15px;
}

.info-card p {
	font-size: 15px;
	color: #7f8c8d;
	line-height: 1.7;
}


/* FAQ Section */
.faq-section {
	background: #f8f9fa;
	padding: 40px 0;
}

.faq-list {
	max-width: 800px;
	margin: 50px auto 0;
}

.faq-item {
	background: #ffffff;
	padding: 30px;
	border-radius: 15px;
	margin-bottom: 20px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faq-question {
	font-size: 20px;
	font-weight: 600;
	color: #1a2b5f;
	margin-bottom: 15px;
}

.faq-answer {
	font-size: 15px;
	color: #7f8c8d;
	line-height: 1.7;
}

/* CTA Section */
.cta {
	background: linear-gradient(135deg, #1a2b5f 0%, #2c4a8c 100%);
	color: #ffffff;
	text-align: center;
	padding: 80px 0;
	margin-bottom: 50px;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-title {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	font-weight: 700;
	margin-bottom: 20px;
}

.cta-text {
	font-size: 18px;
	margin-bottom: 35px;
	opacity: 0.95;
	color: #ffffff;
}

.cta-buttons {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}



/* Contacts Page */
.contact-info-section {
	background: #f8f9fa;
	padding: 40px;
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.contact-card {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: all 0.3s ease;
}

.contact-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
	font-size: 48px;
	margin-bottom: 20px;
}

.contact-title {
	font-size: 22px;
	font-weight: 600;
	color: #1a2b5f;
	margin-bottom: 10px;
}

.contact-text {
	font-size: 15px;
	color: #7f8c8d;
	margin-bottom: 15px;
}

.contact-link {
	font-size: 18px;
	font-weight: 600;
	color: #d4af37;
	text-decoration: none;
	display: block;
	margin-bottom: 10px;
}

.contact-note {
	font-size: 13px;
	color: #7f8c8d;
	font-style: italic;
}

.messenger-links {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.messenger-link {
	color: #d4af37;
	text-decoration: none;
	font-weight: 600;
}

.contact-form-section {
	background: #ffffff;
	padding: 40px 0;
}

.form-wrapper {
	max-width: 800px;
	margin: 0 auto;
}

.form-header {
	text-align: center;
	margin-bottom: 40px;
}

.map-section {
	background: #f8f9fa;
	padding: 40px 0;
}

.map-container {
	margin-top: 40px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
	background: linear-gradient(135deg, #1a2b5f 0%, #2c4a8c 100%);
	color: #ffffff;
	padding: 100px 40px;
	text-align: center;
}
.map-placeholder p {
	color: #ffffff;
}
.map-icon {
	font-size: 64px;
	margin-bottom: 20px;
}

.map-placeholder p {
	font-size: 18px;
	margin-bottom: 10px;
}

.location-details {
	background: #ffffff;
	padding: 40px;
	border-radius: 15px;
	margin-top: 30px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-details h3 {
	font-size: 24px;
	color: #1a2b5f;
	margin-bottom: 20px;
}

.location-details ul {
	list-style: none;
}

.location-details li {
	padding: 12px 0;
	font-size: 15px;
	color: #2c3e50;
	line-height: 1.7;
	border-bottom: 1px solid #eee;
}

.location-details li:last-child {
	border-bottom: none;
}

.working-hours-section {
	background: #ffffff;
	padding: 40px 0;
}

.hours-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.hours-card {
	background: #f8f9fa;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hours-card h3 {
	font-size: 24px;
	font-weight: 600;
	color: #1a2b5f;
	margin-bottom: 25px;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	padding: 15px 20px;
	background: #ffffff;
	border-radius: 10px;
}

.day {
	font-size: 15px;
	color: #2c3e50;
}

.time {
	font-size: 15px;
	font-weight: 600;
	color: #d4af37;
}

.social-proof-section {
	background: linear-gradient(135deg, #1a2b5f 0%, #2c4a8c 100%);
	color: #ffffff;
	padding: 40px 0;
	margin-bottom: 50px;
}
.social-proof-section .section-title {
	color: #fff;
}

.social-proof-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-top: 50px;
}

.proof-card {
	text-align: center;
}

.proof-number {
	font-size: 52px;
	font-weight: 700;
	color: #d4af37;
	margin-bottom: 15px;
}

.proof-text {
	font-size: 18px;
	opacity: 0.95;
	color: #ffffff;
}


/* Forms */
.order-form,
.contact-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.form-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.form-group label {
	font-size: 14px;
	font-weight: 600;
	color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 16px;
	border: 2px solid #e0e0e0;
	border-radius: 8px;
	font-size: 15px;
	font-family: 'Montserrat', sans-serif;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #d4af37;
	box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}