/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #050505;
    --color-dark-grey: #121212;
    --color-gold: #D4AF37;
    --color-gold-light: #F5E6C3;
    --color-white: #ffffff;
    --color-text-grey: #cccccc;
    --color-accent-red: #CC0000;
    /* 呼应队服红色 */

    --font-heading: 'Noto Serif SC', 'Songti SC', serif;
    --font-body: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-black);
    color: var(--color-text-grey);
    line-height: 1.6;
    overflow-x: hidden;
}

/* 链接样式 */
a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* 导航栏 */
/* --- Framed Layout Redesign (Reference Match) --- */

body {
    background-color: #111;
    /* Outer dark background */
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 0;
    /* Space for the frame */
}

/* The Gold Frame Container */
.site-frame {
    width: 95%;
    /* Responsive width */
    max-width: 1400px;
    background-color: #050505;
    /* Inner dark background */
    border: 3px solid var(--color-gold);
    /* The thick gold frame */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    /* Depth */
    position: relative;
    padding: 0 0 40px 0;
    /* Padding bottom */
    display: flex;
    flex-direction: column;
}

/* Added inner border effect for luxury */
.site-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
    z-index: 30;
    /* Lower than nav-bar (1000) */
}

/* 1. Top Branding Header */
.brand-header {
    text-align: center;
    padding: 60px 20px 40px;
    z-index: 10;
}

.brand-logo {
    height: 100px;
    /* Adjust based on logo proportions */
    width: auto;
    display: block;
    margin: 0 auto 20px auto;
    /* Center and add space below */
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-gold);
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.brand-subtitle {
    font-family: var(--font-body);
    color: #888;
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
}

/* 2. Hero Image Display */
/* 2. Hero Image Display */
.hero-display {
    width: calc(100% - 80px);
    /* Margin from frame sides */
    margin: 0 auto;
    /* Remove fixed height to allow full image display */
    height: auto;
    position: relative;
    border: 2px solid var(--color-gold);
    /* Inner gold border for image */
    overflow: hidden;
    line-height: 0;
    /* Remove extra bottom space for inline-block image */
}

.hero-img {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    /* Remove extra space */
    object-fit: contain;
    /* Ensure fully visible */
}

.hero-display:hover .hero-img {
    /* Transform removed to prevent overflow issues with auto height */
    transform: none;
}

/* 3. Bottom Navigation Bar */
.nav-bar-bottom {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: calc(100% - 80px);
    margin: 0 auto;
    /* Centered */
    background: #0d0d0d;
    border: 1px solid var(--color-gold);
    border-top: none;
    /* Connect to image visually or keep separate */
    padding: 20px 0;
    margin-top: 5px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 0;
}

.nav-links li a {
    color: var(--color-gold);
    /* Gold text */
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--color-white);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links li a::after {
    display: none;
    /* Remove underline style */
}

/* Content Frame for Sections */
.content-frame {
    width: calc(100% - 80px);
    margin: 60px auto 0;
}

/* Reset existing section styles to fit frame */
section {
    padding: 0 0 80px 0;
    /* Remove side padding as container handles it */
    border-bottom: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        padding: 0;
    }

    .site-frame {
        width: 100%;
        border: none;
    }

    .site-frame::before {
        display: none;
    }

    .brand-title {
        font-size: 32px;
    }

    .hero-display {
        width: 100%;
        border-left: none;
        border-right: none;
        height: 400px;
    }

    .nav-bar-bottom {
        width: 100%;
        border: none;
        border-bottom: 1px solid var(--color-gold);
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .content-frame {
        width: 100%;
        padding: 0 20px;
    }
}


/* Sections 通用 */

/* Sections General */
.site-section {
    padding: 100px 8%;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.section-header {
    margin-bottom: 80px;
    text-align: center;
}

.section-subtitle {
    color: var(--color-gold);
    font-size: 13px;
    letter-spacing: 6px;
    display: block;
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-white);
    margin-bottom: 25px;
    font-weight: 400;
    /* Sophisticated look */
}

/* Featured Title Line */
.title-line {
    width: 40px;
    height: 2px;
    background-color: var(--color-gold);
    margin: 0 auto;
}

/* About Section - Refactored for Cleanliness (2-Column) */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    /* Vertically center */
    max-width: 1300px;
    margin: 0 auto;
}

.about-text-content {
    text-align: left;
    margin-bottom: 0;
}

.about-text-content .lead {
    font-size: 24px;
    color: var(--color-white);
    /* High contrast */
    font-family: var(--font-heading);
    margin-bottom: 30px;
    line-height: 1.6;
    border-left: 3px solid var(--color-gold);
    padding-left: 20px;
}

.about-text-content p {
    font-size: 16px;
    color: #999;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
    /* Cleaner block */
}

/* Right Side: Stats & Highlights Cleaned Up */
.about-visual {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 40px;
}

.stat-item {
    text-align: left;
}

.stat-num {
    display: block;
    font-size: 42px;
    font-family: var(--font-heading);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
}

/* Advantages as compact list */
.advantages-box {
    margin-top: 0;
}

.advantage-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.advantage-list li {
    display: flex;
    flex-direction: row;
    /* Horizontal icon + text */
    align-items: flex-start;
    text-align: left;
    gap: 20px;
}

.adv-icon {
    font-size: 28px;
    color: var(--color-gold);
    margin-bottom: 0;
    line-height: 1;
    padding-top: 5px;
    /* Align with title */
}

.adv-info h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 5px;
}

.adv-info p {
    font-size: 14px;
    color: #888;
    max-width: 100%;
}


/* News & Honors Section (Fixed Syntax) */
/* 4. Association Logos (Honors & Cooperation) */
/* 4. Association Logos (Honors & Cooperation) - Framed Logo Only */
.coop-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    padding: 20px 0 80px;
    border: none;
    background: none;
}

.coop-logo-item {
    width: auto;
    height: auto;
    min-height: 0;
    /* Explicitly remove Outer Card styles */
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: transform 0.4s ease;
    position: relative;
    cursor: default;
    /* No pointer unless clickable */
}

/* Remove any pseudo-elements that might look like borders */
.coop-logo-item::before,
.coop-logo-item::after {
    display: none !important;
}

.coop-logo-item:hover {
    transform: translateY(-10px);
}

.coop-logo-item img {
    /* Intentional White Frame for Logo - Larger Size */
    background-color: #fff;
    padding: 2px;
    /* Minimal padding to maximize logo size */
    border: 3px solid var(--color-gold);
    border-radius: 4px;
    width: 260px;
    /* Further increased width */
    height: 180px;
    /* Further increased height */
    object-fit: contain;
    margin-bottom: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.4s ease;
}

.coop-logo-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    /* Enhanced Gold glow */
    border-color: var(--color-gold-light);
}

/* Hide Text */
.coop-logo-item p {
    display: none;
}

/* Coaches Section (Luxury Portrait Style) */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.coach-card {
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    text-align: center;
    padding-bottom: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
    border-color: var(--color-gold);
}

.coach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-gold);
}

.coach-img-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.coach-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-img-wrapper img {
    transform: scale(1.05);
}

.coach-placeholder {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.placeholder-icon {
    filter: grayscale(1) opacity(0.5);
}

.coach-info {
    padding: 25px 20px 0;
}

.coach-info h3 {
    color: var(--color-gold);
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.coach-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.coach-title {
    background: var(--color-gold);
    color: #000;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 2px;
    font-weight: bold;
}

.coach-exp {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 2px;
}

.coach-desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    padding: 0 10px;
}

@media (max-width: 768px) {
    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .coach-desc {
        text-align: center;
    }
}

.news-tag.highlight {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.news-card h3 {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.news-card p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 500;
}

.read-more:hover {
    color: var(--color-gold-light);
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        border-bottom: none;
    }
}



/* Programs Grid - Luxury Gold Style (Fixed) */
.programs-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.program-card {
    background-color: #050505;
    /* Deep Black */
    border: 2px solid var(--color-gold);
    /* Prominent Gold Border */
    border-radius: 12px;
    padding: 0;
    transition: all 0.4s ease;
    cursor: pointer;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    background-color: #0a0a0a;
}

.program-card.elite-card {
    border-color: var(--color-gold);
    /* Keep uniform style */
    background: linear-gradient(to bottom, #0a0a0a, #000);
}

.ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--color-gold);
    color: #000;
    font-size: 10px;
    font-weight: bold;
    padding: 5px 35px;
    transform: rotate(45deg);
    z-index: 10;
}

.p-header {
    width: 100%;
    padding: 40px 20px 20px;
    text-align: center;
}

.p-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.program-card h3 {
    color: var(--color-gold-light);
    font-size: 22px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-weight: 400;
}

/* Hide price and duration in header for the visual style match */
.p-price,
.p-duration {
    display: none;
}

.p-body {
    width: 100%;
    padding: 0 30px 40px;
    text-align: center;
    flex: 1;
}

.goal-text {
    font-size: 15px;
    color: #999;
    line-height: 1.6;
}

/* Hide detailed lists to match image */
.target-title,
.target-list,
.elite-features,
.divider {
    display: none;
}

/* Campus Services Section */
.services-wrapper {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.service-col {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.02);
    padding: 40px;
    border-radius: 4px;
}

.service-title {
    color: var(--color-white);
    font-size: 20px;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.service-desc {
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 25px;
}

.service-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #aaa;
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.vision-box {
    text-align: center;
    background: linear-gradient(rgba(212, 175, 55, 0.05), transparent);
    padding: 60px 40px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.vision-box h3 {
    color: var(--color-gold);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-size: 24px;
}

.vision-box p {
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 80px 5% 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand h3 {
    color: var(--color-white);
    font-size: 24px;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.footer-brand p {
    color: var(--color-gold);
    letter-spacing: 3px;
    font-size: 12px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #666;
}

/* 动画 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--color-gold);
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 100;
}

/* Contact Section & WeChat Button */
.contact-box {
    background: linear-gradient(145deg, #111, #050505);
    padding: 60px 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-desc {
    color: #999;
    margin-bottom: 30px;
    font-size: 16px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background-color: var(--color-gold);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    /* Pillow shape */
    transition: all 0.3s ease;
    border: 2px solid var(--color-gold);
    gap: 10px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
}

.wechat-btn .btn-icon {
    font-size: 20px;
}

/* 响应式 Responsive */
@media (max-width: 768px) {

    /* Reduce body padding */
    body {
        padding: 0;
        background-color: #000;
    }

    /* Maintain Frame Look but Thinner */
    .site-frame {
        width: 100%;
        border: 1px solid var(--color-gold);
        /* Keep the frame! */
        box-shadow: none;
        padding-bottom: 20px;
    }

    .site-frame::before {
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        opacity: 0.5;
    }

    /* Adjust Brand Header */
    .brand-header {
        padding: 40px 15px 20px;
    }

    .brand-logo {
        height: 60px;
        /* Smaller logo */
    }

    .brand-title {
        font-size: 28px;
        /* Smaller title */
        line-height: 1.2;
    }

    .brand-subtitle {
        font-size: 10px;
        letter-spacing: 3px;
    }

    /* Hero */
    .hero-display {
        width: 100%;
        border-left: none;
        border-right: none;
        height: auto;
        /* Allow auto height */
    }

    /* Mobile Navigation */
    .nav-bar-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--color-gold);
        border-bottom: 1px solid var(--color-gold);
        padding: 0 20px;
        margin-top: 20px;
        background-color: #000;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 10005;
        /* Higher than frame-before */
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
        width: 100%;
        min-height: 60px;
    }

    .menu-toggle {
        display: block;
        position: static;
        order: 2;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0d0d0d;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 20px;
        border-bottom: 1px solid var(--color-gold);
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .content-frame {
        width: 100%;
        padding: 0 15px;
        margin-top: 40px;
    }

    section {
        padding: 60px 5%;
    }

    .section-title {
        font-size: 32px;
    }

    /* Stats Grid: 3 columns to 1 or 2? Let's try 3 for density if small, or 1 stacked */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .stat-item {
        text-align: center;
    }

    /* Logo Wall Mobile: 2 per row */
    .coop-logo-item {
        width: 45%;
        /* Fit 2 per row */
        height: 100px;
        /* Shorter */
    }

    .coop-logos-grid {
        gap: 15px;
    }
}

/* =========================================
   Services Page Styles (Optimized)
   ========================================= */

/* Main Service Blocks */
.service-block {
    display: flex;
    align-items: flex-start;
    /* Better alignment for long text */
    gap: 50px;
    margin-bottom: 80px;
    /* More breathing room */
    background: linear-gradient(145deg, #111, #080808);
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-block:hover {
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px);
}

.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-gold);
    opacity: 0.5;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block.reverse::before {
    left: auto;
    right: 0;
}

.service-icon-large {
    font-size: 80px;
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    background: -webkit-linear-gradient(45deg, #FFD700, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 10px rgba(212, 175, 55, 0.2));
}

.service-content {
    flex-grow: 1;
}

.service-content h3 {
    color: var(--color-white);
    font-size: 28px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.service-sub {
    color: var(--color-gold);
    font-size: 14px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-block;
    padding-bottom: 5px;
}

.service-details li {
    margin-bottom: 15px;
    color: #bbb;
    font-size: 16px;
    line-height: 1.8;
    list-style: none;
    position: relative;
    padding-left: 25px;
}

.service-details li::before {
    content: '✦';
    color: var(--color-gold);
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 4px;
}

.service-details strong {
    color: #fff;
    font-weight: 600;
}

/* Why Choose Us Grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-card {
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 25px;
    text-align: center;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.why-card:hover {
    transform: translateY(-10px);
    background: #111;
    border-color: var(--color-gold);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 20px;
    font-family: var(--font-heading);
}

.why-card p {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

/* Connecting line design */
.process-steps::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 1px;
    background: rgba(212, 175, 55, 0.2);
    z-index: 0;
}

.step-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
    position: relative;
    z-index: 1;
    background: #050505;
    /* Mask line behind */
    padding: 0 10px;
}

.step-num {
    font-size: 50px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--color-gold);
    font-family: var(--font-heading);
    margin-bottom: 15px;
    opacity: 0.8;
}

.step-item h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 13px;
    color: #666;
}

.step-arrow {
    display: none;
    /* Hide old arrows */
}

/* Mobile Adjustments for Services */
@media (max-width: 900px) {

    .service-block,
    .service-block.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .service-block::before {
        width: 100%;
        height: 3px;
        top: 0;
        left: 0;
    }

    .service-block.reverse::before {
        left: 0;
        right: auto;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-details li {
        text-align: left;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-steps::after {
        display: none;
        /* No horizontal line on mobile */
    }

    .step-item {
        width: 100%;
        padding-bottom: 20px;
        border-bottom: 1px solid #222;
    }
}

@media (max-width: 500px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* Partner Logos Styles */
.coop-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.coop-logo-item {
    width: 160px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.coop-logo-item:hover {
    opacity: 1;
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.coop-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Original Color */
    filter: none;
    transition: all 0.4s ease;
}

.coop-logo-item:hover img {
    transform: scale(1.05);
    /* Slight zoom for interaction */
}

/* =========================================
   Text-Based School Plaques (Success Cases)
   ========================================= */
.school-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
    padding: 0 20px;
}

.school-item {
    background: linear-gradient(145deg, #161616, #0a0a0a);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.school-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    opacity: 0.5;
}

.school-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    background: linear-gradient(145deg, #202020, #0f0f0f);
}

.school-name {
    color: #ccc;
    font-size: 16px;
    font-family: var(--font-heading, "Noto Serif SC", serif);
    letter-spacing: 1px;
    line-height: 1.5;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.school-item:hover .school-name {
    color: var(--color-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.school-icon-small {
    font-size: 14px;
    color: var(--color-gold);
    margin-bottom: 8px;
    opacity: 0.5;
}

.school-item:hover .school-icon-small {
    opacity: 1;
}

@media (max-width: 600px) {
    .school-grid {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

/* Mobile Contact Link Styling (Hidden on Desktop) */
.mobile-contact-link {
    display: none;
    text-decoration: none;
    color: var(--color-gold);
    font-size: 14px;
    font-weight: 700;
    border: 1px solid var(--color-gold);
    padding: 6px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.mobile-contact-link i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .nav-bar-bottom {
        position: sticky;
        top: 0;
    }

    .mobile-contact-link {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        background: rgba(212, 175, 55, 0.1);
    }
}