.contact-info,
.map-container {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.637)
}

.container,
.offices {
    display: flex;
    gap: 40px
}

.office,
.social-links a:hover,
body,
input,
select,
textarea {
    color: var(--text-light)
}

.contact-form h2,
.contact-info h2,
.office h3 {
    -webkit-text-fill-color: transparent
}

:root {
    --black: #000000;
    --dark-gray: linear-gradient(to top right, rgb(0, 0, 0) 30%, rgb(255, 0, 0) 100%);
    --gold-1: #d71010 ;
    --gold-2: #f34545 ;
    --metallic-gold: #ffffff;
    --text-light: #ffffff;
    --text-muted: #cccccc
}



.container {
    justify-content: space-around;
    padding: 50px;
    width: 80%;
    margin: 50px auto;
    flex-wrap: wrap
}
.socail-icon{
     height: 5vh;
}
.contact-info {
    width: 30%;
    background: var(--dark-gray);
    border-radius: 10px;
    padding: 30px 25px;
    border: 3px solid #000000;
}

.contact-info h2 {
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.8rem;
    margin-bottom: 20px
}

.contact-info address {
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-muted)
}

address p {
    padding: 10px 0
}
.social-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.social-links a {
    margin-right: 15px;
    color: var(--gold-2);
    font-size: 1.5rem;
    transition: .3s
}

.social-links a:hover {
    text-shadow: 0 0 10px rgba(249, 224, 123, .8)
}

.map-container {
    margin-top: 25px;
    border: 3px solid #000000;
    border-radius: 20px;
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 20px;
}

.contact-form,
.office {
    background: var(--dark-gray);
    border-radius: 10px;
    box-shadow: 0 4px 25px rgb(0, 0, 0)
}

.contact-form {
    width: 50%;
    padding: 30px 40px;
        border: 3px solid #000000;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 25px;
    background: var(--metallic-gold);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 1.8rem
}

#contact-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px
}

.form-group,
.form-groups {
    width: 100%
}

input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 2px solid rgb(255 255 255);
    border-radius: 8px;
    background-color: #111111;
    font-size: 1em;
    transition: .3s
}

.office h3,
button {
    background: var(--metallic-gold)
}

input::placeholder,
select::placeholder,
textarea::placeholder {
    color: var(--text-muted);
    font-size: .95em
}

input:focus,
select:focus,
textarea:focus {
    outline: 0;
    border: 2px solid var(--gold-2);
    box-shadow: 0 0 10px rgba(249, 224, 123, .5)
}

.office:hover,
button:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.6)
}

textarea {
    height: 150px
}

button {
    width: 40%;
    padding: 12px;
    color: var(--black);
    font-size: 1.2em;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 15px;
    transition: .3s;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.747)
}

button:hover {
    transform: translateY(-2px)
}

.offices {
    justify-content: center;
    padding: 40px 0;
    flex-wrap: wrap
}

.office {
    padding: 25px;
    width: 25%;
    text-align: center;
    border: 1px solid var(--gold-1);
    transition: .3s
}

.office:hover {
    transform: translateY(-5px)
}

.office h3 {
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 10px
}

.mapimage {
    width: 80px;
    height: 70px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid rgba(249, 224, 123, .3)
}

@media (max-width:1024px) {
    .container {
        flex-direction: column;
        align-items: center;
        width: 90%;
        padding: 30px 20px
    }

    .contact-form,
    .contact-info {
        width: 100%
    }

    button {
        width: 60%
    }

    .office {
        width: 45%
    }
}

@media (max-width:768px) {
    .container {
        flex-direction: column;
        padding: 20px
    }

    .contact-form,
    .contact-info {
        width: 100%
    }

    button {
        width: 80%
    }

    .offices {
        flex-direction: column;
        gap: 25px
    }

    .office {
        width: 85%
    }
}

@media (max-width:480px) {
    .container {
        padding: 15px
    }

    .contact-form,
    .contact-info {
        padding: 20px
    }

    .contact-form h2,
    .contact-info h2 {
        font-size: 1.4rem
    }

    input,
    select,
    textarea {
        font-size: .9em
    }

    button {
        width: 90%;
        padding: 10px;
        font-size: 1em
    }

    .office {
        width: 100%
    }
    .social-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    justify-content: center;
}
}