/* ============================================
   CONTACTS SECTION
============================================ */
.contacts {
    position: relative;
    padding: 80px 40px;
    overflow: hidden;
}

.contacts-particle {
    position: absolute;
    width: 200px;
    height: 200px;
    pointer-events: none;
    opacity: 0.6;
}

.contacts-particle-left {
    top: 15%;
    left: 5%;
}

.contacts-particle-right {
    top: 15%;
    right: 5%;
}

.contacts-container {
    max-width: 1216px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contacts-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 70px;
    line-height: 90px;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    color: #ffffff;
    background: linear-gradient(180deg, #FFFFFF 31.75%, #e7e7e7 62.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 0px 10px 25px rgba(28, 1, 0, 0.8);
    margin-top: 150px;
    text-align: center!important;
}

.contacts-subtitle {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 60px;
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
    margin-top: 200px;
}

/* ============================================
   CONTACT CARDS
============================================ */
.contacts-cards {
    display: grid!important;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px!important;
}

.contact-card {
    position: relative;
    background: linear-gradient(
        98.59deg,
        rgba(255, 255, 255, 0.25) -2.04%,
        rgba(255, 255, 255, 0) 100%
    );
    border-radius: 30px;
    padding: 20px 24px 10px 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: inherit;

    background: linear-gradient(
        278.59deg,
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0) 102.04%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
    transition: 0.5s;
}


.contact-card:hover {
  transition: 0.5s;
    border-color: rgba(255, 140, 0, 0.5);
    background: rgba(50, 35, 30, 0.7);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 140, 0, 0.2);
}

.contact-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(55%) saturate(1000%) hue-rotate(334deg) brightness(102%) contrast(104%);}

.contact-card-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #FFAE00;
    margin: 0;
    top: -32px;
    left: 47px;
    position: relative;
}

.contact-card-email {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
   position: relative;
    bottom: 15px;
    left: 4px;
}

.contact-card-email:hover {
    color: #FFAE00;
}

/* ============================================
   SOCIAL MEDIA
============================================ */
.contacts-social {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.social-title {
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #FFAE00;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.social-icon img {
    width: 38px;
    height: 38px;
}

.social-icon:hover {
    border-color: #FFAE00;
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

/* ============================================
   CONTACT FORM
============================================ */
.contact-form-wrapper {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    position: relative;

    /* background from Figma */
    background: linear-gradient(
        150.83deg,
        rgba(255, 255, 255, 0.25) -0.84%,
        rgba(255, 255, 255, 0) 100%
    );

    border-radius: 30px;
    padding: 40px 32px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}


.contact-form-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px; /* border width */
    border-radius: inherit;

    /* border gradient from Figma */
    background: linear-gradient(
        151.4deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.5) 100%
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    pointer-events: none;
}


.contact-form-title {
    font-family: 'Oxanium', sans-serif;
    font-weight: 600;
    font-size: 28px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 16px 20px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-family: 'Golos Text', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-input:focus,
.contact-textarea:focus {
    border-bottom-color: rgba(255, 174, 0, 0.6);
}

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

.contact-submit {
    width: 200px;
    height: 50px;
 margin: 0px auto 0;
    display: block;
    padding: 1px 30px;

    font-family: 'Golos Text', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 48px; /* ուղղահայաց կենտրոնացում */

    color: #ffffff;

    background: linear-gradient(
        118deg,
        #F5AF19 -13.09%,
        #F12711 86.11%
    );

    border: none;
    border-radius: 25px;

    cursor: pointer;
    transition: all 0.3s ease;
}


.contact-submit:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255, 77, 0, 0.4);
}

/* ============================================
   RESPONSIVE - TABLET
============================================ */
@media (max-width: 1024px) {
    .contacts {
        padding: 60px 30px;
    }

    .contacts-particle {
        width: 150px;
        height: 150px;
    }

    .contacts-title {
        font-size: 48px;
    }

    .contacts-subtitle {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .contacts-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        position: static;
    }

    .contact-form-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
============================================ */
@media (max-width: 768px) {
    .contacts {
        padding: 40px 20px;
    }

    .contacts-particle {
        width: 120px;
        height: 120px;
    }

    .contacts-particle-left {
        top: 10%;
        left: 2%;
    }

    .contacts-particle-right {
        top: 10%;
        right: 2%;
    }

    .contacts-title {
        font-size: 36px;
        margin-bottom: 12px;
    }

    .contacts-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .contacts-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-card {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .contact-icon {
        width: 28px;
        height: 28px;
    }

    .contact-card-title {
        font-size: 17px;
    }

    .contact-card-email {
        font-size: 15px;
    }

    .social-title {
        font-size: 15px;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .social-icon img {
        width: 22px;
        height: 22px;
    }

    .contact-form-card {
        padding: 32px 24px;
        border-radius: 25px;
    }

    .contact-form-title {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .contact-input,
    .contact-textarea {
        padding: 14px 16px;
        font-size: 15px;
    }

    .contact-textarea {
        min-height: 100px;
    }

    .contact-submit {
        padding: 14px 28px;
        font-size: 16px;
    }
}

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

    .contacts-subtitle {
        font-size: 14px;
    }

    .contact-card {
        padding: 20px 18px;
    }

    .contact-card-title {
        font-size: 16px;
    }

    .contact-card-email {
        font-size: 14px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form-title {
        font-size: 22px;
    }
}

.particle-1 {
    position: absolute;
    top: 208px;
    left: 50%;
    transform: translateX(-622px); /* կարգավորիր */
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.particle-2 {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-809px); /* կարգավորիր */
    width: 400px;
    height: 400px;
    pointer-events: none;
    z-index: 1;
}


.particle-3 {
    position: absolute;
    top: 84px;
    left: 50%;
    transform: translateX(570px); /* կարգավորիր */
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}
