.contact-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: slideDown 1s ease-out;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1400px;
    margin: -60px auto 0;
    padding: 0 20px 100px;
    position: relative;
    z-index: 2;
}

.contact-info-block {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideRight 1s ease-out;
}

.contact-info-block h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: #ffffff;
    border-bottom: 3px solid #ffffff;
    padding-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #0d0d0d;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(10px);
    background: #1a1a1a;
    border-left: 4px solid #ffffff;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-details h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #ffffff;
}

.info-details p {
    color: #cccccc;
    line-height: 1.6;
}

.info-item-descr {
    margin-top: 10px;
    font-size: 0.95rem;
}

.contact-form-block {
    background: #1a1a1a;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideLeft 1s ease-out;
}

.contact-form-block h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.contact-form-block .form-subtitle {
    color: #999;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 30px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    background: #0d0d0d;
    border: 2px solid #333;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ffffff;
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group input {
    width: fit-content;
}

.submit-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 3px solid #ffffff;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #ffffff;
    color: #000;
    transform: rotate(-2deg) scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.map-section {
    max-width: 1400px;
    margin: 0 auto 100px;
    padding: 0 20px;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    height: 500px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    text-align: center;
    color: #666;
}

iframe {
    border: none;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 520px) {

    .contact-info-block,
    .contact-form-block {
        padding: 30px 20px;
    }

    .info-item {
        flex-direction: column;
    }

    h2 {
        font-size: 1.8rem !important;
    }
}