* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.90), rgba(0, 0, 0, 0.92)), url('unnamed (5).webp') center/cover no-repeat fixed;
    color: #ffeb3b;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

header {
    background: rgba(0, 0, 0, 0.95);
    color: #ffeb3b;
    padding: 16px 0;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffeb3b;
}

nav a {
    color: #ffeb3b;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    transition: color 0.2s;
}

nav a:hover {
    color: #ffd600;
}


/* Hero Section with background overlay */

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, .70), rgba(0, 0, 0, .82)), url('unnamed (5).webp') center/cover no-repeat;
    color: #ffd600;
    padding: 65px 0 40px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.2rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin-bottom: 10px;
}

.contact-hero h1 span {
    color: #ffeb3b;
}

.contact-hero p {
    font-size: 1.08rem;
    color: #ffeb3b;
}


/* Main Contact & Form Card */

.contact-main {
    background: rgba(24, 24, 24, 0.94);
    padding: 38px 0 35px 0;
}

.contact-flex {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1 1 260px;
    background: #101010ed;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.13);
    padding: 35px 20px 26px 22px;
    min-width: 250px;
    max-width: 320px;
}

.contact-info h2 {
    color: #ffd600;
    font-size: 1.23rem;
    margin-bottom: 13px;
}

.contact-info p {
    font-size: 1rem;
    color: #ffeb3b;
    margin-bottom: 13px;
    line-height: 1.6;
}

.gym-timings {
    margin: 14px 0 10px 0;
    color: #ffd600;
}

.gym-timings ul {
    list-style: none;
    padding-left: 0;
    margin-top: 5px;
}

.gym-timings li {
    color: #ffeb3b;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-social {
    margin-top: 16px;
}

.contact-social a {
    margin-right: 8px;
    transition: opacity .17s;
}

.contact-social a:hover {
    opacity: .8;
}

.contact-info img {
    vertical-align: middle;
}


/* CONTACT FORM */

.contact-form {
    flex: 2 1 390px;
    background: #101010ed;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(255, 235, 59, 0.13);
    padding: 35px 25px 26px 25px;
    min-width: 280px;
    max-width: 500px;
    margin-top: 0;
}

.contact-form h2 {
    color: #ffd600;
    font-size: 1.23rem;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.form-group {
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    color: #ffeb3b;
    font-size: 0.97rem;
    margin-bottom: 4px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 9px 12px;
    background: #1e1e1e;
    color: #ffeb3b;
    border: 1.5px solid #ffd600;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border 0.18s;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #ffeb3b;
}

.contact-form textarea {
    resize: none;
}

.btn-submit {
    background: #ffd600;
    color: #181818;
    border: none;
    padding: 11px 28px;
    border-radius: 25px;
    font-size: 1.07rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #ffeb3b;
    color: #000;
}


/* MAP SECTION */

.contact-map {
    background: rgba(24, 24, 24, 0.94);
    padding: 40px 0 36px 0;
    text-align: center;
}

.contact-map h2 {
    color: #ffd600;
    margin-bottom: 18px;
    font-size: 1.18rem;
    letter-spacing: 1px;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(255, 235, 59, 0.14);
}


/* FOOTER */

footer {
    background: rgba(0, 0, 0, 0.95);
    color: #ffeb3b;
    text-align: center;
    padding: 16px 0;
    font-size: .9rem;
    margin-top: 35px;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 22px;
        align-items: center;
    }
    .contact-info,
    .contact-form {
        max-width: 100%;
    }
}

@media (max-width: 700px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    nav {
        margin-top: 10px;
        width: 100%;
    }
    nav a {
        display: inline-block;
        margin: 10px 10px 0 0;
    }
    .contact-hero h1 {
        font-size: 1.2rem;
    }
    .contact-hero {
        padding: 35px 0 18px 0;
    }
}