/* =======================
   PROFESSIONAL DARK THEME SERVICES
   ======================= */

/* Service Cards - Dark Overlay for Photo Display */
.services-grid .service-card.visual-card {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    border: 1px solid rgba(56, 189, 248, 0.3) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.services-grid .service-card.visual-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.6) !important;
    box-shadow: 0 20px 48px rgba(251, 191, 36, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.3) !important;
}

/* Service Card Overlay - DARK gradient for maximum text readability */
.services-grid .visual-card .service-overlay {
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.95) 0%,
            rgba(15, 23, 42, 0.80) 40%,
            rgba(15, 23, 42, 0.50) 70%,
            transparent 100%) !important;
    padding: 25px;
    justify-content: flex-start;
    gap: 12px;
    backdrop-filter: blur(2px);
}

.services-grid .visual-card:hover .service-overlay {
    background: linear-gradient(to top,
            rgba(15, 23, 42, 0.98) 0%,
            rgba(30, 41, 59, 0.85) 40%,
            rgba(30, 41, 59, 0.60) 70%,
            transparent 100%) !important;
}

.services-grid .service-icon {
    font-size: 3.5rem;
    color: #38bdf8 !important;
    margin-bottom: 0;
    text-shadow: 0 2px 12px rgba(56, 189, 248, 0.6);
    filter: drop-shadow(0 4px 8px rgba(56, 189, 248, 0.4));
}

.services-grid .service-card h3 {
    color: #f8fafc !important;
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(56, 189, 248, 0.3);
}

.services-grid .service-card p {
    color: #cbd5e1 !important;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* Services Section Background */
#services {
    background: linear-gradient(180deg,
            #1e293b 0%,
            #0f172a 100%) !important;
}

/* Enhanced Background Sections */
.bg-light {
    background: linear-gradient(180deg,
            #0f172a 0%,
            #1e293b 100%) !important;
    backdrop-filter: blur(12px);
}

/* Navigation polish */
.web-header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid rgba(56, 189, 248, 0.15);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
}

.logo img {
    background: transparent !important;
    padding: 0 !important;
}

/* Footer Light Theme */
.footer {
    background: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    border-top: 2px solid rgba(56, 189, 248, 0.2);
}

.footer-col h3,
.footer-col h4 {
    color: var(--text-light) !important;
}

.footer-col p {
    color: var(--text-dim) !important;
}

.footer-col ul li a {
    color: var(--text-dim) !important;
}

.footer-col ul li a:hover {
    color: var(--accent-cyan) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    color: var(--text-dim) !important;
}

/* Trust Badge Enhancement */
.trust-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 249, 255, 0.9));
    border: 2px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 12px 30px rgba(2, 132, 199, 0.15);
}

.badge-content {
    color: var(--text-light);
}

.badge-title {
    color: var(--accent-cyan) !important;
}

/* Result Card Light Theme */
.result-header {
    background: linear-gradient(135deg, var(--accent-cyan), #0ea5e9) !important;
}

/* Fix any remaining white text on light backgrounds */
section h1,
section h2:not(.footer h2),
section h3:not(.modal-header h3) {
    color: var(--text-light) !important;
}

section p {
    color: var(--text-dim) !important;
}

/* Hero subtitle override for light theme */
section:not(.hero) .hero-subtitle {
    color: var(--text-dim) !important;
}