 :root {
            --maroon: #70181f;
            --green: #427d3a;
            --black: #000000;
            --white: #ffffff;
            --light-bg: #f5f5f5;
            --text-gray: #555555;
            --border-light: #e0e0e0;
        }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-gray);
    background: #fafafa;
    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;
    /* padding: 120px 0 100px; */
    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;
}

.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;
} 
/* Section Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-tag {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .section-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--black);
            margin-bottom: 15px;
        }

        .section-desc {
            font-size: 1.1rem;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Overview Section */
        .overview-section {
            padding: 80px 0;
            background: var(--white);
        }

        .overview-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .overview-text h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--black);
            margin-bottom: 20px;
        }

        .overview-text p {
            font-size: 1.05rem;
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .overview-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        }

        .overview-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        /* Facilities Section */
        .facilities-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .facilities-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .facility-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid var(--border-light);
        }

        .facility-card:hover {
            transform: translateY(-10px);
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.15);
        }

        .facility-icon {
            width: 80px;
            height: 80px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .facility-card:hover .facility-icon {
            background: var(--maroon);
            transform: scale(1.1);
        }

        .facility-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .facility-card h4 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .facility-card p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.7;
        }

        /* Rooms Section */
        .rooms-section {
            padding: 80px 0;
            background: var(--white);
        }

        .room-card {
            background: var(--light-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .room-card:hover {
            transform: translateY(-10px);
            border-color: var(--maroon);
            box-shadow: 0 15px 40px rgba(112, 24, 31, 0.15);
        }

        .room-image {
            height: 250px;
            overflow: hidden;
        }

        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .room-card:hover .room-image img {
            transform: scale(1.1);
        }

        .room-content {
            padding: 30px;
        }

        .room-type {
            display: inline-block;
            background: var(--maroon);
            color: var(--white);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .room-content h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 15px;
        }

        .room-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .room-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            font-size: 0.95rem;
        }

        .room-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        /* Amenities Section */
        .amenities-section {
            padding: 80px 0;
            background: var(--black);
        }

        .section-header.light .section-tag {
            background: var(--white);
            color: var(--black);
        }

        .section-header.light .section-title {
            color: var(--white);
        }

        .section-header.light .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .amenities-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .amenity-box {
            background: var(--white);
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .amenity-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(66, 125, 58, 0.2);
        }

        .amenity-icon {
            font-size: 3rem;
            color: var(--maroon);
            margin-bottom: 15px;
        }

        .amenity-box h5 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .amenity-box p {
            font-size: 0.9rem;
            color: var(--text-gray);
        }

        /* Rules Section */
        .rules-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .rules-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .rule-card {
            background: var(--white);
            border-radius: 15px;
            padding: 35px;
            border-left: 5px solid var(--green);
        }

        .rule-card h4 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .rule-card h4 i {
            color: var(--green);
        }

        .rule-list {
            list-style: none;
            padding: 0;
        }

        .rule-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
        }

        .rule-list li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--green);
            font-size: 1.5rem;
            line-height: 1;
        }

        /* Gallery Section */
        .gallery-section {
            padding: 80px 0;
            background: var(--white);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .gallery-item-1 {
            border-radius: 15px;
            overflow: hidden;
            height: 280px;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .gallery-item-1:hover {
            transform: scale(1.05);
        }

        .gallery-item-1 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(112, 24, 31, 0.85);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .gallery-item-1:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 3rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .gallery-overlay span {
            color: var(--white);
            font-weight: 600;
        }

        /* Fees Section */
        .fees-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .fee-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .fee-card {
            background: var(--white);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            border: 3px solid var(--border-light);
            transition: all 0.3s ease;
        }

        .fee-card:hover {
            transform: translateY(-10px);
            border-color: var(--green);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        }

        .fee-card.featured {
            border-color: var(--maroon);
            background: var(--maroon);
            color: var(--white);
        }

        .fee-label {
            font-size: 1rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .fee-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--maroon);
            margin-bottom: 10px;
            line-height: 1;
        }

        .fee-card.featured .fee-amount {
            color: var(--white);
        }

        .fee-period {
            font-size: 0.95rem;
            color: var(--text-gray);
            margin-bottom: 20px;
        }

        .fee-card.featured .fee-period {
            color: rgba(255, 255, 255, 0.9);
        }

        .fee-features {
            list-style: none;
            padding: 0;
            text-align: left;
        }

        .fee-features li {
            padding: 8px 0;
            padding-left: 30px;
            position: relative;
            font-size: 0.9rem;
        }

        .fee-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: bold;
        }

        .fee-card.featured .fee-features li::before {
            color: var(--white);
        }

        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: var(--white);
        }

        .contact-boxes {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .contact-box {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .contact-box:hover {
            background: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transform: translateY(-10px);
        }

        .contact-icon {
            width: 70px;
            height: 70px;
            background: var(--green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .contact-icon i {
            font-size: 2rem;
            color: var(--white);
        }

        .contact-box h5 {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 12px;
        }

        .contact-box p {
            font-size: 1rem;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .contact-box a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-box a:hover {
            text-decoration: underline;
        }

        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            background: var(--green);
            text-align: center;
        }

        .cta-content h3 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 1.2rem;
            color: var(--white);
            margin-bottom: 35px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            color: var(--green);
            padding: 18px 45px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            background: var(--maroon);
            color: var(--white);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .facilities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .amenities-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .overview-content {
                grid-template-columns: 1fr;
            }

            .facilities-grid {
                grid-template-columns: 1fr;
            }

            .amenities-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .rules-grid {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .fee-cards {
                grid-template-columns: 1fr;
            }

            .contact-boxes {
                grid-template-columns: 1fr;
            }
        }