/* Genel Stiller */
:root {
    --primary: #e74c3c;
    --primary-dark: #c0392b;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    padding-top: 76px;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
}

/* Tipografi */
h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    color: #c0392b;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 20px 0;
    color: #c0392b;
}

h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #c0392b;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

/* Kartlar için yazı stilleri */
.card-body h5 {
    font-size: 1.25rem;
    font-weight: 500;
}

.card-body p {
    font-size: 1rem;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    color: #34495e;
}

/* Hero bölümü yazı stilleri */
.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    color: white;
}

/* Navbar yazı stili */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
    height: 76px;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary) !important;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.navbar-nav {
    height: 46px;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 15px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* İletişim popup yazı stili */
.popup {
    display: none; /* Başlangıçta gizli */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Koyu arka plan */
    justify-content: center; /* Ortala */
    align-items: center; /* Ortala */
    z-index: 1000; /* Üstte görünmesi için */
}

.popup-content {
    max-width: 400px; /* Genişliği azaltıldı */
    width: 90%; /* Ekran boyutuna göre ayarlanabilir */
    padding: 30px; /* Padding artırıldı */
    border-radius: 15px; /* Kenar yuvarlama artırıldı */
    background: #ffffff; /* Beyaz arka plan */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Gölge artırıldı */
    overflow: hidden; /* Taşmayı önlemek için */
    text-align: center; /* Metin ortalanacak */
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}

/* İletişim Popup Yazı Stilleri */
.popup-content h2 {
    font-size: 1.5rem; /* Başlık boyutu */
    margin-bottom: 20px; /* Alt boşluk */
}

.contact-message h5 {
    font-size: 1.1rem; /* Küçültüldü */
    margin-bottom: 10px; /* Alt boşluk */
}

.contact-message p {
    font-size: 0.9rem; /* Küçültüldü */
    margin-bottom: 20px; /* Alt boşluk */
}

/* Form alanları için stil ayarları */
.form-floating > .form-control {
    padding-left: 40px; /* Sol iç boşluk */
    border: 2px solid #dee2e6;
    border-radius: 10px;
    height: calc(3rem + 2px); /* Yüksekliği ayarla */
    margin-bottom: 15px; /* Alanlar arasında boşluk */
}

.form-floating > textarea.form-control {
    height: 80px; /* Yüksekliği ayarla */
}

/* Buton stili */
.btn-primary {
    background-color: #e74c3c;
    border-color: #e74c3c;
    font-weight: 500;
    font-size: 1rem; /* Buton yazı boyutu */
    transition: all 0.3s ease;
    padding: 10px; /* Buton içi boşluk */
    border-radius: 5px; /* Buton kenar yuvarlama */
}

.btn-primary:hover {
    background-color: #c0392b;
    border-color: #c0392b;
    transform: translateY(-2px);
}

/* İkon Stilleri */
.phone-number {
    display: flex;
    align-items: center; /* Dikey ortalama */
    justify-content: center; /* Yatay ortalama */
    gap: 10px; /* İkon ve metin arasındaki boşluk */
    margin-bottom: 8px; /* Alt boşluk */
}

.phone-number i {
    color: #e74c3c; /* İkon rengi */
    font-size: 24px; /* İkon boyutu */
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h4 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

.page-header {
    background: linear-gradient(rgba(231, 76, 60, 0.9), rgba(192, 57, 43, 0.9)),
                url('https://images.unsplash.com/photo-1567498952889-c5c9919f6602?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
}

.content-section {
    padding: 60px 0;
}

.service-card, .reference-card {
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover, .reference-card:hover {
    transform: translateY(-5px);
    border-color: #e74c3c;
}

/* Ana sayfa hero alanı */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1527192491265-7e15c55b1ed2?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Hakkımızda sayfası hero alanı */
.page-header.about {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1595246140625-573b715d11dc?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Otomatlar sayfası hero alanı */
.page-header.products {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1625650484478-113df4bfc370?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 180px 0 120px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.page-header.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.4), rgba(192, 57, 43, 0.4));
    z-index: 1;
}

.page-header.products .container {
    position: relative;
    z-index: 2;
}

.page-header.products h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
    text-align: center;
}

.page-header.products p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    text-align: center;
    color: white;
}

/* Hizmetler sayfası hero alanı */
.page-header.services {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1525648199074-cee30ba79a4a?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Referanslar sayfası hero alanı */
.page-header.references {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('https://images.unsplash.com/photo-1506619216599-9d16d0903dfd?ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Ortak hero özellikleri - tüm sayfalarda aynı yapı */
.hero, .page-header {
    padding: 180px 0 120px;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Tüm sayfalarda aynı overlay efekti */
.hero::before, .page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(231, 76, 60, 0.4), rgba(192, 57, 43, 0.4));
    z-index: 1;
}

/* Tüm sayfalarda aynı container pozisyonu */
.hero .container, .page-header .container {
    position: relative;
    z-index: 2;
}

/* Tüm sayfalarda aynı başlık stili */
.hero h1, .page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
    text-align: center;
}

/* Tüm sayfalarda aynı paragraf stili */
.hero p, .page-header p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 30px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    text-align: center;
    color: white;
}

/* Form Stilleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 2.5rem;
    color: #e74c3c;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: #e74c3c;
    color: white;
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.stat-box p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1, .page-header h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Otomat özellikleri listesi */
.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-left: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: #2c3e50;
}

.features-list li i {
    color: #e74c3c;
    margin-right: 10px;
}

/* Service box güncellemeleri */
.service-box {
    padding: 40px;
    height: 100%;
}

.service-box i {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.service-box h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.service-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 991px) {
    .navbar-nav {
        height: auto;
        padding: 10px 0;
    }
    
    .navbar-nav .nav-link {
        margin: 8px 0;
    }
    
    .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
        padding: 10px 0;
    }
}

/* Otomat Galeri Stilleri */
.otomat-gallery {
    padding: 80px 0;
}

.otomat-gallery .container {
    max-width: 1200px;
    margin: 0 auto;
}

.otomat-gallery .row {
    justify-content: center;
    margin: 0 -15px;
}

.otomat-gallery .col-md-4 {
    padding: 15px;
    display: flex;
    justify-content: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    height: 300px;
    width: 100%;
    max-width: 400px; /* Her bir galeri öğesi için maksimum genişlik */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-info h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

/* Modal Stilleri */
.modal-content {
    background-color: transparent;
    border: none;
}

.modal-header {
    background-color: white;
    border-radius: 15px 15px 0 0;
}

.modal-body {
    background-color: white;
    border-radius: 0 0 15px 15px;
}

.btn-close {
    background-color: white;
    padding: 10px;
    border-radius: 50%;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .otomat-gallery .col-md-4 {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .gallery-item {
        max-width: 100%;
    }
}

/* Galeri Slider Stilleri */
.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    object-fit: cover;
}

.gallery-slider img.active {
    opacity: 1;
}

.slider-prev, .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.slider-prev {
    left: 10px;
}

.slider-next {
    right: 10px;
}

.slider-prev:hover, .slider-next:hover {
    background: white;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
}

/* İletişim Popup Güncellemeleri */
.contact-info {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 30px;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.phone-number i {
    color: #e74c3c;
    font-size: 24px;
}

.phone-link {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #e74c3c;
}

.divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #dee2e6;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 15px;
    color: #6c757d;
    font-size: 0.9rem;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 40px;
}

.form-floating > label i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #e74c3c;
}

.form-floating > .form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 0.25rem rgba(231, 76, 60, 0.25);
}

.form-floating > textarea.form-control {
    height: 80px;
}

/* Başlık renkleri */
h2, h4, h5 {
    color: #c0392b;
}

/* Link renkleri */
a {
    color: #e74c3c;
    text-decoration: none;
}

a:hover {
    color: #c0392b;
}

/* Form elementleri */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(231, 76, 60, 0.25);
}

/* Hakkımızda sayfası için özel stiller */
.about-content {
    padding: 20px 0;
}

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.8;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* Referanslar sayfası için özel stiller */
.references-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
}

.reference-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.reference-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.2);
}

.reference-item h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
}

/* Mobil görünüm için düzenleme */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Services Summary */
.services-summary {
    padding: 80px 0;
    background: #f8f9fa;
}

.service-box {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border-radius: 1