:root {
    --hit-red: #c41e3a;
    --hit-green: #1a5f2f;
    --dark-red: #8b2c38;
    --dark-green: #0f3d1f;
    --black: #000000;
    --white: #ffffff;
    --light-bg: #f5f5f5;
    --text-gray: #666666;
    --text-dark: #333333;
    --border-light: #d0d0d0;
    --light-gray: #f0f0f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background: var(--light-bg);
    overflow-x: hidden;
}

/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0.68)), url(../assets/image/bg.webp?w=1200&h=600&fit=crop) center / cover;
    position: relative;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 120px 0 100px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 30px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--white);
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.welcome-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hit-red);
    margin-bottom: 25px;
}

.welcome-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    text-align: justify;
}

.welcome-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Benefits Box */
.benefits-box {
    background: linear-gradient(135deg, var(--hit-red) 0%, var(--dark-red) 100%);
    border-radius: 8px;
    padding: 50px;
    margin: 60px 0;
    border: 3px solid var(--hit-green);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.15);
}

.benefits-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1.05rem;
    line-height: 1.6;
}

.benefits-item:last-child {
    margin-bottom: 0;
}

.star-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* Info Section with Carousel */
.info-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

/* Carousel Styles */
.carousel-wrapper {
    position: relative;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: var(--light-gray);
}

.carousel-slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide:hover .carousel-image {
    filter: brightness(0.95);
}

.fullview-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--hit-red);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
    border: none;
    z-index: 10;
}

.fullview-btn:hover {
    background: var(--hit-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(26, 95, 47, 0.4);
}

.fullview-btn i {
    font-size: 1.1rem;
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--hit-red);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 20;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.carousel-btn:hover {
    background: var(--hit-green);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(26, 95, 47, 0.4);
}

.carousel-prev {
    left: 15px;
}

.carousel-next {
    right: 15px;
}

/* Carousel Indicators */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--hit-red);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.indicator.active {
    background: var(--hit-red);
    transform: scale(1.3);
    box-shadow: 0 3px 8px rgba(196, 30, 58, 0.4);
}

.indicator:hover {
    background: var(--hit-red);
}

.info-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
}

/* Modal Styling */
.modal-content {
    border: 3px solid var(--hit-red);
    border-radius: 12px;
    background: var(--white);
}

.modal-header {
    background: linear-gradient(135deg, var(--hit-red) 0%, var(--dark-red) 100%);
    color: var(--white);
    border-bottom: 3px solid var(--hit-green);
    border-radius: 9px 9px 0 0;
}

.modal-title {
    font-weight: 700;
    font-size: 1.3rem;
}

.modal-header .close {
    color: var(--white);
    opacity: 1;
    font-size: 1.8rem;
}

.modal-header .close:hover {
    color: var(--hit-green);
}

.modal-body {
    padding: 30px;
    background: var(--light-gray);
}

.modal-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hit-red);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.facilities-heading {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    margin: 40px 0 20px 0;
}

/* Features Box */
.features-box {
    background: linear-gradient(135deg, var(--hit-red) 0%, var(--dark-red) 100%);
    border-radius: 8px;
    padding: 50px;
    border: 3px solid var(--hit-green);
    box-shadow: 0 5px 20px rgba(196, 30, 58, 0.15);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.7;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.star {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Dining Section */
.dining-section {
    padding: 80px 0;
    background: var(--white);
}

.dining-section p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
    margin-bottom: 25px;
}

.dining-section p:last-child {
    margin-bottom: 0;
}

/* Downloads Section */
.downloads-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.download-card {
    background: var(--white);
    border: 3px solid var(--hit-red);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.15);
    border-color: var(--hit-green);
}

.download-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--hit-red);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--hit-red);
}

.download-card:hover h4 {
    color: var(--hit-green);
    border-color: var(--hit-green);
}

.download-list {
    list-style: none;
    padding: 0;
}

.download-list li {
    margin-bottom: 15px;
}

.download-list a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.download-list a:hover {
    color: var(--hit-red);
    transform: translateX(5px);
}

.download-list i {
    color: var(--hit-red);
}

.download-list a:hover i {
    color: var(--hit-green);
}

/* Administration Section */
.administration-section {
    padding: 80px 0;
    background: var(--white);
}

.accordion {
    margin-top: 50px;
}

.accordion-item {
    margin-bottom: 0;
    border: 2px solid var(--hit-red);
    border-bottom: none;
    border-radius: 0;
    background: var(--white);
}

.accordion-item:last-child {
    border-bottom: 2px solid var(--hit-red);
}

.accordion-button {
    background: var(--hit-red);
    color: var(--white);
    padding: 18px 25px;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.accordion-button:hover {
    background: var(--hit-green);
}

.accordion-button.ladies {
    background: var(--hit-green);
}

.accordion-button.ladies:hover {
    background: var(--hit-red);
}

.accordion-button:not(.collapsed) {
    background: var(--hit-green);
}

.plus-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.accordion-collapse {
    border-top: 2px solid var(--hit-red);
}

.accordion-body {
    padding: 30px 25px;
    background: var(--light-gray);
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.admin-table thead {
    background: var(--hit-green);
}

.admin-table th {
    color: var(--white);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    border: 1px solid var(--border-light);
}

.admin-table td {
    padding: 15px;
    border: 1px solid var(--border-light);
    color: var(--text-gray);
}

.admin-table tbody tr:nth-child(odd) {
    background: var(--light-gray);
}

.admin-table tbody tr:hover {
    background: rgba(196, 30, 58, 0.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact-box {
    background: var(--white);
    border: 3px solid var(--hit-red);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-box:hover {
    border-color: var(--hit-green);
    box-shadow: 0 8px 30px rgba(26, 95, 47, 0.15);
    transform: translateY(-5px);
}

.contact-box h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--hit-red);
    margin-bottom: 20px;
}

.contact-box:hover h4 {
    color: var(--hit-green);
}

.contact-box p {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-box a {
    color: var(--hit-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: var(--hit-green);
    text-decoration: underline;
}

.contact-video {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-video iframe {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--hit-red);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .welcome-content {
        grid-template-columns: 1fr;
    }

    .welcome-text h2 {
        font-size: 2rem;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefits-box,
    .features-box {
        padding: 30px;
    }

    .contact-video iframe {
        width: 100%;
        height: auto;
    }

    .carousel-container {
        height: 250px;
    }

    .carousel-indicators {
        bottom: 10px;
        gap: 8px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .fullview-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .welcome-text h2 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .carousel-container {
        height: 200px;
    }

    .benefits-box,
    .features-box {
        padding: 20px;
    }

    .carousel-indicators {
        gap: 5px;
    }
}