/* 
   CONTACT PAGE - VISIBILITY FIXES
   Text box'lar ve hero düzeltmeleri
*/

/* Form Control - Text Box Görünürlük */
.form-control {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0 !important;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #ffffff !important;
    color: #333333 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .form-control:focus {
        border-color: #dc0000 !important;
        box-shadow: 0 0 0 4px rgba(220, 0, 0, 0.1) !important;
        outline: none;
        background: #ffffff !important;
    }

    .form-control::placeholder {
        color: #999999 !important;
        opacity: 1;
    }

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

/* Input Group Text - Icon Container */
.input-group-text {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    border: 2px solid #e0e0e0;
    border-right: none;
    color: #666666;
    font-size: 1.125rem;
    padding: 0 1rem;
}

/* Error Message Visibility */
.error-message {
    display: block;
    color: #dc0000;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    padding-left: 0.25rem;
}

    .error-message:empty {
        display: none;
    }

/* Validation States */
.form-control.is-valid {
    border-color: #28a745 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.5rem) center;
    background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
    padding-right: calc(1.5em + 1rem);
}

.form-control.is-invalid {
    border-color: #dc0000 !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc0000'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc0000' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.5rem) center;
    background-size: calc(0.75em + 0.5rem) calc(0.75em + 0.5rem);
    padding-right: calc(1.5em + 1rem);
}

/* Page Header - Hero Section Visibility */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f1215 100%) !important;
    padding: 8rem 0 5rem;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(220, 0, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(220, 0, 0, 0.08) 0%, transparent 50%);
        pointer-events: none;
    }

    .page-header .container {
        position: relative;
        z-index: 2;
    }

.page-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.page-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.page-header-logo {
    opacity: 0.15;
    font-size: 8rem !important;
    animation: float 3s ease-in-out infinite;
    color: #ffffff;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Dark Breadcrumb */
.dark-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

    .dark-breadcrumb .breadcrumb-item {
        color: rgba(255, 255, 255, 0.7) !important;
    }

        .dark-breadcrumb .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.9) !important;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .dark-breadcrumb .breadcrumb-item a:hover {
                color: #dc0000 !important;
            }

        .dark-breadcrumb .breadcrumb-item.active {
            color: #ffffff !important;
        }

        .dark-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.4) !important;
        }

/* Contact Section Background */
.contact-section {
    padding: 5rem 0;
    background: #f8f9fa !important;
    position: relative;
}

/* Contact Card */
.contact-card {
    background: #ffffff !important;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e0e0e0;
}

    .contact-card:hover {
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
        transform: translateY(-5px);
    }

    .contact-card .card-header {
        background: linear-gradient(135deg, #dc0000, #b00000) !important;
        padding: 2rem;
        border: none;
    }

        .contact-card .card-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffffff !important;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

    .contact-card .card-body {
        padding: 2.5rem;
        background: #ffffff !important;
    }

/* Form Labels */
.form-label {
    font-weight: 600;
    font-size: 1rem;
    color: #333333 !important;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .form-label i {
        color: #dc0000;
        font-size: 1.125rem;
    }

/* Submit Button */
.btn-primary,
.submit-btn {
    background: linear-gradient(135deg, #dc0000, #b00000) !important;
    border: none !important;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    color: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(220, 0, 0, 0.3);
    cursor: pointer;
}

    .btn-primary:hover,
    .submit-btn:hover {
        background: linear-gradient(135deg, #b00000, #8b0000) !important;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(220, 0, 0, 0.4);
        color: #ffffff !important;
    }

    .btn-primary:active,
    .submit-btn:active {
        transform: translateY(-1px);
    }

/* Checkbox */
.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #e0e0e0;
    margin-top: 0.125rem;
    cursor: pointer;
}

    .form-check-input:checked {
        background-color: #dc0000 !important;
        border-color: #dc0000 !important;
    }

    .form-check-input:focus {
        border-color: #dc0000;
        box-shadow: 0 0 0 4px rgba(220, 0, 0, 0.1);
    }

.form-check-label {
    font-size: 0.95rem;
    color: #666666 !important;
    cursor: pointer;
}

    .form-check-label a {
        color: #dc0000 !important;
        font-weight: 600;
        text-decoration: none;
    }

        .form-check-label a:hover {
            color: #b00000 !important;
            text-decoration: underline;
        }

/* Privacy Error */
#privacy-error {
    display: block;
    color: #dc0000;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

    #privacy-error:empty {
        display: none;
    }

/* Alert Messages */
.alert {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
}

.alert-success {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
    color: #065f46 !important;
}

.alert-danger {
    background: linear-gradient(135deg, #fee2e2, #fecaca) !important;
    color: #991b1b !important;
}

.alert i {
    margin-right: 0.5rem;
}

/* Contact Items */
.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e0e0e0;
}

    .contact-item:last-child {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
    }

.item-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #dc0000, #b00000) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 0, 0, 0.2);
    transition: all 0.3s ease;
}

    .item-icon i {
        font-size: 1.75rem;
        color: #ffffff !important;
    }

.item-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333 !important;
    margin-bottom: 1rem;
}

.item-content p {
    color: #666666 !important;
    margin: 0;
    line-height: 1.8;
}

/* Contact Links */
.contact-link a {
    color: #dc0000 !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

    .contact-link a:hover {
        color: #b00000 !important;
    }

.contact-label {
    font-weight: 600;
    color: #666666 !important;
    min-width: 100px;
    font-size: 0.95rem;
}

/* Working Hours */
.working-hours div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed #e0e0e0;
    color: #666666 !important;
}

    .working-hours div:last-child {
        border-bottom: none;
    }

.working-hours span {
    font-weight: 600;
    color: #333333 !important;
}

/* QR Code Container */
.qr-code-container {
    background: linear-gradient(135deg, #f8f9fa, #f0f0f0) !important;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px dashed #e0e0e0;
}

.qr-wrapper {
    width: 120px;
    height: 120px;
    background: #ffffff !important;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.qr-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #333333 !important;
    margin-bottom: 0.5rem;
}

.qr-content p {
    font-size: 0.95rem;
    color: #666666 !important;
}

/* Social Card */
.social-card {
    background: linear-gradient(135deg, #f8f9fa, #ffffff) !important;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid #e0e0e0;
}

    .social-card h3 {
        font-size: 1.25rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #333333 !important;
    }

/* Social Icons */
.social1-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

    .social1-icon-circle i {
        font-size: 1.75rem;
        z-index: 1;
    }

    .social1-icon-circle.whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    }

    .social1-icon-circle.instagram {
        background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(228, 64, 95, 0.3);
    }

    .social1-icon-circle.linkedin {
        background: linear-gradient(135deg, #0077B5, #005885) !important;
        color: #ffffff !important;
        box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    }

/* Map Container */
.map-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
    border: 1px solid #e0e0e0;
}

.map-header {
    background: linear-gradient(135deg, #1a1a1a, #0f1215) !important;
    padding: 1.5rem 2rem;
}

    .map-header h2 {
        color: #ffffff !important;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

/* Features Container */
.features-container {
    margin-top: 4rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border: 1px solid #e0e0e0;
}

.features-header {
    background: linear-gradient(135deg, #1a1a1a, #0f1215) !important;
    padding: 1.5rem 2rem;
}

    .features-header h2 {
        color: #ffffff !important;
        font-size: 1.5rem;
        font-weight: 700;
        margin: 0;
    }

.features-content {
    padding: 3rem 2rem;
    background: #ffffff !important;
}

.feature-item {
    padding: 2rem;
    border-radius: 16px;
    background: #f8f9fa !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    height: 100%;
    border: 2px solid transparent;
}

    .feature-item:hover {
        background: #ffffff !important;
        border-color: #dc0000;
        transform: translateY(-10px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc0000, #b00000) !important;
    color: #ffffff !important;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(220, 0, 0, 0.3);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #333333 !important;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666666 !important;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 767px) {
    .page-header {
        padding: 5rem 0 3rem;
    }

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

    .form-control {
        padding: 0.875rem 1rem;
    }

    .btn-primary,
    .submit-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* END OF VISIBILITY FIXES */
