   .luxury-bg {
            background: #000;

        }

        .addon-section {
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1410 100%);
            color: #e8e8e8;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            position: relative;
            overflow-x: hidden;
        }

        .addon-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(139, 92, 46, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(184, 134, 11, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .containers {
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .headers {
            text-align: center;
            margin-bottom: 60px;
        }

        .areff {
           font-size: clamp(2.5rem, 5vw, 2.6rem);
            color: #d4a574;
            font-weight: 300;
            letter-spacing: 3px;
            margin-bottom: 15px;
            text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
        }

        .subtitle {
            font-size: clamp(1rem, 2vw, 1.3rem);
            color: #c9b896;
            font-style: italic;
            letter-spacing: 1.4px;
            font-weight: 600;
        }

        .divider {
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.3) 20%, #d4a574 50%, rgba(212, 175, 55, 0.3) 80%, transparent 100%);
            margin: 0 auto;
            position: relative;
            max-width: 800px;
            top: -36px;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 12px;
            height: 12px;
            background: #d4a574;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }

        .description {
            text-align: center;
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #b8b8b8;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
            line-height: 1.6;
        }

        .addons-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 0px;
            margin-bottom: 11px;

        }

        .addon-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px;
            /* background: rgba(255, 255, 255, 0.03); */
            /* border: 1px solid rgba(212, 175, 55, 0.2); */
            /* border-radius: 8px; */
            transition: all 0.3s ease;
            cursor: pointer;
        }

        /* .addon-item:hover {
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
        } */

        .checkmark {
            color: #d4a574;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .addon-text {
            font-size: clamp(1rem, 1.5vw, 1.1rem);
            color: #e8e8e8;
            letter-spacing: 1.1px;
            font-weight: 600;
        }

        .bottom-section {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
        }

        .divider-bottom {
            height: 1px;
            background: linear-gradient(90deg,
                    transparent 0%,
                    rgba(212, 175, 55, 0.3) 30%,
                    #d4a574 50%,
                    rgba(212, 175, 55, 0.3) 70%,
                    transparent 100%);
            margin: 50px auto 40px;
            max-width: 600px;
        }

        @media (max-width: 768px) {
            /* .addons-grid {
                grid-template-columns: 1fr;
            } */

            .bottom-section {
                flex-direction: column;
                gap: 20px;
            }
        }

        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 2px;
            height: 2px;
            background: #d4a574;
            border-radius: 50%;
            animation: float 10s infinite;
            opacity: 0.3;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) translateX(0);
                opacity: 0;
            }

            50% {
                opacity: 0.3;
            }

            100% {
                transform: translateY(-100vh) translateX(20px);
                opacity: 0;
            }
        }

        .luxury-pricing-section {
            width: 60%;
            margin: 0 auto;
            background: #000 !important;
            background: radial-gradient(ellipse at center, rgba(139, 69, 19, 0.3) 0%, rgba(0, 0, 0, 0.8) 70%);
            /* border: 2px solid;
            border-image: linear-gradient(135deg, #d4a574 0%, #f4e4c1 50%, #d4a574 100%) 1; */
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
        }



        .luxury-pricing-header {
            text-align: center;
            /* margin-bottom: 50px; */
            position: relative;
        }

        .luxury-pricing-header::before,
        .luxury-pricing-header::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 14%;
            height: 3px;
            /* background: linear-gradient(90deg, transparent, #d4a574, transparent); */
        }

        .luxury-pricing-header::before {
            left: 0;
        }

        .luxury-pricing-header::after {
            right: 0;
        }

        .luxury-diamond-icon {
            width: 12px;
            height: 12px;
            /* background: #f4e4c1; */
            transform: rotate(45deg);
            margin: 0 auto 20px;
        }

        .luxury-pricing-title {
            font-size: 2.4em;
            color: #f4e4c1;
            font-weight: 300;
            letter-spacing: 2px;
            line-height: 0;
        }

        .luxury-pricing-subtitle {
            color: #d4a574;
            font-size: 1.1em;
            /* margin-top: 20px; */
            text-align: center;
            font-style: italic;
            line-height: 0;
        }

        .luxury-divider-line {
            width: 100px;
            height: 1px;
            /* background: linear-gradient(90deg, transparent, #d4a574, transparent); */
            margin: 30px auto;
        }

        .luxury-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin: 40px 0;
        }

        .luxury-feature-card {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .luxury-checkmark-icon {
            color: #d4a574;
            font-size: 1.5em;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .luxury-feature-label {
            color: #f4e4c1;
            font-size: 1.1em;
            line-height: 1.6;
            font-weight: 600;
        }

        .luxury-info-container {
            /* background: rgba(139, 69, 19, 0.2); */
            /* border: 1px solid rgba(212, 165, 116, 0.3); */
            padding: 30px;
            margin-top: 40px;
            border-radius: 5px;
        }

        .luxury-info-paragraph {
            color: #f4e4c1;
            font-size: 1.05em;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .luxury-highlight-text {
            color: #f4e4c1;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .luxury-cta-paragraph {
            color: #d4a574;
            font-size: 1.1em;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .luxury-pricing-section {
                padding: 40px 20px;
            }

            .luxury-pricing-title {
                font-size: 2em;
            }

            .luxury-features-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
        }