        :root {
            --primary-yellow: #FFD700;
            --accent-black: #1a1a1a;
            --pure-white: #ffffff;
            --soft-gray: #f8f9fa;
            --success-green: #28a745;
            --text-dark: #333333;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.8)), 
                        url('https://images.unsplash.com/photo-1661345979331-b8178d997eae?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            color: var(--pure-white);
            padding: 100px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary-yellow);
        }

        .hero-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* Section Styling */
        .section-title {
            position: relative;
            margin-bottom: 40px;
            padding-bottom: 15px;
            color: var(--accent-black);
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--primary-yellow);
        }

        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Tempo Card Styling */
        .tempo-card {
            background: var(--pure-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            height: 100%;
            padding: 0px !important;
        }

        .tempo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .tempo-img {
            height: 200px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .tempo-card-body {
            padding: 25px;
        }

        .tempo-card h3 {
            color: var(--accent-black);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }

        .tempo-card ul {
            padding-left: 20px;
            margin-bottom: 0;
        }

        .tempo-card li {
            margin-bottom: 8px;
        }

        /* Capacity Badge */
        .capacity-badge {
            background-color: var(--primary-yellow);
            color: var(--accent-black);
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Features Section */
        .features-section {
            background-color: var(--pure-white);
            padding: 80px 0;
        }

        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }

        .feature-box:hover {
            background-color: var(--soft-gray);
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }

        /* Luxury Features Section */
        .luxury-features {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--soft-gray) 0%, var(--pure-white) 100%);
        }

        .luxury-card {
            background: var(--pure-white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
            border-top: 4px solid var(--primary-yellow);
        }

        .luxury-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .luxury-icon {
            font-size: 2.5rem;
            color: var(--success-green);
            margin-bottom: 20px;
        }

        /* Destinations Section */
        .destinations-section {
            padding: 80px 0;
        }

        .destination-card {
            background: var(--pure-white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            /* height: 100%; */
            padding: 0px !important;
            border-top: transparent;
        }

        .destination-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .destination-img {
            height: 280px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }

        .destination-card-body {
            padding: 20px;
            padding-bottom: 0px;
             padding-bottom: 20px !important;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), 
                        url('https://images.unsplash.com/photo-1598890777034-bd5c1b138c0e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: var(--pure-white);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }

        .btn-primary-custom {
            background-color: var(--primary-yellow);
            color: var(--accent-black);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-primary-custom:hover {
            background-color: #e6c200;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Footer */
        .footer {
            background-color: var(--accent-black);
            color: var(--pure-white);
            padding: 60px 0 30px;
        }

        .footer h5 {
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }

        .footer a {
            color: var(--pure-white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: var(--primary-yellow);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.2rem;
            }
            
            .hero-section p {
                font-size: 1rem;
            }
        }
   