    .section-heading {
        font-weight: bold;
        text-shadow: -2px -2px 0 #ffffff, 2px -2px 0 #ffffff, -2px 2px 0 #ffffff, 2px 2px 0 #ffffff, -3px 0px 0 #ffffff, 3px 0px 0 #ffffff, 0px -3px 0 #ffffff, 0px 6px 7px #c5c5c5;
        color: #000000 !important;
        text-align: center;
        line-height: 35px;
    }

    .section-heading span {
        font-family: "Covered By Your Grace", cursive;
        letter-spacing: 3px
    }

    /* Why Choose Section */
    .why-choose {
        background: #edf8ff;
        padding: 70px 20px;
        margin: 50px 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
        margin-top: 35px;
    }

    .feature-box {
        background: white;
        padding: 25px;
        border-radius: 8px;
        text-align: center;
    }

    .feature-icon {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .feature-box h3 {
        color: #000000;
        font-weight: 500;
        margin-bottom: 12px;
        font-size: 18px;
    }

    .feature-box p {
        color: #666;
        font-size: 14px;
        line-height: 1.6;
    }

    /* Best Time Section */
    .best-time {
        margin: 50px 0;
        padding: 50px 20px;
        background: white;
    }

    .season-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }

    .season-card {
        background: #f9f9f9;
        border-left: 4px solid #ffcc00;
        padding: 20px;
        border-radius: 4px;
    }

    .season-card h3 {
        color: #000000;
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px;
    }

    .season-card p {
        color: #666;
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .season-pros {
        list-style: none;
        margin: 12px 0;
    }

    .season-pros li {
        color: #27ae60;
        margin: 5px 0;
        padding-left: 20px;
        position: relative;
        font-size: 13px;
    }

    .season-pros li:before {
        content: "✓";
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .season-cons li {
        color: #e74c3c;
        margin: 5px 0;
        padding-left: 20px;
        position: relative;
        font-size: 13px;
    }

    .season-cons li:before {
        content: "✗";
        position: absolute;
        left: 0;
    }

    /* Inclusions Table */
    .inclusions-section {
        margin: 50px 0;
        padding: 50px 20px;
        background: white;
    }

    .inclusions-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-top: 30px;
    }

    .inclusions-grid h3 {
        color: #ffcc00;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .inclusions-grid ul {
        list-style: none;
    }

    .inclusions-grid li {
        padding: 10px 0;
        padding-left: 25px;
        color: #666;
        position: relative;
        font-size: 14px;
    }

    .inclusions-grid li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #27ae60;
        font-weight: bold;
        font-size: 16px;
    }

    .exclusions-grid li:before {
        content: "✗";
        color: #e74c3c;
    }

    /* Things to Do */
    .attractions-section {
        margin: 50px 0;
        padding: 70px 20px;
        background: #edf8ff;
    }

    .attractions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
    }

    .attraction-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }

    .attraction-image {
        width: 100%;
        height: 180px;
        background: #e0e0e0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
    }

    .attraction-content {
        padding: 20px;
    }

    .attraction-content h3 {
        color: #000000;
        margin-bottom: 10px;
        font-size: 20px;
        line-height: 30px;
    }

    .attraction-content p {
        color: #666;
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .attraction-info {
        font-size: 12px;
        color: #999;
        padding-top: 10px;
        border-top: 1px solid #e0e0e0;
    }

    /* Pricing Section */
    .pricing-section {
        margin: 50px 0;
        padding: 50px 20px 0;
        background: white;
    }

    .pricing-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 30px;
    }

    .overflow-scroll-packages {
        overflow: scroll;

        &::-webkit-scrollbar {
            display: none;
        }

        -ms-overflow-style: none;
        /* IE and Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .pricing-table th {
        background: #ffcc00;
        color: white;
        padding: 15px;
        text-align: left;
        font-weight: 600;
    }

    .pricing-table td {
        padding: 15px;
        border-bottom: 1px solid #e0e0e0;
        color: #666;
    }

    .pricing-table tr:hover {
        background: #f5f5f5;
    }

     /* ===== BUTTON 1: ENQUIRE NOW ===== */
        .btn-enquire {
            position: relative;
            padding: 16px 35px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            background-color: #ffcc00;
            color: #333;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            z-index: 1;
        }
        .btn-enquire::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-enquire:hover::before {
            left: 100%;
        }

        .btn-enquire:hover {
            background-color: #ffb800;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 204, 0, 0.4);
            letter-spacing: 0.5px;
        }

        .btn-enquire:active {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(255, 204, 0, 0.3);
        }

        .btn-enquire-icon {
            font-size: 18px;
            animation: ring 2s infinite;
        }

        @keyframes ring {
            0%, 100% {
                transform: rotate(0deg);
            }
            10%, 20% {
                transform: rotate(-15deg);
            }
            30%, 50%, 70%, 90% {
                transform: rotate(15deg);
            }
            40%, 60%, 80% {
                transform: rotate(-15deg);
            }
        }

        .btn-enquire:hover .btn-enquire-icon {
            animation: ring 0.6s ease-in-out;
        }

        /* ===== BUTTON 2: GET QUOTE ===== */
        .btn-quote {
            position: relative;
            padding: 16px 35px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            background-color: #ffcc00;
            color: #333;
            border: 2px solid #ffcc00;
            border-radius: 50px;
            cursor: pointer;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            z-index: 1;
        }
        .btn-quote span, .btn-enquire span{
            font-family: "Poppins", serif !important;
            text-shadow: none;
            letter-spacing: normal
        }
        .btn-quote, .btn-enquire{
            padding: 5px 30px;
            margin: 10px;
        }
        .cta-buttons{
            margin-top: 10px;
        }
        .btn-quote::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            transition: left 0.5s ease;
            z-index: -1;
        }

        .btn-quote:hover::before {
            left: 100%;
        }

        .btn-quote:hover {
            background-color: #ffb800;
            border-color: #ffb800;
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(255, 204, 0, 0.5);
        }

        .btn-quote:active {
            transform: scale(0.98);
        }

        .btn-quote-icon {
            font-size: 18px;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .btn-quote:hover .btn-quote-icon {
            animation: bounce 0.6s ease-in-out;
        }

        /* Pulse effect for both buttons */
        .btn-enquire::after,
        .btn-quote::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 204, 0, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
            pointer-events: none;
        }

        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 1;
            }
            100% {
                transform: translate(-50%, -50%) scale(1.5);
                opacity: 0;
            }
        }