@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap');
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

/* Contact hero (top banner) */
.contact-bg {
    padding-top: 8vh;
    height: 28vh;
    background: linear-gradient(180deg, #000000, rgba(47, 47, 47, 0.574));
    background-position: 50% 100%;
    background-repeat: no-repeat;
    text-align: center;
    color: #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contact-bg h3 {
    font-size: 1.1rem;
    font-weight: 400;
}

.contact-bg h2 {
    font-size: 2rem;
    text-transform: uppercase;
    padding: 0.25rem 0;
    letter-spacing: 3px;
}

.line div {
    margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
    height: 2px;
    width: 50px;
    background: #000000;
    border-radius: 5px;
}

.line {
    display: flex;
    align-items: center;
}

.line div:nth-child(2) {
    width: 8px;
    height: 8px;
    background: #000000;
    border-radius: 50%;
}

.text {
    font-weight: 300;
    opacity: 0.9;
}

.contact-bg .text {
    margin: 1.6rem 0;
}

/* Contact body */
.contact-body {
    background: rgb(49, 48, 48);
    color: #e2e2e2;
    margin-bottom: 0;
    padding: 20px 16px;
}

.contact-info {
    margin: 0 auto;
    text-align: center;
    padding: 16px 0;
}

.contact-info span {
    display: block;
}

.contact-info div {
    margin: 8px 0;
    padding: 14px;
    color: #e2e2e2;
    background: rgba(58, 36, 36, 0.04);
    border: 1px solid #2f1f17;
    border-radius: 10px;
}

.contact-info span .fas {
    font-size: 1.6rem;
    padding-bottom: 0.6rem;
    color: #bbbbbb;
}

.contact-info div span:nth-child(2) {
    font-weight: 600;
    font-size: 1rem;
}

.contact-info .text {
    padding-top: 0.2rem;
}

/* Embedded form wrapper */
.contact-form {
    padding: 16px 0 0 0;
    border-top: 1px solid #1f1f1f;
}

.contact-form form {
    padding-bottom: 1rem;
}

/* Inputs */
.form-control {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border-radius: 8px;
    padding: 0.6rem 0.8rem;
    margin: 0.5rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-control:focus {
    border-color: #ffffff;
    background: rgba(255,255,255,0.25);
    box-shadow: 0 0 0 2px rgba(157, 97, 48, 0.716) inset, 0 0 0 2px rgba(255,255,255,0.12);
    outline: 2px solid rgba(255,255,255,0.35);
}

.form-control::placeholder { color: rgba(255,255,255,0.7); }

.contact-form form div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.6rem;
}

/* Submit button */
.send-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    color: #000000;
    background: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.send-btn:hover {
    background: #f2f2f2;
}

.contact-form>div img {
    width: 85%;
}

.contact-form>div {
    margin: 0 auto;
    text-align: center;
}

/* Footer strip for contact page */
.contact-footer {
    background: #2e2c2c;
    height: auto;
    padding: 16px 0; 
}

.contact-footer h3 {
    font-size: 1.1rem;
    color: #d8d8d8;
    margin-bottom: 0.6rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
}

.social-links a {
    text-decoration: none;
    width: 36px;
    height: 36px;
    color: #d8d8d8;
    border: 1px solid #2a2a2a;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.3rem;
    transition: all 0.2s ease;
}

.social-links a:hover {
    color: #111;
    background: #d8d8d8;
    border-color: #d8d8d8;
}

/* Responsive tweaks */
@media screen and (max-width: 768px) {
    .contact-bg .text { width: 85%; margin-left: auto; margin-right: auto; }
    .contact-info {
        display: flex;
        align-items: center;
        flex-direction: column !important;
        gap: 12px; 
    }
}

@media screen and (max-width: 992px) {
    .contact-bg .text { width: 65%; }
}

@media screen and (max-width: 1200px) {
    .contact-info { grid-template-columns: unset; }
}