:root {
    --primary-color: #0066cc;
    --secondary-color: #00cc66;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 76px;
}

/* Hero Section with Carousel */
.hero-section {
    margin-top: -76px; /* Navbar yüksekliğini telafi etmek için */
}

#heroCarousel {
    position: relative;
}

#heroCarousel .carousel-item {
    height: 100vh;
}

#heroCarousel .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    filter: brightness(0.6);
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    padding-bottom: 0;
}

.carousel-indicators {
    bottom: 50px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

/* Mobil cihazlar için carousel yükseklik ayarı */
@media (max-width: 768px) {
    #heroCarousel .carousel-item {
        height: 100vh;
    }
    
    .carousel-caption {
        bottom: 35%;
        padding: 0 20px;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-caption .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .carousel-caption .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Hizmetler Section */
.service-card {
    transition: transform 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-height: 300px; /* Kartları daha büyük yap */
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 2rem;
}

.service-card .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.service-icon {
    font-size: 4rem; /* İkon boyutunu büyüt */
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    display: block;
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: var(--secondary-color);
}

/* Mobil için düzenleme */
@media (max-width: 768px) {
    .service-card {
        margin: 0 0 2rem 0;
        min-height: auto;
        padding: 2rem 1rem;
    }
    
    .service-card .card-body {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .service-card p {
        font-size: 1rem;
    }
}

/* İletişim Section */
.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-form .form-control {
    margin-bottom: 1rem;
}

/* Navbar Customization */
.navbar {
    transition: all 0.3s ease;
    background: transparent !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-scrolled {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #e6f3ff !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
    background: rgba(255,255,255,0.15);
    border-radius: 4px;
}

.navbar-brand {
    padding: 0.5rem 0;
}

/* Aktif menü öğesi için stil */
.navbar-nav .nav-item .nav-link.active {
    color: #f8f9fa !important;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

/* Mobil menü için stil */
.navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
    }
    
    .navbar-nav {
        margin: 0 -1rem;
    }
    
    .nav-item {
        margin: 0.25rem 0;
    }
    
    .navbar-toggler {
        padding: 0.4rem 0.6rem;
        font-size: 1rem;
    }
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Bakım Detayları Stilleri */
.maintenance-details {
    border-left: 5px solid var(--primary-color);
}

.maintenance-details ul li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.maintenance-info {
    border-left: 4px solid var(--secondary-color);
}

.maintenance-info ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.maintenance-info ul li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.maintenance-content {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Kurulum Bölümü Stilleri */
.stat-card {
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2.5rem;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 10px 0;
    color: var(--primary-color);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 1.2rem;
    padding-left: 2rem;
    position: relative;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
}

.benefit-card {
    padding: 1rem;
    border-left: 3px solid var(--primary-color);
    background: rgba(0, 102, 204, 0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.benefit-card h4 i {
    margin-right: 0.5rem;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Animasyon için JavaScript ekleyelim */
.stats-container .stat-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stats-container .stat-card:nth-child(1) { animation-delay: 0.1s; }
.stats-container .stat-card:nth-child(2) { animation-delay: 0.2s; }
.stats-container .stat-card:nth-child(3) { animation-delay: 0.3s; }
.stats-container .stat-card:nth-child(4) { animation-delay: 0.4s; }

/* Footer Styles */
.footer {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #e6f3ff;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer-contact li {
    margin-bottom: 0.75rem;
    color: #e6f3ff;
}

.footer-contact li i {
    margin-right: 10px;
    width: 20px;
    color: #ffffff;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #e6f3ff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .footer [class^="col-"] {
        text-align: center;
    }
    
    .footer-contact li i {
        width: auto;
    }
    
    .footer-links a:hover {
        transform: none;
    }
}

/* Harita Container Stilleri */
.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.map-container iframe {
    transition: all 0.3s ease;
}

.map-container:hover iframe {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 100% !important;
    }
}

/* Smooth reveal animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading animasyonu */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Mobil Optimizasyonları - Güncelleme */
@media (max-width: 768px) {
    /* Hero Section düzeltmeleri */
    #heroCarousel .carousel-item {
        height: 100vh;
    }
    
    .carousel-caption {
        bottom: 35%;
        padding: 0 20px;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .carousel-caption .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    /* Navbar düzeltmeleri */
    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar-collapse {
        background: var(--primary-color);
        border-radius: 8px;
        padding: 1rem;
        margin-top: 0.5rem;
    }

    /* Section padding düzeltmeleri */
    section {
        padding: 3rem 0 !important;
    }

    /* Hizmet kartları düzeltmeleri */
    .service-card {
        margin: 0 0 2rem 0;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .service-card .card-body {
        padding: 1.5rem;
    }

    /* İstatistik kartları düzeltmeleri */
    .stat-card {
        margin-bottom: 1.5rem;
        padding: 1.5rem !important;
    }

    /* Bakım detayları düzeltmeleri */
    .maintenance-details {
        padding: 1.5rem !important;
    }

    .maintenance-content {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* İletişim formu düzeltmeleri */
    .contact-form-container {
        margin-top: 2rem;
        padding: 1.5rem !important;
    }

    .map-container {
        height: 300px;
    }

    .map-container iframe {
        height: 100% !important;
    }

    /* Footer düzeltmeleri */
    .footer {
        text-align: center;
        padding: 2rem 0 1rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .footer-bottom .text-md-end {
        text-align: center !important;
        margin-top: 1rem;
    }
}

/* Daha küçük mobil cihazlar için ek düzeltmeler */
@media (max-width: 576px) {
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.75rem;
    }

    .carousel-caption .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* iPhone SE gibi çok küçük ekranlar için */
@media (max-width: 375px) {
    .carousel-caption h1,
    .carousel-caption h2 {
        font-size: 1.5rem;
    }

    .carousel-caption .lead {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
} 