/* ============================================================
   CONTACTS PAGE
   ============================================================ */

.contacts-page {
    background: #fff;
}

/* ---- Hero ---- */
.contacts-hero {
    position: relative;
    background: #1a1a1a;
    overflow: hidden;
    padding: 80px 0 70px;
}
.contacts-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(227, 30, 36, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(227, 30, 36, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contacts-hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.contacts-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.contacts-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.35);
    color: #E31E24;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.contacts-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.contacts-hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 40px;
    line-height: 1.6;
}

.contacts-hero__stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    row-gap: 16px;
}

.contacts-hero__stat {
    display: flex;
    flex-direction: column;
    padding: 0 32px;
}

.contacts-hero__stat:first-child {
    padding-left: 0;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: #E31E24;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.contacts-hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}

.contacts-hero__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(227, 30, 36, 0.15);
    border: 1px solid rgba(227, 30, 36, 0.35);
    border-radius: 20px;
    padding: 8px 19px;
    transition: all 0.3s ease;
}

.contacts-hero__actions:hover {
    background: rgba(227, 30, 36, 0.25);
}

.contacts-hero__call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 20px;
    color: #E31E24;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.contacts-hero__call-btn:hover {
    color: #E31E24;
}

/* ---- Stores Grid ---- */
.contacts-stores {
    padding: 70px 0 60px;
    background: #f8f8f8;
}

.contacts-stores__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---- Store Card ---- */
.store-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.store-card__map {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.store-card__map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.store-card:hover .store-card__map iframe {
    filter: grayscale(0%);
}

.store-card__body {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.store-card__number {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #E31E24;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.store-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    line-height: 1.3;
}

.store-card__details {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.store-card__details li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
    line-height: 1.4;
}

.store-card__details a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.store-card__details a:hover {
    color: #E31E24;
}

.store-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}

.store-card__icon--pin   { background: rgba(227,30,36,0.08); color: #E31E24; }
.store-card__icon--phone { background: rgba(34,197,94,0.1);  color: #16a34a; }
.store-card__icon--clock { background: rgba(59,130,246,0.1); color: #2563eb; }

.store-card__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.2s ease;
    letter-spacing: 0.01em;
}

.store-card__btn:hover {
    background: #E31E24;
    color: #fff;
    transform: translateY(-1px);
}

/* ---- Info Bar ---- */
.contacts-info-bar {
    background: #fff;
    padding: 48px 0;
    border-top: 1px solid #f0f0f0;
}

.contacts-info-bar__grid {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}

.contacts-info-bar__item {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 200px;
    padding: 0 24px;
}

.contacts-info-bar__item:first-child { padding-left: 0; }
.contacts-info-bar__item:last-child  { padding-right: 0; }

.contacts-info-bar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: #fef5f5;
    border-radius: 12px;
    flex-shrink: 0;
}

.contacts-info-bar__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contacts-info-bar__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
}

.contacts-info-bar__value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s;
}

a.contacts-info-bar__value:hover {
    color: #E31E24;
}

.contacts-info-bar__socials {
    display: flex;
    gap: 10px;
}

.contacts-info-bar__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: #f5f5f5;
    color: #555;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.contacts-info-bar__socials a:hover {
    background: #E31E24;
    color: #fff;
}

.contacts-info-bar__divider {
    width: 1px;
    height: 56px;
    background: #f0f0f0;
    flex-shrink: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
    .contacts-stores__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacts-info-bar__grid {
        flex-wrap: wrap;
        gap: 24px;
    }
    .contacts-info-bar__divider { display: none; }
    .contacts-info-bar__item {
        padding: 0;
        min-width: calc(50% - 12px);
    }
}

@media (max-width: 900px) {
    .contacts-hero h1 {
        font-size: 40px;
    }
    .contacts-hero {
        padding: 60px 0 56px;
    }
}

@media (max-width: 768px) {
    .contacts-hero {
        padding: 50px 0 46px;
    }
    .contacts-hero h1 {
        font-size: 34px;
    }
    .contacts-hero p {
        font-size: 16px;
    }
    .contacts-hero__stat {
        padding: 0 20px;
    }
    .stat-number {
        font-size: 26px;
    }
    .contacts-stores {
        padding: 50px 0 44px;
    }
    .contacts-stores__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contacts-info-bar {
        padding: 36px 0;
    }
    .contacts-info-bar__item {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .contacts-hero {
        padding: 40px 0 36px;
    }
    .contacts-hero h1 {
        font-size: 28px;
    }
    .contacts-hero__badge {
        font-size: 11px;
    }
    .contacts-hero__stats {
        gap: 0;
        row-gap: 12px;
    }
    .contacts-hero__stat {
        padding: 0 16px;
    }
    .stat-number {
        font-size: 22px;
    }
    .stat-label {
        font-size: 11px;
    }
    .store-card__body {
        padding: 22px 20px 20px;
    }
    .store-card__title {
        font-size: 18px;
    }
}