/* Contact Section */
.contact-section {
    min-height: calc(100vh - 150px - 200px);
    padding: 60px 15%;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 36px;
    font-weight: 700;
    color: #3e4144;
    margin-bottom: 10px;
    border-bottom: 2px solid #6d3d3f;
    text-align: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Info Section */
.contact-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-info-title {
    font-size: 24px;
    font-weight: 600;
    color: #4d292b;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4d292b;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    transition: transform 0.2s ease;
}

.contact-info-item:hover {
    transform: translateX(5px);
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #682f2f 0%, rgba(77, 41, 43, 0.8) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(77, 41, 43, 0.2);
}

.contact-icon-wrapper i {
    color: #ffffff;
    font-size: 20px;
}

.contact-info-content {
    flex: 1;
    display: flex;
    align-items: center;
}

.contact-info-text {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.contact-info-link {
    color: #4d292b;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-link:hover {
    color: #6d3d3f;
    transform: scale(1.05);
}

/* Map Section */
.contact-map {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.contact-map-title {
    font-size: 24px;
    font-weight: 600;
    color: #4d292b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #4d292b;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #e9ecef;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-section {
        padding: 50px 10%;
    }

    .contact-content {
        gap: 30px;
    }

    .contact-info,
    .contact-map {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 5%;
    }

    .contact-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-info-title,
    .contact-map-title {
        font-size: 20px;
    }

    .contact-info,
    .contact-map {
        padding: 25px;
    }

    .map-wrapper {
        height: 400px;
    }

    .contact-icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .contact-icon-wrapper i {
        font-size: 18px;
    }

    .contact-info-text {
        font-size: 15px;
    }

    .contact-info-link {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 4%;
    }

    .contact-title {
        font-size: 24px;
    }

    .contact-info,
    .contact-map {
        padding: 20px;
    }

    .contact-info-title,
    .contact-map-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .map-wrapper {
        height: 350px;
    }

    .contact-info-item {
        gap: 15px;
        margin-bottom: 20px;
    }

    .contact-icon-wrapper {
        width: 40px;
        height: 40px;
    }

    .contact-icon-wrapper i {
        font-size: 16px;
    }
}