        @import url("./components/header.css");
        @import url("./components/footer.css");

.contact-section {
         /*   padding: 4rem 0; */
            background: #efefef;
        }
         /* Hero Section */
       /* Hero Section */
        .contact-hero {
            color: white;
            padding: 5rem 0 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact-hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to right, rgb(2 2 2 / 95%) 0%, rgb(0 0 0 / 70%) 50%, transparent 100%);
            z-index: 1;
        }

        .contact-hero .container {
            position: relative;
            z-index: 2;
        }

        .contact-hero h1 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 1rem;
            position: relative;
        }

        .contact-hero p {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
        }

        /* Info Cards */


.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    padding: 3rem 0rem;
    align-items: start;
}

.contact-info {
    background:#2a2a29fa;
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.info-item {
    display: flex;
    align-items: start;
    margin-bottom: 25px;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: var(--btn-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-form {
    display: grid;
    gap: 20px;
    min-width: 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 30px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}
.submit-btn {
    background-color: var(--color-yellow);
color:var(--text-color-black);
    border: none;
    padding: 15px 40px;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    justify-self: end;
}

@media (max-width: 768px) {
     .contact-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 2rem 0;
    }

    .contact-info {
        padding: 24px;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }

    .info-icon {
        margin-right: 0;
    }

    .info-item > div:last-child {
        overflow-wrap: anywhere;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .submit-btn {
        width: 100%;
        justify-self: stretch;
    }
}

        /* Map Section */
        .map-section {
            background: white;
            padding: 0;
            margin: 3rem 0;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .map-container {
            height: 450px;
            background: #e0e0e0;
            position: relative;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* FAQ Section */
        .faq-section {
            background: white;
            padding: 4rem 0;
            margin-top: 3rem;
        }

        .accordion-item {
            border: none;
            border-radius: 10px !important;
            margin-bottom: 1rem;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .accordion-button {
            font-weight: 600;
            border-radius: 10px !important;
        }

        .accordion-button:not(.collapsed) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }


        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .contact-form-card {
                padding: 2rem;
            }
        }

