.page-header {
    background: linear-gradient(135deg, #2d3033 0%, #31344e 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('img/Back_fon.png') center/cover no-repeat;
    opacity: 0.1;
}

.page-header__content {
    position: relative;
    z-index: 1;
}

.page-header__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.page-header__breadcrumbs {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.page-header__breadcrumbs a {
    color: #ffd000;
    text-decoration: none;
}

.page-header__breadcrumbs a:hover {
    text-decoration: underline;
}

.page-header__breadcrumbs .separator {
    margin: 0 10px;
}

.page-header__description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ========== CONTACT INFO SECTION ========== */
.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ffd000, #ff9800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card__icon {
    margin-bottom: 20px;
    color: #ffd000;
}

.contact-card__icon svg {
    width: 50px;
    height: 50px;
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d3033;
}

.contact-card p {
    color: #6c7279;
    line-height: 1.6;
    margin-bottom: 15px;
}

.contact-card a {
    color: #ffd000;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #e6bc00;
    text-decoration: underline;
}

.contact-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.contact-note {
    font-size: 0.85rem;
    color: #6c7279;
    margin-top: 10px;
}

/* ========== MAP SECTION ========== */
.map-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section__description {
    font-size: 1.1rem;
    color: #6c7279;
    max-width: 700px;
    margin: 0 auto;
}

.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.map-address {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.address-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #2d3033;
}

.address-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.address-info li {
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
    color: #6c7279;
    line-height: 1.6;
}

.address-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd000;
    font-size: 1.2rem;
}

.address-info strong {
    color: #2d3033;
}

/* ========== REVIEWS WIDGET ========== */
.reviews-widget-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-widget {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========== CALLBACK SECTION ========== */
.callback-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3033 0%, #31344e 100%);
    color: #fff;
}

.callback__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.callback__title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.callback__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.callback__form {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-control:focus {
    outline: none;
    border-color: #ffd000;
    box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.callback__agree {
    font-size: 0.8rem;
    color: #6c7279;
    margin-top: 1rem;
}

.callback__agree a {
    color: #ffd000;
    text-decoration: underline;
}

.callback__agree a:hover {
    text-decoration: none;
}

/* ========== SOCIAL SECTION ========== */
.social-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.social-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2d3033;
}

.social-content p {
    color: #6c7279;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: #2d3033;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    color: #ffd000;
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.social-link span {
    font-weight: 600;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: #ffd000;
    color: #2d3033;
    border-color: #ffd000;
}

.btn-primary:hover {
    background: transparent;
    color: #ffd000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 208, 0, 0.3);
}

.btn-outline {
    background: transparent;
    border-color: #ffd000;
    color: #ffd000;
}

.btn-outline:hover {
    background: #ffd000;
    color: #2d3033;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.75rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ========== MEDIA QUERIES ========== */
@media (max-width: 992px) {
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .map-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header__title {
        font-size: 2rem;
    }
    
    .contact-info-section,
    .map-section,
    .reviews-widget-section,
    .social-section {
        padding: 60px 0;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .callback-section {
        padding: 60px 0;
    }
    
    .callback__form {
        padding: 25px;
    }
    
    .callback__title {
        font-size: 1.75rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header__title {
        font-size: 1.75rem;
    }
    
    .page-header__description {
        font-size: 1rem;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-card h3 {
        font-size: 1.2rem;
    }
    
    .map-wrapper iframe {
        height: 250px;
    }
    
    .address-info li {
        font-size: 0.9rem;
    }
    
    .callback__form {
        padding: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-card,
.map-wrapper,
.map-address,
.reviews-widget,
.social-link {
    animation: fadeInUp 0.5s ease forwards;
}

/* ========== DARK MODE SUPPORT ========== */
@media (prefers-color-scheme: dark) {
    .contact-info-section {
        background: #1a1a1a;
    }
    
    .contact-card {
        background: #2d2d2d;
    }
    
    .contact-card h3 {
        color: #fff;
    }
    
    .contact-card p {
        color: #b0b0b0;
    }
    
    .map-section {
        background: #1a1a1a;
    }
    
    .map-address {
        background: #2d2d2d;
    }
    
    .address-info h3 {
        color: #fff;
    }
    
    .address-info li {
        color: #b0b0b0;
    }
    
    .address-info strong {
        color: #fff;
    }
    
    .reviews-widget-section {
        background: #1a1a1a;
    }
    
    .social-section {
        background: #1a1a1a;
    }
    
    .social-link {
        background: #2d2d2d;
        color: #fff;
    }
    
    .callback__form {
        background: #2d2d2d;
    }
    
    .form-control {
        background: #1a1a1a;
        border-color: #404040;
        color: #e0e0e0;
    }
    
    .form-control:focus {
        border-color: #ffd000;
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    .page-header,
    .callback-section,
    .social-section,
    .scroll-top,
    .burger,
    .footer {
        display: none;
    }
    
    .contact-card {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

/* ========== ACCESSIBILITY ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:focus {
    outline: 2px solid #ffd000;
    outline-offset: 2px;
}

:focus:not(:focus-visible) {
    outline: none;
}

:focus-visible {
    outline: 2px solid #ffd000;
    outline-offset: 2px;
}