/* Contact Section */
.contact-section {
    padding: 20px 0;
    background-color: transparent;
    max-width: 1300px;
    margin: auto;
    color: #333;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #e74c3c;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-form h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #e74c3c;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-bottom: 1px solid #e74c3c;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #e74c3c;
}

.contact-form button {
    background-color: #e74c3c;
    color: #fff;
    padding: 10px 20px;
    width: 100%;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

.contact-form button:hover {
    background-color: #c0392b;
}

.contact-info {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.contact-info h3 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #e74c3c;
}

.contact-info p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #333;
}

.map iframe {
    border-radius: 10px;
    width: 100%;
    height: 250px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .contact-section h2 {
        font-size: 2.2em;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-form,
    .contact-info {
        padding: 15px;
    }

    .map iframe {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .contact-section h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .contact-form h3,
    .contact-info h3 {
        font-size: 1.6em;
    }

    .contact-form label {
        font-size: 1.1em;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 1em;
    }

    .contact-form button {
        font-size: 1.1em;
    }

    .contact-info p {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .contact-section h2 {
        font-size: 1.8em;
    }

    .contact-form h3,
    .contact-info h3 {
        font-size: 1.5em;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 0.95em;
    }

    .contact-form button {
        font-size: 1em;
    }

    .contact-info p {
        font-size: 1em;
    }

    .map iframe {
        height: 180px;
    }
}

.country-selection {
    margin-bottom: 20px;
}

.country-selection select {
    padding: 10px;
    font-size: 16px;
}

.country-location {
    display: none;
}

/* General Styles */
.contact-sections {
    background-color: transparent;
    padding: 20px 20px;
    color: #333333;
    font-family: serif;
}

.contact-sections h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #e74c3c;
}

.contact-sections {
    text-align: center;
    margin-bottom: 40px;
}

/* General Styles for Country Selection */
.country-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.country-selection h3 {
    font-size: 20px;
    color: #c0392b;
    margin: 0;
}

.country-selection select,
.country-selection input {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-bottom: 1px solid #c0392b;
    border-radius: 5px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
    margin-top: 10px;
}

.country-selection select:hover,
.country-selection select:focus,
.country-selection input:hover,
.country-selection input:focus {
    outline: none;
    border-bottom: 2px solid #e74c3c;
}

.country-selection select {
    max-width: 200px;
}

.country-selection input {
    flex: 1;
    max-width: 500px;
}

.contact-content-maps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

/* Country Location Styles */
.country-location {
    width: 100%;
    max-width: 1300px;
    padding: 20px;
    border: 2px solid #c0392b;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.country-info {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.country-details {
    flex: 1;
    text-align: start;
}

.map {
    flex: 1.5;
    justify-content: center;
    align-items: center;
}

.country-location h3 {
    font-size: 28px;
    color: #e74c3c;
    margin-bottom: 15px;
}

.country-location p {
    font-size: 16px;
    line-height: 1.6;
}

.country-location .map {
    margin-top: 20px;
}

.country-location iframe {
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: auto;
}

.country-location:hover {
    transform: translateY(-10px);
    border-color: #e74c3c;
}

.country-location:hover iframe {
    transform: scale(1.05);
}

/* Media Queries */
@media (max-width: 768px) {
    .contact-content-maps {
        flex-direction: column;
    }

    .country-location iframe {
        width: 100%;
        height: 300px;
    }
}

/* Responsive Layout for Large Screens */
@media (min-width: 768px) {
    .country-selection {
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .country-selection h3 {
        margin-right: 15px;
    }

    .country-selection select,
    .country-selection input {
        margin-top: 0;
    }

    .country-selection select {
        margin-right: 15px;
    }
}

/* Highlight search results */
.country-location.highlight {
    border: 2px solid #e74c3c;
    background-color: #f9f9f9;
}
