 /* :root {
            --dark: #1a1a2e;
            --primary: #ff6a3e;
            --primaryLight: rgb(244, 229, 201);
            --secondary: #34a853;
            --secondaryLight: #e6f4ea;
            --light: #ffffff;
            --text: #333333;
            --textLight: #5f6368;
            --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            --sectionPadding: 5rem 2rem;
            --headerFontSize: 2.5rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        } */

        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--light);
            background-color: var(--primaryLight);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Hero Carousel Section */
        #grc-explore-hero {
            height: 85vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(255, 106, 62, 0.5)); */
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--light);
            max-width: 800px;
            padding: 2rem;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            font-weight: 300;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .hero-cta {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .carousel-nav {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 1rem;
            z-index: 3;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-dot.active {
            background: var(--light);
            transform: scale(1.3);
        }

        /* Content Split Section */
        #grc-explore-intro {
            padding: var(--sectionPadding);
            color: var(--text);
            background-color: var(--light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .grc-explore-intro-content {
            animation: slideInLeft 1s ease-out;
        }

        .grc-explore-intro-image {
            animation: slideInRight 1s ease-out;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            position: relative;
        }

        .grc-explore-intro-placeholder {
            width: 100%;
            height: 400px;
            background: url("https://images.unsplash.com/photo-1625994761169-bf23651dfb2b?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: var(--text);
            border-radius: 20px;
        }

        @keyframes slideInLeft {
            0% { opacity: 0; transform: translateX(-50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            0% { opacity: 0; transform: translateX(50px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        .grc-explore-intro-heading {
            font-size: var(--headerFontSize);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark);
            position: relative;
        }

        .grc-explore-intro-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        .grc-explore-intro-text {
            font-size: 1.2rem;
            color: var(--textLight);
            line-height: 1.8;
        }

        /* Ghana Tourist Sites Section */
        #ghana-sites {
            background: linear-gradient(135deg, var(--primaryLight), var(--light));
            padding: var(--sectionPadding);
            color: var(--text);
        }

        .ghana-sites-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .ghana-sites-heading {
            text-align: center;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
            /* background: linear-gradient(45deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text; */
        }

        .ghana-sites-subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: var(--textLight);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .ghana-sites-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .ghana-site-card {
            background: var(--light);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            cursor: pointer;
            position: relative;
        }

        .ghana-site-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .ghana-site-image {
            width: 100%;
            height: 250px;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .ghana-site-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: linear-gradient(135deg, rgba(255, 106, 62, 0.3), rgba(52, 168, 83, 0.3)); */
            opacity: 0;
            transition: var(--transition);
        }

        .ghana-site-card:hover .ghana-site-image::before {
            opacity: 1;
        }

        .ghana-site-content {
            padding: 1.5rem;
        }

        .ghana-site-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--dark);
        }

        .ghana-site-location {
            color: var(--primary);
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.9rem;
        }

        .ghana-site-description {
            color: var(--textLight);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        /* Cards Grid Section */
        #grc-explore-grid {
            background-color: var(--secondaryLight);
            padding: var(--sectionPadding);
            color: var(--text);
        }

        .grc-explore-grid-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .grc-explore-grid-heading {
            text-align: center;
            font-size: var(--headerFontSize);
            font-weight: 700;
            margin-bottom: 3rem;
            color: var(--dark);
        }

        .grc-explore-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .grc-explore-card {
            background: var(--light);
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .grc-explore-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .grc-explore-card-icon {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            display: block;
        }

        .grc-explore-card-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .grc-explore-card-description {
            color: var(--textLight);
            line-height: 1.6;
        }

        /* Call to Action Section */
        #grc-explore-cta {
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            padding: 3rem;
            text-align: center;
            color: var(--light);
            position: relative;
            overflow: hidden;
        }

        .grc-explore-cta-content {
            position: relative;
            z-index: 2;
            max-width: 600px;
            margin: 0 auto;
        }

        .grc-explore-cta-heading {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .grc-explore-cta-btn {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: var(--primary);
            color: var(--light);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        }

        .grc-explore-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .ghana-sites-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            #grc-explore-intro {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .grc-explore-cards {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .ghana-sites-grid {
                grid-template-columns: 1fr;
            }

            .grc-explore-cta-heading {
                font-size: 2rem;
            }

            :root {
                --sectionPadding: 3rem 1rem;
                --headerFontSize: 2rem;
            }
        }

        /* Scroll animations */
        .grc-explore-animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .grc-explore-animate-on-scroll.grc-explore-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating action button */
        .grc-explore-fab {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
            z-index: 1000;
        }

        .grc-explore-fab:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        }