/* ===== MODERN VARIABLES - FRESH DESIGN ===== */
:root {
    --primary: #2563EB; /* Professional Blue */
    --primary-dark: #1D4ED8;
    --secondary: #0F172A; /* Dark Navy */
    --accent: #F59E0B; /* Amber for highlights */
    --light-bg: #F8FAFC;
    --dark-bg: #1E293B;
    --text: #334155;
    --text-light: #64748B;
    --white: #FFFFFF;
    --black: #0F172A;
    --green: #10B981; /* Fresh Green */
    --green-dark: #059669;
    --whatsapp: #25D366; /* WhatsApp Green */
    --success: #10B981;
    --warning: #F59E0B;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.875rem; }
    h3 { font-size: 1.5rem; }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button, .btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

/* ===== BUTTON STYLES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0, 0);
        opacity: 0.5;
    }
    100% {
        transform: scale(40, 40);
        opacity: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), #D97706);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--primary);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 160px;
    padding-bottom: 100px;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 850px;
}

.hero h1 {
    font-size: 3.75rem;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
}

.hero h1 span {
    color: var(--accent);
    display: block;
    font-size: 3rem;
}

.hero p {
    font-size: 1.35rem;
    margin-bottom: 36px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.hero-phone-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    border-radius: var(--radius-xl);
    padding: 32px;
    margin: 48px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero-phone-banner:hover {
    transform: translateY(-5px);
}

.hero-phone-banner h3 {
    color: var(--accent);
    font-size: 1.9rem;
    margin-bottom: 16px;
}

.phone-number-large {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 20px 0;
    display: block;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--accent), #D97706);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-number-large:hover {
    transform: scale(1.02);
}

.business-hours {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    backdrop-filter: blur(10px);
}

.stat-content h3 {
    font-size: 2.25rem;
    color: var(--accent);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
}

.stat-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.stars {
    color: var(--accent);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-top: 4px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* ===== BOOKING FORM ===== */
.booking-section {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    margin-top: -80px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #E2E8F0;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
}

.form-check input {
    margin-top: 6px;
    accent-color: var(--primary);
}

.form-check label {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.form-check a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--light-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-header h2 {
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    max-width: 700px;
    margin: 24px auto 0;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 16px;
    color: var(--secondary);
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== FLEET SECTION ===== */
.fleet {
    background: var(--white);
    position: relative;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.vehicle-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(245, 158, 11, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.25rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    transition: var(--transition);
}

.vehicle-card:hover .vehicle-icon {
    transform: scale(1.1);
}

.vehicle-specs {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 28px 0;
    padding: 24px 0;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.spec-icon {
    color: var(--primary);
    font-size: 1.4rem;
}

.spec-value {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.3rem;
    font-family: 'Poppins', sans-serif;
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: var(--light-bg);
    position: relative;
}

.pricing-table-container {
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    background: var(--white);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 12px;
    position: relative;
}

.pricing-header p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.1rem;
    position: relative;
}

.pricing-body {
    padding: 0;
}

.pricing-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    align-items: center;
    padding: 24px 40px;
    border-bottom: 1px solid #E2E8F0;
    transition: var(--transition);
}

.pricing-row:hover {
    background: rgba(37, 99, 235, 0.02);
}

.pricing-row:last-child {
    border-bottom: none;
}

.service-name {
    font-weight: 500;
    color: var(--text);
    font-size: 1.15rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.5rem;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}

.pricing-note {
    padding: 28px 40px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(245, 158, 11, 0.05));
    border-top: 2px solid var(--primary);
    font-size: 1rem;
    color: var(--text);
    font-weight: 500;
    text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition);
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: scale(1.1);
}

.contact-content h4 {
    margin-bottom: 6px;
    color: var(--secondary);
    font-size: 1.2rem;
}

.contact-content p,
.contact-content a {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-content a:hover {
    color: var(--primary);
}

.service-areas {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #E2E8F0;
}

.area-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.area-tag {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(245, 158, 11, 0.1));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
    transition: var(--transition);
}

.area-tag:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary);
    color: var(--white);
    padding: 80px 0 40px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo i {
    color: var(--accent);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) rotate(5deg);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 8px;
}

.footer-links a::before {
    content: '›';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ===== FLOATING ELEMENTS ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--whatsapp), #128C7E);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.9rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    z-index: 100;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    }
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 24px;
    box-shadow: 0 -4px 25px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--accent);
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE DESIGN (Mobile Optimizations for "Busy" look) ===== */
@media (max-width: 992px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-xl);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-btn {
        display: block;
    }
    
    /* --- Optimization: Hero Content Scale --- */
    .hero h1 {
        font-size: 3rem;
    }

    .hero h1 span {
        font-size: 2.5rem;
    }

    .phone-number-large {
        font-size: 2.25rem;
    }
    
    /* Ensure action buttons stack neatly and are prominent */
    .hero-actions {
        flex-direction: column;
        gap: 16px; 
        margin-top: 24px;
    }
    
    .hero-actions .btn {
        width: 100%;
        padding: 14px 24px; 
        font-size: 0.95rem;
    }
    
    /* Optimization: Hide redundant phone banner and stats on smaller screens */
    .hero-phone-banner {
        display: none !important; /* Hides the redundant banner */
    }

    .hero-stats {
        display: none !important; /* Hides the stats to declutter */
    }

    .booking-section {
        margin: 0;
        border-radius: 0;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h1 span {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    /* .hero-phone-banner is already hidden by the previous block, but kept for clarity */
    .hero-phone-banner {
        display: none !important;
    }

    .phone-number-large {
        font-size: 1.9rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
        padding: 20px;
    }

    .service-price {
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
    }

    .floating-whatsapp {
        bottom: 24px;
        right: 24px;
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .service-card,
    .contact-info,
    .vehicle-card {
        padding: 28px;
    }

    .hero-stats {
        display: none !important;
    }

    .phone-number-large {
        font-size: 1.7rem;
    }

    .vehicle-specs {
        flex-direction: column;
        gap: 20px;
    }

    .booking-section {
        padding: 32px 20px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    /* Set opacity 0 here so elements are invisible until the animation starts */
    opacity: 0; 
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== UTILITY CLASSES (Included Honeypot d-none) ===== */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }
.d-none { display: none !important; } /* Ensures Honeypot field is invisible */
.d-flex { display: flex; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }