/* extracted from view/limousine-service-munich-muc-airport.php — порядок блоков сохранён */

/* --- block 1 --- */
.munich-key-facts { padding: 45px 0 5px; }
.munich-key-facts p { max-width: 900px; margin: 0 auto; font-size: 16px; line-height: 1.7; color: #444; }
.munich-key-facts a { color: inherit; font-weight: 600; text-decoration: underline; }

/* --- block 2 --- */
.munich-office-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 0;
    position: relative;
}

.munich-office-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(154, 138, 120, 0.3), transparent);
}

.office-content-wrapper {
    display: grid;
    grid-template-columns: 65% 35%;
    gap: 40px;
    align-items: start;
}

/* Left Column */
.left-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(154, 138, 120, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Manager Photo Block */
.manager-photo-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.2);
}

.manager-photo-square {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(154, 138, 120, 0.3);
    background: #222;
}

.manager-photo-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.manager-info-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 5px 0;
}

.manager-info-block p {
    font-size: 0.95rem;
    color: rgba(154, 138, 120, 1);
    margin: 0;
    font-weight: 500;
}

/* Quote Block */
.quote-block {
    margin: 0;
    position: relative;
    padding-left: 50px;
    color: #ffffffd9;
}

.quote-block::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: rgba(154, 138, 120, 0.5);
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: bold;
}

.quote-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #fff;
    font-style: italic;
    margin: 0;
}

/* Right Column */
.right-column {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(154, 138, 120, 0.2);
    border-radius: 12px;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.column-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.2);
}

/* Locations List */
.locations-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.location-entry {
    flex: 1;
}

.location-entry h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(154, 138, 120, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.address-line svg {
    color: #7a6a54;
    flex-shrink: 0;
    margin-top: 3px;
}

.address-line span {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Action Buttons */
.action-buttons-block {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid rgba(154, 138, 120, 0.4);
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: linear-gradient(135deg, #7a6a54 0%, #C4B5A5 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(154, 138, 120, 0.4);
}

.action-btn svg {
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .office-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .munich-office-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .munich-office-section {
        padding: 50px 0;
    }

    .left-column {
        padding: 30px 25px;
    }

    .manager-photo-block {
        gap: 15px;
        padding-bottom: 20px;
    }
    
    .quote-block {
      color:white;
    }

    .manager-photo-square {
        width: 80px;
        height: 80px;
    }

    .manager-info-block h3 {
        font-size: 1.15rem;
    }

    .manager-info-block p {
        font-size: 0.85rem;
    }

    .quote-block {
        padding-left: 40px;
    }

    .quote-block::before {
        font-size: 4rem;
        top: -10px;
    }

    .quote-block p {
        font-size: 0.95rem;
    }

    .right-column {
        padding: 30px 25px;
    }

    .column-title {
        font-size: 1.5rem;
    }

    .locations-list {
        flex-direction: column;
        gap: 20px;
    }

    .location-entry h4 {
        font-size: 0.75rem;
    }

    .address-line span {
        font-size: 0.875rem;
    }

    .action-buttons-block {
        flex-direction: column;
        gap: 12px;
    }

    .action-btn {
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .action-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* --- block 3 --- */
.munich-group-note { max-width: 900px; margin: 0 auto; padding: 0 20px 50px; text-align: center; }
        .munich-group-note p { font-size: 16px; line-height: 1.7; color: #444; margin: 0; }
        .munich-group-note a { color: inherit; font-weight: 600; text-decoration: underline; }

/* --- block 4 --- */
/* FAQ accordion (scoped copy of newlanding.css bl-faq styles; munich page doesn't load newlanding.css) */
.bl-faq-section { padding: 80px 0; background-color: #f9f9f9; }
.bl-faq-section .section-heading { text-align: center; max-width: 760px; margin: 0 auto; }
.bl-faq-section .section-heading p { color: #666; }
.bl-faq-container { margin-top: 50px; max-width: 900px; margin-left: auto; margin-right: auto; }
.bl-faq-item { background-color: #fff; border-radius: 8px; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); margin-bottom: 20px; overflow: hidden; }
.bl-faq-heading { margin: 0; }
button.bl-faq-question { width: 100%; background: none; border: none; text-align: left; font-family: inherit; display: flex; justify-content: space-between; align-items: center; padding: 22px 30px; cursor: pointer; transition: all 0.3s ease; font-size: 16px; font-weight: 600; color: #333; }
button.bl-faq-question:focus { outline-offset: -2px; }
.bl-faq-icon { min-width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; transition: transform 0.5s ease; }
.bl-faq-icon svg { stroke: var(--primary-color, #0056b3); }
.bl-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0, 1, 0, 1); }
.bl-faq-answer-content { padding: 15px 30px 25px; color: #666; line-height: 1.6; }
.bl-faq-answer-content p { margin-top: 10px; }
.bl-faq-item.active button.bl-faq-question { background-color: #f5f5f5; color: var(--primary-color, #0056b3); }
.bl-faq-item.active .bl-faq-icon { transform: rotate(45deg); }
.bl-faq-item.active .bl-faq-answer { max-height: 2000px; transition: max-height 1s ease-in-out; }
button.bl-faq-question:hover { color: var(--primary-color, #0056b3); }
@media (max-width: 768px) {
  .bl-faq-section { padding: 60px 0 0; }
  button.bl-faq-question { padding: 18px 20px; font-size: 14px; }
  .bl-faq-answer-content { padding: 0 20px 20px; }
}
