.gallery-kontakt {
    /* background: url('/images/contactbg.jpg'); */

}

/* Contact Form Section */
.contact-section {
    padding: 80px 0;
    background-color: #fff;
    padding: 60px 5%;
    max-width: 1260px;
    margin: 0 auto;
}

.contact-container {
    margin: 0 auto;
    display: flex;
    gap: 60px;
    padding: 0 20px;
}

/* Form Styles */
.contact-form {
    flex: 1;
    width: 70%;
    padding-right: 60px;
    border-right: 1px solid #33333323;
}

.form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
    margin-bottom: 30px;
}

.contact-form label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #F7F7F7;
    font-family: 'Roboto', sans-serif;
}

.contact-form input {
    padding: 22px 12px;
}
.contact-form textarea{
    min-height: 300px;
}
.form-submit {
    display: flex;
    justify-content: flex-end;
}

/* .form-submit button{
    background-color: #fff;
    background: #fff;
    border: 1px solid #000; 
    padding: 22px 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 8px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease; 
} */

.submit-btn {
     background-color: #fff;
    border: 1px solid #000;
    color: #000;
   padding: 22px 40px;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    letter-spacing: 8px;
    font-weight: 400;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background-color: #000;
    color: #fff;
}

/* Contact Info Styles */
.contact-info {
    width: 30%;
}

.info-section {
    margin-bottom: 40px;
}

.info-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.info-item p,
.info-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin: 0;
    line-height: 47px;
}

.info-icon {
    width: 20px;
    height: auto;
}

.social-icons-contact {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icons-contact a {
    display: inline-block;
    padding: 5px;  /* Add padding to increase hit area */
    transition: all 0.3s ease;
}

.social-icons-contact img {
    width: 24px;
    height: 24px;
    transition: filter 0.3s ease;
    display: block;  /* Prevent inline quirks */
}

.social-icons-contact a:hover img {
    /* This filter creates the orange color #EF5F36 */
    filter: invert(42%) sepia(83%) saturate(1352%) hue-rotate(339deg) brightness(96%) contrast(98%);
}

.social-divider {
    color: #000;
    margin: 0 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-form {
        width: 100%;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid #33333323;
        padding-bottom: 40px;
    }
    
    .contact-info {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .form-submit {
        justify-content: center;
    }
    
    .form-submit button {
        width: 100%;
        padding: 18px 30px;
        letter-spacing: 5px;
    }
    
    .info-item {
        gap: 10px;
    }
    
    .info-item p,
    .info-text {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .contact-section {
        padding: 40px 0;
    }
}

.contact-form input#phone{
    padding-left: 115px !important;
}

@media (max-width: 480px) {
    .form-title, .info-title {
        font-size: 20px;
    }
    
    .contact-form label {
        font-size: 16px;
    }
    
    .contact-form input {
        padding: 16px 12px;
    }
    
    .contact-form textarea {
        min-height: 200px;
    }
    
   .form-submit button {
        padding: 14px 20px;
        letter-spacing: 3px;
        font-size: 14px;
    }
    
    .social-icons-contact {
        flex-wrap: wrap;
    }
}