﻿ 
/* Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button,
input,
select,
textarea {
    font-family: "Outfit", sans-serif !important;
}

:root {
    --primary: #f97316;
    --primary-light: #ea580c;
    --secondary: #FF9F0A;
    --secondary-light: #FDBA74;
    --accent: #FF9F0A;
    --text-dark: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    --bg-main: #F8FAFC;
    --bg-card: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(249, 115, 22, 0.07);
}

.preheader {
    background: linear-gradient(135deg, #ffcc00, #ff7a00);
    height: 35px;
}

.preheader--links {
    display: flex;
    justify-content: space-between;
    height: 35px;
    align-items: center;
}

.preheader ul li {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.home-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.95;
}

    .home-link:hover {
        color: #ffffff;
        opacity: 1;
        transform: translateY(-0.5px);
    }

a {
    text-decoration: none;
    color: inherit;
}

.status-pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: statusPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
    vertical-align: middle;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.logo-section {
    background: rgba(255, 255, 255, 0.85);
    padding: 10px 0 !important;
    transition: all 0.3s ease;
}

.bill-logo {
    height: 65px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
}

/*.bill-logo:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 8px 16px rgba(255, 122, 0, 0.15));
}*/

.mpo-logo {
    height: 45px !important;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.02));
}

/*  .mpo-logo:hover {
        transform: scale(1.03);
        filter: drop-shadow(0 8px 16px rgba(235, 186, 89, 0.25));
}*/

/* Section & Form Layout */
.sd-section {
    background: #f8f9fc;
    padding: 32px 0;
    position: relative;
}

.mp-process-title {
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sd-form-section {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

    .sd-form-section:hover {
        box-shadow: 0 20px 45px rgba(99, 102, 241, 0.05);
        border-color: rgba(99, 102, 241, 0.15);
    }

.sd-form-label {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sd-form-control-input {
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    transition: all 0.25s ease;
}

    .sd-form-control-input:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
        background: #ffffff;
    }

/* Sidebar & Premium Cards */
.sd-services-sidebar {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 28px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

    .sd-services-sidebar:hover {
        box-shadow: 0 20px 45px rgba(99, 102, 241, 0.05);
        border-color: rgba(99, 102, 241, 0.15);
    }

.mp-sidebar-services-title {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 6px;
}

.sd-service-card-premium {
    position: relative;
    display: block;
    background: #ffffff;
    border: 1.5px solid #f1f5f9;
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 4px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -2px rgba(0, 0, 0, 0.02);
}

.sd-service-premium-glow {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(35px);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 1;
}

.sd-service-card-premium:hover {
    transform: translateY(-3px);
    border-color: rgba(226, 232, 240, 0.9);
    box-shadow: 0 12px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
}

    .sd-service-card-premium:hover .sd-service-premium-glow {
        opacity: 0.15;
    }

/* Themes */
.discom-indigo-theme .sd-service-premium-glow {
    background: #6366f1;
}

.discom-indigo-theme .sd-service-premium-icon {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    color: #6366f1;
    border: 1px solid #c7d2fe;
}

.discom-indigo-theme .sd-service-premium-tag {
    color: #4f46e5;
}

.discom-indigo-theme:hover {
    border-color: #c7d2fe;
}

    .discom-indigo-theme:hover .sd-service-premium-icon {
        background: linear-gradient(135deg, #818cf8, #6366f1);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
        border-color: transparent;
    }

.discom-teal-theme .sd-service-premium-glow {
    background: #0d9488;
}

.discom-teal-theme .sd-service-premium-icon {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    color: #0d9488;
    border: 1px solid #99f6e4;
}

.discom-teal-theme .sd-service-premium-tag {
    color: #0d9488;
}

.discom-teal-theme:hover {
    border-color: #99f6e4;
}

    .discom-teal-theme:hover .sd-service-premium-icon {
        background: linear-gradient(135deg, #2dd4bf, #0d9488);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
        border-color: transparent;
    }

.sd-service-premium-content {
    position: relative;
    z-index: 2;
}

.sd-service-premium-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sd-service-card-premium:hover .sd-service-premium-icon {
    transform: scale(1.08) rotate(5deg);
}

.sd-service-premium-text {
    display: flex;
    flex-direction: column;
}

.sd-service-premium-tag {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.sd-service-premium-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px;
    transition: all 0.2s ease;
}

.discom-indigo-theme:hover .sd-service-premium-title {
    color: #4f46e5;
}

.discom-teal-theme:hover .sd-service-premium-title {
    color: #0d9488;
}

.sd-service-premium-desc {
    font-size: 12px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

.sd-service-premium-arrow {
    font-size: 24px;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sd-service-card-premium:hover .sd-service-premium-arrow {
    transform: translateX(5px);
}

.discom-indigo-theme:hover .sd-service-premium-arrow {
    color: #4f46e5;
}

.discom-teal-theme:hover .sd-service-premium-arrow {
    color: #0d9488;
}

/* Footer Styling */
.footer-section {
    background: #ebba59;
}

.footer-text {
    font-size: 12px;
}
/*.footer-section {
    background: #0f172a;
    border-top: 4px solid #f59e0b;
    padding: 40px 0 24px !important;
    position: relative;
    overflow: hidden;
}

    .footer-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(255, 122, 0, 0.2), transparent);
    }

.footer-text {
    font-size: 13px !important;
    font-weight: 600;
    color: #94a3b8 !important;
    letter-spacing: 0.5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

    .footer-text a {
        display: inline-block;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
        border: 1.5px solid rgba(226, 232, 240, 0.8);
    }

        .footer-text a:hover {
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 10px 20px rgba(255, 122, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.05);
            background: #ffffff;
            border-color: #fed7aa;
        }

    .footer-text img {
        height: 24px !important;
        object-fit: contain;
        transition: all 0.3s ease;
    }

.footer-modern-grid {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 24px;
}

.footer-col-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

    .footer-col-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 24px;
        height: 2px;
        background-color: #f59e0b;
        border-radius: 2px;
    }

.footer-links-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links-list a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: all 0.2s ease;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

        .footer-links-list a:hover {
            color: #f97316 !important;
            transform: translateX(4px);
            background: transparent !important;
            box-shadow: none !important;
            border: none !important;
            padding: 0 !important;
        }

        .footer-links-list a i {
            font-size: 12px;
            opacity: 0.8;
        }

.footer-info-text {
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.6;
}

.footer-helpline-box {
    background: rgba(255, 122, 0, 0.06);
    border: 1px dashed rgba(255, 122, 0, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 16px;
}

.footer-helpline-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.footer-helpline-number {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .footer-helpline-number i {
        color: #f59e0b;
        animation: phoneShake 2s infinite ease-in-out;
    }*/

@keyframes phoneShake {
    0%, 100% {
        transform: rotate(0);
    }

    10%, 90% {
        transform: rotate(-8deg);
    }

    20%, 80% {
        transform: rotate(8deg);
    }

    30%, 50%, 70% {
        transform: rotate(-12deg);
    }

    40%, 60% {
        transform: rotate(12deg);
    }
}

/* Media Queries & Responsive Overrides */
@media (max-width: 991px) {
    .mp-process-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    .mpo-logo {
        display: none;
    }

    .mp-process-title {
        font-size: 28px;
    }
}

@media (max-width: 580px) {
    .mpo-logo {
        display: none;
    }

    .mp-process-title {
        font-size: 21px;
    }
}

/* Custom G2G Form Styles (Merged) */
.g2g-btn {
    background: linear-gradient(135deg, #1e3a8a, #f97316) !important;
    border: 1px solid rgba(251, 191, 36, 0.4) !important;
    color: #ffffff !important;
    font-size: 14.5px !important;
    font-weight: 750 !important;
    padding: 12px 24px !important;
    border-radius: 8px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25) !important;
    width: 100%;
}

    .g2g-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(30, 58, 138, 0.38), 0 0 8px rgba(251, 191, 36, 0.3) !important;
        border-color: rgba(251, 191, 36, 0.8) !important;
    }

.g2g-glow-badge {
    background: rgba(99, 102, 241, 0.08) !important;
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    color: #4f46e5 !important;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    padding: 6px 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.g2g-head-accent {
    color: #1e3a8a !important;
}

 
