body {
    background: #0c0c0c;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(12px);
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.logo-link {
    text-decoration: none;
    color: white
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px
}

.logo-area img {
    width: 60px;
    height: auto
}

.logo-area h1 {
    font-size: 1.5rem
}

.logo-area p {
    font-size: .85rem;
    color: #ccc
}

nav {
    display: flex;
    gap: 28px
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 2rem
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to right, rgba(0, 0, 0, .88), rgba(0, 0, 0, .45)), url('../images/EarthquakeTeam4.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 120px
}

.hero-content {
    width: 90%;
    max-width: 1350px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr .8fr;
    gap: 60px;
    align-items: center
}

.eyebrow,
.section-tag {
    color: #f2c230;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: .8rem;
    font-weight: bold
}

.hero-left h1 {
    font-size: 6rem;
    line-height: .92;
    margin: 18px 0 24px
}

.hero-left p {
    max-width: 650px;
    font-size: 1.15rem;
    color: #d0d0d0
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px
}

.btn-primary,
.btn-secondary {
    padding: 16px 28px;
    border-radius: 14px;
    font-weight: bold;
    text-decoration: none
}

.btn-primary {
    background: #f2c230;
    color: black
}

.btn-secondary {
    border: 1px solid rgba(255, 255, 255, .25);
    color: white
}

.hero-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    padding: 38px;
    border-radius: 30px
}

.schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto
}

.section {
    padding: 120px 0
}

.integrated-image img,
.coach-photo img,
.map-wrapper img {
    width: 100%;
    border-radius: 36px
}

.floating-card {
    position: relative;
    max-width: 760px;
    margin: -140px auto 0;
    background: #161616;
    padding: 55px;
    border-radius: 34px
}

.feature-grid,
.skill-grid,
.stats-row {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px
}

.feature-item,
.skill-card,
.stat-card,
.location-card,
.info-box {
    background: #1d1d1d;
    padding: 24px;
    border-radius: 20px
}

.coach-layout,
.location-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.action-banner {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center
}

.action-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.action-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .68)
}

.action-content {
    position: relative;
    z-index: 2
}

.cta {
    text-align: center;
    background: linear-gradient(to right, rgba(0, 0, 0, .85), rgba(0, 0, 0, .65)), url('../images/EarthquakeTeam1.jpg');
    background-size: cover;
    background-position: center
}

footer {
    padding: 35px;
    text-align: center;
    background: black;
    color: #aaa
}

@media(max-width:1000px) {

    .hero-content,
    .coach-layout,
    .location-layout {
        grid-template-columns: 1fr
    }

    .hero-left h1 {
        font-size: 4rem
    }

    .floating-card {
        margin-top: 40px;
        padding: 35px
    }
}

@media(max-width:900px) {
    header {
        padding: 16px 20px;
        flex-wrap: wrap
    }

    .mobile-menu-btn {
        display: block
    }

    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px
    }

    nav.mobile-open {
        display: flex
    }

    nav a {
        width: 100%;
        text-align: center;
        padding: 14px;
        border-radius: 12px;
        background: rgba(255, 255, 255, .05)
    }

    .hero {
        padding-top: 160px
    }
}

@media(max-width:700px) {
    .section {
        padding: 70px 0
    }

    .hero-left h1 {
        font-size: 3rem
    }

    .hero-buttons {
        flex-direction: column
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center
    }

    .feature-grid,
    .skill-grid,
    .stats-row {
        grid-template-columns: 1fr
    }
}