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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #fff;
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 1rem;
}

h1 {
	font-size: 2.5rem;
	color: #2c3e50;
}

h2 {
	font-size: 2rem;
	color: #34495e;
}

h3 {
	font-size: 1.5rem;
	color: #34495e;
}

p {
	margin-bottom: 1rem;
	color: #555;
}

a {
	text-decoration: none;
	color: #e74c3c;
	transition: color 0.3s ease;
}

a:hover {
	color: #c0392b;
}

/* Buttons */
.btn {
	display: inline-block;
	padding: 12px 24px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	line-height: 1;
}

.btn-primary {
	background-color: #e74c3c;
	color: #fff;
}

.btn-primary:hover {
	background-color: #c0392b;
	color: #fff;
	transform: translateY(-2px);
}

.btn-secondary {
	background-color: #95a5a6;
	color: #fff;
}

.btn-secondary:hover {
	background-color: #7f8c8d;
	color: #fff;
}

.btn-outline {
	background-color: transparent;
	color: #e74c3c;
	border: 2px solid #e74c3c;
}

.btn-outline:hover {
	background-color: #e74c3c;
	color: #fff;
}

.btn-large {
	padding: 16px 32px;
	font-size: 1.1rem;
}

/* Header */
.header {
	background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.navbar {
	padding: 1rem 0;
}

.navbar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-brand {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
	font-weight: 700;
	color: #2c3e50;
}

.logo {
	height: 40px;
	margin-right: 10px;
}

.navbar-menu {
	display: flex;
	gap: 2rem;
}

.nav-link {
	color: #34495e;
	font-weight: 500;
	padding: 0.5rem 0;
	position: relative;
}

.nav-link:hover,
.nav-link.active {
	color: #e74c3c;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background-color: #e74c3c;
	transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.navbar-toggle {
	display: none;
	flex-direction: column;
	cursor: pointer;
	width: 30px;
	height: 24px;
	justify-content: space-between;
}

.navbar-toggle span {
	height: 3px;
	background-color: #34495e;
	border-radius: 2px;
	transition: 0.3s;
}

/* Hero Section */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
	overflow: hidden;
	margin-top: 80px;
}

.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 800px;
	margin: 0 auto;
	padding: 2rem;
}

.hero-title {
	font-size: 3.5rem;
	color: #2c3e50;
	margin-bottom: 1.5rem;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
	font-size: 1.3rem;
	color: #34495e;
	margin-bottom: 2.5rem;
	line-height: 1.6;
}

.hero-buttons {
	display: flex;
	gap: 1.5rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* Page Header */
.page-header {
	background: linear-gradient(135deg, #74b9ff 0%, #6c5ce7 100%);
	color: #fff;
	padding: 6rem 0 3rem;
	margin-top: 80px;
	text-align: center;
}

.page-header h1 {
	color: #fff;
	font-size: 3rem;
	margin-bottom: 1rem;
}

.breadcrumb {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.1rem;
}

.breadcrumb a {
	color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
	color: #fff;
}

/* Sections */
.section-title {
	text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
	margin-bottom: 3rem;
}

.section-intro {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 4rem;
}

.section-intro h2 {
	margin-bottom: 1.5rem;
}

.section-intro p {
	font-size: 1.1rem;
	color: #666;
}

/* Services Preview */
.services-preview {
	padding: 5rem 0;
	background-color: #f8f9fa;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.service-card {
	background: #fff;
	padding: 2.5rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 1.5rem;
}

.service-card h3 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

.service-card p {
	color: #666;
	margin-bottom: 1.5rem;
}

.service-link {
	color: #e74c3c;
	font-weight: 500;
}

/* About Preview */
.about-preview {
	padding: 5rem 0;
}

.about-content {
	display: flex;
	justify-content: center;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.about-text h2 {
	margin-bottom: 2rem;
}

.benefits-list {
	list-style: none;
	margin: 2rem 0;
}

.benefits-list li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 2rem;
}

.benefits-list li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
}

.responsive-image {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

/* CTA Section */
.cta-section {
	background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color: #fff;
	padding: 4rem 0;
	text-align: center;
}

.cta-content h2 {
	color: #fff;
	margin-bottom: 1rem;
}

.cta-content p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.cta-section .btn-primary {
	background-color: #fff;
	color: #e74c3c;
}

.cta-section .btn-primary:hover {
	background-color: #f8f9fa;
	color: #c0392b;
}

/* Footer */
.footer {
	background-color: #2c3e50;
	color: #fff;
	padding: 3rem 0 1rem;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-bottom: 2rem;
}

.footer-brand {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.footer-logo {
	height: 30px;
	margin-right: 10px;
}

.footer-brand-text {
	font-size: 1.2rem;
	font-weight: 600;
}

.footer-section h4 {
	color: #ecf0f1;
	margin-bottom: 1rem;
}

.footer-section p {
	color: #bdc3c7;
	margin-bottom: 0.5rem;
}

.footer-links {
	list-style: none;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	color: #bdc3c7;
}

.footer-links a:hover {
	color: #ecf0f1;
}

.footer-bottom {
	border-top: 1px solid #34495e;
	padding-top: 1rem;
	text-align: center;
	color: #95a5a6;
}

/* About Page */
.about-content {
	padding: 4rem 0;
}

.about-main {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
	margin: 3rem 0;
	align-items: start;
}

.qualification-list {
	margin: 1.5rem 0;
}

.qualification-list li {
	margin-bottom: 0.5rem;
	padding-left: 1.5rem;
	position: relative;
}

.qualification-list li::before {
	content: '🎓';
	position: absolute;
	left: 0;
}

.experience-timeline {
	margin: 2rem 0;
}

.timeline-item {
	display: flex;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
	border-left: 4px solid #e74c3c;
}

.timeline-date {
	font-weight: 600;
	color: #e74c3c;
	min-width: 120px;
	margin-right: 1rem;
}

.timeline-content h4 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.about-sidebar {
	padding: 2rem;
}

.about-photo {
	margin-bottom: 2rem;
}

.about-stats {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin: 2rem 0;
}

.stat-item {
	text-align: center;
	padding: 1rem;
	background: #f8f9fa;
	border-radius: 8px;
}

.stat-number {
	font-size: 2rem;
	font-weight: 700;
	color: #e74c3c;
}

.stat-label {
	font-size: 0.9rem;
	color: #666;
}

.about-philosophy {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin-top: 2rem;
}

.about-philosophy blockquote {
	font-style: italic;
	color: #555;
	margin: 1rem 0;
	padding: 0;
	border: none;
}

/* Why Choose Me */
.why-choose-me {
	padding: 4rem 0;
	background: #f8f9fa;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.feature-card {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

/* Services Page */
.services-overview {
	padding: 3rem 0;
}

.main-services {
	padding: 4rem 0;
}

.service-detail {
	margin-bottom: 5rem;
	padding: 3rem 0;
	border-bottom: 1px solid #eee;
}

.service-detail:last-child {
	border-bottom: none;
}

.service-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.service-content.reverse {
	direction: rtl;
}

.service-content.reverse > * {
	direction: ltr;
}

.service-description {
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.service-features {
	list-style: none;
	margin: 1.5rem 0;
}

.service-features li {
	padding: 0.5rem 0;
	position: relative;
	padding-left: 1.5rem;
}

.service-features li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: bold;
}

.service-price {
	margin: 2rem 0;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
}

.price-block {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.price {
	font-size: 1.5rem;
	font-weight: 700;
	color: #e74c3c;
}

.duration {
	color: #666;
	font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
	padding: 4rem 0;
	background: #f8f9fa;
}

.additional-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.additional-card {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	text-align: center;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.additional-icon {
	font-size: 2.5rem;
	margin-bottom: 1rem;
}

.additional-price {
	display: block;
	font-weight: 600;
	color: #e74c3c;
	margin-top: 1rem;
}

/* Process Section */
.process-section {
	padding: 4rem 0;
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.process-step {
	text-align: center;
	padding: 2rem;
}

.step-number {
	width: 60px;
	height: 60px;
	background: #e74c3c;
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	font-weight: 700;
	margin: 0 auto 1rem;
}

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

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

.faq-item {
	background: #fff;
	margin-bottom: 1rem;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
	padding: 1.5rem;
	background: #fff;
	cursor: pointer;
	font-weight: 600;
	position: relative;
	border-bottom: 1px solid #eee;
}

.faq-question:hover {
	background: #f8f9fa;
}

.faq-question::after {
	content: '+';
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	color: #e74c3c;
}

.faq-item.active .faq-question::after {
	content: '−';
}

.faq-answer {
	padding: 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
	padding: 1.5rem;
	max-height: 200px;
}

/* Portfolio Page */
.portfolio-intro {
	padding: 3rem 0;
}

.portfolio-filter {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 0.8rem 1.5rem;
	background: #fff;
	border: 2px solid #e74c3c;
	color: #e74c3c;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
	background: #e74c3c;
	color: #fff;
}

.portfolio-gallery {
	padding: 4rem 0;
}

.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.portfolio-item:hover {
	transform: translateY(-5px);
}

.portfolio-image {
	position: relative;
	overflow: hidden;
}

.portfolio-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(231, 76, 60, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
	opacity: 1;
}

.portfolio-info {
	text-align: center;
	color: #fff;
	padding: 2rem;
}

.portfolio-info h3 {
	color: #fff;
	margin-bottom: 1rem;
}

.portfolio-info p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1.5rem;
}

.portfolio-btn {
	background: #fff;
	color: #e74c3c;
	padding: 0.8rem 1.5rem;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-weight: 500;
	transition: all 0.3s ease;
}

.portfolio-btn:hover {
	background: #f8f9fa;
	transform: translateY(-2px);
}

/* Portfolio Modal */
.modal {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
	background-color: #fff;
	margin: 5% auto;
	padding: 2rem;
	border-radius: 10px;
	width: 90%;
	max-width: 800px;
	position: relative;
}

.modal-close {
	position: absolute;
	right: 1rem;
	top: 1rem;
	font-size: 2rem;
	cursor: pointer;
	color: #999;
}

.modal-close:hover {
	color: #333;
}

/* Testimonials */
.testimonials {
	padding: 4rem 0;
	background: #f8f9fa;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.testimonial-card {
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
	margin-bottom: 1.5rem;
}

.testimonial-text p {
	font-style: italic;
	color: #555;
	font-size: 1.1rem;
}

.testimonial-author h4 {
	color: #2c3e50;
	margin-bottom: 0.5rem;
}

.testimonial-author span {
	color: #666;
	font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
	padding: 4rem 0;
	background: linear-gradient(135deg, #74b9ff 0%, #6c5ce7 100%);
	color: #fff;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
	margin-top: 2rem;
}

.stats-section .stat-item {
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
	border-radius: 10px;
}

.stats-section .stat-number {
	font-size: 3rem;
	font-weight: 700;
	color: #fff;
	margin-bottom: 0.5rem;
}

.stats-section .stat-label {
	color: rgba(255, 255, 255, 0.9);
	font-size: 1rem;
}

/* Contact Page */
.contact-content {
	padding: 4rem 0;
}

.contact-intro {
	text-align: center;
	margin-bottom: 4rem;
}

.contact-main {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 4rem;
}

/* Contact Form */
.contact-form {
	background: #f8f9fa;
	padding: 2rem;
	border-radius: 10px;
}

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

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 500;
	color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 0.8rem;
	border: 2px solid #ddd;
	border-radius: 5px;
	font-size: 1rem;
	transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #e74c3c;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
}

.checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	cursor: pointer;
	font-size: 0.9rem;
	line-height: 1.4;
}

.checkbox-label input[type='checkbox'] {
	width: auto;
	margin: 0;
}

.error-message {
	color: #e74c3c;
	font-size: 0.85rem;
	margin-top: 0.25rem;
	display: block;
}

.form-message {
	margin-top: 1rem;
	padding: 1rem;
	border-radius: 5px;
	display: none;
}

.form-message.success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.form-message.error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Contact Info */
.contact-info-section {
	padding: 2rem;
}

.contact-info {
	margin-bottom: 2rem;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 2rem;
	padding: 1.5rem;
	background: #f8f9fa;
	border-radius: 8px;
}

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

.contact-details h4 {
	margin-bottom: 0.5rem;
	color: #2c3e50;
}

.contact-details p {
	margin-bottom: 0.25rem;
}

.contact-details small {
	color: #666;
	font-size: 0.85rem;
}

.messenger-link {
	color: #e74c3c;
	margin-right: 0.5rem;
}

.messenger-link:hover {
	color: #c0392b;
}

/* Quick Contact */
.quick-contact {
	background: #e74c3c;
	color: #fff;
	padding: 1.5rem;
	border-radius: 8px;
	margin-bottom: 2rem;
}

.quick-contact h4 {
	color: #fff;
	margin-bottom: 1rem;
}

.quick-contact p {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 1rem;
}

.quick-call-form {
	display: flex;
	gap: 0.5rem;
}

.quick-call-group {
	display: flex;
	gap: 0.5rem;
	width: 100%;
}

.quick-call-group input {
	flex: 1;
	padding: 0.6rem;
	border: none;
	border-radius: 5px;
}

.quick-call-group button {
	white-space: nowrap;
}

/* Working Hours */
.working-hours {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
}

.working-hours h4 {
	margin-bottom: 1rem;
	color: #2c3e50;
}

.hours-list {
	margin-bottom: 1rem;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem 0;
	border-bottom: 1px solid #ddd;
}

.hours-item:last-child {
	border-bottom: none;
}

.day {
	font-weight: 500;
}

.time {
	color: #666;
}

.hours-note {
	font-size: 0.85rem;
	color: #666;
	font-style: italic;
	margin: 0;
}

/* Map Section */
.map-section {
	padding: 3rem 0;
	background: #f8f9fa;
}

.map-placeholder {
	background: #ddd;
	height: 300px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
}

.map-content {
	text-align: center;
	padding: 2rem;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 10px;
	max-width: 400px;
}

.map-content h4 {
	color: #2c3e50;
	margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
	padding: 4rem 0;
	background: #f8f9fa;
}

.legal-document {
	background: #fff;
	padding: 3rem;
	border-radius: 10px;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
	max-width: 900px;
	margin: 0 auto;
}

.legal-meta {
	background: #f8f9fa;
	padding: 1rem;
	border-radius: 5px;
	margin-bottom: 2rem;
	font-size: 0.9rem;
	color: #666;
}

.legal-section {
	margin-bottom: 3rem;
}

.legal-section h2 {
	color: #2c3e50;
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e74c3c;
}

.legal-section h3 {
	color: #34495e;
	margin: 1.5rem 0 1rem;
}

.legal-section h4 {
	color: #34495e;
	margin: 1rem 0 0.5rem;
}

.legal-section ul {
	margin: 1rem 0;
	padding-left: 2rem;
}

.legal-section li {
	margin-bottom: 0.5rem;
	line-height: 1.6;
}

.contact-info {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1rem 0;
}

.legal-footer {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid #ddd;
	font-size: 0.9rem;
	color: #666;
	text-align: center;
}

/* Cookie Policy Specific */
.cookie-type,
.cookie-category {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1rem 0;
	border-left: 4px solid #e74c3c;
}

.cookie-table {
	overflow-x: auto;
	margin: 2rem 0;
}

.cookie-table table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
	padding: 1rem;
	text-align: left;
	border-bottom: 1px solid #ddd;
}

.cookie-table th {
	background: #2c3e50;
	color: #fff;
	font-weight: 600;
}

.cookie-table tr:hover {
	background: #f8f9fa;
}

.browser-instructions {
	background: #f8f9fa;
	padding: 1.5rem;
	border-radius: 8px;
	margin: 1rem 0;
}

.browser-instructions h4 {
	color: #2c3e50;
	margin: 1rem 0 0.5rem;
}

.browser-instructions h4:first-child {
	margin-top: 0;
}

/* Cookie Settings */
.cookie-settings {
	padding: 4rem 0;
	background: #fff;
}

.cookie-controls {
	max-width: 800px;
	margin: 0 auto;
}

.cookie-control-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.5rem;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 1rem;
}

.cookie-control-info h3 {
	margin-bottom: 0.5rem;
	color: #2c3e50;
}

.cookie-control-info p {
	color: #666;
	font-size: 0.9rem;
	margin: 0;
}

.cookie-control-toggle {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cookie-controls-buttons {
	text-align: center;
	margin-top: 2rem;
	display: flex;
	gap: 1rem;
	justify-content: center;
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(44, 62, 80, 0.95);
	color: #fff;
	padding: 1.5rem 0;
	z-index: 1500;
	backdrop-filter: blur(10px);
	display: none;
}

.cookie-banner.show {
	display: block;
}

.cookie-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.cookie-content p {
	margin: 0;
	color: rgba(255, 255, 255, 0.9);
	flex: 1;
}

.cookie-content a {
	color: #74b9ff;
}

.cookie-content a:hover {
	color: #0984e3;
}

.cookie-buttons {
	display: flex;
	gap: 1rem;
	flex-shrink: 0;
}

.cookie-buttons .btn {
	padding: 0.8rem 1.5rem;
	font-size: 0.9rem;
}

/* Back to Top */
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 1000;
}

.back-to-top-link {
	display: inline-block;
	padding: 1rem;
	background: #e74c3c;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	font-size: 1.2rem;
	transition: all 0.3s ease;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-link:hover {
	background: #c0392b;
	color: #fff;
	transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 0 15px;
	}

	/* Header */
	.navbar-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: #fff;
		flex-direction: column;
		padding: 1rem 0;
		box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	}

	.navbar-menu.active {
		display: flex;
	}

	.navbar-toggle {
		display: flex;
	}

	.navbar-toggle.active span:nth-child(1) {
		transform: rotate(-45deg) translate(-5px, 6px);
	}

	.navbar-toggle.active span:nth-child(2) {
		opacity: 0;
	}

	.navbar-toggle.active span:nth-child(3) {
		transform: rotate(45deg) translate(-5px, -6px);
	}

	/* Hero */
	.hero-title {
		font-size: 2.5rem;
	}

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

	.hero-buttons {
		flex-direction: column;
		align-items: center;
	}

	/* Page Header */
	.page-header h1 {
		font-size: 2rem;
	}

	/* Grids */
	.about-content,
	.about-main,
	.contact-main,
	.service-content {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.service-content.reverse {
		direction: ltr;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr 1fr;
	}

	.about-stats {
		grid-template-columns: 1fr;
	}

	/* Portfolio */
	.portfolio-grid {
		grid-template-columns: 1fr;
	}

	.portfolio-filter {
		gap: 0.5rem;
	}

	.filter-btn {
		padding: 0.6rem 1rem;
		font-size: 0.9rem;
	}

	/* Contact */
	.quick-call-group {
		flex-direction: column;
	}

	.quick-call-group button {
		width: 100%;
	}

	/* Cookie Banner */
	.cookie-content {
		flex-direction: column;
		gap: 1rem;
		text-align: center;
	}

	.cookie-buttons {
		justify-content: center;
		width: 100%;
	}

	/* Tables */
	.cookie-table {
		font-size: 0.8rem;
	}

	/* Modal */
	.modal-content {
		margin: 10% auto;
		width: 95%;
		padding: 1rem;
	}

	/* Back to Top */
	.back-to-top {
		bottom: 1rem;
		right: 1rem;
	}
}

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

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

	.btn-large {
		padding: 14px 24px;
		font-size: 1rem;
	}

	.services-grid,
	.features-grid,
	.additional-grid,
	.process-steps {
		grid-template-columns: 1fr;
	}

	.stats-grid {
		grid-template-columns: 1fr;
	}

	.legal-document {
		padding: 2rem 1rem;
	}

	.cookie-control-item {
		flex-direction: column;
		align-items: flex-start;
		gap: 1rem;
	}

	.cookie-controls-buttons {
		flex-direction: column;
	}
}

/* Print Styles */
@media print {
	.header,
	.footer,
	.cookie-banner,
	.back-to-top,
	.btn,
	.hero-buttons,
	.cta-section {
		display: none !important;
	}

	.hero {
		margin-top: 0;
		min-height: auto;
		padding: 2rem 0;
	}

	.page-header {
		margin-top: 0;
		background: none !important;
		color: #333 !important;
	}

	* {
		background: none !important;
		color: #333 !important;
		box-shadow: none !important;
	}

	a {
		color: #333 !important;
		text-decoration: underline !important;
	}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* Focus Styles */
*:focus {
	outline: 2px solid #e74c3c;
	outline-offset: 2px;
}

button:focus,
.btn:focus {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
	.hero {
		background: #fff !important;
	}

	.hero-title,
	.hero-subtitle {
		color: #000 !important;
	}

	.btn-primary {
		background: #000 !important;
		border: 2px solid #000 !important;
	}

	.btn-outline {
		border: 2px solid #000 !important;
		color: #000 !important;
	}
}

/* Loading States */
.loading {
	opacity: 0.6;
	pointer-events: none;
}

.loading::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	border: 2px solid #e74c3c;
	border-radius: 50%;
	border-top-color: transparent;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

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

.fade-in {
	animation: fadeIn 0.6s ease forwards;
}

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

/* Selection */
::selection {
	background: #e74c3c;
	color: #fff;
}

::-moz-selection {
	background: #e74c3c;
	color: #fff;
}
