.section-slider-hotels .card-hotel{
    width: 18rem;
}

.section-slider-hotels .card-img{
    height: 13.75rem;
}

.section-slider-hotels .card-price small,
.section-slider-hotels .card-text,
.section-slider-hotels .badge-offer,
.section-slider-hotels .card-star,
.section-slider-hotels .card-comment-rating{
    font-size: 0.75rem;
}

.section-slider-hotels .badge-offer{
    border-radius: 8px 0;
    top: 8px;
    left: 8px;
}

/* ---- HERO (over the banner) ---- */
.iran-hero {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
    color: #fff;
    z-index: 2;
    padding-inline: 1rem;
}

.iran-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08));
    z-index: 0;
}

.iran-hero > * {
    position: relative;
    z-index: 1;
}

.iran-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.iran-hero p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.95;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .iran-hero h1 {
        font-size: 1.35rem;
    }
    .iran-hero p {
        font-size: 0.78rem;
        padding-inline: 1.5rem;
    }
}

/* ---- INTRO CHIPS ---- */
.iran-hotels-intro {
    display: flex;
    justify-content: center;
}

.intro-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    background: #fff;
    border: 1px solid #f0ece6;
    border-radius: 1rem;
    padding: 0.85rem 1.1rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.intro-chip {
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    background: #fff8f1;
    color: var(--cl-primary);
    border: 1px solid #ffe3c7;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.intro-chip:hover {
    background: var(--cl-primary);
    color: #fff;
    border-color: var(--cl-primary);
    text-decoration: none;
}

/* ---- PROVINCES SECTION ---- */
.section-hotels-other .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 7px;
}

.section-hotels-other .section-description {
    margin: 0;
    font-size: 0.8rem;
    color: #9a9a9a;
}

.section-hotels-other .section-body {
    column-count: 1;
    column-gap: 1rem;
}

.province-card {
    break-inside: avoid;
    margin-bottom: 1rem;
    border: 1px solid #f0ece6;
    border-radius: 0.9rem;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.province-card:hover {
    box-shadow: 0 14px 34px rgba(249, 122, 0, 0.14);
    transform: translateY(-3px);
}

.province-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #fff8f1 0%, #ffffff 100%);
    border-bottom: 1px solid #f6efe7;
    text-decoration: none;
    color: inherit;
}

.province-card__header:hover {
    text-decoration: none;
    color: inherit;
}

.province-card__icon {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff3e6;
    color: var(--cl-primary);
    flex-shrink: 0;
}

.province-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    color: #232323;
    flex: 1;
}

.province-card__count {
    background: var(--cl-primary);
    color: #fff;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.18rem 0.65rem;
    white-space: nowrap;
}

.province-card__body {
    padding: 0.3rem 1rem 0.7rem;
}

.province-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.province-card__list li {
    border-bottom: 1px dashed #f0ece6;
}

.province-card__list li:last-child {
    border-bottom: 0;
}

.city-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.55rem 0.1rem;
    text-decoration: none;
    color: #4a4a4a;
    font-size: 0.85rem;
    transition: color 0.15s ease;
}

.city-link:hover {
    color: var(--cl-primary);
    text-decoration: none;
}

.city-link__name {
    font-weight: 500;
}

.city-link__count {
    font-size: 0.72rem;
    color: #9a9a9a;
    white-space: nowrap;
}

.city-link:hover .city-link__count {
    color: var(--cl-primary);
}

.city-link__num {
    font-weight: 700;
}

@media (min-width: 776px) and (max-width: 992px) {
    .section-hotels-other .section-body {
        column-count: 2;
    }
}

@media (min-width: 993px) {
    .section-hotels-other .section-body {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .section-hotels-other .section-body {
        column-count: 4;
    }
}
