* {
    scroll-behavior: smooth;
}

iframe {
    width: 100% !important;
}

h1, p {
    transition: font-size 0.7s ease;
}

select {
    /*color: #a2a7ba !important;*/
}

h1.visible {
    opacity: 1; /* Fade in */
    transform: translateX(0);
}

.google-map iframe {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

a {
    text-decoration: none !important;
}

body {
    color: var(--colors--midnight);
    font-family: Space Grotesk, sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 150%;
}

.car-card {
    position: relative;
}

.sold-sign {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e63946;
    color: #fff;
    padding: 6px 14px;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 1.5s infinite;
}

.sold-sign-car-page {
    background-color: red;
    color: white;
    padding: 5px 20px 5px 20px;
    border-radius: 10px;
    font-size: 17px;
    margin-bottom: 5px
}

.step-icon {
    width: 70px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.85;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 991px) {
    .contact-button-mobile {
        display: none !important;
    }
}

/* General Section */
.about-us-section {
    padding: 100px 20px;
    background: var(--colors--midnight);
    color: var(--colors--pure);
    position: relative;
    overflow: hidden;
}

/* Container */
.about-us-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
    position: relative;
}

/* Header */
.about-us-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-us-subtitle {
    font-size: 1rem;
    color: var(--colors--emerald);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-us-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--colors--pure);
}

.about-us-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--colors--cloud);
}

/* Button */
.about-us-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--colors--emerald);
    color: var(--colors--pure);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--border-radius-sizes--border-radius-30px);
    text-decoration: none;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
}

.about-us-button:hover {
    background: var(--colors--coral);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* Steps Grid */
.about-us-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: stretch;
}

/* Step Card */
.about-us-step {
    background: var(--colors--graphite);
    padding: 40px 30px;
    border-radius: var(--border-radius-sizes--border-radius-26px);
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid var(--colors--light-border);
}

.about-us-step:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Step Number */
.about-us-step::before {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--colors--emerald);
    opacity: 0.15;
    pointer-events: none;
}

/* Step Title */
.about-us-step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--colors--emerald);
    font-weight: 600;
}

/* Step Description */
.about-us-step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--colors--pure);
}

/* General Section */
.dealership-values-section {
    padding: 100px 20px;
    background: var(--colors--midnight);
    color: var(--colors--pure);
    border-bottom: 1px solid var(--colors--ash);
}

/* Container */
.dealership-values-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Header */
.dealership-values-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.dealership-values-subtitle {
    font-size: 1rem;
    color: var(--colors--emerald);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.dealership-values-title {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    color: var(--colors--pure);
}

.dealership-values-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: var(--colors--cloud);
}

/* Values Grid */
.dealership-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    counter-reset: value-counter;
}

/* Value Card */
.dealership-value-card {
    background: var(--colors--graphite);
    padding: 40px 30px;
    border-radius: var(--border-radius-sizes--border-radius-26px);
    position: relative;
    border: 1px solid var(--colors--light-border);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dealership-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Value Number */
.dealership-value-number {
    counter-increment: value-counter;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--colors--emerald);
    opacity: 0.15;
    margin-bottom: 15px;
}

/* Value Title */
.dealership-value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--colors--emerald);
    font-weight: 600;
}

/* Value Text */
.dealership-value-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--colors--pure);
}

.car-descr-mobile {
    display: none;
    border-top-right-radius: unset!important;
    border-top-left-radius: unset!important;
}

/* Responsive */
@media (max-width: 992px) {
    .car-details-wrapper {
        display: none;
    }

    .car-descr-mobile {
        display: block;
    }

    .dealership-values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .dealership-values-title {
        font-size: 2rem;
    }

    .dealership-values-text {
        font-size: 1rem;
    }

    .dealership-value-title {
        font-size: 1.3rem;
    }
}


/* Responsive */
@media (max-width: 992px) {
    .about-us-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-us-title {
        font-size: 2rem;
    }

    .about-us-text {
        font-size: 1rem;
    }

    .about-us-step-title {
        font-size: 1.3rem;
    }
}

.car-specs-section {
    padding: 30px 20px;
    background-color: rgba(0,0,0,0.05);
    border-radius: 12px;
    max-width: 900px;
}

.specs-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--colors--pure);
}

.specs-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.specs-column {
    flex: 1;
    min-width: 200px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.spec-label {
    font-weight: 500;
    color: var(--colors--pure);
}

.spec-value {
    font-weight: 400;
    color: var(--colors--emerald);
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    .specs-grid {
        flex-direction: column;
        gap: 20px;
    }
}
