/* ================================
   TRAINING HERO
================================ */

.training-hero {
    background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)), url("images/handpan-training-hero.jpg");
    background-size: cover;
    background-position: center;
    padding: 110px 20px;
    text-align: center;
    color: #ffffff;
}

.training-hero-content {
    max-width: 850px;
    margin: 0 auto;
}

.training-label {
    display: inline-block;
    background: #a55c35;
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.training-hero h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #ffffff;
}

.training-hero p {
    font-size: 21px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #ffffff;
}

.training-hero-btn {
    display: inline-block;
    background: #a55c35;
    color: #ffffff;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.training-hero-btn:hover {
    background: #8f4b2b;
    color: #ffffff;
    transform: translateY(-3px);
}


/* ================================
   TRAINING HIGHLIGHTS
================================ */

.training-highlights {
    max-width: 1150px;
    margin: -45px auto 60px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    position: relative;
    z-index: 2;
}

.highlight-box {
    background: #ffffff;
    padding: 28px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.highlight-box i {
    font-size: 30px;
    color: #a55c35;
    margin-bottom: 12px;
}

.highlight-box h4 {
    font-size: 18px;
    color: #222;
    margin-bottom: 8px;
}

.highlight-box p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}


/* ================================
   TRAINING CONTENT SECTIONS
================================ */

.training-info-section,
.training-learn-section {
    max-width: 1050px;
    margin: 60px auto;
    padding: 0 20px;
}

.training-info-section h2,
.training-learn-section h2 {
    font-size: 34px;
    color: #222;
    margin-bottom: 18px;
}

.training-info-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.learn-card {
    background: #f7f1ea;
    padding: 24px 20px;
    border-radius: 14px;
}

.learn-card h4 {
    font-size: 18px;
    color: #a55c35;
    margin-bottom: 10px;
}

.learn-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}


/* ================================
   CONTACT SECTION
================================ */

.contact-choice-section {
    background: linear-gradient(135deg, #f5efe8, #ebe3da);
    width: 100%;
    padding: 35px 20px;
    margin: 40px 0;
    text-align: center;
}

.contact-choice-section h3 {
    font-size: 34px;
    font-weight: 700;
    color: #a55c35;
    margin-bottom: 8px;
    line-height: 1.2;
}

.contact-choice-section p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.contact-choice-icons {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-choice-icons li {
    margin: 0;
}

.contact-choice-icons li a {
    width: 120px;
    height: 100px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #a55c35;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-choice-icons li a i {
    font-size: 32px;
    margin-bottom: 8px;
}

.contact-choice-icons li a span {
    font-size: 14px;
    font-weight: 600;
}

.contact-choice-icons li a:hover {
    background: #a55c35;
    color: #ffffff;
    transform: translateY(-4px);
}

.contact-response-time {
    margin-top: 15px;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    color: #777 !important;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .training-highlights,
    .learn-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-hero h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .training-hero {
        padding: 80px 20px;
    }

    .training-hero h1 {
        font-size: 34px;
    }

    .training-hero p {
        font-size: 18px;
    }

    .training-highlights {
        margin: 40px auto;
    }

    .contact-choice-section {
        padding: 30px 15px;
    }

    .contact-choice-section h3 {
        font-size: 30px;
    }

    .contact-choice-section p {
        font-size: 17px;
    }

    .contact-choice-icons li a {
        width: 110px;
        height: 95px;
    }
}

@media (max-width: 480px) {
    .training-highlights,
    .learn-grid {
        grid-template-columns: 1fr;
    }

    .training-hero h1 {
        font-size: 30px;
    }

    .training-hero p {
        font-size: 16px;
    }

    .training-info-section h2,
    .training-learn-section h2 {
        font-size: 28px;
    }

    .contact-choice-section {
        padding: 25px 15px;
    }

    .contact-choice-section h3 {
        font-size: 26px;
    }

    .contact-choice-section p {
        font-size: 15px;
    }

    .contact-choice-icons {
        gap: 10px;
    }

    .contact-choice-icons li a {
        width: 95px;
        height: 85px;
    }

    .contact-choice-icons li a i {
        font-size: 24px;
    }

    .contact-choice-icons li a span {
        font-size: 12px;
    }
}