/* ==========================================
   CORPORATE THEME - SAĞLAMLAR VİNÇ
   Premium kurumsal tasarım stilleri
   ========================================== */

/* ========================================
   1. KURUMSAL RENK PALETİ
   ======================================== */
:root {
    --corp-primary: #1e3a5f;
    --corp-primary-dark: #152a45;
    --corp-primary-light: #2a4d7a;
    --corp-accent: #3b82f6;
    --corp-accent-glow: rgba(59, 130, 246, 0.3);
    --corp-gold: #d4af37;
    --corp-gold-light: #f0d77a;

    /* Premium gradients */
    --corp-gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1e3a5f 100%);
    --corp-gradient-dark: linear-gradient(180deg, #0f1115 0%, #1a1d21 50%, #0f1115 100%);
    --corp-gradient-shine: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.05) 100%);
    --corp-gradient-overlay: linear-gradient(180deg, rgba(15, 17, 21, 0.7) 0%, rgba(30, 58, 95, 0.4) 50%, rgba(15, 17, 21, 0.9) 100%);

    /* Premium shadows */
    --corp-shadow-glow: 0 0 40px rgba(30, 58, 95, 0.2), 0 0 80px rgba(30, 58, 95, 0.1);
    --corp-shadow-card: 0 10px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.05);
    --corp-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 40px rgba(30, 58, 95, 0.15);
}

/* ========================================
   2. PREMIUM HERO SECTION
   ======================================== */
.hero,
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero::before,
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--corp-gradient-overlay);
    z-index: 1;
    pointer-events: none;
}

/* Animated gradient mesh */
.hero::after,
.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(30, 58, 95, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(44, 82, 130, 0.2) 0%, transparent 60%);
    animation: meshGradient 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes meshGradient {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(2%, -2%) rotate(2deg);
    }

    50% {
        transform: translate(-1%, 1%) rotate(-1deg);
    }

    75% {
        transform: translate(-2%, 2%) rotate(-2deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero title premium styling */
.hero-title,
.hero h1 {
    font-weight: 800;
    letter-spacing: -0.5px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   3. PREMIUM NAVIGATION
   ======================================== */
.navbar,
.main-header,
header.header {
    background: rgba(15, 17, 21, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar.scrolled,
.main-header.scrolled,
header.header.scrolled {
    background: rgba(15, 17, 21, 0.95) !important;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.03);
}

/* Premium nav links */
.nav-links a,
.nav-menu a {
    position: relative;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover,
.nav-menu a:hover {
    color: var(--corp-accent) !important;
    transform: translateY(-1px);
}

/* Active nav indicator */
.nav-links a.active,
.nav-menu a.active {
    color: var(--corp-accent) !important;
}

.nav-links a.active::after,
.nav-menu a.active::after {
    background: linear-gradient(90deg, var(--corp-accent), var(--corp-primary-light)) !important;
    height: 3px !important;
    width: 100% !important;
    bottom: -2px !important;
    border-radius: 2px !important;
}

/* ========================================
   4. PREMIUM SECTION STYLING
   ======================================== */
section {
    position: relative;
}

/* Section title premium styling */
.section-title,
.section-header h2,
h2.section-title {
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-title::after,
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--corp-primary), var(--corp-accent), var(--corp-primary-light));
    border-radius: 2px;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {

    0%,
    100% {
        opacity: 1;
        width: 80px;
    }

    50% {
        opacity: 0.8;
        width: 100px;
    }
}

/* Section subtitle */
.section-subtitle,
.section-header p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

/* Premium section backgrounds */
.services-section,
.about-section,
.gallery-section,
.contact-section {
    position: relative;
    overflow: hidden;
}

.services-section::before,
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(30, 58, 95, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* ========================================
   5. PREMIUM CARD ENHANCEMENTS
   ======================================== */
.service-card,
.feature-card,
.stat-item,
.gallery-item,
.blog-card,
.team-member {
    background: linear-gradient(145deg, rgba(31, 35, 40, 0.95), rgba(26, 29, 33, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: var(--corp-shadow-card);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Card inner glow */
.service-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Premium card hover */
.service-card:hover,
.feature-card:hover,
.stat-item:hover,
.gallery-item:hover,
.blog-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: var(--corp-shadow-hover);
    border-color: rgba(59, 130, 246, 0.2) !important;
}

/* Card hover glow effect */
.service-card:hover::after,
.feature-card:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
    animation: cardGlow 2s ease-out forwards;
}

@keyframes cardGlow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

/* ========================================
   6. PREMIUM BUTTONS - COMPREHENSIVE
   ======================================== */

/* Base button variables */
:root {
    --btn-primary-gradient: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #1e3a5f 100%);
    --btn-accent-gradient: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #3b82f6 100%);
    --btn-shadow: 0 4px 15px rgba(30, 58, 95, 0.35);
    --btn-shadow-hover: 0 8px 30px rgba(30, 58, 95, 0.45), 0 0 20px rgba(59, 130, 246, 0.2);
    --btn-radius: 12px;
    --btn-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Primary buttons */
.btn,
.btn-primary,
.cta-button,
.submit-btn,
.btn-cta,
button[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--btn-primary-gradient);
    background-size: 200% 100%;
    border: none;
    color: white !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    padding: 0.9rem 2rem;
    border-radius: var(--btn-radius);
    cursor: pointer;
    text-decoration: none;
    box-shadow: var(--btn-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: var(--btn-transition);
    position: relative;
    overflow: hidden;
}

/* Shine sweep effect */
.btn::before,
.btn-primary::before,
.cta-button::before,
.submit-btn::before,
.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.6s ease;
}

/* Top highlight line */
.btn::after,
.btn-primary::after,
.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

/* Hover effects */
.btn:hover,
.btn-primary:hover,
.cta-button:hover,
.submit-btn:hover,
.btn-cta:hover,
button[type="submit"]:hover {
    background-position: 100% 0;
    transform: translateY(-3px);
    box-shadow: var(--btn-shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    color: white !important;
}

.btn:hover::before,
.btn-primary:hover::before,
.cta-button:hover::before,
.submit-btn:hover::before {
    left: 100%;
}

/* Arrow icon animation */
.btn i,
.btn-primary i,
.cta-button i {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.btn:hover i,
.btn-primary:hover i,
.cta-button:hover i {
    transform: translateX(4px);
}

/* Active/Click state */
.btn:active,
.btn-primary:active,
.cta-button:active,
.submit-btn:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: var(--btn-shadow);
}

/* Focus state for accessibility */
.btn:focus-visible,
.btn-primary:focus-visible,
.cta-button:focus-visible {
    outline: none;
    box-shadow:
        var(--btn-shadow-hover),
        0 0 0 3px rgba(59, 130, 246, 0.4);
}

/* Secondary/Outline buttons */
.btn-secondary,
.btn-outline {
    background: transparent;
    border: 2px solid #1e3a5f;
    color: #1e3a5f !important;
    box-shadow: none;
    padding: 0.8rem 1.9rem;
}

.btn-secondary::before,
.btn-outline::before {
    background: linear-gradient(90deg,
            transparent,
            rgba(30, 58, 95, 0.1),
            transparent);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #1e3a5f;
    color: white !important;
    border-color: #1e3a5f;
    box-shadow: var(--btn-shadow);
}

/* Ghost button */
.btn-ghost {
    background: transparent;
    border: none;
    color: #1e3a5f !important;
    box-shadow: none;
}

.btn-ghost:hover {
    background: rgba(30, 58, 95, 0.1);
    transform: translateY(-2px);
}

/* Small buttons */
.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 10px;
}

/* Large buttons */
.btn-lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

/* Block button */
.btn-block {
    width: 100%;
}

/* Disabled state */
.btn:disabled,
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover,
.btn-primary:disabled:hover {
    box-shadow: var(--btn-shadow);
}

/* Loading state */
.btn.loading,
.btn-primary.loading {
    color: transparent !important;
    pointer-events: none;
}

.btn.loading::after,
.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: btnSpinner 0.8s linear infinite;
}

@keyframes btnSpinner {
    to {
        transform: rotate(360deg);
    }
}

/* Pulse animation for CTA emphasis */
.btn-pulse {
    animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow:
            var(--btn-shadow),
            0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow:
            var(--btn-shadow-hover),
            0 0 0 10px rgba(59, 130, 246, 0);
    }
}

/* Dark theme button adjustments */
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .btn-outline {
    border-color: #3b82f6;
    color: #3b82f6 !important;
}

[data-theme="dark"] .btn-secondary:hover,
[data-theme="dark"] .btn-outline:hover {
    background: #3b82f6;
    color: white !important;
    border-color: #3b82f6;
}

[data-theme="dark"] .btn-ghost {
    color: #60a5fa !important;
}

[data-theme="dark"] .btn-ghost:hover {
    background: rgba(59, 130, 246, 0.15);
}

/* Light theme specific overrides */
[data-theme="light"] .btn-primary,
[data-theme="light"] .cta-button,
[data-theme="light"] .submit-btn {
    box-shadow:
        0 4px 15px rgba(30, 58, 95, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

[data-theme="light"] .btn-primary:hover,
[data-theme="light"] .cta-button:hover {
    box-shadow:
        0 8px 25px rgba(30, 58, 95, 0.35),
        0 0 20px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


/* ========================================
   7. PREMIUM ICON STYLING
   ======================================== */
.service-icon,
.feature-icon,
.stat-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3), rgba(59, 130, 246, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 16px;
    color: var(--corp-accent);
    font-size: 1.6rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.service-icon::before,
.feature-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--corp-accent), transparent, var(--corp-primary));
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-icon,
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.service-card:hover .service-icon::before,
.feature-card:hover .feature-icon::before {
    opacity: 0.5;
}

/* ========================================
   8. PREMIUM FOOTER
   ======================================== */
footer,
.footer,
.site-footer {
    background: linear-gradient(180deg, #0a0c0f 0%, #0f1115 50%, #0a0c0f 100%) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

footer::before,
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(30, 58, 95, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.footer-links a {
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--corp-accent) !important;
    transform: translateX(5px);
}

/* ========================================
   9. PREMIUM CONTACT SECTION
   ======================================== */
.contact-form-container,
.contact-container,
.contact-card {
    background: linear-gradient(145deg, rgba(31, 35, 40, 0.95), rgba(26, 29, 33, 0.98)) !important;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    box-shadow: var(--corp-shadow-card);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--corp-primary), var(--corp-accent), var(--corp-primary-light));
}

/* Premium input styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
    background: rgba(15, 17, 21, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 10px;
    color: white;
    padding: 1rem 1.2rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: var(--corp-accent) !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15), 0 0 20px rgba(59, 130, 246, 0.1);
    outline: none;
}

/* ========================================
   10. PREMIUM STATS SECTION
   ======================================== */
.stat-number,
.counter-number {
    font-weight: 800;
    font-size: 3rem;
    background: linear-gradient(135deg, white-space 0%, var(--corp-accent) 50%, var(--corp-primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.8;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ========================================
   11. PREMIUM TESTIMONIAL CARDS
   ======================================== */
.testimonial-card {
    background: linear-gradient(145deg, rgba(31, 35, 40, 0.95), rgba(26, 29, 33, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--corp-shadow-card);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: rgba(59, 130, 246, 0.15);
    line-height: 1;
}

/* ========================================
   12. PREMIUM BADGE STYLING
   ======================================== */
.badge,
.tag,
.category-badge,
.service-tag {
    background: linear-gradient(135deg, var(--corp-primary) 0%, var(--corp-primary-light) 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   13. FLOATING ELEMENTS
   ======================================== */
.whatsapp-button,
.phone-fixed-button,
.scroll-top-btn {
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.whatsapp-button:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow:
        0 8px 30px rgba(37, 211, 102, 0.4),
        0 0 40px rgba(37, 211, 102, 0.2);
}

.phone-fixed-button:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow:
        0 8px 30px rgba(30, 58, 95, 0.4),
        0 0 40px rgba(59, 130, 246, 0.2);
}

/* ========================================
   14. LIGHT THEME ADJUSTMENTS
   ======================================== */
[data-theme="light"] .service-card,
[data-theme="light"] .feature-card,
[data-theme="light"] .stat-item,
[data-theme="light"] .gallery-item {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.99)) !important;
    border-color: rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.03) !important;
}

/* Light theme card text visibility fix */
[data-theme="light"] .service-card h3,
[data-theme="light"] .service-card .service-title,
[data-theme="light"] .feature-card h3,
[data-theme="light"] .stat-item h3 {
    color: #1e2124 !important;
    -webkit-text-fill-color: #1e2124 !important;
}

[data-theme="light"] .service-card p,
[data-theme="light"] .service-card .service-desc,
[data-theme="light"] .service-card .service-description,
[data-theme="light"] .feature-card p,
[data-theme="light"] .stat-item p {
    color: #4a5568 !important;
    -webkit-text-fill-color: #4a5568 !important;
    opacity: 1 !important;
}

[data-theme="light"] .service-card span,
[data-theme="light"] .service-card .service-feature-tag,
[data-theme="light"] .feature-card span {
    color: #4a5568 !important;
}

/* Light theme icon styling */
[data-theme="light"] .service-icon,
[data-theme="light"] .feature-icon {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1), rgba(59, 130, 246, 0.08)) !important;
    border-color: rgba(30, 58, 95, 0.15) !important;
}

[data-theme="light"] .service-icon i,
[data-theme="light"] .feature-icon i {
    color: #1e3a5f !important;
}

/* Light theme badges */
[data-theme="light"] .service-tag,
[data-theme="light"] .badge {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%) !important;
    color: white !important;
}

[data-theme="light"] .navbar,
[data-theme="light"] .main-header,
[data-theme="light"] header.header {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] footer,
[data-theme="light"] .footer {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%) !important;
    color: #1e2124;
}

[data-theme="light"] .footer-links a,
[data-theme="light"] footer a {
    color: #4a5568 !important;
}

[data-theme="light"] .footer-links a:hover,
[data-theme="light"] footer a:hover {
    color: #1e3a5f !important;
}

[data-theme="light"] .contact-form-container,
[data-theme="light"] .contact-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.99)) !important;
}

[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea {
    background: rgba(241, 245, 249, 0.9) !important;
    border-color: rgba(0, 0, 0, 0.12) !important;
    color: #1f2937 !important;
}

[data-theme="light"] .contact-form input::placeholder,
[data-theme="light"] .contact-form textarea::placeholder {
    color: #9ca3af !important;
}

/* Light theme section titles */
[data-theme="light"] .section-title,
[data-theme="light"] .section-header h2 {
    color: #1e2124 !important;
}

[data-theme="light"] .section-subtitle,
[data-theme="light"] .section-header p {
    color: #4a5568 !important;
}

/* Light theme stat numbers */
[data-theme="light"] .stat-number,
[data-theme="light"] .counter-number {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 50%, #3b82f6 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

[data-theme="light"] .stat-label {
    color: #4a5568 !important;
}

/* ========================================
   14B. LIGHT THEME SERVICE CARD FIXES
   Critical: Override inline styles from index.php
   ======================================== */
[data-theme="light"] .service-title,
[data-theme="light"] .service-card .service-title,
[data-theme="light"] .service-card.modern .service-title,
[data-theme="light"] .service-card h3 {
    background: none !important;
    background-image: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: #1e2124 !important;
    color: #1e2124 !important;
}

[data-theme="light"] .service-desc,
[data-theme="light"] .service-card .service-desc,
[data-theme="light"] .service-card-body p {
    color: #4a5568 !important;
    -webkit-text-fill-color: #4a5568 !important;
}

[data-theme="light"] .service-feature-tag,
[data-theme="light"] .service-card .service-feature-tag {
    background: rgba(30, 58, 95, 0.08) !important;
    border-color: rgba(30, 58, 95, 0.15) !important;
    color: #4a5568 !important;
}

[data-theme="light"] .service-card.modern {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.99)) !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
}

[data-theme="light"] .service-link,
[data-theme="light"] .service-card-footer a {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%) !important;
    color: white !important;
}

[data-theme="light"] .service-link span {
    color: white !important;
    -webkit-text-fill-color: white !important;
    background: none !important;
}



/* ========================================
   15. RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {

    .hero::after,
    .hero-section::after {
        animation: none;
    }

    .section-title::after,
    .section-header h2::after {
        animation: none;
        width: 60px;
    }

    .service-card:hover,
    .feature-card:hover {
        transform: translateY(-5px);
    }

    .stat-number,
    .counter-number {
        font-size: 2.5rem;
    }
}

/* ========================================
   16. REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {

    .hero::after,
    .hero-section::after,
    .section-title::after {
        animation: none !important;
    }

    * {
        transition-duration: 0.01ms !important;
    }
}