/* ==========================================================================
   E-COMMERCE DEVELOPMENT SERVICE PAGE STYLING (#000B33 PALETTE)
   ========================================================================== */

/* Color Utilities */
.bg-navy-dark {
    background-color: #000B33 !important;
}

.bg-navy-card {
    background-color: #00124D !important;
}

.text-navy {
    color: #000B33 !important;
}

.text-orange {
    color: #F27915 !important;
}

.bg-orange {
    background-color: #F27915 !important;
}

.bg-orange-light { background: rgba(242, 121, 21, 0.12); }
.text-blue { color: #0284C7; }
.bg-blue { background-color: #0284C7 !important; }
.bg-blue-light { background: rgba(2, 132, 199, 0.12); }
.text-green { color: #16A34A; }
.bg-green { background-color: #16A34A !important; }
.bg-green-light { background: rgba(22, 163, 74, 0.12); }
.text-purple { color: #9333EA; }

.text-slate-600 {
    color: #475569 !important;
}

.border-slate-700 {
    border-color: rgba(255, 255, 255, 0.12) !important;
}

.border-slate-200 {
    border-color: #E2E8F0 !important;
}

.max-w-800 {
    max-width: 800px;
}

/* Headings Typography */
.hero-ecom-title,
.ecom-section-title {
    font-size: 40px !important;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

/* Hero Section */
.ecom-hero-section {
    min-height: 80vh;
    padding-top: 110px;
    padding-bottom: 70px;
    background-color: #000B33 !important;
}

.bg-grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.5;
    pointer-events: none;
}

.ecom-hero-glow {
    position: absolute;
    top: 20%;
    left: 20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(242, 121, 21, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
}

.badge-luxury {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(242, 121, 21, 0.12);
    border: 1px solid rgba(242, 121, 21, 0.3);
    color: #F27915;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-navy {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(0, 11, 51, 0.08);
    border: 1px solid rgba(0, 11, 51, 0.2);
    color: #000B33;
    font-size: 0.85rem;
    font-weight: 700;
}

.ecom-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 6px 14px;
    color: #CBD5E1;
    font-size: 0.82rem;
    font-weight: 600;
}

.ecom-console-box {
    backdrop-filter: blur(15px);
    background-color: #00124D !important;
}

.console-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

/* Platform Cards */
.ecom-platform-card {
    transition: all 0.3s ease;
}

.ecom-platform-card:hover {
    border-color: #F27915 !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 11, 51, 0.08);
}

/* Feature Boxes */
.feature-box {
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #F27915 !important;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(242, 121, 21, 0.15);
}

/* Custom Accordion Styling */
.custom-faq-accordion .accordion-item {
    background-color: #F8FAFC !important;
    border-color: #E2E8F0 !important;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
    background-color: rgba(242, 121, 21, 0.08) !important;
    color: #F27915 !important;
    box-shadow: none !important;
}

.custom-faq-accordion .accordion-button:focus {
    box-shadow: none !important;
    border-color: rgba(242, 121, 21, 0.5) !important;
}

/* Buttons */
.btn-agency-glow {
    background: linear-gradient(135deg, #F27915 0%, #E06300 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(242, 121, 21, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
}

.btn-agency-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(242, 121, 21, 0.65);
}

.btn-agency-glass {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-agency-glass:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Mobile Responsiveness */
@media (max-width: 991.98px) {
    .hero-ecom-title,
    .ecom-section-title {
        font-size: 30px !important;
    }
}