/* ============================================
   ALFA Dizayn - Iletisim Sayfasi Stilleri
   ============================================ */

/* Header dark override */
.header-area.header-hybrid { background: rgba(10, 10, 10, 0.95) !important; backdrop-filter: blur(20px) !important; }
.header-area .header-logo-img { filter: brightness(0) invert(1) !important; }
.header-area .main-menu ul li a { color: rgba(255,255,255,0.8) !important; }
.header-area .main-menu ul li a:hover { color: var(--lime) !important; }
.header-area .submenu { background: #111 !important; border-color: rgba(255,255,255,0.1) !important; }
.header-area .submenu li a { color: rgba(255,255,255,0.7) !important; }
.header-area .submenu li a:hover { color: var(--lime) !important; background: rgba(255,255,255,0.05) !important; }
.header-area .btn-talk-hybrid { background: var(--lime) !important; color: var(--dark) !important; }

/* Scrolled Header - Dark Mode */
.header-area.header-scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}
.header-area.header-scrolled .header-logo-img { filter: brightness(0) invert(1) !important; }
.header-area.header-scrolled .main-menu ul li a { color: rgba(255,255,255,0.85) !important; }
.header-area.header-scrolled .btn-talk-hybrid { background: #c8f31d !important; color: #0d0d12 !important; }
.header-area.header-scrolled .btn-theme-toggle { background: rgba(255,255,255,0.1) !important; color: #c8f31d !important; border-color: rgba(255,255,255,0.2) !important; }
.header-area.header-scrolled .btn-theme-toggle i { color: #c8f31d !important; }
.header-area.header-scrolled .mobile-toggle span { background-color: #fff !important; }

.mobile-logo-img { filter: brightness(0) invert(1) !important; }

/* Mobile Menu - Dark Override */
.mobile-menu-content {
    background: #111 !important;
    border-left: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu-close {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}
.mobile-nav ul li {
    border-bottom-color: rgba(255,255,255,0.08) !important;
}
.mobile-nav ul li a {
    color: #fff !important;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li a.active {
    color: var(--lime) !important;
}
.mobile-submenu {
    background: rgba(255,255,255,0.03) !important;
}
.mobile-submenu li a {
    color: rgba(255,255,255,0.7) !important;
}
.mobile-submenu li a:hover {
    color: var(--lime) !important;
}
.mobile-menu-contact {
    border-top-color: rgba(255,255,255,0.08) !important;
}
.mobile-menu-contact .mobile-phone {
    color: var(--lime) !important;
}
.mobile-menu-contact .mobile-phone i {
    color: var(--lime) !important;
}
.mobile-menu-social a {
    background: rgba(255,255,255,0.1) !important;
    color: #fff !important;
}
.mobile-menu-social a:hover {
    background: var(--lime) !important;
    color: var(--dark) !important;
}

/* Light Theme - Mobile Menu Override */
body.light-theme .mobile-menu-content {
    background: #fff !important;
    border-left: 1px solid rgba(13,13,18,0.08);
}
body.light-theme .mobile-menu-header {
    border-bottom: 1px solid rgba(13,13,18,0.08);
}
body.light-theme .mobile-menu-close {
    background: #e9ecef !important;
    color: var(--dark) !important;
}
body.light-theme .mobile-logo-img {
    filter: none !important;
}
body.light-theme .mobile-nav ul li {
    border-bottom-color: rgba(13,13,18,0.08) !important;
}
body.light-theme .mobile-nav ul li a {
    color: var(--dark) !important;
}
body.light-theme .mobile-nav ul li a:hover,
body.light-theme .mobile-nav ul li a.active {
    color: var(--purple) !important;
}
body.light-theme .mobile-submenu {
    background: #f8f9fa !important;
}
body.light-theme .mobile-submenu li a {
    color: rgba(13,13,18,0.7) !important;
}
body.light-theme .mobile-submenu li a:hover {
    color: var(--purple) !important;
}
body.light-theme .mobile-menu-contact {
    border-top-color: rgba(13,13,18,0.08) !important;
}
body.light-theme .mobile-menu-contact .mobile-phone {
    color: var(--purple) !important;
}
body.light-theme .mobile-menu-contact .mobile-phone i {
    color: var(--purple) !important;
}
body.light-theme .mobile-menu-social a {
    background: #f8f9fa !important;
    color: var(--dark) !important;
}
body.light-theme .mobile-menu-social a:hover {
    background: var(--purple) !important;
    color: #fff !important;
}

:root {
    --lime: #c8f31d;
    --purple: #5751e1;
    --dark: #0a0a0a;
    --dark-card: #111111;
    --border: rgba(255,255,255,0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.6);
    --text-muted: rgba(255,255,255,0.4);
}
* { margin: 0; padding: 0; box-sizing: border-box; border-radius: 0 !important; }
body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--dark); color: #fff; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

/* Contact Page Styles */
.contact-hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #0a0a0f 0%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(87, 81, 225, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(200, 243, 29, 0.1);
    border: 1px solid rgba(200, 243, 29, 0.2);
    border-radius: 100px;
    font-size: 13px;
    color: var(--lime);
    margin-bottom: 24px;
}

.hero-badge i { font-size: 10px; }

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--lime), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Info */
.contact-info-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    height: fit-content;
}

.contact-info-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(200, 243, 29, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lime);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-item-content h4 {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 4px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-content a:hover {
    color: var(--lime);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--lime);
    border-color: var(--lime);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-card {
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px;
}

.form-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 767px) {
    .form-row { grid-template-columns: 1fr; }

    .contact-hero {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px;
    }

    .contact-info-title,
    .form-title {
        font-size: 1.25rem;
    }

    .contact-item-icon {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .contact-item-content p,
    .contact-item-content a {
        font-size: 14px;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form-group textarea {
        min-height: 120px;
    }

    .submit-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    .map-section {
        padding: 0 0 50px;
    }

    .map-wrapper {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 100px 0 40px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 16px;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-item-icon {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .form-group label {
        font-size: 13px;
    }

    .map-wrapper {
        height: 220px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--lime);
    background: rgba(200, 243, 29, 0.03);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Custom Select Styling for Dark Theme */
.form-group select {
    background-color: #161616;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 45px;
}

.form-group select:focus {
    background-color: rgba(200, 243, 29, 0.05);
    border-color: var(--lime);
}

.form-group select option {
    background-color: #161616;
    color: #fff;
    padding: 12px 16px;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--lime);
    color: var(--dark);
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(200, 243, 29, 0.2);
}

.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-message.success {
    background: rgba(200, 243, 29, 0.1);
    border: 1px solid rgba(200, 243, 29, 0.3);
    color: var(--lime);
}

.form-message.error {
    background: rgba(255, 87, 87, 0.1);
    border: 1px solid rgba(255, 87, 87, 0.3);
    color: #ff5757;
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(1) invert(1) contrast(1.1);
}

/* ============================================
   LIGHT THEME OVERRIDES
   ============================================ */
body.light-theme {
    background: #f8f9fa;
    color: #0d0d12;
}

/* Light Theme - Header Override (for contact page) */
body.light-theme .header-area.header-hybrid {
    background: rgba(255, 255, 255, 0.95) !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

body.light-theme .header-area .header-logo-img {
    filter: none !important;
}

body.light-theme .header-area .main-menu ul li a {
    color: #0d0d12 !important;
}

body.light-theme .header-area .main-menu ul li a:hover {
    color: #5751e1 !important;
}

body.light-theme .header-area .submenu {
    background: #ffffff !important;
    border-color: #e0e0e0 !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

body.light-theme .header-area .submenu li a {
    color: #333333 !important;
}

body.light-theme .header-area .submenu li a:hover {
    color: #5751e1 !important;
    background: rgba(87, 81, 225, 0.05) !important;
}

body.light-theme .header-area .btn-talk-hybrid {
    background: #5751e1 !important;
    color: #ffffff !important;
}

/* Light Theme - Scrolled Header */
body.light-theme .header-area.header-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

body.light-theme .header-area.header-scrolled .header-logo-img {
    filter: none !important;
}

body.light-theme .header-area.header-scrolled .main-menu ul li a {
    color: #333 !important;
}

body.light-theme .header-area.header-scrolled .main-menu ul li a:hover {
    color: #5751e1 !important;
}

body.light-theme .header-area.header-scrolled .btn-talk-hybrid {
    background: #5751e1 !important;
    color: #fff !important;
}

body.light-theme .header-area.header-scrolled .btn-theme-toggle {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #5751e1 !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
}

body.light-theme .header-area.header-scrolled .btn-theme-toggle i {
    color: #5751e1 !important;
}

body.light-theme .header-area.header-scrolled .mobile-toggle span {
    background-color: #0d0d12 !important;
}

body.light-theme .mobile-logo-img {
    filter: none !important;
}

/* Light Theme - Hero Section */
body.light-theme .contact-hero {
    background: linear-gradient(180deg, #f0f1f5 0%, #f8f9fa 100%);
}
body.light-theme .contact-hero::before {
    background: radial-gradient(circle, rgba(87, 81, 225, 0.08) 0%, transparent 70%);
}
body.light-theme .hero-badge {
    background: rgba(87, 81, 225, 0.1);
    border-color: rgba(87, 81, 225, 0.2);
    color: var(--purple);
}
body.light-theme .hero-title {
    color: #0d0d12;
}
body.light-theme .hero-subtitle {
    color: rgba(13,13,18,0.6);
}

/* Light Theme - Contact Info Card */
body.light-theme .contact-info-card {
    background: #ffffff;
    border: 1px solid rgba(13,13,18,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-theme .contact-info-title {
    color: #0d0d12;
}
body.light-theme .contact-item-icon {
    background: var(--purple);
    color: #ffffff;
}
body.light-theme .contact-item-content h4 {
    color: rgba(13,13,18,0.5);
}
body.light-theme .contact-item-content p,
body.light-theme .contact-item-content a {
    color: #0d0d12;
}
body.light-theme .contact-item-content a:hover {
    color: var(--purple);
}
body.light-theme .social-links {
    border-top-color: rgba(13,13,18,0.1);
}
body.light-theme .social-link {
    background: rgba(13,13,18,0.03);
    border: 1px solid rgba(13,13,18,0.1);
    color: #0d0d12;
}
body.light-theme .social-link:hover {
    background: var(--purple);
    border-color: var(--purple);
    color: #ffffff;
}

/* Light Theme - Contact Form Card */
body.light-theme .contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(13,13,18,0.1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
body.light-theme .form-title {
    color: #0d0d12;
}
body.light-theme .form-group label {
    color: rgba(13,13,18,0.7);
}
body.light-theme .form-group input,
body.light-theme .form-group textarea {
    background: #ffffff;
    border: 1px solid rgba(13,13,18,0.15);
    color: #0d0d12;
}
body.light-theme .form-group input:focus,
body.light-theme .form-group textarea:focus {
    border-color: var(--purple);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(87,81,225,0.1);
}
body.light-theme .form-group input::placeholder,
body.light-theme .form-group textarea::placeholder {
    color: rgba(13,13,18,0.4);
}

/* Light Theme - Select Dropdown */
body.light-theme .form-group select {
    background-color: #ffffff;
    color: #0d0d12;
    border: 1px solid rgba(13,13,18,0.15);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230d0d12' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
}
body.light-theme .form-group select:focus {
    background-color: #ffffff;
    border-color: var(--purple);
    box-shadow: 0 0 0 3px rgba(87,81,225,0.1);
}
body.light-theme .form-group select option {
    background-color: #ffffff;
    color: #0d0d12;
}

/* Light Theme - Submit Button */
body.light-theme .submit-btn {
    background: var(--purple);
    color: #ffffff;
}
body.light-theme .submit-btn:hover {
    background: #4840c9;
    box-shadow: 0 10px 30px rgba(87,81,225,0.3);
}

/* Light Theme - Form Messages */
body.light-theme .form-message.success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #16a34a;
}
body.light-theme .form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

/* Light Theme - Map Section */
body.light-theme .map-wrapper {
    border-color: rgba(13,13,18,0.1);
}
body.light-theme .map-wrapper iframe {
    filter: grayscale(0.3) contrast(1);
}

/* ==================== MOBILE MENU - LIGHT THEME ==================== */
body.light-theme .mobile-menu-content {
    background: #fff !important;
}

body.light-theme .mobile-menu-header {
    background: #f8f9fa !important;
    border-bottom: 1px solid rgba(13, 13, 18, 0.08) !important;
}

body.light-theme .mobile-menu-close {
    background: #e9ecef !important;
    color: #0d0d12 !important;
}

body.light-theme .mobile-nav ul li {
    border-bottom-color: rgba(13, 13, 18, 0.08) !important;
}

body.light-theme .mobile-nav ul li a {
    color: #0d0d12 !important;
}

body.light-theme .mobile-nav ul li a:hover,
body.light-theme .mobile-nav ul li a.active {
    color: #5751e1 !important;
}

body.light-theme .mobile-nav ul li a i {
    color: #0d0d12 !important;
}

body.light-theme .mobile-submenu {
    background: #f8f9fa !important;
}

body.light-theme .mobile-submenu li a {
    color: rgba(13, 13, 18, 0.7) !important;
}

body.light-theme .mobile-submenu li a:hover {
    color: #5751e1 !important;
}

body.light-theme .mobile-menu-contact .mobile-phone {
    color: #5751e1 !important;
}

body.light-theme .mobile-menu-social a {
    background: #f8f9fa !important;
    color: #0d0d12 !important;
}

body.light-theme .mobile-menu-social a:hover {
    background: #5751e1 !important;
    color: #fff !important;
}

/* ==================== CRITICAL HEADER FIXES ==================== */
/* DARK MODE - Default (no light-theme class) */
/* Theme toggle button - always visible */
.header-area .btn-theme-toggle {
    background: rgba(255,255,255,0.08) !important;
    border: 2px solid rgba(255,255,255,0.25) !important;
    color: #c8f31d !important;
}
.header-area .btn-theme-toggle i {
    color: #c8f31d !important;
}

/* DARK MODE - Scrolled state */
.header-area.header-scrolled {
    background: rgba(10, 10, 10, 0.98) !important;
}
.header-area.header-scrolled .header-logo-img {
    filter: brightness(0) invert(1) !important;
}
.header-area.header-scrolled .btn-theme-toggle {
    background: rgba(255,255,255,0.1) !important;
    border-color: rgba(255,255,255,0.2) !important;
    color: #c8f31d !important;
}
.header-area.header-scrolled .btn-theme-toggle i {
    color: #c8f31d !important;
}

/* LIGHT MODE - Theme toggle must be purple */
body.light-theme .header-area .btn-theme-toggle {
    background: rgba(0,0,0,0.05) !important;
    border: 2px solid rgba(0,0,0,0.15) !important;
    color: #5751e1 !important;
}
body.light-theme .header-area .btn-theme-toggle i {
    color: #5751e1 !important;
}

/* LIGHT MODE - Scrolled state */
body.light-theme .header-area.header-scrolled .btn-theme-toggle {
    background: rgba(0,0,0,0.05) !important;
    border-color: rgba(0,0,0,0.15) !important;
    color: #5751e1 !important;
}
body.light-theme .header-area.header-scrolled .btn-theme-toggle i {
    color: #5751e1 !important;
}
body.light-theme .header-area.header-scrolled .header-logo-img {
    filter: none !important;
}

/* MOBILE - Theme toggle visibility */
@media (max-width: 991px) {
    /* Dark mode mobile */
    .header-area .btn-theme-toggle {
        width: 44px !important;
        height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255,255,255,0.1) !important;
        border: 2px solid rgba(255,255,255,0.2) !important;
    }
    .header-area .btn-theme-toggle i {
        color: #c8f31d !important;
        font-size: 18px !important;
    }

    /* Light mode mobile */
    body.light-theme .header-area .btn-theme-toggle {
        background: rgba(87, 81, 225, 0.08) !important;
        border: 2px solid rgba(87, 81, 225, 0.2) !important;
        color: #5751e1 !important;
    }
    body.light-theme .header-area .btn-theme-toggle i,
    body.light-theme .header-area .btn-theme-toggle i.fas,
    body.light-theme .header-area .btn-theme-toggle i.fa-sun,
    body.light-theme .header-area .btn-theme-toggle i.fa-moon {
        color: #5751e1 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        font-size: 18px !important;
    }
}

/* ============================================
   RECAPTCHA THEME INTEGRATION
   ============================================ */

/* reCAPTCHA Container - Dark Mode */
.g-recaptcha {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* reCAPTCHA wrapper - kare koseler ve tema borderi */
.g-recaptcha > div {
    position: relative;
    z-index: 1;
}

/* Dark mode - Kare cerceve overlay */
.g-recaptcha::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border: 1px solid var(--border);
    background: var(--dark-card);
    z-index: 0;
    pointer-events: none;
}

/* Dark mode - Kose vurgu cizgileri */
.g-recaptcha::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--lime);
    border-left: 2px solid var(--lime);
    z-index: 2;
    pointer-events: none;
}

/* Form group icinde ortalama */
.form-group .g-recaptcha {
    margin-top: 4px;
}

/* reCAPTCHA iframe container stilizasyonu */
.g-recaptcha iframe {
    position: relative;
    z-index: 1;
    filter: invert(0.9) hue-rotate(180deg) !important;
}

/* Fix for reCAPTCHA challenge popup - Don't invert */
body > div[style*="position: fixed"] iframe {
    filter: none !important;
}

/* ============================================
   LIGHT THEME - RECAPTCHA
   ============================================ */
body.light-theme .g-recaptcha::before {
    border-color: rgba(13,13,18,0.15);
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

body.light-theme .g-recaptcha::after {
    border-top-color: var(--purple);
    border-left-color: var(--purple);
}

/* Light Mode - Remove Dark Filter */
body.light-theme .g-recaptcha iframe {
    filter: none !important;
}

/* Responsive - Mobil */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.9);
        transform-origin: left top;
    }

    .form-group .g-recaptcha {
        margin-bottom: -10px;
    }
}

@media (max-width: 360px) {
    .g-recaptcha {
        transform: scale(0.82);
    }

    .form-group .g-recaptcha {
        margin-bottom: -15px;
    }
}
