        /* Kaaba Luum Section */
        .kaaba-luum-section {
            background: #EEFBFE;
            padding: 6rem 0;
            margin-top: -3rem; /* subtle overlap with previous section */
        }

        .kaaba-header-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .kaaba-text-content {
            padding-right: 2rem;
        }

        .kaaba-title {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 600;
            color: var(--green700);
            line-height: 1.2;
            margin-bottom: 2rem;
        }

        .location-info {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .location-icon {
            font-size: 1.2rem;
            color: #dc3545;
            margin-top: 0.1rem;
        }

        .location-text {
            flex: 1;
        }

        .location-main {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 0.3rem;
        }

        .location-sub {
            font-size: 0.9rem;
            color: #666;
            font-style: italic;
        }

        .location-divider {
            width: 60px;
            height: 3px;
            background: #dc3545;
            border-radius: 2px;
            margin-bottom: 2rem;
        }

        .kaaba-quote {
            font-size: 1.2rem;
            font-style: italic;
            color: #4a5568;
            line-height: 1.6;
            margin: 0;
            padding-left: 1.5rem;
            border-left: 3px solid rgba(47, 106, 86, 0.3);
        }

        .kaaba-image-content {
            position: relative;
        }

        .kaaba-image {
            width: 100%;
            height: auto;
        }

        /* Kaaba Carousel Styles */
        .kaaba-carousel {
            position: relative;
            width: 100%;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: var(--radius-lg);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
        }

        .carousel-slides {
            display: flex;
            transition: transform 0.5s ease-in-out;
            height: 400px; /* Set a consistent height */
        }

        .carousel-slide {
            min-width: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide .kaaba-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
            border-radius: 0; /* Remove border radius since container handles it */
        }

        /* Navigation Buttons */
        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            color: #1B444B;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 24px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-nav:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }

        .prev-btn {
            left: 15px;
        }

        .next-btn {
            right: 15px;
        }

        /* Dots Navigation */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 1rem;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: none;
            background: rgba(27, 68, 75, 0.3);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active,
        .dot:hover {
            background: #1B444B;
            transform: scale(1.2);
        }

        /* Responsive carousel */
        @media (max-width: 768px) {
            .carousel-container,
            .carousel-slides {
                height: 300px;
            }
            
            .carousel-nav {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            
            .prev-btn {
                left: 10px;
            }
            
            .next-btn {
                right: 10px;
            }
        }

        @media (max-width: 480px) {
            .carousel-container,
            .carousel-slides {
                height: 250px;
            }
        }

        .kaaba-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 20;
            margin-bottom: -8rem;
        }

        .feature-card {
            background: #ffffff;
            padding: 2.5rem 2rem;
            border-radius: var(--radius-lg);
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: #ECE8E5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: #1B444B;
        }

        .feature-title {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1B444B;
            margin-bottom: 0.4rem;
            line-height: 1.3;
        }

        .feature-text {
            font-size: 1rem;
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }

        .feature-accent {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #d4a574 0%, #f4d03f 50%, #d4a574 100%);
            border-radius: 2px;
            margin-top: 0.5rem;
        }

        /* Responsive Design for Kaaba Luum Section */
        @media (max-width: 992px) {
            .kaaba-header-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .kaaba-text-content {
                padding-right: 0;
            }
            
            .kaaba-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
                margin-bottom: -6rem;
            }
            
            .kaaba-luum-section {
                padding: 4rem 0;
            }
        }

        @media (max-width: 768px) {
            .kaaba-features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                margin-bottom: -4rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            
            .kaaba-header-content {
                gap: 2rem;
            }
        }
