:root {
    --primary-color: #2ecc71;
    --primary-dark: #27ae60;
    --text-color: #2c3e50;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --white: #2c3e50;
    --gray: #7f8c8d;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --spacing-container: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.logo .highlight {
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* Typography & Utilities */
h1,
h2,
h3 {
    margin-bottom: 2rem;
    /* Increased from 1rem */
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.text-green {
    color: var(--primary-color);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
    margin-left: 10px;
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: #ffffff;
}

.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 110px;
}

.hero-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

/* Specific Hero Spacing */
.hero-text h1 {
    margin-bottom: 3rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 4rem;
    /* Increased from 3rem */
    max-width: 500px;
}

.hero-contacts-top {
    display: flex;
    gap: 30px;
    margin-bottom: 5rem;
    /* Increased from 3rem */
    flex-wrap: wrap;
}

.hero-locations {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.6;
    max-width: 600px;
    opacity: 0.7;
}

.hero-locations strong {
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-block {
    display: flex;
    flex-direction: column;
}

.contact-block .label {
    font-size: 1.3rem;
    /* Increased from 1.1rem */
    font-weight: 800;
    /* Increased weight */
    color: #2c3e50;
    /* Changed to dark navy (was gray) */
    margin-bottom: 5px;
    text-transform: uppercase;
    /* Optional: makes it stand out more */
}

.contact-block .phone {
    font-weight: 700;
    text-decoration: none;
    font-size: 1.2rem;
}

.contact-block.primary .phone {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.contact-block.secondary .phone {
    color: var(--text-color);
}

.instagram-link {
    display: block;
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: #E1306C;
    /* Instagram brand color */
    text-decoration: none;
}

.instagram-link:hover {
    text-decoration: underline;
}

.facebook-link {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 600;
    color: #1877F2;
    /* Facebook brand color */
    text-decoration: none;
}

.facebook-link:hover {
    text-decoration: underline;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.car-graphic {
    font-size: 10rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: bounce 2s infinite;
    color: var(--text-color);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Features */
.features {
    padding: 50px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.features .container {
    display: block;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    background-color: #ffffff;
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card .feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.feature-card {
    overflow: hidden;
}

/* Steps */
.steps {
    padding: 100px 0;
    text-align: center;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* Contact */
.contact {
    padding: 100px 0;
    background-color: #eff2f7;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-list {
    list-style: none;
    margin-top: 2rem;
}

.contact-list li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-form {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    color: var(--text-color);
    font-family: inherit;
    resize: vertical;
}

.form-group input:focus {
    outline: 2px solid var(--primary-color);
    background-color: #ffffff;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 0;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

    .btn-nav {
        padding: 5px 15px;
    }

    .contact-wrapper {
        flex-direction: column;
    }
}


/* Hero Image Real */
.hero-img-real {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 188, 212, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: float 6s ease-in-out infinite;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery h2 {
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hero-img-real {
        max-width: 90%;
        margin-bottom: 30px;
    }
}

/* SEO Locations */
.seo-locations {
    padding: 30px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e1e1e1;
    text-align: center;
}

.seo-locations h3 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.location-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 15px;
}

.location-links li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.location-links li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* SEO Fixes and Layout Updates */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.features-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
}

.legal-note {
    margin-top: 30px;
    font-size: 0.9em;
    color: var(--gray);
}

.map-nav-btn {
    margin-top: 20px;
    display: inline-block;
}

/* SEO Fixes and Layout Updates */
.section-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.features-grid-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: stretch;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
}

.legal-note {
    margin-top: 30px;
    font-size: 0.9em;
    color: var(--gray);
}

.map-nav-btn {
    margin-top: 20px;
    display: inline-block;
}