.contacts-page {
    background: #f8f9fa;
}

.contacts-section {
    padding: 120px 0 80px;
    background: linear-gradient(145deg, #f8f9fa, #ffffff);
}

.contacts-section h1 {
    text-align: center;
    font-size: 42px;
    color: #333;
    margin-bottom: 60px;
    font-weight: 700;
    font-family: 'Unbounded', sans-serif;
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.info-block h3 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
}

.info-block p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 20px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.contact-list li strong {
    color: #333;
    min-width: 140px;
    font-weight: 600;
}

.contact-list a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.contact-list a:hover {
    color: #0056b3;
}

.contact-form-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 600;
    font-family: 'Unbounded', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
    font-family: 'TT Norms Pro', sans-serif;
}

.form-group textarea {
    min-height: 180px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    outline: none;
}

.submit-btn {
    background: linear-gradient(45deg, #000000, #333333);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'TT Norms Pro', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #333333, #000000);
}

.submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 1200px) {
    .contacts-grid {
        gap: 40px;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .contacts-section {
        padding: 100px 0 60px;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contacts-section h1 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .info-block,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contacts-section {
        padding: 80px 0 40px;
    }

    .contacts-section h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .info-block {
        padding: 25px;
    }

    .info-block h3 {
        font-size: 24px;
    }

    .contact-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contact-list li strong {
        min-width: auto;
    }

    .form-group input,
    .form-group textarea {
        padding: 15px;
        font-size: 15px;
    }

    .submit-btn {
        padding: 15px 25px;
        font-size: 15px;
    }

    .captcha-container {
        padding: 10px;
    }
    
    #captcha-text {
        font-size: 20px;
        padding: 8px 15px;
    }
}

.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.notification.success {
    background: linear-gradient(135deg, #00b09b, #96c93d);
}

.notification.error {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.captcha-group {
    margin-bottom: 20px;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
}

#captcha-text {
    font-family: 'Courier New', monospace;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 3px;
    color: #333;
    background: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    user-select: none;
}

.refresh-captcha {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #666;
    transition: all 0.3s ease;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.refresh-captcha:hover {
    color: #333;
    background: rgba(0, 0, 0, 0.05);
    transform: rotate(180deg);
}

#captcha-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
}

#captcha-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.1);
    outline: none;
} 