* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--primary: #ff6b35;
	--primary-dark: #e55a2a;
	--secondary: #1a1a2e;
	--accent: #ffc107;
	--success: #28a745;
	--text: #333;
	--text-light: #666;
	--light: #f8f9fa;
	--white: #ffffff;
	--gradient: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
	--shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
	--shadow-md: 0 4px 16px rgba(0,0,0,0.15);
	--shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
	--shadow-glow: 0 0 20px rgba(255, 107, 53, 0.5);
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
	color: var(--text);
	overflow-x: hidden;
	background: #0f0f0f;
}

/* Navigation */
nav {
	width: 100%;
	background: rgba(26, 26, 46, 0.98);
	backdrop-filter: blur(20px);
	z-index: 1000;
	padding: 12px 0;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

nav.scrolled {
	padding: 8px 0;
	background: rgba(26, 26, 46, 0.99);
}

.nav-container {
	max-width: 1400px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	position: relative;
}

.logo {
	font-size: 20px;
	font-weight: 800;
	color: var(--primary);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 8px;
	transition: transform 0.3s ease;
	z-index: 1001;
}

.logo:hover {
	transform: scale(1.05);
}

.logo::before {
	content: "🚗";
	font-size: 24px;
}

/* Hamburger Menu */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	z-index: 1001;
	padding: 5px;
}

.hamburger span {
	width: 28px;
	height: 3px;
	background: var(--primary);
	margin: 3px 0;
	transition: all 0.3s ease;
	border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
	transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
	display: flex;
	gap: 30px;
	list-style: none;
	align-items: center;
	margin: 0;
}

.nav-menu li a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	position: relative;
	padding: 8px 0;
	font-weight: 500;
	font-size: 15px;
}

.nav-menu li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
	width: 100%;
}

.nav-contact-btns {
	display: flex;
	gap: 10px;
	align-items: center;
}

.phone-btn {
	background: var(--success);
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.phone-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
	background: #239a3d;
}

.whatsapp-nav-btn {
	background: #25D366;
	color: white;
	padding: 10px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	gap: 6px;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
	transition: all 0.3s ease;
	white-space: nowrap;
}

.whatsapp-nav-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
	background: #1fb855;
}

/* Emergency Bar */
.emergency-bar {
	background: var(--primary);
	color: white;
	text-align: center;
	padding: 10px 15px;
	font-weight: 700;
	font-size: 14px;
	animation: blink 2s infinite;
	margin-top: 60px;
}

@keyframes blink {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.85; }
}

/* Hero Section */
.hero {
	min-height: 100vh;
	background: linear-gradient(135deg, #1a1a2e 0%, #0f0f0f 100%);
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	padding: 100px 20px 120px;
}

.hero::before {
	content: '';
	position: absolute;
	width: 200%;
	height: 200%;
	background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ff6b35" fill-opacity="0.08" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat center;
	background-size: cover;
	animation: wave 20s linear infinite;
	bottom: 0;
}

@keyframes wave {
	0% { transform: translateX(0) translateY(0); }
	50% { transform: translateX(-25%) translateY(10px); }
	100% { transform: translateX(-50%) translateY(0); }
}

.hero-content {
	text-align: center;
	color: white;
	z-index: 1;
	max-width: 1200px;
	width: 100%;
	animation: fadeInUp 0.8s ease;
}

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

.hero h1 {
	font-size: 2.2em;
	margin-bottom: 15px;
	background: linear-gradient(45deg, #ff6b35, #ffc107);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 900;
	letter-spacing: -0.5px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.2em;
	margin-bottom: 15px;
	color: #e0e0e0;
	font-weight: 400;
}

.hero-description {
	font-size: 1em;
	margin-bottom: 35px;
	color: #b0b0b0;
	line-height: 1.6;
	padding: 0 10px;
}

.hero-cta-container {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 40px;
	padding: 0 10px;
}

.hero-phone-btn,
.hero-whatsapp-btn {
	width: 100%;
	padding: 18px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	transition: all 0.3s ease;
	color: white;
}

.hero-phone-btn {
	background: linear-gradient(135deg, #28a745, #20c997);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
	animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
	0%, 100% {
		box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 6px 30px rgba(40, 167, 69, 0.7);
		transform: scale(1.02);
	}
}

.hero-phone-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(40, 167, 69, 0.7);
}

.hero-whatsapp-btn {
	background: linear-gradient(135deg, #25D366, #128C7E);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
	animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
	0%, 100% {
		box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
		transform: scale(1);
	}
	50% {
		box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
		transform: scale(1.02);
	}
}

.hero-whatsapp-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7);
}

.hero-btn-text {
	font-size: 0.75em;
	font-weight: 600;
	opacity: 0.95;
}

.hero-features {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
	margin-top: 40px;
	padding: 0 10px;
}

.hero-feature {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.05);
	padding: 20px 15px;
	border-radius: 15px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-feature span {
	font-size: 32px;
}

.hero-feature p {
	font-weight: 600;
	font-size: 13px;
	text-align: center;
	line-height: 1.3;
}

/* Section Styling */
section {
	padding: 60px 20px;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
}

.section-title {
	text-align: center;
	font-size: 2em;
	margin-bottom: 15px;
	color: var(--white);
	font-weight: 800;
	position: relative;
	padding-bottom: 20px;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--gradient);
	border-radius: 10px;
}

.section-subtitle {
	text-align: center;
	font-size: 1.1em;
	color: #999;
	margin-bottom: 40px;
	padding: 0 15px;
}

/* Features Section */
.features {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-top: 40px;
}

.feature-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px 25px;
	border-radius: 20px;
	text-align: center;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.feature-icon {
	font-size: 50px;
	margin-bottom: 20px;
	display: block;
}

.feature-card h3 {
	color: var(--white);
	margin-bottom: 12px;
	font-size: 1.4em;
	font-weight: 700;
}

.feature-card p {
	color: #b0b0b0;
	line-height: 1.7;
	font-size: 1em;
}

/* Services Section */
.services {
	background: #0f0f0f;
}

.services-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 40px;
}

.service-item {
	background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 140, 66, 0.05));
	padding: 30px 25px;
	border-radius: 20px;
	transition: all 0.4s ease;
	border: 2px solid transparent;
}

.service-item:hover {
	transform: translateY(-5px);
	border-color: var(--primary);
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.service-icon {
	font-size: 55px;
	margin-bottom: 20px;
	display: block;
}

.service-item h3 {
	color: var(--primary);
	margin-bottom: 12px;
	font-size: 1.5em;
	font-weight: 800;
}

.service-item p {
	color: #ccc;
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 1em;
}

.service-cta {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.service-btn {
	flex: 1;
	min-width: 140px;
	padding: 14px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.3s ease;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	font-size: 14px;
	text-align: center;
}

.service-btn-phone {
	background: var(--success);
	color: white;
	box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.service-btn-phone:hover {
	background: #239a3d;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
}

.service-btn-whatsapp {
	background: #25D366;
	color: white;
	box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.service-btn-whatsapp:hover {
	background: #1fb855;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* About Section */
.about {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.about-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 40px;
}

.about-text {
	color: #ccc;
}

.about-text h3 {
	color: var(--primary);
	font-size: 1.8em;
	margin-bottom: 20px;
	font-weight: 800;
}

.about-text p {
	margin-bottom: 18px;
	line-height: 1.8;
	font-size: 1em;
}

.about-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.stat-item {
	background: rgba(255, 107, 53, 0.1);
	padding: 25px 15px;
	border-radius: 15px;
	text-align: center;
	border: 2px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
	font-size: 2.5em;
	font-weight: 900;
	color: var(--primary);
	display: block;
	margin-bottom: 8px;
}

.stat-label {
	color: #ccc;
	font-weight: 600;
	font-size: 0.95em;
}

/* Testimonials */
.testimonials {
	background: #0f0f0f;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 25px;
	margin-top: 40px;
}

.testimonial-card {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px 25px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.testimonial-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.testimonial-text {
	color: #ccc;
	font-style: italic;
	margin-bottom: 20px;
	line-height: 1.7;
	font-size: 1em;
}

.testimonial-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.author-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--gradient);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	color: white;
	font-size: 1.1em;
	flex-shrink: 0;
}

.author-info h4 {
	color: var(--white);
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 1em;
}

.rating {
	color: var(--accent);
	font-size: 1em;
}

/* FAQ Section */
.faq {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.faq-container {
	max-width: 900px;
	margin: 40px auto 0;
}

.faq-item {
	background: rgba(255, 255, 255, 0.05);
	margin-bottom: 15px;
	border-radius: 15px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease;
}

.faq-item:hover {
	border-color: var(--primary);
}

.faq-question {
	padding: 20px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: var(--white);
	font-weight: 700;
	font-size: 1em;
	user-select: none;
	gap: 15px;
}

.faq-icon {
	font-size: 1.5em;
	color: var(--primary);
	transition: transform 0.3s ease;
	font-weight: 300;
	flex-shrink: 0;
}

.faq-item.active .faq-icon {
	transform: rotate(45deg);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, padding 0.3s ease;
	color: #b0b0b0;
	line-height: 1.7;
	font-size: 0.95em;
}

.faq-item.active .faq-answer {
	max-height: 500px;
	padding: 0 20px 20px 20px;
}

/* Contact Section */
.contact {
	background: #0f0f0f;
}

.contact-content {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	margin-top: 40px;
}

.contact-info {
	background: rgba(255, 107, 53, 0.1);
	padding: 30px 25px;
	border-radius: 20px;
	border: 2px solid rgba(255, 107, 53, 0.2);
}

.contact-info h3 {
	color: var(--primary);
	font-size: 1.8em;
	margin-bottom: 25px;
	font-weight: 800;
}

.info-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 20px;
	color: #ccc;
	font-size: 1em;
}

.info-item .icon {
	font-size: 24px;
	width: 40px;
	flex-shrink: 0;
}

.contact-cta-buttons {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-top: 25px;
}

.contact-cta-btn {
	padding: 16px 30px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	text-align: center;
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	font-size: 16px;
}

.contact-cta-btn-phone {
	background: var(--success);
	color: white;
	box-shadow: 0 5px 20px rgba(40, 167, 69, 0.4);
}

.contact-cta-btn-phone:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(40, 167, 69, 0.6);
}

.contact-cta-btn-whatsapp {
	background: #25D366;
	color: white;
	box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

.contact-cta-btn-whatsapp:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.contact-form {
	background: rgba(255, 255, 255, 0.05);
	padding: 30px 25px;
	border-radius: 20px;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	color: var(--white);
	font-weight: 600;
	font-size: 1em;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 14px 18px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	border-radius: 12px;
	color: var(--white);
	font-size: 15px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary);
	background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
	min-height: 120px;
	resize: vertical;
}

.submit-btn {
	width: 100%;
	padding: 16px;
	background: var(--gradient);
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 800;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Footer */
footer {
	background: #0a0a0a;
	color: #ccc;
	padding: 50px 20px 25px;
}

.footer-content {
	max-width: 1400px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 35px;
	margin-bottom: 35px;
}

.footer-section h3 {
	color: var(--primary);
	margin-bottom: 20px;
	font-size: 1.4em;
	font-weight: 800;
}

.footer-section p {
	line-height: 1.7;
	margin-bottom: 15px;
	font-size: 0.95em;
}

.footer-section ul {
	list-style: none;
}

.footer-section ul li {
	margin-bottom: 10px;
}

.footer-section ul li a {
	color: #ccc;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
	font-size: 0.95em;
}

.footer-section ul li a:hover {
	color: var(--primary);
	transform: translateX(5px);
}

.social-links {
	display: flex;
	gap: 12px;
	margin-top: 15px;
}

.social-link {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: rgba(255, 107, 53, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	text-decoration: none;
	font-weight: 800;
	font-size: 1.2em;
	transition: all 0.3s ease;
}

.social-link:hover {
	background: var(--primary);
	color: white;
	transform: translateY(-3px);
}

.footer-bottom {
	text-align: center;
	padding-top: 25px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #888;
	font-size: 0.9em;
}

/* Floating Action Buttons */
.floating-buttons {
	position: fixed;
	right: 20px;
	bottom: 100px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 998;
}

.float-btn {
	width: 58px;
	height: 58px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	text-decoration: none;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
	transition: all 0.3s ease;
	animation: float 3s ease-in-out infinite;
}

@keyframes float {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-8px);
	}
}

.float-btn:hover {
	transform: translateY(-8px) scale(1.1);
}

.whatsapp-float {
	background: linear-gradient(135deg, #25D366, #128C7E);
	animation-delay: 0s;
}

.phone-float {
	background: linear-gradient(135deg, #28a745, #20c997);
	animation-delay: 0.5s;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(26, 26, 46, 0.98);
	backdrop-filter: blur(20px);
	padding: 12px 15px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	z-index: 999;
	box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.mobile-cta-btn {
	flex: 1;
	padding: 14px 20px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	transition: all 0.3s ease;
	font-size: 14px;
	color: white;
}

.mobile-cta-phone {
	background: var(--success);
}

.mobile-cta-phone:active {
	transform: scale(0.95);
}

.mobile-cta-whatsapp {
	background: #25D366;
}

.mobile-cta-whatsapp:active {
	transform: scale(0.95);
}

/* Responsive Design */

/* Small Mobile (320px - 480px) - Already optimized above */

/* Medium Mobile & Tablets (481px - 768px) */
@media (min-width: 481px) {
	.hero h1 {
		font-size: 2.8em;
	}
	
	.hero-subtitle {
		font-size: 1.4em;
	}
	
	.hero-description {
		font-size: 1.1em;
	}
	
	.hero-features {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.section-title {
		font-size: 2.5em;
	}
	
	.features-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	
	.services-grid {
		grid-template-columns: 1fr;
	}
	
	.testimonials-grid {
		grid-template-columns: 1fr;
	}
}

/* Tablets (769px - 1024px) */
@media (min-width: 769px) {
	.hamburger {
		display: none !important;
	}
	
	.nav-menu {
		display: flex !important;
		position: static;
		flex-direction: row;
		background: transparent;
		padding: 0;
		box-shadow: none;
	}
	
	.nav-menu li a {
		color: white;
	}
	
	.logo {
		font-size: 24px;
	}
	
	.logo::before {
		font-size: 28px;
	}
	
	.emergency-bar {
		font-size: 16px;
		padding: 12px 20px;
	}
	
	.hero {
		padding: 120px 30px 100px;
	}
	
	.hero h1 {
		font-size: 3.5em;
	}
	
	.hero-subtitle {
		font-size: 1.6em;
	}
	
	.hero-description {
		font-size: 1.2em;
	}
	
	.hero-cta-container {
		flex-direction: row;
		justify-content: center;
	}
	
	.hero-phone-btn,
	.hero-whatsapp-btn {
		width: auto;
		padding: 18px 45px;
		font-size: 18px;
		flex-direction: row;
	}
	
	.hero-btn-text {
		font-size: 0.8em;
	}
	
	.hero-features {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
	
	.hero-feature {
		flex-direction: row;
	}
	
	.hero-feature span {
		font-size: 28px;
	}
	
	.hero-feature p {
		font-size: 14px;
		text-align: left;
	}
	
	section {
		padding: 80px 30px;
	}
	
	.section-title {
		font-size: 3em;
	}
	
	.section-subtitle {
		font-size: 1.2em;
	}
	
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 30px;
	}
	
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.about-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}
	
	.testimonials-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.contact-content {
		grid-template-columns: repeat(2, 1fr);
		gap: 50px;
	}
	
	.footer-content {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.mobile-bottom-bar {
		display: none;
	}
	
	.floating-buttons {
		right: 25px;
		bottom: 25px;
	}
	
	.float-btn {
		width: 62px;
		height: 62px;
		font-size: 30px;
	}
}

/* Desktop (1025px and above) */
@media (min-width: 1025px) {
	nav {
		padding: 15px 0;
	}
	
	.nav-container {
		padding: 0 40px;
	}
	
	.logo {
		font-size: 26px;
	}
	
	.logo::before {
		font-size: 32px;
	}
	
	.nav-menu {
		gap: 35px;
	}
	
	.phone-btn,
	.whatsapp-nav-btn {
		padding: 12px 24px;
		font-size: 15px;
	}
	
	.emergency-bar {
		font-size: 18px;
	}
	
	.hero {
		padding: 150px 40px 120px;
	}
	
	.hero h1 {
		font-size: 4.5em;
	}
	
	.hero-subtitle {
		font-size: 1.8em;
	}
	
	.hero-description {
		font-size: 1.3em;
		max-width: 900px;
		margin-left: auto;
		margin-right: auto;
	}
	
	.hero-phone-btn,
	.hero-whatsapp-btn {
		padding: 20px 50px;
		font-size: 20px;
	}
	
	.hero-features {
		gap: 30px;
	}
	
	.hero-feature {
		padding: 20px 30px;
	}
	
	.hero-feature span {
		font-size: 32px;
	}
	
	.hero-feature p {
		font-size: 15px;
	}
	
	section {
		padding: 100px 40px;
	}
	
	.section-title {
		font-size: 3.5em;
	}
	
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 35px;
	}
	
	.feature-card {
		padding: 40px 30px;
	}
	
	.feature-icon {
		font-size: 60px;
	}
	
	.feature-card h3 {
		font-size: 1.5em;
	}
	
	.feature-card p {
		font-size: 1.05em;
	}
	
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 40px;
	}
	
	.service-item {
		padding: 40px 35px;
	}
	
	.service-icon {
		font-size: 70px;
	}
	
	.service-item h3 {
		font-size: 1.8em;
	}
	
	.service-item p {
		font-size: 1.05em;
	}
	
	.service-btn {
		padding: 12px 28px;
		font-size: 15px;
	}
	
	.about-text h3 {
		font-size: 2em;
	}
	
	.about-text p {
		font-size: 1.1em;
	}
	
	.stat-number {
		font-size: 3em;
	}
	
	.stat-label {
		font-size: 1.1em;
	}
	
	.testimonial-card {
		padding: 35px 30px;
	}
	
	.testimonial-text {
		font-size: 1.05em;
	}
	
	.faq-question {
		padding: 25px 30px;
		font-size: 1.15em;
	}
	
	.faq-answer {
		font-size: 1.05em;
	}
	
	.faq-item.active .faq-answer {
		padding: 0 30px 25px 30px;
	}
	
	.contact-info {
		padding: 40px 35px;
	}
	
	.contact-info h3 {
		font-size: 2em;
	}
	
	.info-item {
		font-size: 1.1em;
	}
	
	.info-item .icon {
		font-size: 28px;
		width: 50px;
	}
	
	.contact-cta-btn {
		padding: 18px 35px;
		font-size: 18px;
	}
	
	.contact-form {
		padding: 40px 35px;
	}
	
	.form-group input,
	.form-group select,
	.form-group textarea {
		padding: 15px 20px;
		font-size: 16px;
	}
	
	.submit-btn {
		padding: 18px;
		font-size: 18px;
	}
	
	.footer-content {
		grid-template-columns: repeat(4, 1fr);
		gap: 50px;
	}
	
	.footer-section h3 {
		font-size: 1.5em;
	}
	
	.floating-buttons {
		right: 30px;
		bottom: 30px;
	}
	
	.float-btn {
		width: 65px;
		height: 65px;
		font-size: 32px;
	}
}

/* Large Desktop (1440px and above) */
@media (min-width: 1440px) {
	.services-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	
	.testimonials-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Mobile Hamburger Menu Styles */
@media (max-width: 768px) {
	.hamburger {
		display: flex;
	}
	
	.nav-menu {
		position: fixed;
		top: 60px;
		left: -100%;
		width: 100%;
		flex-direction: column;
		background: rgba(26, 26, 46, 0.98);
		backdrop-filter: blur(20px);
		padding: 30px 20px;
		box-shadow: 0 10px 30px rgba(0,0,0,0.5);
		transition: left 0.3s ease;
		gap: 0;
	}
	
	.nav-menu.active {
		left: 0;
	}
	
	.nav-menu li {
		width: 100%;
		margin-bottom: 0;
	}
	
	.nav-menu li a {
		display: block;
		padding: 15px 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
	
	.nav-menu li a::after {
		display: none;
	}
	
	.nav-contact-btns {
		margin-top: 20px;
	}
}