
/* CSS değişkenleri: Site genelinde kullanılan renkler ve slider yüksekliği */
:root {
    --primary-color: #040125; /* Ana renk */
    --secondary-color: #000d54; /* İkincil renk */
    --slider-height: 100vh; /* Slider yüksekliği */
    --main-font: 'Ubuntu', sans-serif; /* Ana yazı tipi */
}

/* Genel stiller: Tüm öğeler için kutu modeli ve yazı tipi */
* {
    box-sizing: border-box;
    font-family: var(--main-font, 'Inter', 'Ubuntu', 'Montserrat', 'Poppins', 'Roboto', 'Open Sans', 'Lato', 'Arial', 'Helvetica Neue', 'Helvetica', 'Verdana', 'Tahoma', 'Georgia', 'Times New Roman', 'Courier New', 'Calibri', 'Segoe UI', 'Oswald', 'Raleway', 'Lora', sans-serif);
}

/* Sayfanın temel düzeni */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: #F5F5F7; /* Açık gri arka plan */
    color: #4B5563; /* Varsayılan metin rengi: Orta gri */
}

/* Navbar stilleri: Sabit üst menü */
.navbar {
    background: transparent;
    color: #FFFFFF; /* Beyaz metin */
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

/* Navbar kaydırıldığında efekt */
.navbar.scrolled {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 80%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
}

/* Navbar içeriği düzeni */
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    min-height: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Navbar logosu */
.navbar-logo img {
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-logo img:hover {
    transform: scale(1.1);
}

/* Hamburger menü (küçük ekranlar için) */
.hamburger {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
}

/* Hamburger menü çizgileri */
.hamburger span {
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { top: 18px; }
.hamburger.active span { display: none; }

/* Navbar menü listesi */
.navbar ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 16px;
}

@media (max-width: 768px) {
    .navbar ul {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        padding: 60px 16px;
        z-index: 1000;
        transform: translateX(-100%);
        transition: transform 0.5s ease, opacity 0.5s ease;
        opacity: 0;
        gap: 8px; /* Mobil için daha sıkı boşluk */
    }
    .navbar ul.active {
        transform: translateX(0);
        opacity: 1;
        display: flex;
    }
}

/* Navbar menü öğeleri */
.navbar li {
    position: relative;
}

@media (max-width: 768px) {
    .navbar li {
        margin: 10px 0; /* Mobil için daha az dikey boşluk */
        width: 100%;
        text-align: center;
    }
}

/* Navbar bağlantıları */
.navbar a {
    color: #FFFFFF; /* Beyaz metin */
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .navbar a {
        font-size: 1.5rem;
        display: block;
        padding: 8px 0; /* Mobil için daha az padding */
    }
}

/* Navbar bağlantılarının hover efekti */
.navbar a:not(.navbar-logo a)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #FFFFFF;
    transition: width 0.3s ease;
}

.navbar a:not(.navbar-logo a):hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .navbar a:not(.navbar-logo a)::after {
        display: none;
    }
    .navbar a:hover {
        color: #E6F0FA;
    }
}

/* Menü kapatma butonu */
.close-menu {
    display: none;
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1002;
}

.close-menu svg {
    display: block;
    margin: auto;
}

@media (max-width: 768px) {
    .close-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Slider stilleri: Ana sayfa üst banner */
.slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: var(--slider-height);
    min-height: var(--slider-height);
    overflow: hidden;
    z-index: 10;
    user-select: none;
}

/* Slider slaytları */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--slider-height);
    min-height: var(--slider-height);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
    will-change: transform, opacity;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

/* Slayt koyu kaplama */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Slayt içeriği */
.slide-content {
    text-align: center;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 2;
    animation: fadeIn 0.6s ease-in-out;
}

.slide-content h1, .slide-content strong {
    color: #FFFFFF; /* Beyaz metin */
    margin-bottom: 12px;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    color: #FFFFFF; /* Beyaz metin */
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Slider navigasyon butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 15;
}

@media (max-width: 768px) {
    .slider-nav {
        display: none;
    }
}

.slider-prev, .slider-next {
    width: 40px; /* Sadeleştirilmiş boyut */
    height: 40px; /* Sadeleştirilmiş boyut */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, 0.4); /* Daha sade arka plan */
    border: none;
    border-radius: 50%;
    font-size: 1.5rem; /* Sadeleştirilmiş font boyutu */
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.slider-prev:hover, .slider-next:hover {
    background: rgba(0, 0, 0, 0.7); /* Hover'da daha koyu */
    transform: scale(1.1);
}

/* Slider noktaları */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 15;
}

.dot {
    margin: 0 6px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFFFFF;
    transform: scale(1.3);
}

.dot:hover {
    background: #FFFFFF;
    transform: scale(1.3);
}

/* İkon bandı: Özellik veya hizmet ikonları */
.icon-band {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 80%);
    padding: 20px 0;
    border-bottom: 1px solid #D1E0F0;
    z-index: 5;
    position: relative;
    margin-top: var(--slider-height);
    margin-bottom: 0;
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.icon-item .icon {
    font-size: 2rem;
    color: #FFFFFF; /* Beyaz ikon */
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.icon-item:hover .icon {
    transform: scale(1.1);
}

.icon-item p {
    font-size: 0.875rem;
    color: #FFFFFF; /* Beyaz metin */
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .icon-band .col-6 {
        margin-bottom: 16px;
    }
    .icon-item .icon {
        font-size: 1.5rem;
    }
    .icon-item p {
        font-size: 0.75rem;
    }
}

/* Ana içerik alanı */
main {
    position: relative;
    z-index: 20;
}

/* Genel bölüm stilleri: Hakkımızda, hizmetler, fiyatlandırma vb. */
.intro-section, .services-section, .pricing-section, .references-section, .testimonials-section, .blog-section, .gallery-section, .contact-section {
    padding: clamp(40px, 8vw, 60px) 0;
    position: relative;
    overflow: hidden;
    background: #F5F5F7; /* Açık gri arka plan */
}

/* Tüm hero bölümleri için genel stil */
.hero-section {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), var(--page-hero-image) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}

.hero-section h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
}

/* Bölüm içeriği düzeni */
.section-content {
    text-align: center;
}

/* Bölüm başlıkları (h2 ve h3) */
.section-content h2, h2 {
    color: #1A1A1A; /* H2 için daha koyu gri */
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.section-content h3, h3 {
    color: #333333; /* H3 için biraz daha açık gri */
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    margin-bottom: 20px;
}

/* Hakkımızda için sola hizalı çizgi */
.h2-left-line {
    position: relative;
    display: inline-block;
}

.h2-left-line::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.h2-left-line + p {
    margin-top: 3px;
}

/* Ana sayfada ortalı başlıklar */
.section-title {
    font-weight: 700;
    text-align: center;
    display: block;
    margin: 0 auto 48px auto;
    color: #1A1A1A; /* Başlık rengi genel h2 ile aynı */
}

/* Bölüm paragrafları (Hakkımızda açıklaması dahil) */
.section-content p {
    color:#4B5563; /* Orta gri */
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-in-out;
}

/* Hakkımızda bölümü responsive ayarları */
@media (max-width: 768px) {
    .intro-section .row {
        flex-direction: column;
    }
    .intro-section img {
        margin-bottom: 20px;
    }
}

/* Hizmetler bölümü: Kartlar */
.card {
    width: 100%;
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-in-out;
    animation-fill-mode: both;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Kart üst resmi */
.card-img-top {
    height: 270px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

/* Kart içeriği */
.card-body {
    padding: 20px;
    text-align: center;
}

/* Hizmet kartı başlığı */
.services-section .card-title {
    color: #4B5563; /* Orta gri */
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Hizmet kartı metni */
.services-section .card-text {
    color: #4B5563; /* Orta gri */
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Birincil buton stilleri */
.btn.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 20px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.btn.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.btn-primary.btn-block {
    display: block;
    width: 100%;
    padding: 8px 16px;
    font-size: 0.75rem;
}

/* Hizmet kartı animasyon gecikmeleri */
.services-section .card:nth-child(1) { animation-delay: 0.1s; }
.services-section .card:nth-child(2) { animation-delay: 0.2s; }
.services-section .card:nth-child(3) { animation-delay: 0.3s; }

/* Blog bölümü: Kartlar */
.blog-card {
    width: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden; /* Başlık kayması için önemli */
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
    background: #F1F5F9;
}

/* Blog kartı içeriği */
.blog-card .card-body {
    padding: 20px;
    background: #FFFFFF;
}

/* Blog kartı başlığı */
.blog-card .card-title {
    color: #4B5563; /* Veya mevcut renginiz */
    font-size: 1.5rem; /* Veya mevcut boyutunuz */
    font-weight: 700; /* Veya mevcut kalınlığınız */
    margin-bottom: 12px; /* Veya mevcut boşluğunuz */
    display: block; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; /* JavaScript animasyonu başlamadan önceki varsayılan durum */
    text-indent: 0px; /* Başlangıç pozisyonu */
    /* Eğer burada text-indent için bir transition varsa, kaldırın veya yorum satırı yapın: */
    /* transition: text-indent 0.3s linear;  <-- BU SATIRI KALDIRIN VEYA YORUM YAPIN */
}

/* Blog kartı metni */
.blog-card .card-text {
    color: #4B5563; /* Orta gri */
    font-size: 1rem;
    line-height: 1.6; /* Satır yüksekliği */
    /* Üç satırda kesme için stiller */
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Görüntülenecek maksimum satır sayısı */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* max-height: calc(1rem * 1.6 * 3); */ /* Alternatif: font-size * line-height * satır_sayısı. -webkit-line-clamp genellikle yeterlidir. */
}


@media (max-width: 768px) {
    .blog-card .card-title {
        font-size: 1.25rem;
    }
    .blog-card .card-text {
        font-size: 0.875rem;
        /* max-height: calc(0.875rem * 1.6 * 3); */
    }
}

/* Blog kartı animasyon gecikmeleri */
.blog-section .blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-section .blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-section .blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-section .blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-section .blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-section .blog-card:nth-child(6) { animation-delay: 0.6s; }

/* Referanslar bölümü: Logo kaydırıcı */
.references-section .logo-slider {
    overflow-x: auto; /* Yatay kaydırmayı etkinleştir */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    user-select: none;
    white-space: nowrap; /* İçeriği tek satırda tut */
    -webkit-overflow-scrolling: touch; /* iOS için pürüzsüz kaydırma */
    /* Kaydırma çubuklarını gizle */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.references-section .logo-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
}


.references-section .logo-slider.second-row {
    display: block;
}

@media (max-width: 768px) {
    .references-section .logo-slider.second-row {
        display: none;
    }
}

/* Logo kaydırıcı izi */
.references-section .logo-track {
    display: inline-flex; /* flex yerine inline-flex, kaydırıcı içinde esnekliği korur */
    align-items: center;
    width: max-content; /* Tüm logoları tek satırda tutmak için */
    padding: 10px 0;
    will-change: transform; /* Animasyon için performans ipucu */
}

/* İlk satır için sağa kaydırma animasyonu (masaüstü) */
.references-section .logo-track[data-slider='1'] {
    animation: slideRight 25s linear infinite;
}

/* İkinci satır için sola kaydırma animasyonu (masaüstü) */
.references-section .logo-track[data-slider='2'] {
    animation: slideLeft 25s linear infinite;
}

/* Sağ kaydırma animasyonu */
@keyframes slideRight {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Sol kaydırma animasyonu */
@keyframes slideLeft {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Logo bağlantıları */
.references-section .logo-link {
    display: inline-flex;
    text-decoration: none;
    margin: 0 20px;
}

/* Logo öğeleri */
.references-section .logo-item {
    flex: 0 0 auto;
    width: 250px;
    height: 125px;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: grayscale(30%);
}

.references-section .logo-link:hover .logo-item,
.references-section .logo-item:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
    opacity: 1;
}

/* Durdurulmuş logo kaydırıcı */
.references-section .logo-track.paused {
    animation-play-state: paused;
}

@media (max-width: 992px) {
    .references-section .logo-item {
        width: 200px;
        height: 100px;
        margin: 0 15px;
    }
}

/* Mobil cihazlarda animasyonları duraklatma kuralı kaldırıldı */
/* Artık JavaScript tarafından kontrol edilecek */


/* Galeri bölümü */
.gallery-section {
    background: #F5F5F7; /* Açık gri arka plan */
}

/* Galeri öğeleri */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-in-out;
    animation-fill-mode: both;
    cursor: pointer; /* Tıklanabilir olduğunu belirtmek için */
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Yeni: Galeri öğesi hover efekti */
.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Başlangıçta şeffaf */
    transition: background-color 0.3s ease;
    border-radius: 8px;
    z-index: 1;
}

.gallery-item:hover::before {
    background-color: rgba(0, 0, 0, 0.2); /* Hover'da hafif koyu kaplama */
}

/* Galeri resimleri */
.gallery-item img {
    width: 100%;
    max-height: 300px;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

@media (max-width: 767px) {
    .gallery-item img {
        max-height: 250px;
    }
}

/* BÜYÜTEÇ İKONU STİLLERİ BAŞLANGICI */
.gallery-item .magnifier-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem; /* İkon boyutu */
    color: rgba(255, 255, 255, 0.9); /* İkon rengi (hafif şeffaf beyaz) */
    background-color: rgba(0, 0, 0, 0.5); /* İkon arka planı (hafif şeffaf siyah) */
    padding: 15px; /* İkon etrafında boşluk */
    border-radius: 50%; /* Yuvarlak arka plan */
    z-index: 2; /* Resmin üzerinde görünmesi için */
    pointer-events: none; /* İkonun tıklama olaylarını engellememesi için */
    opacity: 0; /* Başlangıçta gizli */
    transition: opacity 0.3s ease; /* Yumuşak geçiş efekti */
}

.gallery-item.magnifier-active .magnifier-icon {
    opacity: 1; /* Aktif olduğunda görünür */
}

.gallery-item.magnifier-active::before {
    background-color: rgba(0, 0, 0, 0.5); /* Büyüteç aktifken daha koyu kaplama */
}
/* BÜYÜTEÇ İKONU STİLLERİ SONU */


/* Galeri animasyon gecikmeleri */
.gallery-section .gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-section .gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-section .gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-section .gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-section .gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-section .gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-section .gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-section .gallery-item:nth-child(8) { animation-delay: 0.8s; }
.gallery-section .gallery-item:nth-child(9) { animation-delay: 0.9s; }


/* Lightbox/Modal Styles (galeri.php'den kopyalandı ve sadeleştirildi) */
.gallery-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 2000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
    display: flex;
    flex-direction: column; /* İçeriği dikeyde hizalamak için */
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content-wrapper {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column; /* Resim ve başlığı dikeyde hizalamak için */
    align-items: center;
    justify-content: center;
    gap: 15px; /* Resim ve başlık arasına boşluk */
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    display: block;
    object-fit: contain; /* Resmi kutuya sığdırır, oranları korur */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-caption {
    color: #FFFFFF;
    font-size: 1.2rem;
    text-align: center;
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    max-width: 80%;
    word-wrap: break-word; /* Uzun metinleri kırmak için */
}

.modal-close {
    position: absolute;
    top: 15px; /* Daha az boşluk */
    right: 20px; /* Daha az boşluk */
    color: #f1f1f1;
    font-size: 45px; /* Daha büyük */
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2001;
    background-color: rgba(0, 0, 0, 0.4); /* Arka plan eklendi */
    border-radius: 50%; /* Yuvarlak */
    width: 50px; /* Genişlik */
    height: 50px; /* Yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    background-color: rgba(0, 0, 0, 0.7); /* Hover'da daha koyu */
    text-decoration: none;
    cursor: pointer;
}

.modal-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.6); /* Biraz daha koyu */
    color: white;
    border: none;
    padding: 12px 18px; /* Daha büyük padding */
    cursor: pointer;
    font-size: 28px; /* Daha büyük font */
    border-radius: 50%; /* Yuvarlak butonlar */
    transition: background-color 0.3s ease; /* Transform kaldırıldı */
    user-select: none; /* Metin seçimi engeller */
    width: 55px; /* Genişlik */
    height: 55px; /* Yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-nav-button:hover {
    background-color: rgba(0, 0, 0, 0.9); /* Hover'da daha koyu */
    /* transform: translateY(-50%) scale(1.1); kaldırıldı */
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

@media (max-width: 768px) {
    .modal-close {
        top: 10px;
        right: 15px;
        font-size: 30px;
        width: 40px;
        height: 40px;
    }
    .modal-nav-button {
        /* Mobil cihazlarda navigasyon butonlarını gizle */
        display: none;
    }
    .mobile-swipe-hint {
        display: block !important; /* Mobil cihazlarda göster */
        text-align: center;
        margin-top: 15px;
        font-size: 0.9rem;
        color: #666;
    }
    .modal-caption {
        font-size: 1rem;
        padding: 8px 15px;
        max-width: 90%;
    }
}

/* Contact Section */
.contact-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: #F5F5F7; /* Açık gri arka plan */
}

/* Contact info boxes container */
.contact-info-boxes {
    margin-bottom: 32px;
}

/* Contact box */
.contact-box {
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease-in-out;
    animation-fill-mode: both;
}

.contact-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Contact box icon */
.contact-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.contact-box:hover i {
    transform: scale(1.1);
}

/* Contact box title */
.contact-box h4 {
    color: #1F2937; /* Koyu gri */
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 700;
    margin-bottom: 8px;
}

/* Contact box link */
.contact-box a {
    color: #4B5563; /* Orta gri */
    font-size: clamp(0.875rem, 2vw, 1rem);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box a:hover {
    color: var(--primary-color);
}

/* Contact box animation delays */
.contact-box:nth-child(1) { animation-delay: 0.1s; }
.contact-box:nth-child(2) { animation-delay: 0.2s; }
.contact-box:nth-child(3) { animation-delay: 0.3s; }
.contact-box:nth-child(4) { animation-delay: 0.4s; }

/* Contact map */
.contact-map iframe {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    animation: fadeInUp 0.6s ease-in-out 0.5s;
    animation-fill-mode: both;
}

@media (max-width: 991px) {
    .contact-map iframe {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .contact-map iframe {
        height: 300px;
    }
}

/* Footer stilleri: Altbilgi */
.footer-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 80%);
    padding: clamp(60px, 10vw, 80px) 0 clamp(30px, 5vw, 40px);
    position: relative;
    z-index: 20;
    border-top: 4px solid var(--primary-color);
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

/* Footer içeriği düzeni */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer sütunları */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    animation: fadeInUp 0.5s ease-in-out;
    animation-fill-mode: both;
}

/* Footer logosu */
.footer-logo img {
    height: 60px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    filter: brightness(1.2);
}

.footer-logo img:hover {
    transform: scale(1.05);
    opacity: 1;
}

/* Footer açıklaması */
.footer-description {
    color: #E6E6E6; /* Açık gri */
    font-size: 1rem;
    line-height: 1.8;
    margin-top: 20px;
    font-weight: 400;
    max-width: 300px;
}

/* Footer başlıkları */
.footer-title {
    color: #FFFFFF; /* Beyaz */
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer bağlantıları */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #E6E6E6; /* Açık gri */
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: #FFFFFF; /* Beyaz */
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: #FFFFFF; /* Çizgi rengi beyaza çevrildi */
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Footer iletişim bilgileri */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    color: #E6E6E6; /* Açık gri */
    font-size: 1rem;
    font-weight: 500;
}

.footer-contact i {
    font-size: 1.25rem;
    color: #FFFFFF; /* Beyaz */
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.footer-contact a {
    color: #E6E6E6; /* Açık gri */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #FFFFFF; /* Beyaz */
}

.footer-contact li:hover i {
    transform: scale(1.1);
}

/* Footer alt kısmı */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
    gap: 20px;
}

/* Sosyal medya ikonları */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: #FFFFFF; /* Beyaz */
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    transform: scale(1.1);
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.2);
}

/* Telif metni */
.footer-copyright {
    color: #E6E6E6; /* Açık gri */
    font-size: 0.875rem;
    margin: 0;
    font-weight: 400;
}

/* İmza görseli */
.footer-signature {
    order: 3; /* Sosyal medya ve telif hakkı metninden sonra gelmesini sağlar */
    width: auto; /* Genişliği içeriğe göre ayarla */
    text-align: right; /* Sağda hizala */
    margin-left: auto; /* Sağ tarafa it */
}

.footer-signature img {
    height: 40px; /* Küçük boyut */
    opacity: 0.8; /* Hafif şeffaflık */
    filter: grayscale(100%) brightness(200%); /* Beyaz tonlarda ve daha belirgin */
    transition: opacity 0.3s ease;
}

.footer-signature img:hover {
    opacity: 1; /* Hover'da tam görünürlük */
}


/* Footer responsive ayarları: 991px ve altı */
@media (max-width: 991px) {
    .footer-row {
        gap: 40px;
    }
    .footer-column {
        flex: 1 1 100%;
        text-align: center;
    }
    .footer-logo {
        margin: 0 auto;
    }
    .footer-description {
        margin: 20px auto;
        max-width: 500px;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .footer-links li {
        margin: 0 10px 10px;
    }
    .footer-contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    .contact-box {
        flex: 1 1 100%; /* Mobil görünümde kutuların tam genişlikte olmasını sağlar */
    }
    .footer-contact li {
        flex: 1 1 100%;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-social {
        order: 2;
        margin-top: 15px;
    }
    .footer-copyright {
        order: 1;
        width: 100%;
    }
    .footer-signature {
        order: 3; /* Mobil görünümde en altta kalır */
        width: 100%;
        text-align: center; /* Ortala */
        margin-left: 0;
        margin-top: 15px;
    }
}

/* Footer responsive ayarları: 992px ve üstü */
@media (min-width: 992px) {
    .footer-column {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* Footer responsive ayarları: 767px ve altı */
@media (max-width: 767px) {
    .footer-section {
        padding: clamp(40px, 8vw, 50px) 0 clamp(20px, 4vw, 30px);
    }
    .footer-title {
        font-size: 1.25rem;
    }
    .footer-links a, .footer-contact li, .footer-description {
        font-size: 0.875rem;
    }
    .footer-contact i {
        font-size: 1rem;
    }
    .footer-social a {
        font-size: 1.25rem;
        width: 32px;
        height: 32px;
    }
    .footer-copyright {
        font-size: 0.75rem;
    }
    .footer-signature img {
        height: 30px; /* Mobil için daha küçük boyut */
    }
}

/* Görsel giriş animasyonları: Bölüm öğeleri için */
.intro-section .row > *,
.services-section .card,
.pricing-section .pricing-card,
.references-section .logo-slider,
.testimonials-section .testimonial-card,
.blog-section .blog-card,
.gallery-section .gallery-item,
.contact-section .contact-item,
.footer-column {
    animation: fadeInUp 0.5s ease-in-out;
    animation-fill-mode: both;
}

/* Animasyon gecikmeleri */
.intro-section .row > *:nth-child(1) { animation-delay: 0.1s; }
.intro-section .row > *:nth-child(2) { animation-delay: 0.2s; }
.services-section .card:nth-child(1) { animation-delay: 0.1s; }
.services-section .card:nth-child(2) { animation-delay: 0.2s; }
.services-section .card:nth-child(3) { animation-delay: 0.3s; }
.pricing-section .pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-section .pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-section .pricing-card:nth-child(3) { animation-delay: 0.3s; }
.references-section .logo-slider:nth-child(1) { animation-delay: 0.1s; }
.references-section .logo-slider:nth-child(2) { animation-delay: 0.2s; }
.testimonials-section .testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonials-section .testimonial-card:nth-child(2) { animation-delay: 0.2s; }
/* Blog kartları için animasyon gecikmeleri zaten yukarıda tanımlı */

/* Hakkımızda Sayfasına Özel Stiller */
.about-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/üst/hakkimizda.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.about-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: #F5F5F7;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.about-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 0 0 55%;
    max-width: 55%;
}

.about-text h2 {
    color: #1A1A1A; /* styles.php'deki h2 ile aynı */
    font-size: clamp(1.5rem, 4vw, 2rem); /* Blog sayfasındaki h2 boyutuyla eşleşti */
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-text p {
    color: #4B5563; /* styles.php'deki p ile aynı */
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-other {
    margin-top: 40px;
    text-align: left;
}

.about-other h3 {
    color: #333333; /* styles.php'deki h3 ile aynı */
    font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* Blog sayfasındaki h3 boyutuyla eşleşti */
    font-weight: 700;
    margin-bottom: 12px;
}

.about-other p {
    color: #4B5563; /* styles.php'deki p ile aynı */
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-other ul {
    list-style: none;
    padding-left: 0;
}

.about-other ul li {
    margin-bottom: 8px;
    color: #4B5563; /* styles.php'deki p ile aynı */
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
}

.about-other ul li strong {
    color: #1A1A1A; /* styles.php'deki h2 ile aynı */
}

.about-other a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.about-other a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .about-content {
        flex-direction: column;
    }

    .about-image,
    .about-text {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about-image {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .about-hero h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .about-text h2 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }

    .about-text p,
    .about-other p,
    .about-other ul li {
        font-size: 0.875rem;
    }
}

/* Galeri Sayfasına Özel Stiller */
.gallery-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/üst/5.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}

.gallery-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.gallery-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.mobile-swipe-hint {
    display: none; /* Varsayılan olarak gizle */
}

@media (max-width: 767px) {
    .gallery-hero h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
}

/* Blog Sayfasına Özel Stiller */
.blog-hero {
    position: relative;
    height: 300px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/üst/4.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}

.blog-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.blog-section {
    padding: clamp(40px, 8vw, 60px) 0;
    background: #F5F5F7;
}

.blog-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* section-title, h2 ve h3 renkleri styles.php'den alınacak */
.section-title {
    font-weight: 700;
    text-align: center;
    /* color tanımı styles.php'den gelecek */
    font-size: clamp(1.75rem, 5vw, 2.25rem);
    margin: 0 auto 48px auto;
}

.blog-content h2 {
    /* styles.php'deki h2 tanımından daha uyumlu bir boyut */
    font-size: clamp(1.5rem, 4vw, 2rem); /* Önceki styles.php'deki h3 boyutuna yakın, blog için daha ideal */
    font-weight: 700;
    margin-bottom: 20px;
    /* color tanımı styles.php'den gelecek */
}

.blog-content h3 {
    /* styles.php'deki h3 tanımından daha uyumlu bir boyut */
    font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* H2'den daha küçük, blog için daha ideal */
    font-weight: 600;
    margin-bottom: 20px;
    /* color tanımı styles.php'den gelecek */
}

.blog-content p {
    /* color tanımı styles.php'den gelecek veya varsayılan body rengini kullanacak */
    font-size: clamp(1rem, 2.5vw, 1.125rem);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-content strong { /* strong etiketleri için renk tanımlaması eklendi */
    color: #1A1A1A; /* H2 ile aynı renk veya daha koyu */
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.blog-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    .blog-content h2 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem); /* Mobil için h2 boyutu */
    }
    .blog-content h3 {
        font-size: clamp(1rem, 3vw, 1.5rem); /* Mobil için h3 boyutu */
    }
    .blog-content p {
        font-size: clamp(0.875rem, 2vw, 1rem);
    }
}

/* Hizmetlerimiz Sayfasına Özel Stiller */
.services-container {
    max-width: 1300px; /* Hizmetlerimiz sayfasının container genişliği */
    margin: 0 auto;
    padding: 0 15px;
}

/* İletişim Sayfasına Özel Stiller */
.contact-hero {
    position: relative;
    height: 300px; /* Diğer hero bölümleriyle aynı yükseklik */
    /* background-image, iletisim.php'de inline olarak ayarlanır */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-align: center;
}

.contact-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem); /* Diğer hero başlıklarıyla tutarlı */
    font-weight: 700;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.contact-container { /* İletişim sayfası için container */
    max-width: 1200px; /* Diğer containerlarla tutarlı */
    margin: 0 auto;
    padding: 0 15px;
}
    /* Sabit İletişim Butonu Stilleri */
.floating-contact-button-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1050; /* Navbar'ın üzerinde olması için yüksek z-index */
    display: flex;
    flex-direction: column-reverse; /* Ana buton altta, seçenekler üstte */
    align-items: center;
}

.floating-contact-button {
    background-color: var(--primary-color);
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* İkon boyutu */
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Animasyon için */
    overflow: hidden; /* Kayma efekti için */
    position: relative; /* İkonun pozisyonlanması için */
}

.floating-contact-button:hover {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.floating-contact-button i {
    transition: transform 0.5s ease-in-out; /* İkon geçiş animasyonu */
}

/* İkon kayma animasyonu için (opsiyonel, JavaScript ile yönetiliyor) */
.floating-contact-button .sliding-icon {
    position: absolute;
    transform: translateX(100%);
}

.floating-contact-button .sliding-icon.active {
    transform: translateX(0);
}

.floating-contact-button .sliding-icon.exit {
    transform: translateX(-100%);
}


/* Alt İletişim Seçenekleri */
.contact-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    gap: 10px; /* Seçenekler arası boşluk */
}

.floating-contact-button-container.active .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.contact-option {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem; /* İkon boyutu */
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-option:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Ayarlar */
@media (max-width: 768px) {
    .floating-contact-button-container {
        bottom: 20px;
        right: 20px;
    }
    .floating-contact-button {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    .contact-option {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
}

