 /* Main Content */
 .page-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease;
}

.page-header h1 {
    color: #27477d;
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    color: #666;
    font-size: 18px;
}

/* Dealer Cards */
.dealers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dealer-card {
    background: white;
    border-radius: 5px;
    padding: 30px;
    padding-bottom: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease;
    position: relative;
    overflow: hidden;
}

.dealer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #27477d;
}

.dealer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.dealer-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #27477d;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.dealer-card h3 {
    color: #27477d;
    font-size: 21px;
    margin-bottom: 15px;
    padding-right: 51px;
}

.dealer-info {
    margin-bottom: 15px;
}

.dealer-info-label {
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.dealer-info-value {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.contact-buttons .btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius:6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-call {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: white;
}

.btn-call:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(17, 153, 142, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}


@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .dealers-grid {
        grid-template-columns: 1fr;
    }
}