/* ==========================================
   M.A SERRURERIE 24/24 - PROFESSIONAL CSS
   ========================================== */

/* CSS Variables */
:root {
	--primary: #c8102e;
	--primary-dark: #a00d24;
	--secondary: #1c1c1c;
	--text-dark: #2c2c2c;
	--text-light: #5a5a5a;
	--white: #ffffff;
	--light: #f4f4f4;
	--gray: #e0e0e0;
	--border: #d0d0d0;
	--shadow: rgba(0, 0, 0, 0.08);
	--shadow-strong: rgba(0, 0, 0, 0.15);
	--transition: all 0.3s ease;
	--font-heading: 'Montserrat', sans-serif;
	--font-body: 'Open Sans', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 120px;
}

body {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-dark);
	background: var(--white);
}

/* Container */
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background: var(--white);
	box-shadow: 0 2px 10px var(--shadow);
	transition: var(--transition);
}

/* Top Bar */
.top-bar {
	background: var(--secondary);
	color: var(--white);
	padding: 10px 0;
	font-size: 13px;
}

.top-bar-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.top-bar-info {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.info-item {
	display: flex;
	align-items: center;
	gap: 8px;
}

.info-item i {
	color: var(--primary);
	font-size: 14px;
}

.info-item a {
	color: var(--white);
	text-decoration: none;
	transition: var(--transition);
}

.info-item a:hover {
	color: var(--primary);
}

.top-bar-social {
	display: flex;
	gap: 12px;
}

.top-bar-social a {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	color: var(--white);
	transition: var(--transition);
	text-decoration: none;
	border: none;
	box-shadow: none;
}

.top-bar-social a:hover {
	background: var(--primary);
}

/* Navbar */
.navbar {
	padding: 12px 0;
	border-bottom: 1px solid var(--border);
}

.nav-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
}

.nav-logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.logo-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--text-dark);
	letter-spacing: 1px;
}

.logo-subtitle {
	font-size: 11px;
	color: var(--text-light);
	font-weight: 500;
}

.nav-menu {
	display: flex;
	list-style: none;
	gap: 25px;
}

.nav-link {
	color: var(--text-dark);
	text-decoration: none;
	font-weight: 500;
	font-size: 14px;
	transition: var(--transition);
	position: relative;
	padding: 5px 0;
}

.nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
	color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.btn-call {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: var(--primary);
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	border-radius: 3px;
	transition: var(--transition);
}

.btn-call:hover {
	background: var(--primary-dark);
	transform: translateY(-2px);
}

.nav-toggle {
	display: none;
	flex-direction: column;
	gap: 5px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 5px;
}

.nav-toggle span {
	width: 25px;
	height: 2px;
	background: var(--text-dark);
	border-radius: 1px;
	transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
	opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
	position: relative;
	height: 100vh;
	min-height: 650px;
	margin-top: 92px;
	overflow: hidden;
}

.hero-slider {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
	opacity: 1;
	visibility: visible;
}

.hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, rgba(200, 16, 46, 0.85) 0%, rgba(28, 28, 28, 0.9) 100%);
}

.hero-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	color: var(--white);
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 18px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border-radius: 30px;
	font-weight: 500;
	font-size: 13px;
	margin-bottom: 25px;
}

.hero-badge i {
	color: #ffd700;
}

.hero-title {
	font-family: var(--font-heading);
	font-size: 52px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 20px;
}

.hero-title .highlight {
	color: #ffcc00;
}

.hero-description {
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 35px;
	opacity: 0.95;
}

.hero-actions {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 35px;
	background: var(--white);
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 3px;
	transition: var(--transition);
}

.btn-primary:hover {
	background: var(--light);
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 35px;
	background: transparent;
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border: 2px solid var(--white);
	border-radius: 3px;
	transition: var(--transition);
}

.btn-secondary:hover {
	background: var(--white);
	color: var(--primary);
}

/* Hero Controls */
.hero-controls {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	align-items: center;
	gap: 20px;
}

.hero-prev,
.hero-next {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.15);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 3px;
	color: var(--white);
	cursor: pointer;
	transition: var(--transition);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
	background: var(--white);
	color: var(--primary);
}

.hero-dots {
	display: flex;
	gap: 8px;
}

.hero-dot {
	width: 10px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}

.hero-dot.active {
	background: var(--white);
	width: 25px;
	border-radius: 5px;
}

/* Features Banner */
.features-banner {
	padding: 50px 0;
	background: var(--light);
	margin-top: -60px;
	position: relative;
	z-index: 5;
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 25px;
	background: var(--white);
	border-radius: 5px;
	box-shadow: 0 2px 15px var(--shadow);
}

.feature-icon {
	width: 55px;
	height: 55px;
	background: var(--primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--white);
	flex-shrink: 0;
}

.feature-content h3 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 3px;
}

.feature-content p {
	color: var(--text-light);
	font-size: 13px;
}

/* Section Styles */
section {
	padding: 80px 0;
}

.section-tag {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(200, 16, 46, 0.1);
	color: var(--primary);
	font-weight: 600;
	font-size: 12px;
	border-radius: 3px;
	margin-bottom: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.section-title {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 20px;
	color: var(--text-dark);
}

.section-title .highlight {
	color: var(--primary);
}

.section-description {
	font-size: 16px;
	color: var(--text-light);
	max-width: 600px;
	margin: 0 auto;
}

.section-header {
	margin-bottom: 35px;
}

.section-header-center {
	text-align: center;
	margin-bottom: 50px;
}

/* About Section */
.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.about-image .image-wrapper {
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	box-shadow: 0 10px 40px var(--shadow);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

.image-badge {
	position: absolute;
	bottom: 25px;
	right: 25px;
	padding: 20px;
	background: var(--white);
	border-radius: 5px;
	box-shadow: 0 5px 30px var(--shadow-strong);
}

.badge-content {
	text-align: center;
}

.badge-rating {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
}

.badge-stars {
	font-size: 16px;
	color: #ffd700;
	margin: 8px 0;
}

.badge-text {
	font-size: 12px;
	color: var(--text-light);
}

.about-text {
	margin-bottom: 18px;
	line-height: 1.8;
	color: var(--text-light);
}

.about-features {
	margin: 25px 0;
}

.about-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
	color: var(--text-dark);
	font-size: 15px;
}

.about-feature i {
	color: var(--primary);
	font-size: 18px;
}

.cta-box {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 22px;
	background: var(--primary);
	border-radius: 5px;
	color: var(--white);
	margin-top: 25px;
}

.cta-icon {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.cta-label {
	display: block;
	font-size: 13px;
	opacity: 0.9;
}

.cta-phone {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--white);
	text-decoration: none;
}

/* Services Section */
.services {
	background: var(--light);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

.service-card {
	position: relative;
	background: var(--white);
	padding: 35px 25px;
	border-radius: 5px;
	box-shadow: 0 2px 15px var(--shadow);
	transition: var(--transition);
}

.service-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: var(--primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px var(--shadow-strong);
}

.service-card:hover::before {
	transform: scaleX(1);
}

.service-card.featured {
	border: 2px solid var(--primary);
}

.featured-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 4px 12px;
	background: var(--primary);
	color: var(--white);
	font-size: 11px;
	font-weight: 600;
	border-radius: 3px;
}

.service-icon {
	width: 55px;
	height: 55px;
	background: var(--primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: var(--white);
	margin-bottom: 18px;
}

.service-number {
	position: absolute;
	top: 25px;
	right: 25px;
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	color: rgba(200, 16, 46, 0.1);
}

.service-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 12px;
	color: var(--text-dark);
}

.service-description {
	color: var(--text-light);
	font-size: 14px;
	margin-bottom: 18px;
	line-height: 1.7;
}

.service-price {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 12px;
	background: var(--light);
	border-radius: 3px;
	margin-bottom: 18px;
}

.price-label {
	font-size: 11px;
	color: var(--text-light);
}

.price-value {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--primary);
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--primary);
	font-weight: 600;
	font-size: 14px;
	text-decoration: none;
	transition: var(--transition);
}

.service-link:hover {
	gap: 12px;
}

.services-disclaimer {
	text-align: center;
	margin-top: 35px;
	color: var(--text-light);
	font-size: 13px;
}

/* CTA Banner */
.cta-banner {
	padding: 60px 0;
	background: var(--primary);
	color: var(--white);
}

.cta-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.cta-tag {
	display: inline-block;
	padding: 6px 16px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	font-weight: 600;
	font-size: 12px;
	margin-bottom: 12px;
}

.cta-title {
	font-family: var(--font-heading);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 8px;
}

.cta-description {
	font-size: 16px;
	opacity: 0.95;
}

.btn-cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	padding: 18px 35px;
	background: var(--white);
	color: var(--primary);
	text-decoration: none;
	font-weight: 700;
	font-size: 18px;
	border-radius: 3px;
	transition: var(--transition);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

/* Why Us Section */
.why-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	align-items: center;
}

.why-image img {
	width: 100%;
	border-radius: 5px;
	box-shadow: 0 10px 40px var(--shadow);
}

.why-description {
	margin-bottom: 25px;
	line-height: 1.8;
	color: var(--text-light);
}

.why-list {
	margin-bottom: 35px;
}

.why-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.why-icon {
	width: 35px;
	height: 35px;
	background: var(--primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	flex-shrink: 0;
}

.why-text {
	font-weight: 500;
	color: var(--text-dark);
	font-size: 15px;
}

.why-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.stat-item {
	text-align: center;
	padding: 25px;
	background: var(--light);
	border-radius: 5px;
}

.stat-value {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 700;
	color: var(--primary);
	margin-bottom: 5px;
}

.stat-label {
	color: var(--text-light);
	font-size: 13px;
}

/* Reviews Section */
.reviews {
	background: var(--light);
}

.reviews-slider {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
	margin-bottom: 35px;
}

.review-card {
	background: var(--white);
	padding: 25px;
	border-radius: 5px;
	box-shadow: 0 2px 15px var(--shadow);
	transition: var(--transition);
}

.review-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px var(--shadow-strong);
}

.review-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.review-avatar {
	width: 45px;
	height: 45px;
	background: var(--primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
}

.review-info h4 {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	color: var(--text-dark);
}

.review-rating {
	color: #ffd700;
	font-size: 12px;
	margin-top: 4px;
}

.review-text {
	color: var(--text-light);
	line-height: 1.7;
	margin-bottom: 18px;
	font-size: 14px;
}

.review-footer {
	display: flex;
	justify-content: flex-end;
}

.review-badge {
	padding: 5px 12px;
	background: rgba(200, 16, 46, 0.1);
	color: var(--primary);
	font-size: 11px;
	font-weight: 600;
	border-radius: 3px;
}

.reviews-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.reviews-prev,
.reviews-next {
	width: 40px;
	height: 40px;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	color: var(--text-dark);
}

.reviews-prev:hover,
.reviews-next:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.reviews-dots {
	display: flex;
	gap: 8px;
}

.reviews-dot {
	width: 8px;
	height: 8px;
	background: var(--border);
	border-radius: 50%;
	cursor: pointer;
	transition: var(--transition);
}

.reviews-dot.active {
	background: var(--primary);
	width: 20px;
	border-radius: 4px;
}

.google-rating {
	margin-top: 15px;
}

.rating-stars {
	font-size: 22px;
	color: #ffd700;
}

.rating-text {
	color: var(--text-light);
	font-size: 14px;
	margin-top: 8px;
}

/* Contact Section */
.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
}

.contact-description {
	margin-top: 12px;
	color: var(--text-light);
}

.contact-items {
	margin-top: 35px;
}

.contact-item {
	display: flex;
	gap: 18px;
	margin-bottom: 25px;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--primary);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	font-size: 18px;
	flex-shrink: 0;
}

.contact-details h4 {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 600;
	margin-bottom: 5px;
}

.contact-details a {
	color: var(--primary);
	font-size: 18px;
	font-weight: 700;
	text-decoration: none;
}

.contact-note {
	display: block;
	color: var(--text-light);
	font-size: 13px;
	margin-top: 3px;
}

.contact-areas {
	margin-top: 30px;
	padding: 20px;
	background: var(--light);
	border-radius: 5px;
}

.contact-areas-section {
	display: flex;
	align-items: center;
}

.contact-areas-section .contact-areas {
	margin-top: 0;
	width: 100%;
}

.contact-areas h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 8px;
}

.contact-areas p {
	color: var(--text-light);
	line-height: 1.7;
	font-size: 14px;
}

/* Footer */
.footer {
	background: var(--secondary);
	color: var(--white);
	padding: 70px 0 25px;
}

.footer-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.3fr;
	gap: 35px;
	margin-bottom: 40px;
}

.footer-about p {
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.8;
	margin-bottom: 20px;
	font-size: 14px;
}

.footer-logo {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.footer-logo img {
	width: 45px;
	height: 45px;
	object-fit: contain;
}

.footer-logo-title {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}

.footer-contact-item i {
	color: var(--primary);
}

.footer-contact-item a {
	color: var(--white);
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
}

.footer-links h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	margin-bottom: 18px;
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: none;
	font-size: 14px;
	transition: var(--transition);
}

.footer-links a:hover {
	color: var(--white);
	padding-left: 3px;
}

.footer-hours h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	margin-bottom: 18px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 18px;
}

.footer-social a {
	width: 35px;
	height: 35px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: var(--transition);
	text-decoration: none;
	border: none;
	box-shadow: none;
}

.footer-social a:hover {
	background: var(--primary);
	transform: translateY(-2px);
}

.footer-bottom {
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

/* Scroll Top */
.scroll-top {
	position: fixed;
	bottom: 90px;
	right: 25px;
	width: 45px;
	height: 45px;
	background: var(--text-light);
	border: none;
	border-radius: 3px;
	color: var(--white);
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
	z-index: 999;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.scroll-top.visible {
	opacity: 1;
	visibility: visible;
}

.scroll-top:hover {
	background: var(--text-dark);
	transform: translateY(-3px);
}

/* Floating Call Button */
.floating-call-button {
	position: fixed;
	bottom: 25px;
	right: 25px;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 20px;
	background: linear-gradient(135deg, var(--primary), var(--primary-dark));
	color: var(--white);
	text-decoration: none;
	font-weight: 700;
	font-size: 16px;
	border-radius: 50px;
	box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
	transition: var(--transition);
	z-index: 1000;
	animation: pulse 2s infinite;
}

.floating-call-button i {
	font-size: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	flex-shrink: 0;
}

@keyframes pulse {
	0%, 100% {
		box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 8px 40px rgba(200, 16, 46, 0.6);
		transform: scale(1.02);
	}
}

.floating-call-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 40px rgba(200, 16, 46, 0.5);
	animation: none;
}

/* Responsive */
@media (max-width: 1024px) {
	.features-grid,
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.reviews-slider {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.top-bar-content {
		flex-direction: column;
		text-align: center;
	}

	.top-bar-info {
		gap: 10px;
	}

	.info-item:not(:last-child),
	.top-bar-social {
		display: none;
	}

	.info-item:last-child {
		justify-content: center;
		font-size: 14px;
	}

	.info-item:last-child a {
		font-size: 16px;
		font-weight: 700;
	}

	.nav-menu {
		position: fixed;
		top: 0;
		left: -100%;
		width: 80%;
		max-width: 280px;
		height: 100vh;
		background: var(--white);
		flex-direction: column;
		padding: 80px 25px;
		box-shadow: 0 0 50px var(--shadow-strong);
		transition: left 0.3s ease;
	}

	.nav-menu.active {
		left: 0;
	}

	.nav-toggle {
		display: flex;
	}

	.nav-cta {
		display: none;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-description {
		font-size: 16px;
	}

	.features-grid {
		grid-template-columns: 1fr;
	}

	.about-grid,
	.why-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}

	.services-grid,
	.reviews-slider {
		grid-template-columns: 1fr;
	}

	.cta-content {
		flex-direction: column;
		text-align: center;
	}

	.footer-grid {
		grid-template-columns: 1fr;
	}

	.section-title {
		font-size: 28px;
	}

	.feature-content h3 {
		font-size: 22px;
	}

	/* CTA Box - Mobile */
	.cta-box {
		padding: 16px;
		gap: 12px;
	}

	.cta-icon {
		width: 40px;
		height: 40px;
		font-size: 18px;
	}

	.cta-phone {
		font-size: 18px;
	}

	.cta-label {
		font-size: 12px;
	}

	/* Floating Call Button - Mobile */
	.floating-call-button {
		padding: 12px 18px;
		font-size: 15px;
		bottom: 20px;
		right: 20px;
	}

	.floating-call-button span {
		display: none;
	}

	.floating-call-button i {
		width: 44px;
		height: 44px;
		font-size: 20px;
	}

	.scroll-top {
		bottom: 85px;
		right: 20px;
	}
}
