/* ============================================================
   MUSICMAJLIS PREMIUM SECTION - GRADIENT VERSION
   ============================================================ */

/* Container */
.MMpremium__section {
    max-width: 1100px;
    margin: 0 auto 40px auto !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
}

.MMpremium__title {
    font-size: 20px;
    font-weight: 700;
    color: #1A2238;
    margin-bottom: 15px;
}

/* GRID */
.MMpremium__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    width: 100%;
}

/* ============================================================
   PREMIUM CARD — GRADIENT APPLIED
============================================================ */

.MMpremium__card {
    background: linear-gradient(
       90deg,
        #17a4ff 0%,   /* logo orange */
        #cf37c9 100%  /* logo blue */
);

    border-radius: 12px;
    padding: 16px;
    border: none;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.15);
    transition: 0.25s ease;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff !important;
}

}

/* Hover glow */
.MMpremium__card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 26px rgba(1,130,255,0.50);
}

/* Logo */
.MMpremium__logo {
    width: 50px;
    margin-bottom: 6px;
    filter: brightness(1.2);
}

/* Card Title */
.MMpremium__card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffffff;
}

/* Card Description */
.MMpremium__card p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 12px;
    color: #ffffff;
}

/* Card Button */
.MMpremium__button {
    background: #ffffff;
    color: #0182FF !important;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none !important;
    transition: 0.25s ease-in-out;
    width: fit-content;
}

.MMpremium__button:hover {
    background: #E5F1FF;
}

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

@media (max-width: 1024px) {
    .MMpremium__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .MMpremium__grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ============================================================
   DARK MODE SUPPORT
============================================================ */

.dark-mode .MMpremium__card {
    background: linear-gradient(135deg, #0F182C 0%, #0066CC 100%);
}

.dark-mode .MMpremium__card p {
    color: #ffffffcc;
}

.dark-mode .MMpremium__button {
    background: #ffffff;
    color: #0182FF !important;
}

/* ============================================================
   EXTRA SPACING BEFORE TICKET FORM
============================================================ */

#zc-component-container,
.zc-ticket-form,
.ticketform-holder,
.portal-ticket-form {
    margin-top: 30px !important;
    padding-top: 10px !important;
}

/* ============================================================
   PREMIUM TICKET FORM UI — MUSICMAJLIS EDITION
   ============================================================ */

/* Center the form */
#zc-component-container,
.zc-ticket-form,
.ticketform-holder,
.portal-ticket-form {
    max-width: 750px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    background: #ffffff !important;
    padding: 28px 32px !important;
    border-radius: 12px !important;
    box-shadow: 0px 8px 30px rgba(0,0,0,0.10) !important;
    border: 1px solid #E8EDF5 !important;
}

/* Section title */
.ticket-title,
.form-title,
.zc-header {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1A2238 !important;
    margin-bottom: 18px !important;
}

/* Field labels */
label,
.zc-fieldlabel {
    font-weight: 600 !important;
    color: #1A2238 !important;
    margin-bottom: 6px !important;
    font-size: 14px !important;
}

/* Premium input styling */
.zc-ticket-form input,
.zc-ticket-form textarea,
.zc-ticket-form select {
    width: 100% !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    border: 1.5px solid #D6DEEA !important;
    font-size: 14px !important;
    transition: 0.25s ease !important;
}

/* Input focus */
.zc-ticket-form input:focus,
.zc-ticket-form textarea:focus,
.zc-ticket-form select:focus {
    border-color: #0182FF !important;
    box-shadow: 0 0 6px rgba(1,130,255,0.35) !important;
    outline: none !important;
}

/* Textarea sizing */
.zc-ticket-form textarea {
    min-height: 120px !important;
}

/* Stylish dropdown */
.zc-ticket-form select {
    appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%230182FF' height='24' viewBox='0 0 24 24'><path d='M7 10l5 5 5-5'/></svg>");
    background-position: right 10px center;
    background-repeat: no-repeat;
}

/* Premium submit button */
input[type="submit"],
button[type="submit"],
.zc-button {
    background: linear-gradient(135deg, #1A2238, #0182FF) !important;
    color: #ffffff !important;
    padding: 12px 22px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    transition: 0.25s ease-in-out !important;
    width: 100% !important;
}

input[type="submit"]:hover,
button[type="submit"]:hover,
.zc-button:hover {
    box-shadow: 0px 6px 22px rgba(1,130,255,0.40) !important;
    transform: translateY(-2px);
}

/* ============================================================
   DARK MODE FOR FORM
============================================================ */

.dark-mode #zc-component-container,
.dark-mode .zc-ticket-form,
.dark-mode .ticketform-holder,
.dark-mode .portal-ticket-form {
    background: #0F182C !important;
    border-color: #0182FF55 !important;
}

.dark-mode label,
.dark-mode .zc-fieldlabel,
.dark-mode .ticket-title {
    color: #ffffff !important;
}

.dark-mode input,
.dark-mode textarea,
.dark-mode select {
    background: #1A2238 !important;
    border-color: #0182FF !important;
    color: #ffffff !important;
}

.dark-mode input:focus,
.dark-mode textarea:focus,
.dark-mode select:focus {
    box-shadow: 0 0 6px rgba(1,130,255,0.45) !important;
}

.dark-mode input[type="submit"] {
    background: linear-gradient(135deg, #0182FF, #0F182C) !important;
}
.MMbanner {
    background: linear-gradient(
        90deg,
        #17a4ff 5%,   /* logo orange */
        #cf37c9 100%  /* logo blue */
    );
    color: #ffffff;
    padding: 12px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-align: center;
}


