 /* Main Container */
 .dealership-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
    overflow: hidden;
    position: relative;
    padding: 50px 0px;
}

/* Hero Section with Modern Layout */
.hero-section {
    display: flex;
    flex-direction: row;
    min-height: 500px;
}

/* Left Column (Image) */
.dealership-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.dealership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 1.2s ease-in-out;
}

.dealership-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,44,95,0.4) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

/* Right Column (Content) */
.dealership-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: white;
}

.dealership-logo {
    width: 180px;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.2s;
}

.dealership-title {
    font-size: 2.5rem;
    color: #002c5f;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.4s;
}

.dealership-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.6s;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #002c5f;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    opacity: 0;
    border-radius: 40px;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.8s;
    align-self: flex-start;
}

/* .cta-button:hover {
    background-color: #00478e;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 44, 95, 0.3);
} */

/* Feature Cards Section */
.features-section {
    padding: 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    background-color: #f9f9f9;
}

.feature-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.feature-card:nth-child(1) {
    animation: fadeUp 0.8s ease forwards 1s;
}

.feature-card:nth-child(2) {
    animation: fadeUp 0.8s ease forwards 1.2s;
}

.feature-card:nth-child(3) {
    animation: fadeUp 0.8s ease forwards 1.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: #002c5f;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    color: #002c5f;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.feature-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

/* Animation Keyframes */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Shimmer effect for the image */
.shimmer-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    animation: shimmer 3s infinite;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column-reverse;
    }
    
    .dealership-content {
        padding: 2rem;
    }
    
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .dealership-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .features-section {
        grid-template-columns: 1fr;
    }
    
    .dealership-description {
        font-size: 1rem;
    }
    
    /* .cta-button {
        width: 100%;
        text-align: center;
    } */
}