/* CERTIFICATION PAGE SPECIFIC (Grid Layout) */
.cert-hero-section {
    background-attachment: fixed;
}

.cert-hero-section h1 {
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
    color: #ffffff;
}

.cert-hero-section p {
    font-family: 'Arial', sans-serif;
}

.cert-card {
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: #FFD700 !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2) !important;
}

/* OLD STADIUM LAYOUT STYLES (Deprecated) */
.stadium-hero {
    position: relative;
    background: url('../images/Rectangle 41.png') center/cover no-repeat;
    height: 850px;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
    color: var(--bg-white);
    overflow: hidden;
}

.stadium-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(4, 25, 50, 0.8) 0%, transparent 50%, rgba(4, 25, 50, 0.6) 100%);
    pointer-events: none;
}

.pathway-hero-content {
    text-align: center;
    color: var(--bg-white);
    position: relative;
    z-index: 2;
    max-width: 960px;
    margin: 0 auto;
}

.pathway-hero-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 4px 10px rgba(255, 255, 255, 0.5);
}

.pathway-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.stadium-interactive {
    position: relative;
    width: 100%;
    height: 600px;
    margin-top: 20px;
}

.stadium-lines {
    position: absolute;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 1;
}

.stadium-card {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 320px;
    background: transparent;
    border: 1.5px solid #ffffff;
    padding: 18px;
    color: var(--bg-white);
    text-align: left;
    z-index: 10;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stadium-card:hover {
    transform: translate(-50%, -55%);
    border-color: var(--accent-gold);
}

.stadium-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.stadium-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stadium-brand img {
    height: 35px;
}

.stadium-brand h4 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.stadium-brand h3 {
    color: var(--accent-gold);
    font-size: 1.05rem;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    margin-top: 4px;
}

.stadium-crest {
    height: 50px;
}

.stadium-card p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--bg-white);
}

.btn-stadium {
    display: block;
    width: 100%;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: 700;
}

.btn-stadium:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
}


/* Steps Section */
.steps-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}

.step-box {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid #A2B1C6;
    border-radius: 0;
    flex: 1;
    max-width: 320px;
    background-color: var(--bg-white);
    box-shadow: none;
    transition: var(--transition-base);
}

.step-box:hover {
    box-shadow: none;
    border-color: var(--primary-blue);
    transform: none;
    background-color: #F8FAFD;
}

.step-box-icon {
    margin-bottom: 15px;
}

.step-box h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #333333;
}

.step-box p {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}

.step-arrow {
    color: var(--primary-blue);
    font-size: 24px;
}

/* FAQ Layout */
.faq-section {
    padding: 60px 0 100px;
    background-color: var(--bg-light);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header-styled {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-header-styled h2 {
    color: #2F80ED;
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
}

.faq-line {
    height: 3px;
    width: 60px;
    background: #2F80ED;
    border-radius: 2px;
}

.faq-line.left {
    background: linear-gradient(to right, transparent, #2F80ED);
}

.faq-line.right {
    background: linear-gradient(to left, transparent, #2F80ED);
}

.faq-item {
    background-color: transparent;
    border: 1px solid #2F80ED;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--bg-white);
    color: #2F80ED;
    font-weight: 600;
}

.faq-question i {
    color: #2F80ED;
    transition: var(--transition-base);
    font-style: normal;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-question i::before {
    content: '+';
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--bg-white);
}

.faq-item.active .faq-answer {
    padding: 20px 24px;
    max-height: 200px;
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

