/* Genel Stiller */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --warning-color: #ffc107;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
}

/* Hero Section Stilleri */
.hero-section {
    padding-top: 80px;
    background: linear-gradient(to right, #f8f9fa 0%, #f8f9fa 100%);
}

/* Servis Kartları */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

/* Breadcrumb Stilleri */
.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Form Stilleri */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Buton Stilleri */
.btn {
    border-radius: 5px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success {
    background-color: var(--success-color);
    border-color: var(--success-color);
}

.btn-warning {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

/* Kart Stilleri */
.content-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* İstatistik Kartları */
.stat-item {
    padding: 1rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Mobil Responsive */
@media (max-width: 991px) {
    .hero-section {
        text-align: center;
        padding-top: 60px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1.1rem;
    }

    .hero-section img {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-section img {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* İletişim Sayfası Stilleri */
.contact-info a:hover {
    color: var(--primary-color) !important;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
}

/* Hakkımızda Sayfası Stilleri */
.value-item {
    padding: 1.5rem;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
}

/* Hizmet Sayfaları Stilleri */
.service-hero {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.service-details .feature-item {
    margin-bottom: 2rem;
}

/* Footer Stilleri */
.site-footer {
    background-color: #343a40;
    color: white;
    padding: 3rem 0;
}

.site-footer a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.site-footer a:hover {
    color: white;
}

/* Mobil Butonlar */
.mobile-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
}

/* Drawer Stilleri */
.drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 1050;
}

.drawer.open {
    right: 0;
}

/* Navbar Stilleri */
.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.navbar-brand img {
    height: 40px;
}

/* Modal Stilleri */
.modal-content {
    border-radius: 10px;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 10px 10px 0 0;
}

.modal-footer {
    border-top: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

/* Navbar Stilleri */
.navbar {
    background-color: var(--light-color) !important;
    box-shadow: 0 2px 15px rgba(74, 105, 189, 0.1);
}

.navbar .nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    padding: 0.5rem;
    color: var(--primary-color) !important;
    border: none;
    position: relative;
    z-index: 1030;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler i {
    font-size: 1.5rem;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Dropdown Menü Stilleri */
.dropdown-menu {
    border: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    min-width: 250px;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--secondary-color);
    color: white;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

/* Mobil Sabit Butonlar */
.mobile-fixed-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-fixed-buttons .btn {
    flex: 1;
    padding: 12px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .mobile-fixed-buttons {
        display: flex;
        justify-content: space-around;
    }
}

/* Modal Stepper */
.stepper-content {
    display: none;
    padding: 20px 0;
}

.stepper-content.active {
    display: block;
}

/* Footer */
footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--secondary-color) !important;
}

/* Animasyonlar */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Drawer/Offcanvas Stilleri */
.offcanvas {
    max-width: 320px;
    border-right: 3px solid var(--primary-color);
}

.offcanvas-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    color: white;
    font-weight: 600;
}

.btn-close {
    opacity: 1;
    filter: brightness(0) invert(1);
}

.btn-close:focus {
    box-shadow: none;
    opacity: 1;
}

.offcanvas-body {
    padding: 1rem;
}

/* List group stilleri */
.list-group-item {
    border: none;
    padding: 0;
}

.list-group-item a {
    padding: 0.8rem 1rem;
    display: block;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.list-group-item a:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-color);
}

/* Accordion Customization */
.accordion-button:not(.collapsed) {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Feature Box */
.feature-box {
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box i {
    color: var(--primary-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0 50px;
}

/* Content Box */
.content-box {
    height: 100%;
}

.content-box p {
    line-height: 1.7;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-hero {
        padding: 80px 0 40px;
    }
} 