        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #0E4F8E;
            --secondary-blue: #1a6bb8;
            --accent-gold: #FFD700;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --gradient-start: #0E4F8E;
            --gradient-end: #1a88d4;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            background: #fff;
        }

        /* Top Bar */
        .top-bar {
            background: var(--primary-blue);
            padding: 10px 0;
            color: #fff;
        }

        .top-bar-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .top-bar-left i {
            margin-right: 5px;
            color: var(--accent-gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            color: #fff;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            color: var(--accent-gold);
            transform: translateY(-2px);
        }

        .top-bar-left a:hover {
            color: var(--accent-gold) !important;
        }

        /* Main Header */
        .main-header {
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-container img {
            height: 60px;
            width: auto;
            max-width: 280px;
            transition: transform 0.3s ease;
        }

        .logo-container:hover img {
            transform: scale(1.05);
        }

        /* Navigation */
        .main-nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: nowrap;
        }

        .main-nav a {
            color: var(--dark-text);
            text-decoration: none;
            font-weight: 600;
            font-size: 13.5px;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            padding: 10px 7px;
            position: relative;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .main-nav a:hover {
            color: var(--primary-blue);
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .main-nav a.active::after {
            width: 100%;
        }

        .nav-dropdown {
            position: relative;
        }

        .nav-dropdown > a {
            display: inline-block;
        }

        .nav-dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            min-width: 220px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            padding: 15px 0;
            padding-top: 20px;
            margin-top: 0;
            animation: fadeInDown 0.3s ease;
            z-index: 1000;
        }

        .nav-dropdown:hover .nav-dropdown-content {
            display: block;
        }

        .nav-dropdown-content::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 0;
            right: 0;
            height: 10px;
            background: transparent;
        }

        .nav-dropdown-content a {
            display: block;
            padding: 12px 20px;
            color: var(--dark-text);
            font-size: 13px;
        }

        .nav-dropdown-content a:hover {
            background: var(--light-bg);
            color: var(--primary-blue);
        }

        .mobile-menu-btn {
            display: none;
            background: var(--primary-blue);
            color: #fff;
            border: none;
            padding: 10px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 20px;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            padding: 80px 20px 60px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
            background-size: cover;
            opacity: 0.3;
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-section h1 {
            font-family: 'Oswald', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            animation: fadeInDown 0.8s ease;
        }

        .hero-section p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 30px;
            animation: fadeInUp 0.8s ease 0.2s both;
        }

        .hero-features {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 30px;
            animation: fadeInUp 0.8s ease 0.4s both;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #fff;
            font-weight: 500;
            transition: transform 0.3s ease;
        }

        .hero-feature:hover {
            transform: scale(1.1);
        }

        .hero-feature i {
            font-size: 24px;
            color: var(--accent-gold);
            animation: pulse 2s infinite;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Program Navigation Tabs */
        .program-nav {
            background: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-radius: 15px;
            margin: -40px auto 60px;
            max-width: 1200px;
            position: relative;
            z-index: 10;
            padding: 20px;
            animation: fadeInUp 0.8s ease 0.6s both;
        }

        .nav-tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .nav-tab {
            flex: 1;
            min-width: 180px;
            background: var(--light-bg);
            border: none;
            padding: 20px 15px;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            font-family: 'Oswald', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--dark-text);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .nav-tab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .nav-tab:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 30px rgba(14, 79, 142, 0.3);
        }

        .nav-tab:hover::before {
            left: 0;
        }

        .nav-tab:hover,
        .nav-tab.active {
            color: #fff;
        }

        .nav-tab.active::before {
            left: 0;
        }

        .nav-tab.active {
            box-shadow: 0 8px 25px rgba(14, 79, 142, 0.4);
            transform: translateY(-3px);
        }

        .nav-tab .age-range {
            display: block;
            font-size: 0.85rem;
            font-weight: 400;
            margin-top: 5px;
            opacity: 0.9;
        }

        /* Program Content */
        .program-content {
            display: none;
        }

        .program-content.active {
            display: block;
            animation: fadeInScale 0.6s ease both;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

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

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* Program Header */
        .program-header {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            padding: 40px;
            border-radius: 20px;
            margin-bottom: 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .program-header:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(14, 79, 142, 0.3);
        }

        .program-header::after {
            content: '⚽';
            position: absolute;
            right: 40px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 120px;
            opacity: 0.1;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: translateY(-50%) rotate(0deg); }
            to { transform: translateY(-50%) rotate(360deg); }
        }

        .program-header h2 {
            font-family: 'Oswald', sans-serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .program-header p {
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin: 60px 0 40px;
            position: relative;
        }

        .section-title h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: var(--primary-blue);
            text-transform: uppercase;
            display: inline-block;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 2px;
        }

        /* Modern Table */
        .modern-table-wrapper {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 40px;
            transition: all 0.3s ease;
        }

        .modern-table-wrapper:hover {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transform: translateY(-3px);
        }

        .modern-table {
            width: 100%;
            border-collapse: collapse;
        }

        .modern-table thead {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
        }

        .modern-table thead th {
            padding: 20px 15px;
            text-align: left;
            color: #fff;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }

        .modern-table tbody tr {
            border-bottom: 1px solid #e9ecef;
            transition: all 0.3s ease;
        }

        .modern-table tbody tr:hover {
            background: linear-gradient(to right, #f8f9fa, #fff);
            transform: scale(1.01);
        }

        .modern-table tbody td {
            padding: 20px 15px;
            font-size: 0.95rem;
        }

        .modern-table tbody tr:last-child {
            border-bottom: none;
        }

        .register-btn {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-gold), #ffa500);
            color: #fff;
            padding: 12px 28px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .register-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #ffa500, var(--accent-gold));
            transition: left 0.3s ease;
            z-index: -1;
        }

        .register-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
            text-decoration: none;
            color: #fff;
        }

        .register-btn:hover::before {
            left: 0;
        }

        /* Benefits Cards */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }

        .benefit-card {
            background: #fff;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 4px solid var(--primary-blue);
            animation: fadeInUp 0.6s ease both;
        }

        .benefit-card:nth-child(1) { animation-delay: 0.1s; }
        .benefit-card:nth-child(2) { animation-delay: 0.2s; }
        .benefit-card:nth-child(3) { animation-delay: 0.3s; }
        .benefit-card:nth-child(4) { animation-delay: 0.4s; }

        .benefit-card:hover {
            transform: translateY(-10px) rotate(1deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-top-color: var(--accent-gold);
        }

        .benefit-card i {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover i {
            transform: scale(1.2) rotate(10deg);
            color: var(--accent-gold);
        }

        .benefit-card h4 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--dark-text);
        }

        .benefit-card p {
            font-size: 0.95rem;
            color: #6c757d;
            line-height: 1.6;
        }

        /* Info Badge */
        .info-badge {
            display: inline-block;
            background: #e8f4fd;
            color: var(--primary-blue);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 5px;
        }

        /* Mobile Table Helper */
        .mobile-table-helper {
            display: none;
            background: #fff3cd;
            color: #856404;
            padding: 10px 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            text-align: center;
            font-size: 0.85rem;
            border: 1px solid #ffeaa7;
        }

        @media (max-width: 768px) and (min-width: 481px) {
            .mobile-table-helper {
                display: block;
            }
        }

        /* Footer */
        .footer {
            background: #2c3e50;
            color: #fff;
            padding: 60px 20px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--accent-gold);
        }

        .footer-logo img {
            max-width: 200px;
            margin-bottom: 20px;
        }

        .footer-about {
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-socials {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .footer-socials a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            transition: all 0.3s ease;
        }

        .footer-socials a:hover {
            background: var(--accent-gold);
            color: var(--primary-blue);
            transform: translateY(-5px) rotate(360deg);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(5px);
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 25px;
            outline: none;
        }

        .newsletter-form button {
            padding: 12px 30px;
            background: var(--accent-gold);
            color: var(--primary-blue);
            border: none;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            background: #fff;
            transform: scale(1.05);
        }

        .footer-section p a:hover {
            color: var(--accent-gold) !important;
            text-decoration: underline;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--accent-gold);
        }

        /* Scroll Progress Bar */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: var(--accent-gold);
            z-index: 9999;
            transition: width 0.1s ease;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .modern-table thead th:nth-child(1),
            .modern-table tbody td:nth-child(1) {
                display: none; /* Hide Program column on tablet */
            }
        }

        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero-section h1 {
                font-size: 2rem;
            }

            .hero-features {
                gap: 20px;
            }

            .hero-feature {
                font-size: 0.9rem;
            }

            .nav-tab {
                min-width: 100%;
            }

            .program-header h2 {
                font-size: 1.8rem;
            }

            .program-header::after {
                font-size: 80px;
                right: 20px;
            }

            /* Mobile-Optimized Table */
            .modern-table-wrapper {
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }

            .modern-table {
                font-size: 0.75rem;
                min-width: 100%;
            }

            .modern-table thead th,
            .modern-table tbody td {
                padding: 10px 6px;
                white-space: nowrap;
            }

            /* Hide less important columns on mobile */
            .modern-table thead th:nth-child(1),
            .modern-table tbody td:nth-child(1),
            .modern-table thead th:nth-child(6),
            .modern-table tbody td:nth-child(6) {
                display: none;
            }

            /* Make dates more compact */
            .modern-table tbody td:nth-child(5) {
                font-size: 0.7rem;
                line-height: 1.3;
                max-width: 120px;
                white-space: normal;
            }

            .register-btn {
                padding: 8px 16px;
                font-size: 0.75rem;
                white-space: nowrap;
            }

            /* Card-style table for better mobile experience */
            .mobile-table-card {
                display: none;
            }

            .top-bar-content {
                flex-direction: column;
                gap: 10px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

        /* Alternative: Card-Based Table for Very Small Screens */
        @media (max-width: 480px) {
            .modern-table-wrapper {
                overflow: visible;
            }

            .modern-table thead {
                display: none;
            }

            .modern-table,
            .modern-table tbody,
            .modern-table tr,
            .modern-table td {
                display: block;
                width: 100%;
            }

            .modern-table tr {
                margin-bottom: 20px;
                border: 2px solid var(--primary-blue);
                border-radius: 10px;
                padding: 15px;
                background: #fff;
            }

            .modern-table tbody td {
                text-align: left !important;
                padding: 8px 0;
                border: none;
                white-space: normal;
                max-width: 100%;
            }

            .modern-table tbody td::before {
                content: attr(data-label);
                font-weight: 700;
                color: var(--primary-blue);
                display: block;
                margin-bottom: 5px;
                text-transform: uppercase;
                font-size: 0.7rem;
                letter-spacing: 0.5px;
            }

            .modern-table tbody td:nth-child(1),
            .modern-table tbody td:nth-child(6) {
                display: block;
            }

            .register-btn {
                display: block;
                width: 100%;
                text-align: center;
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 30px 30px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: rotate(90deg);
}

.mobile-menu-content a {
    display: block;
    padding: 15px 0;
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.mobile-menu-content a:hover {
    color: var(--primary-blue);
    padding-left: 10px;
}

.mobile-dropdown-content {
    padding-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-content.active {
    max-height: 500px;
}

.mobile-dropdown-content a {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Rent Online Button */
.rent-online-btn {
    background: linear-gradient(135deg, var(--accent-gold), #ffa500) !important;
    color: var(--primary-blue) !important;
    padding: 11px 20px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap !important;
}

.rent-online-btn::after {
    display: none !important;
}

.rent-online-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
    color: var(--primary-blue) !important;
}

/* Better responsive navigation */
@media (max-width: 1200px) {
    .main-nav {
        gap: 10px;
    }
    
    .main-nav a {
        font-size: 12px;
        padding: 10px 6px;
    }
    
    .rent-online-btn {
        font-size: 11px !important;
        padding: 10px 18px !important;
    }
}

@media (max-width: 1024px) {
    .header-content {
        padding: 10px 15px;
    }
    
    .logo-container img {
        height: 60px;
    }
    
    .main-nav {
        gap: 8px;
    }
    
    .main-nav a {
        font-size: 11px;
        padding: 8px 5px;
    }
}

/* ===================================
   Image Gallery & Slider Component
   =================================== */

/* Gallery Container */
.image-gallery {
    margin: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    color: #fff;
    margin: 0;
    font-size: 14px;
}

/* Image Slider */
.image-slider {
    position: relative;
    max-width: 100%;
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
    position: relative;
}

.slider-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.slider-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 30px;
}

.slider-caption h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-size: 20px;
}

.slider-nav:hover {
    background: var(--accent-gold);
    color: var(--primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-blue);
    width: 30px;
    border-radius: 6px;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-gold);
    color: var(--primary-blue);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: #fff;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    font-size: 24px;
}

.lightbox-nav:hover {
    background: var(--accent-gold);
}

.lightbox-nav.prev {
    left: 30px;
}

.lightbox-nav.next {
    right: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-slide img {
        height: 250px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-caption {
        padding: 15px;
    }
    
    .slider-caption h3 {
        font-size: 1.2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
