.anahita-rep-page {
    background: #FAF8F4;
    color: #1F2937;
    font-family: inherit;
    padding: 60px 5%;
}

.anahita-rep-hero {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.anahita-rep-hero span,
.anahita-request-text span {
    color: #D95C83;
    font-weight: 700;
    font-size: 14px;
}

.anahita-rep-hero h1 {
    font-size: clamp(34px, 5vw, 62px);
    margin: 16px 0;
    color: #1F2937;
}

.anahita-rep-hero p {
    font-size: 17px;
    line-height: 2;
    color: #5B6472;
}

.anahita-province-section {
    max-width: 1100px;
    margin: 0 auto 70px;
}

.anahita-province-section h2 {
    text-align: center;
    margin-bottom: 28px;
    font-size: 30px;
}

.anahita-province-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.anahita-province-card {
    border: 1px solid rgba(31, 41, 55, .12);
    background: #fff;
    color: #1F2937;
    border-radius: 22px;
    padding: 22px 18px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
    box-shadow: 0 16px 35px rgba(31, 41, 55, .06);
}

.anahita-province-card:hover {
    background: #D95C83;
    color: #fff;
    transform: translateY(-4px);
}

.anahita-modal {
    position: fixed;
    inset: 0;
    background: rgba(31, 41, 55, .55);
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.anahita-modal.active {
    display: flex;
}

.anahita-modal-content {
    background: #FAF8F4;
    width: min(900px, 96vw);
    max-height: 86vh;
    overflow-y: auto;
    border-radius: 30px;
    padding: 34px;
    position: relative;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
}

.anahita-modal-close {
    position: absolute;
    top: 18px;
    left: 20px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: #1F2937;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    line-height: 1;
}

.anahita-modal-content h3 {
    font-size: 28px;
    margin: 0 0 30px;
    color: #1F2937;
}

.anahita-city-block {
    margin-bottom: 32px;
}

.anahita-city-block h4 {
    font-size: 22px;
    color: #2A9D8F;
    border-bottom: 1px solid rgba(42, 157, 143, .25);
    padding-bottom: 10px;
    margin-bottom: 18px;
}

.anahita-rep-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    margin-bottom: 16px;
    border: 1px solid rgba(31, 41, 55, .08);
}

.anahita-rep-card h5 {
    font-size: 21px;
    margin: 0 0 12px;
    color: #1F2937;
}

.anahita-rep-card p {
    margin: 8px 0;
    color: #4B5563;
    line-height: 1.9;
}

.anahita-rep-card a {
    color: #D95C83;
    text-decoration: none;
}

.anahita-rep-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.anahita-rep-links a {
    background: #FAF8F4;
    color: #1F2937;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
}

.anahita-rep-links a:hover {
    background: #2A9D8F;
    color: #fff;
}

.anahita-request-section {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 35px;
    align-items: start;
    background: #fff;
    border-radius: 34px;
    padding: 38px;
    box-shadow: 0 20px 60px rgba(31, 41, 55, .08);
}

.anahita-request-text h2 {
    font-size: 34px;
    margin: 14px 0;
}

.anahita-request-text p {
    line-height: 2;
    color: #5B6472;
}

.anahita-request-form {
    display: grid;
    gap: 14px;
}

.anahita-request-form input,
.anahita-request-form textarea {
    width: 100%;
    border: 1px solid rgba(31, 41, 55, .12);
    border-radius: 16px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    background: #FAF8F4;
    color: #1F2937;
}

.anahita-request-form textarea {
    min-height: 90px;
    resize: vertical;
}

.anahita-request-form button {
    background: #D95C83;
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.anahita-request-form button:hover {
    background: #2A9D8F;
    transform: translateY(-2px);
}

.anahita-alert.success {
    max-width: 900px;
    margin: 0 auto 30px;
    background: rgba(42, 157, 143, .12);
    color: #17685f;
    border: 1px solid rgba(42, 157, 143, .25);
    padding: 16px 20px;
    border-radius: 18px;
    text-align: center;
    font-weight: 700;
}

.anahita-empty {
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    text-align: center;
    color: #6B7280;
    grid-column: 1 / -1;
}

@media (max-width: 768px) {
    .anahita-rep-page {
        padding: 40px 18px;
    }

    .anahita-request-section {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .anahita-modal-content {
        padding: 28px 20px;
        border-radius: 24px;
    }
}