
/* =========================================================
   DIANAPARTS — CONTACTS + FOOTER PATCH
   ========================================================= */

a[href^="tel:"],
a[href*="t.me"],
a[href^="viber://"] {
    text-decoration: none;
}

.dp-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 207, 45, 0.13), transparent 28%),
        linear-gradient(180deg, #071322 0%, #040b14 100%) !important;
    color: #d8e5f6 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 54px 0 22px;
}

.dp-footer__glow {
    position: absolute;
    width: 420px;
    height: 420px;
    right: -160px;
    top: -220px;
    background: radial-gradient(circle, rgba(255, 207, 45, .20), transparent 65%);
    pointer-events: none;
}

.dp-footer .container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.dp-footer__inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 28px;
    align-items: start;
}

.dp-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 28px;
    font-weight: 900;
    color: #fff !important;
    margin-bottom: 14px;
}

.dp-footer__logo span {
    background: #ffcf2d;
    color: #061122;
    border-radius: 9px;
    padding: 3px 9px;
}

.dp-footer__logo strong { color: #fff; }

.dp-footer__brand p,
.dp-footer__contacts p {
    color: #b9c8dc !important;
    line-height: 1.55;
    margin: 0 0 14px;
}

.dp-footer__since {
    display: inline-flex;
    background: rgba(255, 207, 45, .10);
    border: 1px solid rgba(255, 207, 45, .25);
    color: #ffdc5f;
    border-radius: 999px;
    padding: 8px 12px;
    font-weight: 700;
    font-size: 13px;
}

.dp-footer__col h3 {
    color: #ffffff !important;
    font-size: 17px;
    margin: 0 0 14px;
    font-weight: 900;
}

.dp-footer__col a {
    display: block;
    color: #cddbed !important;
    margin: 9px 0;
    font-weight: 600;
    transition: color .18s ease, transform .18s ease;
}

.dp-footer__col a:hover {
    color: #ffcf2d !important;
    transform: translateX(3px);
}

.dp-contact-link {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.08);
}

.dp-contact-link:hover {
    border-color: rgba(255, 207, 45, .35);
    background: rgba(255, 207, 45, .08);
}

.dp-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 34px;
    padding-top: 18px;
    color: #9fb0c6 !important;
    font-size: 14px;
}

.dp-footer__bottom a {
    color: #cddbed !important;
    margin-left: 16px;
}

.dp-footer__bottom a:hover { color: #ffcf2d !important; }

.dp-info-page {
    background:
        radial-gradient(circle at top right, rgba(255,207,45,0.11), transparent 30%),
        linear-gradient(180deg, #071322 0%, #06101d 100%);
    color: #fff;
    min-height: 70vh;
    padding: 76px 0;
}

.dp-info-page .container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.dp-info-hero { margin-bottom: 28px; }
.dp-info-kicker { color: #ffcf2d; font-weight: 900; letter-spacing: .03em; }

.dp-info-hero h1 {
    color: #fff !important;
    font-size: clamp(34px, 5vw, 62px);
    line-height: .98;
    margin: 12px 0;
}

.dp-info-hero p { color: #c7d7eb !important; font-size: 18px; }

.dp-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 28px 0;
}

.dp-info-card,
.dp-sitemap-card {
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 18px 44px rgba(0,0,0,.25);
}

.dp-info-card span { color: #94a8c2; display: block; margin-bottom: 8px; }
.dp-info-card strong { color: #fff; font-size: 18px; }

.dp-info-text {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 22px;
    padding: 24px;
}

.dp-info-text p { color: #d4e2f4 !important; font-size: 17px; line-height: 1.6; }

.dp-info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }

.dp-info-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 900;
}

.dp-sitemap-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dp-sitemap-card h3 { color: #fff !important; margin: 0 0 12px; }
.dp-sitemap-card a { display: block; color: #cddbed !important; margin: 10px 0; font-weight: 700; }
.dp-sitemap-card a:hover { color: #ffcf2d !important; }

@media (max-width: 920px) {
    .dp-footer__inner,
    .dp-info-grid,
    .dp-sitemap-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .dp-footer { padding-top: 36px; }
    .dp-footer__inner,
    .dp-info-grid,
    .dp-sitemap-grid { grid-template-columns: 1fr; }
    .dp-footer__bottom { flex-direction: column; align-items: flex-start; }
    .dp-footer__bottom a { margin-left: 0; margin-right: 12px; }
    .dp-info-page { padding: 46px 0; }
}
