/* ==========================================================================
   PAKAR SEO KOTA (EXPERT AREA SECTION)
   ========================================================================== */

.expert-area-section {
    padding: 120px 25px;
    background: #080808;
}

.expert-area-container {
    max-width: 1200px;
    margin: auto;
}

.expert-area-heading {
    max-width: 780px;
    margin: auto auto 70px;
    text-align: center;
}

.expert-area-heading h2 {
    font-size: clamp(36px, 5vw, 56px);
    margin: 20px 0;
    line-height: 1.15;
    color: white;
}

.expert-area-heading p {
    font-size: 18px;
    line-height: 1.9;
    color: #bdbdbd;
}

/* ==========================================================================
   CITY GRID & CARDS
   ========================================================================== */

.expert-city-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.expert-city-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-radius: 20px;
    background: #111;
    border: 1px solid rgba(212, 175, 55, .12);
    text-decoration: none;
    transition: .3s;
}

.expert-city-card:hover {
    transform: translateY(-6px);
    border-color: #d4af37;
}

.expert-city-card.active {
    border: 1px solid #d4af37;
    background: linear-gradient(145deg, #161616, #0b0b0b);
}

.expert-city-card strong {
    font-size: 20px;
    color: #fff;
    margin-bottom: 12px;
}

.expert-city-card span {
    font-size: 15px;
    line-height: 1.7;
    color: #bdbdbd;
}

/* ==========================================================================
   INFO BOX / FOOTNOTE
   ========================================================================== */

.expert-info {
    margin-top: 60px;
    display: flex;
    gap: 25px;
    padding: 35px;
    border-radius: 22px;
    background: rgba(212, 175, 55, .05);
    border: 1px solid rgba(212, 175, 55, .15);
}

.expert-info-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d4af37;
    color: #000;
    font-weight: 700;
    font-size: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.expert-info strong {
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
    color: white;
}

.expert-info p {
    margin: 0;
    line-height: 1.8;
    color: #bdbdbd;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Smaller Screens */
@media (max-width: 992px) {
    .expert-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .expert-area-section {
        padding: 90px 20px;
    }

    .expert-city-grid {
        grid-template-columns: 1fr;
    }

    .expert-area-heading h2 {
        font-size: 34px;
    }

    .expert-info {
        flex-direction: column;
    }
}