.acc-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px){
    .acc-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px){
    .acc-grid{
        grid-template-columns: 1fr;
    }
}

.acc-card{
    border: 1px solid #ddd;
    padding: 15px;
    background: #fff;
}

.acc-card img{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.acc-card h3{
    margin: 10px 0;
    font-size: 18px;
}

.acc-card p{
    font-size: 14px;
    margin: 6px 0;
}

.acc-card a{
    color: #0073aa;
    text-decoration: none;
    font-weight: 600;
}
/* ===============================
   FILTER BAR
================================ */
.acc-filter-form {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.acc-filter-form input,
.acc-filter-form select {
    flex: 1;
    min-width: 220px;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.acc-filter-form button {
    padding: 12px 30px;
    background: #f5b11b;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.acc-filter-form button:hover {
    background: #e0a20f;
}
/* FORCE PAGE LAYOUT */
.acc-single-wrap.redesigned {
    display: flex !important;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* LEFT */
.acc-left {
    flex: 2;
    width: 100%;
}

/* RIGHT */
.acc-right {
    flex: 1;
    min-width: 320px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    border-radius: 6px;
    position: sticky;
    top: 30px;
}

/* TITLE + CITY */
.acc-title {
    font-size: 30px;
    margin-bottom: 5px;
}

.acc-city {
    font-size: 16px;
    color: #666;
}

/* DIVIDER */
.acc-divider {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ddd;
}

/* GRID ROWS */
.acc-row {
    display: grid !important;
    gap: 20px;
    margin-bottom: 25px;
}

.acc-row-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* BOX STYLE */
.acc-row div {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    border: 1px solid #eee;
}

/* IMAGE FIX */
.acc-image img {
    width: 50% !important;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    display: block;
}

/* DESCRIPTION */
.acc-description h3 {
    margin-bottom: 10px;
}

/* FORM */
.acc-form input,
.acc-form textarea {
    width: 100% !important;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
}

.acc-form button {
    width: 100%;
    background: #000;
    color: #fff;
    padding: 12px;
    border: none;
    cursor: pointer;
}

.success {
    color: green;
    font-weight: bold;
}

.privacy {
    font-size: 12px;
    color: #666;
}

/* MOBILE FIX */
@media (max-width: 900px) {
    .acc-single-wrap.redesigned {
        flex-direction: column;
    }

    .acc-row-3 {
        grid-template-columns: 1fr;
    }

    .acc-right {
        position: static;
    }
}

/* ===============================
   GRID (4 CARDS PER ROW)
================================ */
.acc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1200px) {
    .acc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .acc-grid {
        grid-template-columns: 1fr;
    }

    .acc-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
}
.acc-single-wrap {
    display: flex;
    gap: 30px;
}
.acc-left { width: 65%; }
.acc-right {
    width: 35%;
    border: 1px solid #ddd;
    padding: 20px;
    background: #fafafa;
}
.acc-form input,
.acc-form textarea {
    width: 100%;
    margin-bottom: 10px;
    padding: 8px;
}
.acc-form button {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
}
.success { color: green; }
