.contacts-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}

.contacts-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.contacts-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 25, 53, 0.5) 0%, rgba(10, 25, 53, 0.1) 100%);
}

.contacts-hero__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
}


#map ymaps {
    filter: grayscale(100%) !important;
}

.contacts-hero__label {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    font-weight: 400;
}

.contacts-hero__title {
    font-family: "SangBleu Sunrise", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Main Section */
.contacts-main {
    padding: 0;

}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

/* Left Column - Info */
.contacts-info {
    padding: 100px 80px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.contacts-info::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.contacts-info__section {
    margin-bottom: 60px;
}

.contacts-info__section:last-child {
    margin-bottom: 0;
}

.contacts-info__label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 500;
}

.contacts-info__title {
    font-family: "SangBleu Sunrise", serif;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-item__icon {
    border-color: rgba(0, 102, 255, 0.5);
    background: rgba(0, 102, 255, 0.1);
}

.contact-item__content {
    flex: 1;
}

.contact-item__label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-item__value {
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
}

.contact-item__value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item__value a:hover {
    color: #0066ff;
}

.contact-item__address {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.btn-route {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-top: 24px;
}

.btn-route:hover {
    border-color: #0066ff;
    background: rgba(0, 102, 255, 0.1);
}

/* Right Column - Map */
.contacts-map {
    position: relative;
    min-height: 700px;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

/* Form Section */
.form-section {
    padding: 120px 0;
    background: #0f1f3f;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}
/* Form Section */
.form-section {
    padding: 120px 0;
    background: #0f1f3f;
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.form-header__title {
    font-family: "SangBleu Sunrise", serif;
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.form-header__subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    line-height: 1.7;
}

.contact-form {
    background: rgba(10, 25, 53, 0.6);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-group--full {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-weight: 400;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 31, 63, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #0066ff;
    background: rgba(15, 31, 63, 0.9);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
    opacity: 1;
}

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

.form-submit {
    width: 100%;
    padding: 18px;
    background: #0066ff;
    border: 1px solid #0066ff;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
}

.form-submit:hover {
    background: transparent;
    box-shadow: 0 12px 40px rgba(0, 102, 255, 0.3);
}

.form-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 20px;
    line-height: 1.6;
}

/* Office Hours */
.office-hours {
    background: #0a1935;
    padding: 80px 0;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: rgba(255, 255, 255, 0.05);
    max-width: 1000px;
    margin: 0 auto;
}

.hours-card {
    background: #0f1f3f;
    padding: 48px 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.hours-card:hover {
    background: #0d1b3a;
}

.hours-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hours-card__title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hours-card__time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* Responsive */
@media (max-width: 1200px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .contacts-info {
        padding: 80px 60px;
    }

    .contacts-info::after {
        display: none;
    }

    .contacts-map {
        min-height: 500px;
    }

    #map {
        min-height: 500px;
    }
}

@media (max-width: 992px) {
    .contacts-hero__title {
        font-size: 52px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contacts-hero__content {
        padding: 0 30px;
    }

    .contacts-hero__title {
        font-size: 42px;
    }

    .contacts-info {
        padding: 60px 30px;
    }

    .contacts-info__title {
        font-size: 28px;
    }

    .container {
        padding: 0 30px;
    }

    .form-section {
        padding: 80px 0;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .form-header__title {
        font-size: 36px;
    }

    .office-hours {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .contacts-hero__title {
        font-size: 32px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item__icon {
        width: 40px;
        height: 40px;
    }

    .contact-item__value {
        font-size: 18px;
    }
}
