    /* พื้นหลัง Gradient หรู ๆ */
    .booking-section {
        background: radial-gradient(circle at top left, #3f0178, #1a062f 60%, #10001b);
        position: relative;
        overflow: hidden;
    }

    /* แสงเบื้องหลังแบบ Magic */
    .booking-section::before {
        content: "";
        position: absolute;
        width: 400px;
        height: 400px;
        background: rgba(255, 0, 255, 0.15);
        filter: blur(120px);
        top: -100px;
        right: -80px;
    }

    /* ภาพแบบโมเดิร์น */
    .modern-img {
        border-radius: 20px;
        width: 100%;
        height: auto;
        object-fit: cover;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        transition: transform .4s ease, box-shadow .4s ease;
    }

    .modern-img:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
    }

    /* กล่องรูปภาพ */
    .image-card {
        background: rgba(255, 255, 255, 0.08);
        border-radius: 25px;
        backdrop-filter: blur(10px);
    }

    /* หัวข้อ Glow เบาๆ */
    .glow-text {
        text-shadow: 0 0 10px rgba(255, 255, 255, .5);
    }

    /* ไอคอนเฟี้ยว ๆ */
    .astro-icon {
        font-size: 40px;
        margin-bottom: 10px;
    }

    /* ปุ่มโมเดิร์น */
    .modern-btn {
        background: linear-gradient(135deg, #ffb3ff, #ffffff);
        color: #3d0066 !important;
        font-weight: bold;
        transition: 0.3s;
    }

    .modern-btn:hover {
        background: #fff;
        transform: translateY(-3px);
        box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
    }
