/* ===== CSS RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1B3A5C;
    --primary-dark: #0F2440;
    --primary-light: #2A5580;
    /*--accent: #D4272E;*/
    /*--accent-hover: #B71F25;*/
    /*--accent-light: #FF3B42;*/
    --accent: #d35408;
    --accent-hover: #B64c00;
    --accent-light: #fe681c;
    --steel: #4A6580;
    --steel-light: #6B8BA8;
    --bg-light: #F4F7FA;
    --bg-card: #FFFFFF;
    --text-dark: #1A2332;
    --text-body: #3D4F63;
    --text-muted: #7A8FA3;
    --border: #E1E8EF;
    --success: #28A745;
    --shadow-sm: 0 2px 8px rgba(27,58,92,0.08);
    --shadow-md: 0 8px 30px rgba(27,58,92,0.12);
    --shadow-lg: 0 20px 60px rgba(27,58,92,0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; }

body {
    /*font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;*/
    color: var(--text-body);
    background: var(--bg-light);
    /*line-height: 1.6;*/
    overflow-x: hidden;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes ripple {
    0% { box-shadow: 0 0 0 0 rgba(212,39,46,0.4); }
    100% { box-shadow: 0 0 0 20px rgba(212,39,46,0); }
}

.animate { opacity: 0; }
.animate.visible { animation-fill-mode: both; }
.animate.fade-up.visible { animation: fadeInUp 0.7s ease forwards; }
.animate.fade-left.visible { animation: fadeInLeft 0.7s ease forwards; }
.animate.fade-right.visible { animation: fadeInRight 0.7s ease forwards; }
.animate.scale-in.visible { animation: scaleIn 0.6s ease forwards; }

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,39,46,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
.hero-breadcrumb {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    animation: slideDown 0.5s ease forwards;
}
.hero-breadcrumb a { color: rgba(255,255,255,0.7); }
.hero-breadcrumb a:hover { color: white; }
.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    animation: fadeInUp 0.7s ease forwards;
}
.hero h1 span { color: var(--accent-light); }
.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    animation: fadeInUp 0.7s 0.15s ease forwards;
    opacity: 0;
    animation-fill-mode: both;
}

/* ===== QUICK CONTACTS BAR ===== */
.quick-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.quick-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.quick-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--text-dark);
    white-space: nowrap;
    transition: transform var(--transition);
}
.quick-item:hover { transform: translateY(-2px); }
.quick-item svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.quick-item a { font-weight: 600; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== SECTION ===== */
.section {
    padding: 70px 0;
}
.section-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

/* ===== CONTACT CARDS GRID ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.contact-card {
    background: white;
    border-radius: var(--radius);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.contact-card:hover::before {
    transform: scaleX(1);
}
.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: transform var(--transition);
}
.contact-card:hover .card-icon { transform: scale(1.1); }
.card-icon svg { width: 26px; height: 26px; color: white; }
.card-icon.blue { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.card-icon.red { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.card-icon.green { background: linear-gradient(135deg, #28A745, #34D058); }
.card-icon.steel { background: linear-gradient(135deg, var(--steel), var(--steel-light)); }
.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.contact-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}
.contact-card .card-value {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}
.contact-card .card-value a {
    color: var(--primary);
}
.contact-card .card-value a:hover {
    color: var(--accent);
}

/* ===== DEPARTMENTS ===== */
.dept-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.dept-card {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all var(--transition);
}
.dept-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.dept-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.dept-icon svg { width: 22px; height: 22px; color: var(--primary); }
.dept-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.dept-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.dept-info a {
    font-weight: 600;
    font-size: 15px;
}

/* ===== MAP SECTION ===== */
.map-section {
    background: white;
    padding: 70px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.map-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
}
#yandex-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
}
.map-sidebar {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.map-sidebar h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
}
.map-address-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}
.map-address-item svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
    flex-shrink: 0;
    margin-top: 2px;
}
.map-address-item .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 4px;
}
.map-address-item .value {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

/* Route Button */
.route-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    animation: ripple 2s infinite;
}
.route-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer 3s infinite;
}
.route-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(212,39,46,0.4);
}
.route-btn svg { width: 22px; height: 22px; }

/* Route Modal */
.route-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15,36,64,0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeInOverlay 0.3s ease;
}
.route-modal-overlay.active { display: flex; }
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}
.route-modal {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    animation: scaleIn 0.35s ease;
    box-shadow: var(--shadow-lg);
}
.route-modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.route-modal p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.route-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.route-option {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
    background: var(--bg-light);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    color: var(--text-dark);
}
.route-option:hover {
    border-color: var(--accent);
    background: white;
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}
.route-option-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.route-option-icon.maps { background: linear-gradient(135deg, #FC3F1D, #FF6633); }
.route-option-icon.navi { background: linear-gradient(135deg, #333, #555); }
.route-option-icon svg { width: 24px; height: 24px; color: white; }
.route-option-text { text-align: left; }
.route-option-text .name { font-weight: 700; font-size: 16px; }
.route-option-text .desc { font-size: 13px; color: var(--text-muted); }
.route-modal-close {
    margin-top: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: color var(--transition);
}
.route-modal-close:hover { color: var(--accent); }

/* ===== ADDRESSES SECTION ===== */
.address-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.address-tab {
    padding: 10px 22px;
    border-radius: 50px;
    border: 2px solid var(--border);
    background: white;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition);
}
.address-tab.active, .address-tab:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}
.address-content { display: none; }
.address-content.active { display: block; animation: fadeInUp 0.4s ease; }
.address-detail {
    background: white;
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.address-detail h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.address-detail h4 svg { width: 22px; height: 22px; color: var(--accent); }
.address-info-row {
    display: flex;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}
.address-info-row:last-child { border-bottom: none; }
.address-info-row .label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 140px;
}

/* ===== WORK HOURS ===== */
.hours-block {
    background: white;
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-light);
    transition: all var(--transition);
}
.hours-item:hover { background: #e8eef4; }
.hours-item.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
}
.hours-item .day { font-weight: 600; font-size: 15px; }
.hours-item .time { font-size: 15px; }
.hours-item.active .day, .hours-item.active .time { color: white; }
.hours-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}
.hours-status.open { background: #E8F5E9; color: #2E7D32; }
.hours-status.closed { background: #FFEBEE; color: #C62828; }
.hours-status .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
.hours-status.open .dot { background: #2E7D32; }
.hours-status.closed .dot { background: #C62828; }

/* ===== CONTACT FORM ===== */
.form-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 70px 0;
    color: white;
    position: relative;
    overflow: hidden;
}
.form-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212,39,46,0.12) 0%, transparent 70%);
    border-radius: 50%;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.form-info h2 {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}
.form-info p {
    color: rgba(255,255,255,0.75);
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.7;
}
.form-benefits {
    list-style: none;
}
.form-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
}
.form-benefits li svg { width: 20px; height: 20px; color: var(--accent-light); flex-shrink: 0; }
.form-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}
.form-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(27,58,92,0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 6px;
}
.form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(27,58,92,0.3);
}
.form-privacy {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

/* ===== MESSENGERS ===== */
.messengers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}
.messenger-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: var(--text-dark);
}
.messenger-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--text-dark);
}
.messenger-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.messenger-icon svg { width: 26px; height: 26px; color: white; }
.messenger-icon.wa { background: linear-gradient(135deg, #25D366, #128C7E); }
.messenger-icon.tg { background: linear-gradient(135deg, #2AABEE, #229ED9); }
.messenger-icon.email-icon { background: linear-gradient(135deg, var(--primary), var(--primary-light)); }
.messenger-text .name { font-weight: 700; font-size: 15px; }
.messenger-text .desc { font-size: 13px; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; }
.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--transition);
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}
.faq-answer p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--bg-light);
    padding: 60px 0;
}
.cta-card {
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: var(--radius);
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -30%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cta-card h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
}
.cta-card p {
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 28px;
    position: relative;
}
.cta-phone {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: white;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: transform var(--transition);
}
.cta-phone:hover { transform: scale(1.05); color: white; }

/* ===== CERTIFICATIONS ===== */
.certs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}
.cert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: white;
    border-radius: 50px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}
.cert-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cert-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

/* ===== FOOTER NOTE ===== */
.footer-note {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 24px;
    font-size: 13px;
}
.footer-note a { color: rgba(255,255,255,0.7); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .map-wrapper { grid-template-columns: 1fr; }
    .map-sidebar { padding: 28px; }
    #yandex-map { min-height: 350px; }
    .form-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 600px) {
    .hero { padding: 50px 0 40px; }
    .section { padding: 50px 0; }
    .quick-bar-inner { gap: 16px; justify-content: flex-start; overflow-x: auto; }
    .form-row { grid-template-columns: 1fr; }
    .address-tab { padding: 8px 16px; font-size: 13px; }
    .cta-card { padding: 30px 20px; }
    .route-modal { padding: 28px; }
}
