/* css/style.css */

:root {
    --primary-color: #0d6efd;
    --primary-hover: #0b5ed7;
    --secondary-color: #6c757d;
    --accent-color: #ffc107;
    --dark-bg: #212529;
    --text-dark: #333;
    --bg-light: #f8f9fa;
}

/* --- GLOBAL RESET / OVERFLOW FIX --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth !important;
    scroll-padding-top: 100px;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

img,
iframe,
video,
canvas,
svg {
    max-width: 100%;
}

section,
.container,
.container-fluid {
    max-width: 100%;
}

.row {
    --bs-gutter-x: 1.5rem;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.text-primary-custom { color: var(--primary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }

/* --- ГОРНА ЛЕНТА --- */
.top-bar {
    background: linear-gradient(180deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    font-size: 0.85rem;
    border-bottom: 1px solid #dee2e6;
    overflow-x: hidden;
}

.top-bar .social-links-distinct a {
    color: #6c757d !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
}

.top-bar .social-links-distinct a:hover {
    color: #fff !important;
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* --- LOGO DESKTOP --- */
.navbar-brand .logo-icon {
    height: 62px;
    width: auto;
    object-fit: contain;
}

.logo-main-text {
    font-size: 16px !important;
    color: var(--dark-bg) !important;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-slogan-text {
    font-size: 11px !important;
    color: var(--secondary-color) !important;
    font-style: italic;
    line-height: 1.2;
    display: block;
    letter-spacing: 0.8px;
}

/* --- NAVBAR --- */
.navbar {
    overflow-x: clip;
}

.nav-link-custom {
    font-weight: 500;
    transition: 0.3s;
    color: var(--dark-bg);
    white-space: nowrap;
}

.nav-link-custom:hover {
    color: var(--primary-color);
}

/* --- ЕЛЕГАНТНИ РАЗДЕЛИТЕЛИ --- */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(13,110,253,0.15) 50%, rgba(0,0,0,0) 100%);
    border: none;
    margin: 0;
}

/* --- HERO --- */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0044cc 100%);
    color: white;
    padding: 80px 0;
    overflow: hidden;
}

.hero-img {
    max-width: 100%;
    margin-left: 0;
    display: block;
    filter: drop-shadow(0px 20px 30px rgba(0,0,0,0.5));
}

@media (min-width: 992px) {
    .hero-img {
        max-width: 100%;
        margin-left: 0;
        transform: scale(1.18);
        transform-origin: center center;
    }
}

/* --- CARDS --- */
.idea-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.idea-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* --- SLIDER (mobile carousel only) --- */
.carousel,
.carousel-inner,
.carousel-item {
    max-width: 100%;
    overflow: hidden;
}

.carousel-img-custom {
    width: 100%;
    object-fit: contain;
    display: block;
}

#vanGallery .carousel-item {
    transition: transform 0.35s ease-in-out;
}

#vanGallery .carousel-control-prev,
#vanGallery .carousel-control-next {
    z-index: 20;
    pointer-events: auto;
}

#vanGallery .carousel-control-prev-icon,
#vanGallery .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    background-size: 50%;
    padding: 20px;
}

@media (min-width: 992px) {
    #vanGallery .carousel-inner {
        background-color: transparent;
        min-height: 460px;
    }

    #vanGallery .carousel-item,
    #vanGallery .carousel-item a {
        min-height: 460px;
    }

    #vanGallery .carousel-img-custom {
        height: 460px;
    }

    #vanGallery .carousel-img-custom.is-horizontal {
        object-fit: cover;
        background-color: transparent !important;
    }

    #vanGallery .carousel-img-custom.is-vertical {
        object-fit: contain;
        background-color: #1a1d20 !important;
    }
}

/* --- VAN PHOTO GRID (desktop only) --- */
.van-thumb-wrap {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 8px;
    background-color: #1a1d20;
    cursor: pointer;
    position: relative;
    display: block;
}

.van-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.van-thumb-wrap:hover .van-thumb {
    transform: scale(1.06);
    opacity: 0.85;
}

.van-thumb-wrap::after {
    content: '\f002';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

.van-thumb-wrap:hover::after {
    opacity: 1;
}

/* --- MAP CONTAINER (legacy) --- */
.map-container {
    width: 100%;
    height: 450px;
}

/* ════════════════════════════════════════════════════════════════
   🆕 SHARED: MODERN SECTION UTILITIES
   (used by both About and Contacts sections)
   ════════════════════════════════════════════════════════════════ */

.contacts-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.contacts-bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13,110,253,0.4) 0%, rgba(13,110,253,0) 70%);
    top: -100px;
    left: -100px;
}

.contacts-bg-shape.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,193,7,0.25) 0%, rgba(255,193,7,0) 70%);
    bottom: -150px;
    right: -150px;
}

.contacts-eyebrow {
    display: inline-block;
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(13, 110, 253, 0.2);
}

.contacts-title {
    font-size: 2.5rem;
    color: var(--dark-bg);
    letter-spacing: -0.5px;
}

.contacts-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    margin: 15px auto 0;
}

.contacts-subtitle {
    max-width: 650px;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════
   🆕 MODERN ABOUT SECTION
   ════════════════════════════════════════════════════════════════ */

.about-modern {
    background: linear-gradient(180deg, #ffffff 0%, #f0f4fa 100%);
    position: relative;
}

/* Dark stats panel */
.about-stats-panel {
    background: linear-gradient(145deg, #1e2a4a 0%, #0d1935 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(13, 25, 53, 0.25);
    padding: 10px 0;
}

.about-stats-panel::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.3) 0%, rgba(13, 110, 253, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-stat-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 30px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.about-stat-row:hover {
    transform: translateX(4px);
}

.about-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    min-width: 90px;
    letter-spacing: -1px;
}

.about-stat-num span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 0;
}

.about-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    line-height: 1.5;
}

.about-stat-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 0 30px;
}

/* Content panel */
.about-content-panel {
    background: white;
    border-radius: 24px;
    padding: 36px 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.about-main-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-bg);
    line-height: 1.7;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.about-secondary-text {
    font-size: 0.98rem;
    color: var(--secondary-color);
    line-height: 1.8;
    margin: 0;
}

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(13, 110, 253, 0.07);
    color: var(--primary-color);
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(13, 110, 253, 0.15);
    transition: background 0.25s ease, border-color 0.25s ease;
}

.about-pill:hover {
    background: rgba(13, 110, 253, 0.14);
    border-color: rgba(13, 110, 253, 0.3);
}

.about-pill i {
    font-size: 0.7rem;
    color: #28a745;
}

.about-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 4px;
    border-top: 1px solid #f0f0f0;
    margin-top: 4px;
}

.about-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--dark-bg);
    text-decoration: none;
    transition: color 0.25s ease;
}

.about-phone-link i {
    color: var(--primary-color);
}

.about-phone-link:hover {
    color: var(--primary-color);
}

/* ════════════════════════════════════════════════════════════════
   🆕 MODERN CONTACTS SECTION
   ════════════════════════════════════════════════════════════════ */

.contacts-modern {
    background: linear-gradient(180deg, #f8f9fa 0%, #eef2f7 100%);
    position: relative;
}

/* Quick contact method cards */
.contact-method-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    background: white;
    border-radius: 18px;
    padding: 24px 22px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    overflow: hidden;
    isolation: isolate;
    min-height: 180px;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-gradient, linear-gradient(135deg, var(--primary-color), #0044cc));
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: -1;
}

.contact-method-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, 0.25);
    border-color: transparent;
    color: white !important;
}

.contact-method-card:hover::before { opacity: 1; }

.contact-method-card:hover .contact-method-icon,
.contact-method-card:hover .contact-method-label,
.contact-method-card:hover .contact-method-value,
.contact-method-card:hover .contact-method-arrow {
    color: white;
}

.contact-method-card:hover .contact-method-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(-8deg) scale(1.08);
}

.contact-method-card:hover .contact-method-arrow {
    opacity: 1;
    transform: translateX(0);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    transition: all 0.35s ease;
    background: linear-gradient(135deg, var(--icon-bg-start, #e9f1ff), var(--icon-bg-end, #d6e6ff));
    color: var(--icon-color, var(--primary-color));
}

.contact-method-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--secondary-color);
    margin-bottom: 4px;
    transition: color 0.35s ease;
}

.contact-method-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-bg);
    line-height: 1.3;
    transition: color 0.35s ease;
    word-break: break-word;
}

.contact-method-arrow {
    position: absolute;
    bottom: 20px;
    right: 22px;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.35s ease;
    color: white;
    font-size: 1rem;
}

.contact-method-card.phone-card {
    --card-gradient: linear-gradient(135deg, #28a745, #1e7e34);
    --icon-bg-start: #d4f5de; --icon-bg-end: #a8e9bb; --icon-color: #1e7e34;
}
.contact-method-card.viber-card {
    --card-gradient: linear-gradient(135deg, #7360f2, #5a49d6);
    --icon-bg-start: #e8e4ff; --icon-bg-end: #c9c0ff; --icon-color: #5a49d6;
}
.contact-method-card.whatsapp-card {
    --card-gradient: linear-gradient(135deg, #25d366, #128c7e);
    --icon-bg-start: #d4f5de; --icon-bg-end: #a8e9bb; --icon-color: #128c7e;
}
.contact-method-card.inquiry-card {
    --card-gradient: linear-gradient(135deg, var(--primary-color), #0044cc);
    --icon-bg-start: #e9f1ff; --icon-bg-end: #c4daff; --icon-color: var(--primary-color);
}

/* Info Panel */
.contact-info-panel {
    background: linear-gradient(145deg, #1e2a4a 0%, #0d1935 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(13, 25, 53, 0.25);
}

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.35) 0%, rgba(13, 110, 253, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-panel-header {
    padding: 28px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.info-panel-body {
    padding: 15px 30px;
    position: relative;
    z-index: 1;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease;
}

.info-row:hover { transform: translateX(4px); }

.info-row-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.25), rgba(13, 110, 253, 0.1));
    color: #6ea8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 1px solid rgba(13, 110, 253, 0.3);
}

.info-row-content { flex: 1; }

.info-row-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    margin-bottom: 3px;
}

.info-row-value {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

.info-panel-footer {
    padding: 20px 30px 28px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 8px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge i { color: var(--accent-color); }

/* Modern Map — no overlay */
.map-modern-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-modern-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    display: block;
}

/* --- FOOTER --- */
.footer-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color) !important;
    transform: translateX(5px);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.08);
    color: white;
    border-radius: 50%;
    margin-left: 10px;
    transition: 0.3s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* --- STICKY BAR & FLOAT --- */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

.sticky-bottom-bar .col-action {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    color: white;
}

.btn-call {
    background-color: #28a745;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.btn-inquiry { background-color: var(--primary-color); }

.floating-contacts {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
    text-decoration: none;
}

.float-btn:hover { transform: scale(1.1); color: white; }
.float-phone { background-color: #00E676; }
.float-viber { background-color: #7360f2; }

/* --- SMOOTH SCROLL OFFSET --- */
section[id] { scroll-margin-top: 110px; }

/* ========================================================
   📱 MOBILE & TABLET
   ======================================================== */
@media (max-width: 991px) {

    body { padding-bottom: 60px; }

    .top-bar .social-links-distinct {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .top-bar .social-links-distinct a { margin: 0 !important; }

    .hero-section {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .hero-img {
        max-width: calc(100% - 16px);
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .navbar {
        padding-top: 0.5rem !important;
        padding-bottom: 0.5rem !important;
    }

    .mobile-logo-img { height: 40px; object-fit: contain; }
    .mobile-logo-title { font-size: 15px; letter-spacing: 0.3px; }
    .mobile-logo-slogan { font-size: 9px; }

    .offcanvas-lg {
        max-width: 85vw;
        border-left: none;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    }

    .offcanvas-body .nav-link-custom {
        padding: 1.2rem 0 !important;
        border-bottom: 1px solid #f0f0f0;
        white-space: normal !important;
    }

    .offcanvas-body .nav-link-custom i { width: 25px; text-align: center; }
    .offcanvas-actions a { font-size: 0.95rem !important; }

    .idea-card { padding: 1.2rem !important; }
    .idea-title { font-size: 1rem !important; }
    .idea-icon { font-size: 2.5rem !important; }

    #van-details .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #van-details .row { --bs-gutter-x: 0 !important; }

    #van-details .col-lg-7.px-0.px-lg-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    #van-details .slider-mobile-edge {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden;
    }

    #vanGallery .carousel-inner {
        height: 72vw;
        min-height: 320px;
        max-height: 520px;
        background-color: #1a1d20 !important;
    }

    #vanGallery .carousel-item {
        height: 72vw;
        min-height: 320px;
        max-height: 520px;
    }

    #vanGallery .carousel-item > a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #vanGallery .carousel-img-custom.is-horizontal {
        height: 100%;
        object-fit: contain;
        background-color: #1a1d20 !important;
    }

    #vanGallery .carousel-img-custom.is-vertical {
        height: 100%;
        object-fit: contain;
        background-color: transparent !important;
    }

    #vanGallery .carousel-control-prev,
    #vanGallery .carousel-control-next {
        width: 14%;
        z-index: 30;
        touch-action: pan-y;
    }

    #vanGallery .carousel-control-prev-icon,
    #vanGallery .carousel-control-next-icon { padding: 16px; }

    .floating-contacts .float-phone { display: none !important; }

    .floating-contacts {
        bottom: 80px;
        right: 10px;
    }

    .float-btn { width: 44px; height: 44px; font-size: 20px; }

    section[id] { scroll-margin-top: 120px; }

    #van-details .card ul { font-size: 1rem !important; }
    #van-details .card li { font-size: 1rem !important; line-height: 1.5; }
    #van-details .card h4 { font-size: 1.2rem !important; }

    /* --- ABOUT MODERN - MOBILE --- */
    .contacts-title { font-size: 1.75rem; }

    .about-stats-panel {
        border-radius: 20px;
        padding: 5px 0;
    }

    .about-stat-row {
        padding: 16px 22px;
        gap: 14px;
    }

    .about-stat-num { font-size: 1.8rem; min-width: 75px; }
    .about-stat-label { font-size: 0.72rem; }
    .about-stat-divider { margin: 0 22px; }

    .about-content-panel {
        padding: 26px 24px;
        border-radius: 20px;
        gap: 16px;
    }

    .about-main-text { font-size: 1rem; }
    .about-secondary-text { font-size: 0.92rem; }

    .about-pill { font-size: 0.8rem; padding: 6px 13px; }

    .about-cta-row { gap: 14px; }
    .about-phone-link { font-size: 0.95rem; }

    /* --- CONTACTS MODERN - MOBILE --- */
    .contacts-subtitle { font-size: 0.95rem; }

    .contact-method-card {
        padding: 18px 16px;
        min-height: 150px;
        border-radius: 16px;
    }

    .contact-method-icon {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        margin-bottom: 12px;
        border-radius: 12px;
    }

    .contact-method-label { font-size: 0.7rem; }
    .contact-method-value { font-size: 0.9rem; }
    .contact-method-arrow { display: none; }

    .contact-info-panel { border-radius: 20px; }

    .info-panel-header { padding: 22px 22px 16px; }
    .info-panel-body { padding: 10px 22px; }
    .info-panel-footer { padding: 18px 22px 24px; }

    .info-row { padding: 14px 0; gap: 12px; }

    .info-row-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 1.05rem;
    }

    .info-row-value { font-size: 0.95rem; }
    .trust-badge { font-size: 0.75rem; padding: 6px 12px; }

    .map-modern-wrapper {
        border-radius: 20px;
        min-height: 300px;
    }

    .map-modern-wrapper iframe { min-height: 300px; }

    .contacts-bg-shape.shape-1 {
        width: 250px;
        height: 250px;
        top: -50px;
        left: -80px;
    }

    .contacts-bg-shape.shape-2 {
        width: 300px;
        height: 300px;
        bottom: -80px;
        right: -100px;
    }
}
