﻿.title-container {
    width: 100%;
    height: 100px;
    background: linear-gradient(to right, rgb(51, 176, 100), rgb(127, 101, 162));
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top: 100px;
    margin-bottom: 0;
    box-sizing: border-box;
}

.catalog-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.contact-container {
    position: relative;
    width: 80%;
    max-width: 1100px;
    height: 500px;
    background: linear-gradient(to right, rgba(236, 247, 239), rgba(242, 239, 246));
    border: 2px solid #fff;
    border-radius: 15px;
    margin: 20px auto 40px auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    overflow: hidden;
}

    .contact-container .left-section1 {
        width: 50%;
        height: 100%;
        position: relative;
        margin: 0;
        padding: 20px 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .contact-container .contact-image {
        width: 105%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px 0 0 10px;
        filter: brightness(20%);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    .contact-container .contact-title {
        position: relative;
        z-index: 2;
        margin-left: 40px;
        font-size: 48px;
        font-weight: 700;
        color: #fff !important;
        margin-bottom: 20px;
    }

    .contact-container .contact-subtitle {
        position: relative;
        z-index: 2;
        margin-left: 40px;
        font-size: 28px;
        font-weight: 500;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
    }

        .contact-container .contact-subtitle .contact-icon {
            width: 24px;
            height: 24px;
            margin-right: 10px;
            color: #fff;
        }

    .contact-container .right-section1 {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px;
        background: linear-gradient(to right, rgb(189, 223, 198), rgb(150, 126, 182));
        border-radius: 0 10px 10px 0;
    }

    .contact-container .feedback-title {
        font-size: 30px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
    }

    .contact-container .feedback-text {
        font-size: 18px;
        color: #fff;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .contact-container .feedback-form {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

        .contact-container .feedback-form input,
        .contact-container .feedback-form textarea {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border: 1px solid rgb(51, 176, 100);
            border-radius: 5px;
            margin-bottom: 15px;
            box-sizing: border-box;
            box-shadow: inset 0 2px 3px rgba(0, 0, 0, 0.1), 0 2px 3px rgba(255, 255, 255, 0.2);
            background: #fff;
        }

            .contact-container .feedback-form input::placeholder,
            .contact-container .feedback-form textarea::placeholder {
                color: #999;
                font-size: 14px;
            }

        .contact-container .feedback-form .input-row {
            display: flex;
            justify-content: space-between;
            gap: 10px;
        }

        .contact-container .feedback-form .input-group {
            width: 48%;
        }

        .contact-container .feedback-form textarea {
            resize: vertical;
            min-height: 100px;
        }

        .contact-container .feedback-form button {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            color: #fff;
            background: linear-gradient(to right, rgb(51, 176, 100), rgb(65, 26, 117));
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.3s ease;
        }

            .contact-container .feedback-form button:hover {
                transform: translateY(-2px);
            }

.map-container {
    width: 80%;
    max-width: 1100px;
    height: 500px;
    margin: 40px auto;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 80px;
}


@media (max-width: 768px) {
    .contact-container {
        width: 100%;
        max-width: 100%;
        height: auto;
        flex-direction: column;
        margin: 10px auto 20px auto;
        border-radius: 10px;
    }

        .contact-container .left-section1 {
            width: 100%;
            height: 300px;
            padding: 15px;
            justify-content: center;
            align-items: center; 
        }

        .contact-container .contact-image {
            border-radius: 10px 10px 0 0;
        }

        .contact-container .contact-title {
            font-size: 32px;
            margin-left: 0; 
            margin-bottom: 10px; 
            text-align: center; 
            width: 100%;
        }

        .contact-container .contact-subtitle {
            font-size: 20px;
            margin-left: 0; 
            margin-bottom: 10px;
            text-align: center;
            justify-content: center; 
            width: 100%;
        }

            .contact-container .contact-subtitle .contact-icon {
                width: 20px;
                height: 20px;
                margin-right: 8px;
            }

        .contact-container .right-section1 {
            width: 100%;
            height: auto;
            padding: 15px;
            border-radius: 0 0 10px 10px;
        }

        .contact-container .feedback-title {
            font-size: 24px;
            text-align: center;
            width: 100%;
        }

        .contact-container .feedback-text {
            font-size: 16px;
            text-align: center;
            width: 100%;
        }

        .contact-container .feedback-form .input-row {
            flex-direction: column;
            gap: 10px;
        }

        .contact-container .feedback-form .input-group {
            width: 100%;
        }

        .contact-container .feedback-form input,
        .contact-container .feedback-form textarea {
            font-size: 14px;
            padding: 8px;
        }

        .contact-container .feedback-form button {
            font-size: 14px;
            padding: 8px;
        }

    .map-container {
        width: 100%;
        max-width: 100%;
        height: 400px;
        margin: 20px auto;
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .contact-container {
        margin: 10px auto 15px auto;
    }

        .contact-container .left-section1 {
            height: 250px;
            padding: 10px;
        }

        .contact-container .contact-title {
            font-size: 24px;
            margin-left: 0;
            margin-bottom: 10px;
            text-align: center;
            width: 100%;
        }

        .contact-container .contact-subtitle {
            font-size: 16px;
            margin-left: 0;
            margin-bottom: 10px;
            text-align: center;
            justify-content: center;
            width: 100%;
        }

            .contact-container .contact-subtitle .contact-icon {
                width: 18px;
                height: 18px;
                margin-right: 6px;
            }

        .contact-container .right-section1 {
            padding: 10px;
        }

        .contact-container .feedback-title {
            font-size: 20px;
        }

        .contact-container .feedback-text {
            font-size: 14px;
        }

        .contact-container .feedback-form input,
        .contact-container .feedback-form textarea {
            font-size: 12px;
            padding: 6px;
        }

        .contact-container .feedback-form button {
            font-size: 12px;
            padding: 6px;
        }
    .map-container {
        height: 300px;
        margin: 15px auto;
        margin-bottom: 30px;
    }
}



