  /* ── MOBILE APP LAYOUT for contact.php ── */
        @media (max-width: 991px) {
            .ikat-top, .ikat-bottom, .page-silk, .nav-wrap,
            .contact-hero, .contact-section, footer { display: none !important; }

            body { background: transparent; padding-bottom: 80px; margin: 0; }

            .mc-layout { display: flex; flex-direction: column; min-height: 100vh; }

            .mc-header {
                background: linear-gradient(135deg, var(--terra) 0%, var(--gold) 100%);
                padding: 3rem 1.25rem 2rem;
                position: relative; overflow: hidden;
            }
            .mc-header::before {
                content: ''; position: absolute; top: -40px; right: -40px;
                width: 160px; height: 160px; background: rgba(255,255,255,.08); border-radius: 50%;
            }
            .mc-back {
                display: inline-flex; align-items: center; gap: .4rem;
                color: rgba(255,255,255,.8); text-decoration: none; font-size: .85rem;
                font-weight: 600; margin-bottom: 1.25rem; position: relative; z-index: 1;
            }
            .mc-header h1 {
                color: #fff; font-size: 1.8rem; font-weight: 800; line-height: 1.15;
                margin-bottom: .5rem; position: relative; z-index: 1;
            }
            .mc-header p {
                color: rgba(255,255,255,.8); font-size: .85rem; margin: 0;
                position: relative; z-index: 1;
            }

            /* Quick contact buttons */
            .mc-quick { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; padding: 1.1rem; }
            .mc-quick-btn {
                background: #fff; border-radius: 16px; padding: 1rem;
                display: flex; flex-direction: column; align-items: center; gap: .4rem;
                text-decoration: none; box-shadow: 0 2px 10px rgba(0,0,0,.06);
                border: 1px solid #f1f5f9; transition: transform .15s;
            }
            .mc-quick-btn:active { transform: scale(.97); }
            .mc-quick-btn .icon { font-size: 1.6rem; }
            .mc-quick-btn .label { font-size: .78rem; font-weight: 700; color: #0f172a; }
            .mc-quick-btn .val { font-size: .7rem; color: #64748b; }

            /* Form card */
            .mc-form-card {
                background: #fff; border-radius: 20px; margin: 0 1.1rem 1.25rem;
                box-shadow: 0 2px 12px rgba(0,0,0,.05); overflow: hidden;
                border: 1px solid #f1f5f9;
            }
            .mc-form-head {
                padding: .9rem 1.1rem; border-bottom: 1px solid #f1f5f9;
                display: flex; align-items: center; gap: .5rem;
            }
            .mc-form-head span { font-size: .82rem; font-weight: 700; color: #1e293b; }
            .mc-form-body { padding: 1rem 1.1rem; }
            .mc-label { font-size: .72rem; font-weight: 700; color: #64748b; margin-bottom: .3rem; }
            .mc-input {
                width: 100%; border: 2px solid #e2e8f0; border-radius: 10px;
                padding: .6rem .85rem; font-size: .88rem; font-family: inherit;
                outline: none; transition: border-color .2s; background: #f8fafc; color: #1e293b;
            }
            .mc-input:focus { border-color: var(--terra); background: #fff; }
            .mc-submit {
                width: 100%; background: linear-gradient(135deg, var(--terra), var(--gold));
                color: #fff; border: none; border-radius: 12px; padding: .9rem;
                font-size: .95rem; font-weight: 700; cursor: pointer;
                display: flex; align-items: center; justify-content: center; gap: .5rem;
            }
            .mc-alert-ok {
                background: #f0fdf4; border: 1px solid #bbf7d0; color: #15803d;
                border-radius: 10px; padding: .75rem 1rem; font-size: .82rem; font-weight: 600;
                margin: 0 1.1rem .75rem; display: flex; align-items: center; gap: .5rem;
            }
            .mc-alert-err {
                background: #fef2f2; border: 1px solid #fecaca; color: #dc2626;
                border-radius: 10px; padding: .75rem 1rem; font-size: .82rem; font-weight: 600;
                margin: 0 1.1rem .75rem; display: flex; align-items: center; gap: .5rem;
            }
            .mc-footer { padding: 1rem 1.1rem; text-align: center; color: #94a3b8; font-size: .72rem; }
        }
        @media (min-width: 992px) {
            .mc-layout { display: none !important; }
        }
   
        .contact-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 100px;
            background: linear-gradient(135deg, var(--terra) 0%, var(--gold) 100%);
        }
        
        .contact-hero-title {
            font-family: 'Philosopher', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4rem);
            line-height: 0.9;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .contact-hero-subtitle {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 2rem;
            font-weight: 600;
        }
        
        .contact-section {
            padding: 80px 0;
            background: var(--silk);
        }
        
        .contact-card {
            background: white;
            border-radius: 60px;
            padding: 60px;
            position: relative;
            overflow: hidden;
            height: 100%;
            border: 1px solid #f1f5f9;
            transition: 0.6s cubic-bezier(0.19, 1, 0.22, 1);
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }
        
        .contact-card:hover {
            transform: translateY(-30px);
            border-color: var(--gold);
            box-shadow: 0 50px 100px rgba(0,0,0,0.05);
        }
        
        .contact-card i {
            font-size: 4rem;
            color: var(--terra);
            display: block;
            margin-bottom: 30px;
        }
        
        .contact-form-container {
            background: white;
            border-radius: 32px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.07);
            padding: 3rem;
            border: 1px solid rgba(185,28,28,0.1);
        }
        
        .form-control, .form-select {
            border-radius: 16px;
            background: rgba(255,251,245,0.8);
            border: 2px solid rgba(185,28,28,0.1);
            padding: 0.875rem 1.25rem;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus, .form-select:focus {
            background: rgba(255,255,255,0.95);
            border-color: var(--terra);
            box-shadow: 0 0 0 4px rgba(185,28,28,0.1);
            outline: none;
        }
        
        .form-label {
            font-weight: 600;
            color: var(--royal);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }
        
        .btn-contact {
            background: linear-gradient(135deg, var(--terra), var(--gold));
            color: white;
            border-radius: 16px;
            font-weight: 700;
            border: none;
            padding: 16px 32px;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(185,28,28,0.25);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        
        .btn-contact::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .btn-contact:hover {
            transform: translateY(-2px) scale(1.02);
            color: white;
            box-shadow: 0 15px 40px rgba(185,28,28,0.35);
        }
        
        .btn-contact:hover::before {
            opacity: 1;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding: 1rem;
            border-radius: 12px;
            background: rgba(185,28,28,0.02);
            transition: all 0.3s;
        }
        
        .contact-info-item:hover {
            background: rgba(185,28,28,0.05);
            transform: translateX(5px);
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--terra);
            width: 40px;
            text-align: center;
        }
        
        .contact-info-text {
            flex: 1;
        }
        
        .contact-info-text h5 {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--royal);
        }
        
        .contact-info-text p {
            margin: 0;
            font-size: 0.95rem;
            color: #64748b;
        }
        
        .contact-info-text a {
            color: var(--terra);
            text-decoration: none;
            font-weight: 600;
        }
        
        .contact-info-text a:hover {
            text-decoration: underline;
        }
        
        .alert-success-box {
            background: #f0fdf4;
            border: 1px solid #bbf7d0;
            color: #15803d;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        .alert-error-box {
            background: #fef2f2;
            border: 1px solid #fecaca;
            color: #dc2626;
            border-radius: 12px;
            padding: 1rem 1.5rem;
            font-size: 0.95rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }
        
        /* Mobile Responsive Styles */
        @media (max-width: 768px) {
            /* Disable custom cursor on mobile */
            #chakra-cursor {
                display: none !important;
            }
            * {
                cursor: auto !important;
                transition: none !important;
            }
            
            .contact-hero {
                min-height: 50vh;
                padding-top: 120px;
                text-align: center;
            }
            
            .contact-hero-title {
                font-size: 2.5rem;
            }
            
            .contact-hero-subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .contact-section {
                padding: 60px 0;
            }
            
            .contact-card {
                padding: 40px 30px;
                border-radius: 30px;
                text-align: center;
                margin-bottom: 2rem;
            }
            
            .contact-card i {
                font-size: 3rem;
                margin-bottom: 1.5rem;
            }
            
            .contact-form-container {
                padding: 2rem 1.5rem;
                border-radius: 20px;
                margin: 0 15px;
            }
            
            .contact-info-item {
                flex-direction: column;
                text-align: center;
                gap: 0.75rem;
            }
            
            .contact-info-item i {
                width: auto;
            }
        }
        
        @media (max-width: 480px) {
            .contact-hero-title {
                font-size: 2rem;
            }
            
            .contact-card {
                padding: 30px 20px;
            }
            
            .contact-form-container {
                padding: 1.5rem 1rem;
                margin: 0 10px;
            }
        }

        /* --- SHARED VARIABLES (If not in theme.css) --- */
:root {
    --terra: #e64a19;
    --royal: #1a237e;
    --gold: #ffb300;
}

/* --- MOBILE LAYOUT (mc- classes) --- */
.mc-icon-terra { color: var(--terra) !important; }
.mc-merchant-margin { margin-bottom: 1.5rem; }
.mc-merchant-body-text { font-size: 0.85rem; color: #475569; line-height: 1.6; padding: 1.5rem; }
.mc-entity-name { color: var(--royal); }

.mc-address-box { padding: 1rem; background: #f8fafc; border-radius: 15px; margin-bottom: 1rem; }
.mc-border-terra { border-left: 4px solid var(--terra); }
.mc-border-gold { border-left: 4px solid var(--gold); }

.mc-select-custom {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%2394a3b8' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .75rem center;
    padding-right: 2rem;
}

/* --- DESKTOP LAYOUT --- */
.contact-hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Contact Cards */
.contact-card { transition: all 0.3s ease; }
.contact-card-terra { border-bottom: 5px solid var(--terra) !important; }
.contact-card-gold { border-bottom: 5px solid var(--gold) !important; }

.icon-box-round {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1rem;
}

/* Merchant Details Desktop */
.merchant-title { color: var(--royal); font-size: 1.5rem; }
.merchant-label-spacing { letter-spacing: 1px; }
.contact-card-gold-important { border-left: 4px solid var(--gold) !important; }

/* Form Elements */
.required-star { color: var(--terra); }

/* Alert Boxes (If not in theme.css) */
.alert-success-box, .alert-error-box {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.alert-success-box { background: #d1e7dd; color: #0f5132; }
.alert-error-box { background: #f8d7da; color: #842029; }

/* ── GLOBAL GLASSMORPHISM & GRADIENT OVERRIDE FOR CONTACT PAGE ── */

body {
    background: linear-gradient(135deg, #023e8a 0%, #d90429 100%) !important;
    background-attachment: fixed !important;
    color: white;
}

/* Make containers transparent so body gradient shows */
.contact-hero, .contact-section {
    background: transparent !important;
}

/* Glassmorphism for Desktop Cards */
.contact-card, .contact-form-container {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}
.contact-card:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}
.contact-card h3, .contact-form-container h2, .contact-form-container h4, .contact-form-container h5, .merchant-title {
    color: white !important;
}
.contact-card p, .contact-form-container p, .contact-form-container span.text-muted, .merchant-label-spacing {
    color: rgba(255,255,255,0.7) !important;
}
.contact-form-container .bg-light {
    background: rgba(0,0,0,0.2) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.contact-form-container .border-light { border-color: rgba(255,255,255,0.2) !important; }
.contact-form-container .border-bottom { border-color: rgba(255,255,255,0.2) !important; }

/* Forms Desktop */
.form-control, .form-select {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: white !important;
}
.form-control::placeholder { color: rgba(255,255,255,0.5) !important; }
.form-control:focus, .form-select:focus {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.5) !important;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.1) !important;
    color: white !important;
}
.form-select option { background: #023e8a; color: white; }
.form-label { color: rgba(255,255,255,0.9) !important; }

/* Mobile (mc-layout) Overrides */
.mc-header { background: transparent !important; }
.mc-quick-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}
.mc-quick-btn .label { color: white !important; }
.mc-quick-btn .val { color: rgba(255,255,255,0.7) !important; }

.mc-form-card {
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}
.mc-form-head { border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important; }
.mc-form-head span { color: white !important; }
.mc-merchant-body-text { color: white !important; }
.mc-merchant-body-text .text-muted { color: rgba(255,255,255,0.7) !important; }
.mc-entity-name { color: white !important; }
.mc-address-box {
    background: rgba(0,0,0,0.2) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}
.mc-address-box .text-dark { color: white !important; }

.mc-label { color: rgba(255,255,255,0.9) !important; }
.mc-input {
    background: rgba(255,255,255,0.1) !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: white !important;
}
.mc-input::placeholder { color: rgba(255,255,255,0.5) !important; }
.mc-input:focus {
    background: rgba(255,255,255,0.2) !important;
    border-color: rgba(255,255,255,0.5) !important;
}
.mc-select-custom option { background: #023e8a; color: white; }