/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Light Theme dengan Aksen Hijau PUSURA */
:root {
    --primary-green: #2ECC71;
    --dark-green: #27AE60;
    --light-green: #A8E6CF;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --text-dark: #1a1a1a;
    --text-gray: #6c757d;
    --text-light-gray: #999999;
    --border-gray: #dee2e6;
    --shadow: rgba(0, 0, 0, 0.1);
    
    /* Fonts */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}


/* ================================================================
   NAVIGATION
   ================================================================ */
.navbar {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    transition: all 0.3s;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0.95), rgba(255,255,255,0.3));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-tagline {
    font-size: 4rem;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 700px;
    line-height: 1.1;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 4;
    max-width: 220px;
    animation: fadeInRight 1s ease-out;
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
}

.hero-logo img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.4));
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    display: block !important;
}

.hero-logo::before,
.hero-logo::after,
.hero-logo img::before,
.hero-logo img::after {
    display: none !important;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.text-center {
    text-align: center;
}

/* ================================================================
   ABOUT SECTION
   ================================================================ */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    min-height: 500px;
    height: 500px;
    position: relative;
    width: 100%;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-image.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: #2ECC71;
    width: 30px;
    border-radius: 6px;
}

.about-text h2 {
    color: var(--primary-green);
    font-weight: 400;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(46,204,113,0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.btn-link {
    color: var(--primary-green);
    font-weight: 500;
    padding: 0;
}

.btn-link:hover {
    color: var(--dark-green);
}

/* ================================================================
   COACHING STAFF SECTION
   ================================================================ */
.coaches-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.coach-card {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(46,204,113,0.3);
}

.coach-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.coach-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 400;
    font-size: 1.4rem;
}

.coach-position {
    color: var(--text-light-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.coach-bio {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.6;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ================================================================
   PROGRAMS SECTION
   ================================================================ */
.programs-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background-color: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid var(--border-gray);
    transition: all 0.3s;
}

.program-card:hover {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.program-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.program-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 400;
}

.program-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-weight: 400;
}

/* ================================================================
   PLAYERS SECTION
   ================================================================ */
.players-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.player-category-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px var(--shadow);
}

.player-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(46,204,113,0.3);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
}

.category-info {
    padding: 2rem;
    text-align: center;
}

.category-info h3 {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* ================================================================
   ACHIEVEMENTS SECTION
   ================================================================ */
.achievements-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (min-width: 1200px) {
    .achievements-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 900px) and (max-width: 1199px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 600px) and (max-width: 899px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.achievement-card {
    background-color: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    box-shadow: 0 2px 10px var(--shadow);
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow);
}

.achievement-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.achievement-info {
    padding: 1.5rem;
}

.achievement-info h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.achievement-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.achievement-date {
    color: var(--text-light-gray);
    font-size: 0.85rem;
    font-weight: 400;
}

/* ================================================================
   VIDEO SECTION
   ================================================================ */
.video-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.video-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

/* Video + Instagram 2-kolom layout */
.video-ig-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: stretch;
}

.video-col-wrap {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ig-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.ig-col-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.ig-col-title i {
    color: #E1306C;
}

.ig-embed-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
}

/* Banner di news.php - full width 1 kolom */
.banners-grid-news {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.ig-embed-wrap iframe {
    width: 100%;
    height: 600px;
    min-height: unset;
    border: none;
    border-radius: 10px;
    display: block;
}

.ig-follow {
    margin-top: 1rem;
    text-align: center;
}

.ig-placeholder {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
    color: var(--text-light-gray);
    gap: 1rem;
}

.ig-placeholder-icon {
    font-size: 4rem;
    color: #E1306C;
    opacity: 0.3;
}

.ig-placeholder p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light-gray);
}

@media (max-width: 768px) {
    .video-ig-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   NEWS SECTION
   ================================================================ */
.news-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.news-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px var(--shadow);
    border: 1px solid var(--border-gray);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(46,204,113,0.2);
}

.news-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-date {
    color: var(--text-light-gray);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.news-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 400;
}

.news-content p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

/* ================================================================
   BANNERS SECTION
   ================================================================ */
.banners-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.banners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.banner-card {
    position: relative;
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.banner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.2);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    overflow: hidden;
}

.banner-slide {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.banner-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.banner-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-dot.active {
    background: #2ECC71;
    width: 25px;
    border-radius: 5px;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 0;
    border-top: none;
}

.footer-content-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-about .footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-about h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.footer-about p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #cccccc;
}

.footer-contact .contact-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact .contact-item a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact .contact-item a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #2ECC71;
    color: #1a1a1a;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: none;
}

.social-links a:hover {
    background-color: #27AE60;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.4);
}

.footer-bottom {
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: #888888;
    font-size: 0.9rem;
    margin: 0;
}

/* ================================================================
   MODAL
   ================================================================ */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    overflow: auto;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 700px;
    position: relative;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
}

.close {
    color: var(--text-gray);
    float: right;
    font-size: 28px;
    font-weight: 400;
    cursor: pointer;
}

.close:hover {
    color: var(--primary-green);
}

.modal-body {
    color: var(--text-gray);
    line-height: 1.8;
    margin-top: 1rem;
    font-weight: 400;
}

.modal-body h2 {
    color: var(--primary-green);
    font-weight: 400;
}

/* ================================================================
   PLACEHOLDER & MISC
   ================================================================ */
.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-gray);
    color: var(--text-light-gray);
    font-size: 3rem;
}

/* ================================================================
   PAGE HEADER (players.php, news.php)
   ================================================================ */
.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 3px solid var(--primary-green);
}

.page-header h1 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.breadcrumb {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

.breadcrumb a {
    color: var(--primary-green);
}

.breadcrumb a:hover {
    color: var(--dark-green);
}

/* ================================================================
   PLAYERS DETAIL PAGE
   ================================================================ */
.players-detail-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.players-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.player-detail-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow);
}

.player-photo {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.player-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jersey-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-green);
    color: var(--bg-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.player-info {
    padding: 1.5rem;
}

.player-info h3 {
    color: var(--primary-green);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.player-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-gray);
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 400;
}

.stat-value {
    color: var(--text-dark);
    font-weight: 500;
}

.player-performance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.perf-item {
    text-align: center;
}

.perf-value {
    display: block;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.perf-label {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 400;
}

.player-bio {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    font-weight: 400;
}

/* ================================================================
   NEWS LIST PAGE
   ================================================================ */
.news-list-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination-btn {
    background-color: var(--bg-white);
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s;
    border: 1px solid var(--primary-green);
}

.pagination-btn:hover {
    background-color: var(--primary-green);
    color: var(--bg-white);
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
}

.pagination-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg-white);
    color: var(--text-gray);
    transition: all 0.3s;
    border: 1px solid var(--border-gray);
    font-weight: 400;
}

.pagination-number:hover,
.pagination-number.active {
    background-color: var(--primary-green);
    color: var(--bg-white);
    border-color: var(--primary-green);
    font-weight: 500;
}

/* ================================================================
   NEWS DETAIL PAGE
   ================================================================ */
.news-detail-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.news-detail {
    max-width: 800px;
    margin: 0 auto;
}

.news-header {
    margin-bottom: 2rem;
}

.news-header h1 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.news-featured-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
}

.news-featured-image img {
    width: 100%;
    height: auto;
}

.news-body {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

.news-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
}

.related-news {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-gray);
}

.related-news h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 2rem;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.related-news-card {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    transition: background-color 0.3s;
}

.related-news-card:hover {
    background-color: var(--bg-gray);
}

.related-news-card img {
    width: 80px;
    height: 80px;
    border-radius: 5px;
    object-fit: cover;
}

.related-news-card h4 a {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
}

.related-news-card h4 a:hover {
    color: var(--primary-green);
}

/* ================================================================
   NO DATA MESSAGE
   ================================================================ */
.no-data {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--bg-light);
    border-radius: 10px;
}

.no-data p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* ================================================================
   RESPONSIVE — TABLET (769px - 1024px)
   ================================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        height: 500px;
    }

    .hero-tagline {
        font-size: 3rem;
        max-width: 500px;
    }

    .hero-logo {
        max-width: 160px;
        right: 3%;
    }
}

/* ================================================================
   RESPONSIVE — MOBILE (max 768px)
   iPhone 13 Pro Max = 428px lebar layar
   ================================================================ */
@media (max-width: 768px) {

    /* === HAMBURGER === */
    .hamburger {
        display: flex;
    }

    /* === NAVBAR === */
    .nav-content {
        padding: 0.75rem 0;
    }

    .logo img {
        height: 38px;
    }

    .logo span {
        font-size: 1.2rem;
    }

    /* Mobile menu — full screen overlay */
    .nav-menu {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100vh;
        background-color: #ffffff;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0 !important;
        z-index: 999;
        justify-content: flex-start;
        box-shadow: none;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 1.2rem 0 !important;
        border-bottom: 1px solid var(--border-gray) !important;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    /* === CONTAINER === */
    .container {
        padding: 0 16px;
    }

    /* === HERO === */
    .hero-section {
        height: auto;
        min-height: 100svh;
        padding: 80px 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .hero-image img {
        object-position: center center;
    }

    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.3) 60%,
            rgba(0,0,0,0.55) 100%
        ) !important;
    }

    .hero-tagline {
        font-size: 2.4rem !important;
        color: #ffffff !important;
        max-width: 85%;
        line-height: 1.15;
        text-shadow: 0 2px 8px rgba(0,0,0,0.6);
        padding: 0 4px;
    }

    .hero-logo {
        position: absolute !important;
        bottom: 30px !important;
        right: 20px !important;
        top: auto !important;
        transform: none !important;
        max-width: 90px !important;
        animation: none;
        opacity: 0.92;
    }

    /* === SECTION TITLES === */
    .section-title {
        font-size: 2rem !important;
        margin-bottom: 1.5rem !important;
    }

    /* === ABOUT — FIX WHITESPACE BESAR === */
    .about-section {
        padding: 50px 0;
    }

    .about-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .about-image {
        height: 280px !important;
        min-height: 280px !important;
        width: 100%;
    }

    .about-slider {
        border-radius: 10px;
    }

    .slider-dots {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .dot.active {
        width: 24px;
    }

    /* === COACHES === */
    .coaches-section {
        padding: 50px 0;
    }

    .coaches-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .coach-image {
        height: 260px;
    }

    /* === PROGRAMS === */
    .programs-section {
        padding: 50px 0;
    }

    .programs-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }

    .program-card {
        padding: 2rem 1.5rem;
    }

    /* === PLAYERS / CATEGORIES === */
    .players-section {
        padding: 50px 0;
    }

    .players-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .category-image {
        height: 200px;
    }

    /* === ACHIEVEMENTS === */
    .achievements-section {
        padding: 50px 0;
    }

    .achievements-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    .achievement-image {
        height: 150px;
    }

    .achievement-info h3 {
        font-size: 1rem;
    }

    /* === VIDEO === */
    .video-section {
        padding: 40px 0;
    }

    .videos-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* === NEWS === */
    .news-section {
        padding: 50px 0;
    }

    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    /* === BANNERS === */
    .banners-section {
        padding: 40px 0;
    }

    .banners-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .banner-slider {
        padding-bottom: 50% !important;
        height: 0 !important;
    }

    .banner-dots {
        bottom: 10px;
        gap: 6px;
    }

    .banner-dot {
        width: 8px;
        height: 8px;
    }

    .banner-dot.active {
        width: 20px;
    }

    /* === FOOTER === */
    .footer-content-new {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }

    .footer {
        padding: 2.5rem 0 0;
    }

    /* === MODAL === */
    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
        width: 90%;
    }

    /* === PAGE HEADER === */
    .page-header h1 {
        font-size: 2rem;
    }

    /* === PLAYERS DETAIL === */
    .players-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .player-photo {
        height: 280px;
    }

    .perf-value {
        font-size: 1.8rem;
    }
}

/* ================================================================
   EXTRA SMALL — iPhone SE & layar < 390px
   ================================================================ */
@media (max-width: 390px) {
    .hero-tagline {
        font-size: 2rem !important;
    }

    .hero-logo {
        max-width: 70px !important;
        bottom: 20px !important;
        right: 15px !important;
    }

    .achievements-grid {
        grid-template-columns: 1fr !important;
    }

    .section-title {
        font-size: 1.8rem !important;
    }

    .container {
        padding: 0 12px;
    }
}

/* ================================================================
   TOUCH DEVICE — hilangkan efek hover
   ================================================================ */
@media (hover: none) and (pointer: coarse) {
    .coach-card:hover,
    .program-card:hover,
    .player-category-card:hover,
    .achievement-card:hover,
    .news-card:hover,
    .banner-card:hover,
    .video-card:hover {
        transform: none;
        box-shadow: 0 2px 10px var(--shadow);
    }

    .btn:hover {
        transform: none;
    }
}

/* ================================================================
   FLOATING WHATSAPP BUTTON
   ================================================================ */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

.floating-wa i {
    font-size: 32px;
    color: #fff;
    line-height: 1;
}

.floating-wa::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}


/* ================================================================
   BANNER + NEWS SECTION (sebelum Tentang Kami)
   ================================================================ */
.banners-news-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.banners-news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* --- Left: Banner Slider --- */
.bns-banner-col {
    display: flex;
    flex-direction: column;
}

.banner-slider-wrap {
    position: relative;
    width: 100%;
    flex: 1;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    background: transparent;
}

.banner-slider-wrap .banner-slider {
    position: relative;
    width: 100%;
    /* Aspect ratio 2667:1584 ≈ 59.4% */
    padding-bottom: 59.4%;
    height: 0;
    overflow: hidden;
}

/* img langsung sebagai bns-slide */
img.bns-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1s ease-in-out;
    display: block;
    opacity: 0;
    z-index: 0;
}

img.bns-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

/* <a> wrapper sebagai bns-slide */
a.bns-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: 0;
}

a.bns-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

a.bns-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bns-slide.active {
    opacity: 1 !important;
    z-index: 1 !important;
}

/* Dots reuse .banner-dots / .banner-dot from existing CSS */

/* --- Right: News List --- */
.bns-news-col {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 14px;
    box-shadow: 0 4px 15px var(--shadow);
    padding: 1.4rem 1.6rem;
    overflow: hidden;
}

.bns-news-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.7rem;
    border-bottom: 2px solid var(--primary-green, #2ECC71);
}

.bns-news-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.bns-news-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-gray, #eee);
    text-decoration: none;
    transition: background 0.2s;
}

.bns-news-item:last-child {
    border-bottom: none;
}

.bns-news-item:hover .bns-news-info h4 {
    color: var(--primary-green, #2ECC71);
}

.bns-news-thumb {
    width: 72px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f0f0;
}

.bns-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bns-news-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.bns-news-info {
    flex: 1;
    min-width: 0;
}

.bns-news-date {
    font-size: 0.75rem;
    color: var(--text-light-gray, #999);
    display: block;
    margin-bottom: 0.2rem;
}

.bns-news-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.bns-news-more {
    margin-top: 1rem;
    text-align: center;
}

.bns-news-more .btn {
    font-size: 0.8rem;
    padding: 8px 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .banners-news-grid {
        grid-template-columns: 1fr;
    }

    .banner-slider-wrap .banner-slider {
        padding-bottom: 59.4%;
    }
}