/* ==========================================================================
   VINI ELEVATOR - 2 CONTAINER LAYOUT & POST-SUBMISSION SUCCESS CARD
   ========================================================================== */

:root {
    --primary-blue: #0b2545;
    --primary-blue-hover: #134074;
    --accent-red: #d93856;
    --accent-red-hover: #b82b45;
    --accent-teal: #00a896;
    --dark-card-bg: #0f172a;
    --light-bg: #f8fafc;
    --border-color: #cbd5e1;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 12px 30px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body.no-scroll-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #f1f5f9;
    color: var(--text-primary);
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
    color: var(--text-secondary);
}

.help-text i {
    color: var(--accent-red);
    margin-right: 6px;
}

/* Custom Modern Language Switcher Dropdown */
.lang-dropdown-wrapper {
    position: relative;
    user-select: none;
}

.lang-trigger-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1.5px solid var(--border-color);
    padding: 6px 14px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-trigger-btn:hover {
    background: #ffffff;
    border-color: var(--primary-blue);
}

.globe-icon-wrap {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(11, 37, 69, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--primary-blue);
}

.lang-chevron {
    font-size: 10px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.lang-dropdown-wrapper.open .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 165px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: var(--radius-md);
    padding: 6px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 200;
}

.lang-dropdown-wrapper.open .lang-dropdown-menu {
    display: flex;
}

.lang-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
}

.lang-option:hover {
    background: #f1f5f9;
    color: var(--primary-blue);
}

.lang-option.active {
    background: rgba(11, 37, 69, 0.08);
    color: var(--primary-blue);
    font-weight: 700;
}

.check-icon {
    font-size: 10px;
    color: var(--primary-blue);
    opacity: 0;
}

.lang-option.active .check-icon {
    opacity: 1;
}

/* ==========================================
   MAIN VIEWPORT: 2 CONTAINER GRID LAYOUT
   ========================================== */
.main-viewport {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 24px;
    overflow: hidden;
}

.two-container-grid {
    max-width: 1400px;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 110px);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.container-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ==========================================
   CONTAINER 1 (LEFT): FORM & SUCCESS CONTAINER
   ========================================== */
.form-container-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-md);
    padding: 26px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    position: relative;
}

.form-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.inquiry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11, 37, 69, 0.06);
    border: 1px solid rgba(11, 37, 69, 0.12);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-red);
}

.form-main-title {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-bottom: 4px;
}

.form-sub-title {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.lead-form-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.field-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
}

.req {
    color: var(--accent-red);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: inherit;
    color: var(--text-primary);
    background-color: #ffffff;
    transition: var(--transition-fast);
    outline: none;
}

input:focus, select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1);
}

.phone-input-wrap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.phone-prefix {
    padding: 10px 12px;
    background: #f1f5f9;
    font-weight: 600;
    font-size: 13px;
    color: var(--text-secondary);
    border-right: 1px solid var(--border-color);
}

.phone-input-wrap input {
    border: none;
}

.consent-group {
    margin-top: 2px;
}

.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    color: var(--text-secondary);
}

.consent-checkbox-label input {
    position: absolute;
    opacity: 0;
}

.custom-chk {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid #cbd5e1;
    border-radius: 4px;
    background: #fff;
    margin-top: 1px;
    position: relative;
}

.consent-checkbox-label input:checked ~ .custom-chk {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.custom-chk::after {
    content: "";
    position: absolute;
    display: none;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox-label input:checked ~ .custom-chk::after {
    display: block;
}

.policy-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.btn-submit-inquiry {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%);
    color: #ffffff;
    padding: 13px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
}

.btn-submit-inquiry:hover {
    background: var(--accent-red);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(217, 56, 86, 0.3);
}

.form-footnote {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-footnote i {
    color: var(--accent-teal);
}

/* ==========================================
   POST-SUBMISSION SUCCESS CARD VIEW (REDESIGNED)
   ========================================== */
.submission-success-container {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    height: 100%;
    padding: 6px 0;
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.submission-success-container.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.success-hero-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.success-icon-ring {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.status-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 800;
    color: #047857;
    letter-spacing: 1px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
}

.success-title {
    font-size: 24px;
    color: var(--primary-blue);
    font-weight: 800;
    margin-top: 2px;
    margin-bottom: 2px;
}

.success-subtitle {
    font-size: 12px;
    color: var(--text-secondary);
    max-width: 440px;
    margin-bottom: 8px;
}

/* Digital Ticket Passcard */
.digital-ticket-card {
    width: 100%;
    background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(11, 37, 69, 0.25);
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
}

.digital-ticket-card::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #93c5fd;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.ticket-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ticket-ref-number {
    font-family: 'Outfit', monospace;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
}

.btn-copy-ref {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-copy-ref:hover {
    background: #ffffff;
    color: var(--primary-blue);
}

/* Structured Receipt Grid */
.submitted-receipt-card {
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.receipt-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.receipt-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
}

.item-icon {
    font-size: 14px;
    color: var(--primary-blue);
    width: 18px;
    text-align: center;
}

.item-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    overflow: hidden;
}

.item-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.item-val {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-val.highlight {
    color: var(--accent-red);
}

/* Mail Dispatch Banner */
.mail-dispatched-banner {
    width: 100%;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-sm);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    margin-bottom: 12px;
}

.banner-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: #10b981;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.banner-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.banner-content strong {
    font-size: 11px;
    color: #065f46;
    font-weight: 700;
}

.banner-content p {
    font-size: 10px;
    color: #047857;
}

/* Success Actions Row */
.success-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin-bottom: 8px;
}

.btn-whatsapp {
    flex: 1;
    background: #25D366;
    color: #ffffff;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.btn-call-support {
    flex: 1;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
    text-decoration: none;
}

.btn-call-support:hover {
    background: var(--primary-blue-hover);
    transform: translateY(-1px);
    color: #ffffff;
}

.secondary-actions-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.btn-print-receipt {
    flex: 1;
    background: #f8fafc;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-print-receipt:hover {
    background: #e2e8f0;
}

.btn-reset-inquiry {
    flex: 1;
    background: #f8fafc;
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    padding: 9px 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.btn-reset-inquiry:hover {
    background: #e2e8f0;
}

/* ==========================================
   CONTAINER 2 (RIGHT): GALLERY CONTAINER
   ========================================== */
.gallery-container-box {
    background: var(--dark-card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
}

.gallery-header {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.gallery-badge {
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-teal);
    letter-spacing: 1px;
}

.gallery-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

/* Large Featured Image View */
.featured-image-card {
    position: relative;
    flex: 1;
    width: 100%;
    min-height: 280px;
    background: #000000;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.img-badge-overlay {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #f1f5f9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.img-badge-overlay i {
    color: var(--accent-red);
}

/* Interactive Image Thumbnail Selector */
.thumbnail-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 14px;
}

.thumb-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    padding: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.thumb-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.thumb-card.active {
    border-color: var(--accent-red);
    background: rgba(217, 56, 86, 0.12);
    box-shadow: 0 0 0 1px var(--accent-red);
}

.thumb-card img {
    width: 100%;
    height: 52px;
    object-fit: cover;
    border-radius: 4px;
}

.thumb-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.thumb-info strong {
    font-size: 11px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.thumb-info span {
    font-size: 9px;
    color: var(--text-muted);
}

/* ==========================================
   COMPACT FOOTER
   ========================================== */
.compact-footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 8px 24px;
    text-align: center;
    flex-shrink: 0;
}

.footer-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
}

.dot {
    color: var(--text-muted);
}

.copy-text {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* ==========================================
   SUPERIOR MOBILE RESPONSIVE DESIGN (@media <= 768px)
   ========================================== */
@media (max-width: 768px) {
    /* Allow smooth natural page scrolling on mobile devices */
    body.no-scroll-body {
        height: auto !important;
        overflow-y: auto !important;
    }

    /* Mobile Navbar Header */
    .navbar {
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .nav-container {
        padding: 8px 12px !important;
        flex-wrap: nowrap;
        gap: 6px;
    }

    .logo-link img {
        height: 32px !important;
        width: auto;
    }

    .nav-contact {
        gap: 8px !important;
    }

    .help-text {
        font-size: 11px !important;
        white-space: nowrap;
    }

    .help-text strong {
        font-size: 11px !important;
    }

    .lang-trigger-btn {
        padding: 4px 8px !important;
        font-size: 10px !important;
        gap: 4px !important;
    }

    .globe-icon-wrap {
        width: 16px !important;
        height: 16px !important;
        font-size: 9px !important;
    }

    /* Mobile Workspace Layout */
    .main-viewport {
        padding: 10px 10px !important;
        height: auto !important;
        flex: none !important;
        overflow: visible !important;
    }

    .two-container-grid {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
        max-height: none !important;
        height: auto !important;
    }

    /* Mobile Form Container */
    .form-container-box {
        padding: 18px 14px !important;
        border-radius: 12px !important;
        height: auto !important;
        overflow: visible !important;
    }

    .inquiry-badge {
        font-size: 10px !important;
        padding: 3px 10px !important;
    }

    .form-main-title {
        font-size: 20px !important;
        line-height: 1.25;
        margin-bottom: 4px !important;
    }

    .form-sub-title {
        font-size: 12px !important;
        margin-bottom: 14px !important;
        line-height: 1.35;
    }

    /* STACK ALL FORM INPUT PAIRS INTO 1 SINGLE COLUMN ON MOBILE */
    .field-row-2 {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
    }

    .field-group label {
        font-size: 12px !important;
        font-weight: 600;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select {
        padding: 12px 14px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        height: 44px;
    }

    .phone-prefix {
        padding: 12px 10px !important;
        font-size: 13px !important;
    }

    .consent-checkbox-label {
        font-size: 11px !important;
        line-height: 1.35;
    }

    .btn-submit-inquiry {
        padding: 14px 16px !important;
        font-size: 15px !important;
        border-radius: 10px !important;
        min-height: 48px;
    }

    /* Mobile Post-Submission Confirmation Card */
    .submission-success-container {
        padding: 10px 2px !important;
        gap: 10px !important;
    }

    .success-hero-badge {
        gap: 6px !important;
    }

    .success-icon-ring {
        width: 52px !important;
        height: 52px !important;
        font-size: 24px !important;
    }

    .success-title {
        font-size: 20px !important;
        line-height: 1.2;
    }

    .success-subtitle {
        font-size: 11px !important;
        line-height: 1.35;
    }

    .digital-ticket-card {
        padding: 12px 14px !important;
        border-radius: 10px !important;
        margin-bottom: 8px !important;
    }

    .ticket-header {
        font-size: 9px !important;
    }

    .ticket-ref-number {
        font-size: 18px !important;
        letter-spacing: 1px !important;
        word-break: break-all;
    }

    .btn-copy-ref {
        width: 32px !important;
        height: 32px !important;
    }

    /* STACK RECEIPT GRID ITEMS INTO 1 COLUMN ON MOBILE FOR PERFECT LEGIBILITY */
    .submitted-receipt-card {
        padding: 10px 12px !important;
        margin-bottom: 8px !important;
        gap: 6px !important;
    }

    .receipt-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    .receipt-item {
        padding: 8px 10px !important;
        align-items: flex-start !important;
        width: 100% !important;
    }

    .item-text {
        width: calc(100% - 28px);
    }

    .item-val {
        white-space: normal !important;
        word-break: break-word !important;
        word-wrap: break-word !important;
        font-size: 12px !important;
        line-height: 1.3;
    }

    .mail-dispatched-banner {
        padding: 8px 10px !important;
        margin-bottom: 8px !important;
    }

    .banner-content strong {
        font-size: 10px !important;
    }

    .banner-content p {
        font-size: 9px !important;
    }

    /* STACK WHATSAPP & CALL BUTTONS VERTICALLY ON MOBILE FOR EASY TAPPING */
    .success-actions-row {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .btn-whatsapp,
    .btn-call-support {
        width: 100% !important;
        padding: 13px 16px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
        justify-content: center;
        min-height: 48px;
    }

    /* Mobile Showcase Gallery Container */
    .gallery-container-box {
        padding: 14px 12px !important;
        border-radius: 12px !important;
    }

    .gallery-header {
        margin-bottom: 10px !important;
    }

    .gallery-title {
        font-size: 17px !important;
    }

    .featured-image-card {
        min-height: 220px !important;
        height: 220px !important;
        border-radius: 10px !important;
    }

    .img-badge-overlay {
        bottom: 8px !important;
        left: 8px !important;
        padding: 4px 10px !important;
        font-size: 10px !important;
    }

    /* 2x2 GRID FOR THUMBNAIL CARDS ON MOBILE */
    .thumbnail-gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin-top: 10px !important;
    }

    .thumb-card {
        padding: 4px !important;
    }

    .thumb-card img {
        height: 54px !important;
    }

    .thumb-info strong {
        font-size: 10px !important;
    }

    .thumb-info span {
        font-size: 8px !important;
    }

    /* Mobile Footer */
    .compact-footer {
        padding: 12px 14px !important;
    }

    .footer-links {
        flex-wrap: wrap !important;
        gap: 8px !important;
        font-size: 10px !important;
    }
}

