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

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

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

.cologne-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);
}

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

/* Left Column */
.cologne-office-section .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 */
.cologne-office-section .manager-photo-block {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(154, 138, 120, 0.2);
        display: none;
}

.cologne-office-section .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;
}

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

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

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

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

.cologne-office-section .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;
}

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

/* Right Column */
.cologne-office-section .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;
}

.cologne-office-section .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 */
.cologne-office-section .locations-list {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.cologne-office-section .location-entry {
    flex: 1;
}

.cologne-office-section .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;
}

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

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

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

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

.cologne-office-section .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;
}

.cologne-office-section .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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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