/* Contacts Section Styles */
.contacts {
    padding: 100px 0;
    background: #020416;
    /* Black background */
    position: relative;
    overflow: hidden;
}

/* Linear Gradient Background Effect */
.contacts::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(28, 196, 204, 0.1) 0%,
            rgba(1, 129, 203, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.contacts .container {
    position: relative;
    z-index: 1;
}

.contacts__title {
    font-family: var(--font-Inter);
    font-size: 48px;
    font-weight: 500;
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
    color: #fff;
}

.contacts__subtitle {
    font-family: var(--font-Inter);
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contacts__wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Contact Info Block */
.contacts__info {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contacts__item {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}

.contacts__icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #1cc4cc;
}

.contacts__icon svg {
    width: 24px;
    height: 24px;
}

.contacts__details h4 {
    font-family: var(--font-Montserrat);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.contacts__details p,
.contacts__details a {
    font-family: var(--font-Inter);
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contacts__details a:hover {
    color: #1cc4cc;
}

/* Form Block */
.contacts__form-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.contacts__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contacts__input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contacts__label {
    font-family: var(--font-Inter);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 10px;
}

.contacts__input,
.contacts__textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    font-family: var(--font-Inter);
    font-size: 16px;
    color: #fff;
    transition: all 0.3s ease;
}

.contacts__textarea {
    resize: vertical;
    min-height: 120px;
}

.contacts__input:focus,
.contacts__textarea:focus {
    outline: none;
    border-color: #1cc4cc;
    background: rgba(0, 0, 0, 0.4);
}

.contacts__btn {
    margin-top: 10px;
    padding: 18px;
    background: linear-gradient(90deg, #1cc4cc 0%, #0181cb 100%);
    border: none;
    border-radius: 12px;
    font-family: var(--font-Inter);
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.contacts__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(28, 196, 204, 0.3);
}

.contacts__btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .contacts__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contacts__info,
    .contacts__form-wrapper {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 576px) {
    .contacts__title {
        font-size: 36px;
    }

    .contacts__form-wrapper {
        padding: 25px;
    }
}