        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Inter", sans-serif;
            color: #111;
            background: #fff;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
        }


        /* =====================================================
           VARIABLES
        ===================================================== */

        :root {
            --orange: #ff6500;
            --orange-dark: #e95700;
            --black: #111111;
            --dark: #181818;
            --light: #f7f7f7;
            --gray: #666;
            --border: #e9e9e9;
        }


        /* =====================================================
           NAVIGATION
        ===================================================== */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;

            background: rgba(255,255,255,.94);
            backdrop-filter: blur(15px);

            border-bottom: 1px solid rgba(0,0,0,.06);
        }

        .nav-container {
            max-width: 1200px;
            margin: auto;

            height: 75px;

            padding: 0 25px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }
				
				.topTitle{
				display: flex;
				flex-direction: row;
				gap: 10px;
				}
				
				.topTitle p {
				
            color: var(--orange);

            font-size: 25px;
            font-weight: 800;
            letter-spacing: 2px;
				}
				
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;

            color: var(--black);
            font-size: 25px;
            font-weight: 800;
        }

        .logo span {
            color: var(--orange);
        }

        .logo small {
            display: block;
            font-size: 8px;
            letter-spacing: 2px;
            margin-top: -3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-links a {
            color: #333;
            font-size: 14px;
            font-weight: 600;
        }

        .nav-links a:hover {
            color: var(--orange);
        }

        .nav-button {
            padding: 11px 20px;

            border-radius: 30px;

            background: var(--orange);
            color: white !important;
        }


        /* =====================================================
           HERO
        ===================================================== */

        .hero {
            min-height: 720px;

            padding: 140px 25px 80px;

            background:
                radial-gradient(
                    circle at 80% 30%,
                    rgba(255,101,0,.12),
                    transparent 35%
                ),
                linear-gradient(
                    135deg,
                    #fff 0%,
                    #fff8f3 100%
                );
        }

        .hero-container {
            max-width: 1200px;
            margin: auto;

            display: grid;
            grid-template-columns: 1fr 1fr;

            gap: 60px;
            align-items: center;
        }

        .eyebrow {
            display: inline-block;

            margin-bottom: 18px;

            color: var(--orange);

            font-size: 13px;
            font-weight: 800;
            letter-spacing: 2px;
        }

        .hero h1 {
            font-size: clamp(44px, 6vw, 72px);
            line-height: 1.02;

            margin-bottom: 25px;
        }

        .hero h1 span {
            color: var(--orange);
        }

        .hero-text {
            max-width: 560px;

            color: var(--gray);

            font-size: 18px;
            line-height: 1.7;

            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;

            padding: 15px 25px;

            border-radius: 50px;

            font-size: 14px;
            font-weight: 700;

            transition: .3s ease;
        }

        .btn-primary {
            background: var(--orange);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--orange-dark);
            transform: translateY(-3px);
        }

        .btn-secondary {
            border: 1px solid #ddd;
            color: #222;
            background: white;
        }

        .btn-secondary:hover {
            border-color: var(--orange);
            color: var(--orange);
        }


        /* HERO IMAGE */

        .hero-visual {
            position: relative;
        }

        .hero-visual::before {
            content: "";

            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background: #ff6500;

            opacity: .12;

            top: 50%;
            left: 50%;

            transform:
                translate(-50%, -50%);
        }

        .hero-visual img {
            position: relative;

            width: 100%;

            border-radius: 25px;

            box-shadow:
                0 30px 70px
                rgba(0,0,0,.16);
        }


        /* =====================================================
           TRUST BAR
        ===================================================== */

        .trust-bar {
            background: var(--dark);
            color: white;

            padding: 25px;
        }

        .trust-container {
            max-width: 1100px;
            margin: auto;

            display: grid;
            grid-template-columns:
                repeat(4,1fr);

            gap: 20px;
        }

        .trust-item {
            text-align: center;
        }

        .trust-item strong {
            display: block;

            color: var(--orange);

            font-size: 22px;

            margin-bottom: 5px;
        }

        .trust-item span {
            font-size: 13px;
            color: #ccc;
        }


        /* =====================================================
           GENERAL SECTION
        ===================================================== */

        .section {
            padding: 100px 25px;
        }

        .section-container {
            max-width: 1150px;
            margin: auto;
        }

        .section-heading {
            max-width: 720px;
            margin: 0 auto 60px;

            text-align: center;
        }

        .section-heading span {
            color: var(--orange);

            font-size: 12px;
            font-weight: 800;

            letter-spacing: 2px;
        }

        .section-heading h2 {
            margin: 12px 0 15px;

            font-size: clamp(32px,5vw,48px);
            line-height: 1.1;
        }

        .section-heading p {
            color: var(--gray);

            line-height: 1.7;
        }


        /* =====================================================
           HOW IT WORKS
        ===================================================== */

        .steps {
            background: #f7f7f7;
        }

        .step-grid {
            display: grid;

            grid-template-columns:
                repeat(3,1fr);

            gap: 25px;
        }

        .step {
            position: relative;

            background: white;

            padding: 35px;

            border-radius: 20px;

            border: 1px solid var(--border);

            transition: .3s ease;
        }

        .step:hover {
            transform: translateY(-8px);

            box-shadow:
                0 20px 50px
                rgba(0,0,0,.08);
        }

        .step-number {
            width: 50px;
            height: 50px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: var(--orange);
            color: white;

            font-size: 20px;
            font-weight: 800;

            margin-bottom: 25px;
        }

        .step h3 {
            font-size: 21px;
            margin-bottom: 12px;
        }

        .step p {
            color: var(--gray);

            font-size: 14px;
            line-height: 1.7;
        }


        /* =====================================================
           SERVICES
        ===================================================== */

        .service-grid {
            display: grid;

            grid-template-columns:
                repeat(3,1fr);

            gap: 18px;
        }

        .service-card {
            padding: 28px;

            border-radius: 18px;

            background: #fff;

            border: 1px solid var(--border);

            transition: .3s ease;
        }

        .service-card:hover {
            border-color: var(--orange);

            transform: translateY(-5px);
        }

        .service-icon {
            width: 48px;
            height: 48px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 14px;

            background: #fff1e8;

            color: var(--orange);

            font-size: 23px;

            margin-bottom: 18px;
        }

        .service-card h3 {
            margin-bottom: 8px;
            font-size: 17px;
        }

        .service-card p {
            color: var(--gray);

            font-size: 13px;
            line-height: 1.6;
        }


        /* =====================================================
           HOTEL BENEFITS
        ===================================================== */

        .benefits {
            background: #111;
            color: white;
        }

        .benefits-grid {
            display: grid;

            grid-template-columns:
                1fr 1fr;

            gap: 70px;

            align-items: center;
        }

        .benefits h2 {
            font-size: clamp(32px,5vw,50px);

            line-height: 1.1;

            margin: 15px 0 20px;
        }

        .benefits p {
            color: #bbb;

            line-height: 1.7;
        }

        .benefit-list {
            margin-top: 30px;

            display: grid;
            gap: 15px;
        }

        .benefit {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .check {
            min-width: 30px;
            height: 30px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: var(--orange);

            font-weight: 800;
        }

        .benefit strong {
            display: block;
            margin-bottom: 4px;
        }

        .benefit span {
            color: #aaa;
            font-size: 13px;
            line-height: 1.5;
        }


        /* BENEFIT VISUAL */

        .dashboard-card {
            padding: 25px;

            border-radius: 25px;

            background:
                linear-gradient(
                    145deg,
                    #222,
                    #111
                );

            border: 1px solid #333;

            box-shadow:
                0 30px 80px
                rgba(0,0,0,.3);
        }

        .dashboard-top {
            display: flex;
            justify-content: space-between;

            margin-bottom: 25px;
        }

        .dashboard-top strong {
            font-size: 18px;
        }

        .online {
            color: #6ee7a5;
            font-size: 12px;
        }

        .request {
            padding: 18px;

            border-radius: 15px;

            background: #1c1c1c;

            border: 1px solid #333;

            margin-bottom: 12px;
        }

        .request-top {
            display: flex;
            justify-content: space-between;

            margin-bottom: 10px;
        }

        .request-name {
            font-weight: 700;
        }

        .request-status {
            color: var(--orange);

            font-size: 11px;
            font-weight: 700;
        }

        .request p {
            font-size: 12px;
            color: #aaa;
        }


        /* =====================================================
           GUEST EXPERIENCE
        ===================================================== */

        .experience {
            background: #fff8f3;
        }

        .experience-grid {
            display: grid;

            grid-template-columns:
                1fr 1fr;

            gap: 60px;

            align-items: center;
        }

        .experience-image {
            border-radius: 25px;

            overflow: hidden;

            box-shadow:
                0 25px 60px
                rgba(0,0,0,.12);
        }

        .experience-content h2 {
            font-size: 42px;

            line-height: 1.1;

            margin: 12px 0 20px;
        }

        .experience-content > p {
            color: var(--gray);
            line-height: 1.7;
        }

        .experience-points {
            margin-top: 30px;

            display: grid;

            gap: 18px;
        }

        .experience-point {
            display: flex;
            gap: 15px;
        }

        .experience-point-icon {
            min-width: 42px;
            height: 42px;

            display: flex;
            align-items: center;
            justify-content: center;

            background: var(--orange);

            color: white;

            border-radius: 12px;
        }

        .experience-point h4 {
            margin-bottom: 4px;
        }

        .experience-point p {
            color: var(--gray);

            font-size: 13px;
            line-height: 1.5;
        }


        /* =====================================================
           CTA
        ===================================================== */

        .cta {
            padding: 100px 25px;

            background:
                linear-gradient(
                    135deg,
                    #ff6500,
                    #ff8500
                );

            color: white;

            text-align: center;
        }

        .cta-container {
            max-width: 750px;
            margin: auto;
        }

        .cta h2 {
            font-size: clamp(34px,5vw,52px);

            line-height: 1.1;

            margin-bottom: 20px;
        }

        .cta p {
            color: rgba(255,255,255,.9);

            line-height: 1.7;

            margin-bottom: 30px;
        }

        .cta .btn {
            background: #fff;
            color: var(--orange);
        }

/* =========================================================
   TALK TO DINFLOW MODAL
========================================================= */

.contact-modal {
    position: fixed;

    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    visibility: hidden;
    opacity: 0;

    z-index: 2000;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}


.contact-modal.active {
    visibility: visible;
    opacity: 1;
}


/* BACKDROP */

.contact-modal-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0,0,0,.65);

    backdrop-filter: blur(8px);
}


/* MODAL */

.contact-modal-box {
    position: relative;

    width: 100%;
    max-width: 440px;

    padding: 40px 30px 30px;

    background: #fff;

    border-radius: 25px;

    box-shadow:
        0 30px 100px
        rgba(0,0,0,.25);

    transform:
        translateY(25px)
        scale(.96);

    transition:
        transform .35s ease;

    z-index: 1;
}


.contact-modal.active
.contact-modal-box {

    transform:
        translateY(0)
        scale(1);

}


/* CLOSE BUTTON */

.contact-modal-close {
    position: absolute;

    top: 15px;
    right: 17px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #f5f5f5;

    color: #555;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transition: .25s ease;
}


.contact-modal-close:hover {
    background: #111;
    color: #fff;
}


/* BRAND */

.contact-modal-icon {
    display: inline-flex;

    align-items: center;

    margin-bottom: 15px;

    font-size: 20px;
    font-weight: 800;
}

.contact-modal-icon b {
    color: var(--orange);
}


/* HEADING */

.contact-modal-box h2 {
    margin-bottom: 10px;

    font-size: 30px;
}

.contact-modal-box > p {
    color: #666;

    font-size: 14px;

    line-height: 1.6;

    margin-bottom: 25px;
}


/* OPTIONS */

.contact-options {
    display: grid;

    gap: 12px;
}


/* OPTION */

.contact-option {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 17px;

    border-radius: 16px;

    border: 1px solid #e8e8e8;

    background: #fff;

    color: #111;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.contact-option:hover {
    transform: translateY(-3px);

    border-color: var(--orange);

    box-shadow:
        0 10px 30px
        rgba(0,0,0,.08);
}


/* ICON */

.contact-option-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: #fff1e8;

    color: var(--orange);
}


.contact-option-icon svg {
    width: 24px;
    height: 24px;

    fill: currentColor;
}


/* TEXT */

.contact-option strong {
    display: block;

    margin-bottom: 4px;

    font-size: 15px;
}

.contact-option span {
    font-size: 12px;
    color: #777;
}


/* ARROW */

.contact-option .contact-arrow {
    margin-left: auto;

    color: var(--orange);

    font-size: 22px;
    font-weight: 700;
}


/* FOOTER */

.contact-modal-footer {
    display: block;

    text-align: center;

    margin-top: 25px;

    color: #999;

    font-size: 12px;
}

        /* =====================================================
           FOOTER
        ===================================================== */

        footer {
            padding: 40px 25px;

            background: #111;

            color: white;
        }

        .footer-container {
            max-width: 1150px;
            margin: auto;

            display: flex;

            justify-content: space-between;

            align-items: center;
        }

        .footer-logo {
            font-size: 23px;
            font-weight: 800;
        }

        .footer-logo span {
            color: var(--orange);
        }

        .footer-container p {
            color: #888;

            font-size: 12px;
        }


        /* =====================================================
           MOBILE
        ===================================================== */

        @media(max-width: 850px) {

            .nav-links {
                display: none;
            }

            .hero {
                padding-top: 120px;
            }

            .hero-container {
                grid-template-columns: 1fr;

                gap: 45px;
            }

            .hero-visual {
                max-width: 600px;
                margin: auto;
            }

            .trust-container {
                grid-template-columns:
                    repeat(2,1fr);
            }

            .step-grid {
                grid-template-columns: 1fr;
            }

            .service-grid {
                grid-template-columns:
                    repeat(2,1fr);
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .experience-grid {
                grid-template-columns: 1fr;
            }

            .experience-content {
                order: -1;
            }

        }


        @media(max-width: 550px) {

            .hero h1 {
                font-size: 43px;
            }

            .hero-text {
                font-size: 16px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn {
                width: 100%;
            }

            .trust-container {
                grid-template-columns: 1fr 1fr;
            }

            .service-grid {
                grid-template-columns: 1fr;
            }

            .experience-content h2 {
                font-size: 34px;
            }

            .footer-container {
                flex-direction: column;

                gap: 15px;

                text-align: center;
            }

        }
        
        /* =========================================================
   ROOM SERVICE PRICING
========================================================= */

.pricing-section {
    padding: 110px 20px;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fff8f3 100%
        );
}

.pricing-container {
    max-width: 1250px;
    margin: auto;
}


/* HEADING */

.pricing-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.pricing-heading > span {
    display: inline-block;

    color: #ff6500;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.pricing-heading h2 {
    margin: 0 0 16px;

    font-size: clamp(34px, 5vw, 50px);

    line-height: 1.08;

    color: #111;
}

.pricing-heading p {
    margin: 0;

    color: #666;

    font-size: 15px;

    line-height: 1.7;
}


/* GRID */

.pricing-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    align-items: stretch;
}


/* CARD */

.pricing-card {
    position: relative;

    display: flex;
    flex-direction: column;

    padding: 32px 25px 28px;

    background: #fff;

    border: 1px solid #e7e7e7;

    border-radius: 22px;

    box-shadow:
        0 12px 35px
        rgba(0,0,0,.045);

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);

    border-color: #ffb98d;

    box-shadow:
        0 25px 60px
        rgba(0,0,0,.09);
}


/* POPULAR */

.pricing-card.popular {
    border: 2px solid #ff6500;

    box-shadow:
        0 20px 55px
        rgba(255,101,0,.13);
}

.pricing-card.popular:hover {
    box-shadow:
        0 30px 70px
        rgba(255,101,0,.18);
}


/* BADGE */

.popular-badge {
    position: absolute;

    top: -14px;
    left: 50%;

    transform: translateX(-50%);

    padding: 7px 17px;

    border-radius: 30px;

    background: #ff6500;

    color: white;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1px;

    white-space: nowrap;
}


/* PLAN */

.plan-name {
    display: block;

    color: #ff6500;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    margin-bottom: 18px;
}


/* PRICE */

.pricing-top h3 {
    color: #111;

    font-size: 31px;

    line-height: 1;

    margin: 0 0 12px;
}

.pricing-top h3 small {
    font-size: 12px;

    color: #888;

    font-weight: 500;
}


/* ROOMS */

.room-limit {
    color: #666;

    font-size: 13px;

    margin: 0;
}

.room-limit strong {
    color: #222;
}


/* DIVIDER */

.pricing-divider {
    height: 1px;

    background: #eeeeee;

    margin: 25px 0;
}


/* FEATURES */

.pricing-features {
    list-style: none;

    padding: 0;
    margin: 0 0 30px;

    display: grid;

    gap: 13px;
}

.pricing-features li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    color: #555;

    font-size: 12px;

    line-height: 1.45;
}

.pricing-features li span {
    color: #ff6500;

    font-weight: 800;

    flex-shrink: 0;
}


/* BUTTON */

.pricing-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 100%;

    min-height: 46px;

    margin-top: auto;

    border-radius: 50px;

    font-size: 13px;

    font-weight: 700;

    transition: .3s ease;
}


/* OUTLINE */

.pricing-btn-outline {
    border: 1px solid #ddd;

    color: #222;

    background: #fff;
}

.pricing-btn-outline:hover {
    border-color: #ff6500;

    color: #ff6500;

    transform: translateY(-2px);
}


/* PRIMARY */

.pricing-btn-primary {
    background: #ff6500;

    color: #fff;

    box-shadow:
        0 8px 20px
        rgba(255,101,0,.2);
}

.pricing-btn-primary:hover {
    background: #e95700;

    transform: translateY(-2px);
}


/* ENTERPRISE */

.pricing-card.enterprise {
    background: #151515;

    border-color: #151515;

    color: white;
}

.pricing-card.enterprise .pricing-top h3 {
    color: white;
}

.pricing-card.enterprise .room-limit {
    color: #aaa;
}

.pricing-card.enterprise .room-limit strong {
    color: #fff;
}

.pricing-card.enterprise .pricing-divider {
    background: #333;
}

.pricing-card.enterprise .pricing-features li {
    color: #bbb;
}

.pricing-card.enterprise .pricing-btn-outline {
    background: transparent;

    border-color: #555;

    color: white;
}

.pricing-card.enterprise .pricing-btn-outline:hover {
    border-color: #ff6500;

    color: #ff6500;
}


/* NOTE */

.pricing-note {
    margin-top: 35px;

    text-align: center;

    color: #777;

    font-size: 13px;
}

.pricing-note span {
    color: #ff6500;

    margin-right: 5px;
}

.pricing-note a {
    color: #ff6500;

    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1050px) {

    .pricing-grid {
        grid-template-columns:
            repeat(2, 1fr);

        max-width: 750px;

        margin: auto;
    }

}


@media (max-width: 600px) {

    .pricing-section {
        padding: 80px 15px;
    }

    .pricing-heading {
        margin-bottom: 45px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;

        max-width: 420px;
    }

    .pricing-card {
        padding: 32px 28px;
    }

}


/* ===============================
   SUBSCRIPTION MODAL
================================ */

.subscription-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;
}

.subscription-modal.active {
    display: flex;
}


.subscription-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(6px);
}


.subscription-modal-content {

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 620px;

    max-height: 90vh;
    overflow-y: auto;

    background: #ffffff;

    border-radius: 18px;

    padding: 35px;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);
}


.subscription-modal-close {

    position: absolute;

    top: 15px;
    right: 18px;

    width: 38px;
    height: 38px;

    border: none;
    border-radius: 50%;

    background: #f3f3f3;

    font-size: 25px;

    cursor: pointer;
}


.subscription-modal-header {
    margin-bottom: 25px;
}


.modal-label {

    display: inline-block;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.5px;

    margin-bottom: 8px;
}


.subscription-modal-header h2 {

    margin: 0 0 8px;

    font-size: 28px;
}


.subscription-modal-header p {

    margin: 0;

    color: #666;

    line-height: 1.6;
}


/* SELECTED PACKAGE */

.selected-package {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 18px 20px;

    margin-bottom: 25px;

    border-radius: 12px;

    background: #f7f8fa;

    border: 1px solid #e8e8e8;
}


.selected-package span {

    display: block;

    font-size: 12px;

    color: #777;

    margin-bottom: 4px;
}


.selected-package strong {

    font-size: 17px;
}


.selected-package-price {

    text-align: right;
}


.selected-package-price strong {

    font-size: 22px;
}


.selected-package-price small {

    color: #777;
}


/* FORM */

.form-group {
    margin-bottom: 18px;
}


.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 14px;

    font-weight: 600;
}


.form-group input {

    width: 100%;

    box-sizing: border-box;

    padding: 13px 14px;

    border: 1px solid #ddd;

    border-radius: 9px;

    font-size: 14px;

    outline: none;

    transition: 0.2s;
}


.form-group input:focus {

    border-color: #111;

    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}


.subscription-submit-btn {

    width: 100%;

    padding: 15px;

    margin-top: 5px;

    border: none;

    border-radius: 10px;

    background: #111;

    color: #fff;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.2s;
}


.subscription-submit-btn:hover {
    transform: translateY(-1px);
}


.subscription-submit-btn:disabled {

    opacity: 0.6;

    cursor: not-allowed;

    transform: none;
}


.subscription-message {

    display: none;

    margin-top: 15px;

    padding: 12px;

    border-radius: 8px;

    font-size: 14px;

    text-align: center;
}


.subscription-message.success {

    display: block;

    background: #eaf8ef;

    color: #17733a;
}


.subscription-message.error {

    display: block;

    background: #fff0f0;

    color: #b42318;
}


/* MOBILE */

@media (max-width: 600px) {

    .subscription-modal {
        padding: 12px;
    }

    .subscription-modal-content {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .subscription-modal-header h2 {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .selected-package {
        align-items: flex-start;
    }

}