﻿

.nav-list {
    justify-content: start;
    gap: 80px;
}



.section-title-small {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-group {
    position: relative;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 14px 0;
        font-size: 16px;
        border: none;
        border-bottom: 1px solid var(--Text-Primary);
        background: transparent;
        outline: none;
        transition: 0.3s;
    }

    .form-group textarea {
        min-height: 100px;
        resize: vertical;
    }

    .form-group label {
        position: absolute;
        left: 0;
        top: 8px;
        color: var(--Text-Primary, #0A0A0A);
        /* Label/Large/Medium */
        font-family: Changa;
        font-size: 20px;
        font-weight: 500;
        line-height: 120%;
        /* 24px */
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .form-group .line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: var(--Text-Primary);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    /* Active & Focus states */
    .form-group input:focus ~ .line,
    .form-group textarea:focus ~ .line {
        transform: scaleX(1);
    }

    .form-group input:focus ~ label,
    .form-group textarea:focus ~ label,
    .form-group input:not(:placeholder-shown) ~ label,
    .form-group textarea:not(:placeholder-shown) ~ label {
        top: -20px;
        font-size: 14px;
        color: #000;
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}


.email-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--Text-Primary, #0A0A0A);
    /* Headline/H2 */
    font-family: Changa;
    font-size: 20px;
    font-weight: 400;
    line-height: 120%;
    /* 24px */
    text-decoration: none;
    transition: opacity 0.3s ease;
}

    .contact-link:hover {
        opacity: 0.7;
    }

.icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

address {
    font-style: normal;
    line-height: 1.5;
    font-size: 18px;
}

.info-title {
    color: var(--Text-Primary, #0A0A0A);
    /* Title/T0/Light_Mobil */
    font-size: 24px;
    font-weight: 300;
    line-height: 120%;
    /* 20.4px */
    letter-spacing: 0.48px;
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 36px;
        font-weight: 200;
        line-height: 120%;
        /* 43.2px */
        letter-spacing: 0.72px;
    }

    .hero-section {
        height: 240px;
        background-image: url('images/kurumsal-hero-mobile.png');
    }

    #products {
        padding-top: 28px;
    }

    .contact-form {
        gap: 20px;
    }

    .button-container {
        margin-top: 40px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-link {
        font-size: 15px;
    }

    .info-title {
        font-size: 17px;
        letter-spacing: 0.34px;
    }
}
