/* assets/custom.css - Özelleştirmeler */

/* Genel Stilller */
.beyazlat {
    color: #ffffff !important;
}

.text-primary {
    color: #007bff !important;
}

.bg-primary {
    background-color: #007bff !important;
}

/* Header Özelleştirmeleri */
.header-area .navbar-nav .nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-area .navbar-nav .nav-link:hover {
    color: #007bff;
}

/* Dropdown Menu */
.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
}

.navbar-nav .dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Hero Section */
.hero-area-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-area-content h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

/* Features */
.single-feature-item {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.single-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* About Section */
.info-content-area .highlight {
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
    padding-left: 20px;
    position: relative;
}

.info-content-area .highlight::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.founded .years {
    font-size: 3rem;
    font-weight: bold;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Services Section */
.single-logistic-area {
    background: #fff;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s ease;
}

.single-logistic-area:hover {
    background: #f8f9fa;
}

.service-icon i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Process Section */
.single-process-area {
    text-align: center;
    padding: 30px 15px;
    transition: all 0.3s ease;
}

.single-process-area:hover {
    transform: translateY(-10px);
}

.process-icon img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-icon i {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 20px;
}

/* Breadcrumb */
.breadcrumb-area {
    background: #f8f9fa;
    padding: 20px 0;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #007bff;
}

.breadcrumb-item.active {
    color: #495057;
}

/* Error Page */
.error-area {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content h1 {
    font-size: 8rem;
    color: #007bff;
    font-weight: bold;
    margin-bottom: 20px;
}

.error-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* Fixed Call to Action */
#fix {
    position: fixed;
    z-index: 999;
    left: 2%;
    bottom: 50px;
}

#fix .simdiara {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #28a745;
    text-align: center;
    display: block;
    padding: 15px 20px;
    width: auto;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#fix .simdiara:hover {
    background-color: #218838;
    transform: scale(1.05);
}

#fix .canliyardim {
    font-size: 18px;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
    background-color: #000000;
    text-align: center;
    display: block;
    padding: 15px 20px;
    width: auto;
    margin-top: 10px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

#fix .canliyardim:hover {
    background-color: #333333;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-area-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-area-content h2 {
        font-size: 1.4rem;
    }
    
    #fix {
        left: 5px;
        bottom: 20px;
    }
    
    #fix .simdiara,
    #fix .canliyardim {
        font-size: 16px;
        padding: 12px 16px;
    }
    
    .error-content h1 {
        font-size: 5rem;
    }
    
    .founded .years {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-area-content h1 {
        font-size: 2rem;
    }
    
    .hero-area-content h2 {
        font-size: 1.2rem;
    }
    
    .contact-item,
    .single-feature-item {
        padding: 20px;
    }
    
    .single-process-area {
        padding: 20px 10px;
    }
}

/* Loading Animation */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #007bff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Styles */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}

/* Button Styles */
.main-btn {
    background: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.main-btn:hover {
    background: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
}

.btn-success {
    background: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background: #218838;
    border-color: #1e7e34;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    border-radius: 10px 10px 0 0 !important;
}

/* Utilities */
.text-muted {
    color: #6c757d !important;
}

.text-success {
    color: #28a745 !important;
}

.text-danger {
    color: #dc3545 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(0,0,0,0.075) !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.rounded {
    border-radius: 0.375rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.slide-up {
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s ease forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.zoom-in {
    transform: scale(0.9);
    opacity: 0;
    animation: zoomIn 0.6s ease forwards;
}

@keyframes zoomIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}


