/* Hero Section - New Design */
body {
    background-color: var(--rich-navy);
}

header#hero {
    padding: 7.5rem 0 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-contrast);
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-content {
    max-width: 50.000rem;
    padding-left: 0;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-contrast);
    margin-bottom: 1.5rem;
    line-height: 1.2;

}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-contrast);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 37.500rem;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background-color: var(--secondary);
    color: var(--text-contrast);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.000rem;
}

.btn-hero-primary:hover {
    background-color: #5BC7AE;
    color: var(--text-contrast);
    text-decoration: none;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(110, 212, 190, 0.3);
}

.btn-hero-secondary {
    background-color: transparent;
    color: var(--text-contrast);
    border: 0.125rem solid rgba(255, 255, 255, 0.3);
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 10.000rem;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-contrast);
    color: var(--text-contrast);
    text-decoration: none;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(255, 255, 255, 0.1);
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.625rem;
    }

    .hero-subtitle {
        font-size: 1.0625rem;
    }

    .hero-buttons {
        gap: 1.25rem;
    }
}

@media (max-width: 992px) {
    header#hero {
        padding: 6.25rem 0 3.75rem 0;
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.9375rem;
        min-width: 8.750rem;
    }
}

@media (max-width: 768px) {
    header#hero {
        padding: 5rem 0 3.125rem 0;
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2rem;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        text-align: center;
        margin-bottom: 1.75rem;
    }

    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 17.500rem;
        padding: 1rem 1.5rem;
    }
}

/* Why Join Us Section - New Design */
.why-join-section {
    background-color: #161E26;
    padding: 6.25rem 0;
    position: relative;
}

.why-join-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--text-contrast);
    margin-bottom: 3.75rem;
    text-align: left;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
}

.feature-card {
    background: linear-gradient(180deg, rgba(22, 40, 57, 0.15) 0%, rgba(100, 141, 182, 0.20) 100%);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(0.625rem);
    min-height: 12.500rem;
    align-items: center;
}

.feature-card:hover {
    border-color: rgba(110, 212, 190, 0.4);
    transform: translateY(-0.25rem);
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.2);
}

.feature-card-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--secondary);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--rich-navy);
}

.feature-card-icon i {
    font-size: 1.5rem;
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-contrast);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.feature-card-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.5;
}

/* Feature Card Animations */
.feature-card.animated,
.get-started-content.animated {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Why Join Us Section */
@media (max-width: 1200px) {
    .why-join-section {
        padding: 5rem 0;
    }

    .why-join-title {
        font-size: 2rem;
        margin-bottom: 3.125rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.75rem;
    }
}

@media (max-width: 992px) {
    .why-join-section {
        padding: 4.375rem 0;
    }

    .why-join-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .features-grid {
        gap: 1.25rem;
        max-width: 37.500rem;
        margin: 0 auto;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.25rem;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .feature-card-content {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .why-join-section {
        padding: 3.75rem 0;
    }

    .why-join-title {
        font-size: 1.5rem;
        margin-bottom: 1.875rem;
    }

    .feature-card {
        padding: 1rem;
        gap: 0.75rem;
    }

    .feature-card-icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .feature-card-icon i {
        font-size: 1.25rem;
    }

    .feature-card-title {
        font-size: 1rem;
    }

    .feature-card-description {
        font-size: 0.8125rem;
    }
}

/* General Section Styles */
h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-primary);
}

/* Keep whitish class for other sections */
.whitish {
    background-color: var(--bg);
    padding: 5rem 0;
}

@media (max-width: 768px) {
    .whitish {
        padding: 3.75rem 0;
    }
}

/* Get Started Section - New Design */
.get-started-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('../images/landing/car-dashboard.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 7.5rem 0;
    position: relative;
    text-align: center;
    color: var(--text-contrast);
}

.get-started-content {
    max-width: 50.000rem;
    margin: 0 auto;
}

.get-started-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-contrast);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.get-started-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-contrast);
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    position: relative;
}

.app-store-button::after {
    content: 'Get it on';
    position: absolute;
    top: 0.125rem;
    left: 4.0625rem;
    font-size: 0.75rem;
    color: white;
}

.app-store-button:hover {
    transform: translateY(-0.1875rem) scale(1.05);
    opacity: 0.9;
}

.app-store-button img {
    height: 3.750rem;
    width: auto;
    display: block;
}

/* Responsive Design for Get Started Section */
@media (max-width: 1200px) {
    .get-started-section {
        padding: 6.25rem 0;
    }

    .get-started-title {
        font-size: 2.625rem;
    }

    .get-started-subtitle {
        font-size: 1.0625rem;
    }
}

@media (max-width: 992px) {
    .get-started-section {
        padding: 5rem 0;
    }

    .get-started-title {
        font-size: 2.25rem;
    }

    .get-started-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .app-store-buttons {
        gap: 1rem;
    }

    .app-store-button img {
        height: 3.438rem;
    }
}

@media (max-width: 768px) {
    .get-started-section {
        padding: 4.375rem 1.25rem;
    }

    .get-started-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .get-started-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2.1875rem;
    }

    .get-started-subtitle br {
        display: none;
    }

    .app-store-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .app-store-button img {
        height: 3.125rem;
    }
}

@media (max-width: 576px) {
    .get-started-section {
        padding: 3.75rem 0.9375rem;
    }

    .get-started-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .get-started-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.875rem;
    }

    .app-store-button img {
        height: 2.813rem;
    }
}