/* Temel Stiller */
:root {
    --dark-blue: #0d2340;
    --medium-blue: #1a3a64;
    --light-gray: #f5f7fa;
    --white: #FFFFFF;
    --copper: #c87533;
    --copper-light: #e0946b;
    --gold: #c87533;       /* Bakır rengini altın olarak tanımla */
    --gold-light: #e0946b; /* Açık bakır rengini açık altın olarak tanımla */
    --dark-gray: #2a2e34;  /* Eksik değişken tanımlandı */
    --transition: all 0.3s ease;
    
    /* Font ailesi değişkenleri ekleyelim */
    --primary-font: 'Marcellus', 'Raleway', serif;
    --body-font: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --elegant-font: 'Playfair Display', serif;
    --handwriting-font: 'La Luxes Script', cursive;
}

/* Font eklemeleri */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

@font-face {
    font-family: 'AW Conqueror Didot Light';
    src:url('./fonts/AW Conqueror Didot Light.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'La Luxes Script';
    src: url('./fonts/LaLuxesScript-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--white);
    background: linear-gradient(to right, var(--dark-blue), var(--medium-blue), var(--dark-blue));
    background-attachment: fixed;
    overflow-x: hidden;
    font-weight: 300;
    letter-spacing: -0.01em;
    text-shadow: none; /* Yazı gölgesini kaldır */
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--body-font);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header - sabit pozisyonlama yerine göreceli */
header {
    position: relative;
    width: 100%;
    z-index: 11000; /* Logo z-index'inden düşük olmalı */
    height: 120px;
    display: flex;
    align-items: center;
    background: transparent;
    backdrop-filter: blur(5px);
    box-shadow: 0 1px 15px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

.header-left, .header-right {
    flex: 1;
    display: flex;
}

.header-left {
    justify-content: flex-start;
}

.header-right {
    justify-content: flex-end;
}


/* Logo Konumlandırma */
.logo-container {
    position: absolute; /* Fixed pozisyon kullanalım */
    top: 0; /* Üst kısımda sabit */
    left: 50%;
    transform: translateX(-50%);
    z-index: 12000;
    width: 180px;
    height: 120px; /* Header ile aynı yükseklik */
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto; /* Tıklanabilir olsun */
}

.logo {
    position: relative;
    top: 0; /* Üst kısmını header'a yaklaştır */
    text-align: center;
}
.logo-img {
    display: block;
    max-width: 100%; /* 140% çok büyük, 100% yeterli */
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}
/* Header içindeki boşluk için */
.placeholder {
    width: 180px; /* Logo genişliği kadar */
}

.logo-text {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icons a {
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
}

/* Menü Toggle Butonu */
.menu-toggle {
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 2000;
}

.menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--copper);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.menu-toggle span:nth-child(1) {
    top: 0px;
}

.menu-toggle span:nth-child(2) {
    top: 9px;
}

.menu-toggle span:nth-child(3) {
    top: 18px;
}

.menu-toggle.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.menu-toggle.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* Tam Sayfa Menü */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(145deg, rgba(13, 35, 64, 0.98) 0%, rgba(26, 58, 100, 0.98) 50%, rgba(36, 73, 122, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 15000;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    backdrop-filter: blur(10px);
}

.fullscreen-menu.open {
    visibility: visible;
    opacity: 1;
}

.menu-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
    transition-delay: 0.2s;
}

.fullscreen-menu.open .menu-content {
    opacity: 1;
    transform: translateY(0);
}

.menu-links {
    margin-bottom: 40px;
}

.menu-links li {
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.fullscreen-menu.open .menu-links li {
    transform: translateY(0);
    opacity: 1;
}

.fullscreen-menu.open .menu-links li:nth-child(1) {
    transition-delay: 0.3s;
}

.fullscreen-menu.open .menu-links li:nth-child(2) {
    transition-delay: 0.4s;
}

.fullscreen-menu.open .menu-links li:nth-child(3) {
    transition-delay: 0.5s;
}

.fullscreen-menu.open .menu-links li:nth-child(4) {
    transition-delay: 0.6s;
}

.fullscreen-menu.open .menu-links li:nth-child(5) {
    transition-delay: 0.7s;
}

.menu-links li a {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 5px 10px;
}

.menu-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    left: 0;
    bottom: 0;
    transition: var(--transition);
}

.menu-links li a:hover {
    color: var(--gold);
}

.menu-links li a:hover::after {
    width: 100%;
}

.menu-contact {
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: 0.8s;
}

.fullscreen-menu.open .menu-contact {
    opacity: 1;
    transform: translateY(0);
}

.menu-contact h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.menu-contact p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.menu-contact i {
    color: var(--gold);
    margin-right: 10px;
}

/* Slider */
#hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 0; /* Üst boşluğu kaldır */
    margin-top: -120px; /* Header ile birleşmesi için negatif margin */
    background: transparent; /* Arkaplanı kaldırın */
    z-index: 1000;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 0s linear 1s;
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease;
    z-index: 2;
}

/* Slide overlay for better text readability */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Slider İçeriği */
.slide-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: left; /* Ortalamadan sola hizalama için */
    padding: 0 20px;
    top: 50%;
    left: 25%; /* 50%'den 25%'e değiştirerek sola kaydırıyoruz */
    transform: translate(-25%, -50%); /* X ekseninde -50% yerine -25% */
    color: var(--white);
}

.project-title {
    font-family: var(--primary-font);
    font-size: 3.8rem;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    font-weight: 400;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    text-shadow: none; /* Yazı gölgesini kaldır */
}

.project-location {
    color: var(--copper); /* Konum metni bakır rengi */
    font-size: 0.7em; /* Ana başlıktan biraz daha küçük */
    display: block;
    margin-bottom: 0.1em;
}

.project-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0; /* 10%'den 0'a değiştirildi */
    height: 100%; /* 80%'den 100%'e değiştirildi */
    width: 5px; /* Çizgi kalınlığı */
    background-color: var(--copper); /* Bakır rengi */
    border-radius: 2px; /* Hafif yuvarlatılmış kenarlar */
}

.project-slogan {
    font-family: var(--primary-font);
    font-size: 1.4rem;
    margin-bottom: 30px;
    font-weight: 300;
    font-style: normal; /* italik yerine normal yazı tipi */
    color: var(--white); /* bakır/altın yerine beyaz renk */
    text-shadow: none; /* Yazı gölgesini kaldır */
}

.slider-controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(50%);
    z-index: 20;
}

.prev-btn, .next-btn {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.prev-btn:hover, .next-btn:hover {
    background: var(--gold);
    color: var(--dark-gray);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--dark-gray);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(to right, var(--gold-light) 0%, var(--gold) 100%);
    color: var(--dark-gray);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Kapatma Butonu */
.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 2000;
    opacity: 0;
    transform: rotate(180deg) scale(0.8);
    transition: all 0.3s ease-in-out;
}

.fullscreen-menu.open .close-btn {
    opacity: 1;
    transform: rotate(0) scale(1);
    transition-delay: 0.5s;
}

.close-btn:hover {
    color: var(--gold);
    transform: rotate(90deg) scale(1.1);
}

/* Hakkımızda Bölümü */
.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    min-height: 350px; /* veya height: 800px */
}

.about-text {
    width: 100%;
    padding: 0 20px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 400;
    font-family: var(--elegant-font); /* Açıklama metni için zarif font */
    color: #2a2e34;
    letter-spacing: 0.01em; /* Harf aralığı */
}

.about-image {
    display: none; /* Resmi gizle */
}

/* İstatistikler Bölümü */
.stats-section {
    background-size: cover;
    background-color: var(--dark-blue);
    background-attachment: fixed;
    position: relative;
    color: var(--white);
    padding: 80px 0;
}

.stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 35, 64, 0.9) 0%, rgba(26, 58, 100, 0.85) 70%, rgba(36, 73, 122, 0.8) 100%);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 20px;
    margin: 10px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

.stat-title {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Projeler Bölümü */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.project-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(200, 117, 51, 0.1);
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--copper), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover::before {
    opacity: 1;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(200, 117, 51, 0.2);
}

.project-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.05) 100%);
    pointer-events: none;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.3s ease;
    cursor: pointer;
}

.project-card:hover .project-img img {
    transform: scale(1.06);
    filter: brightness(1.05) contrast(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 35, 64, 0.85) 0%, rgba(200, 117, 51, 0.75) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(2px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}


.btn-outline {
    padding: 12px 28px;
    color: var(--white);
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--copper));
    color: var(--white);
    border-color: var(--copper);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 117, 51, 0.3);
}

.project-content {
    padding: 20px 24px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    position: relative;
}

.project-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 117, 51, 0.2), transparent);
}

.project-content h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-blue);
    letter-spacing: -0.02em;
}

.project-content p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

/* CTA Bölümü */
#iletisim-cta {
    background-size: cover;
    background-color: var(--dark-blue);
    background-attachment: fixed;
    position: relative;
    color: var(--white);
}

.cta-content {
    padding: 60px 0;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* İletişim Formu Stilleri */
.contact-form-container {
    max-width: 700px;
    margin: 40px auto;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form satırları için düzen */
.form-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background-color: rgba(255, 255, 255, 0.07);
    color: var(--white);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
    font-size: 1.05rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(200, 117, 51, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    text-align: left;
}

.checkbox-group a {
    color: var(--gold);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--gold-light);
}

.btn-block {
    width: 100%;
    justify-content: center;
    font-weight: 600;
    padding: 16px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

/* Responsive - Form */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 0 20px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 15px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 10px 12px;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header super mobile */
    header {
        height: 60px;
    }
    
    .logo-container {
        width: 100px;
        height: 60px;
    }
    
    .logo-img {
        max-width: 75%;
    }
    
    /* Slider super mobile */
    #hero-slider {
        margin-top: -60px;
    }
    
    .slide-content {
        padding: 0 10px;
    }
    
    .project-title {
        font-size: 1.8rem;
        line-height: 1;
    }
    
    .project-location {
        font-size: 0.5em;
    }
    
    .project-slogan {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .btn-primary {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    /* Sections super mobile */
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Contact grid super mobile */
    .contact-info-grid {
        gap: 15px;
        margin: 25px 0;
    }
    
    .contact-box p {
        font-size: 0.9rem;
    }
    
    /* Menu super mobile */
    .menu-links li a {
        font-size: 1.6rem;
    }
    
    .menu-contact p {
        font-size: 0.9rem;
    }
}

/* Extra small devices - very old phones */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .project-title {
        font-size: 1.6rem;
    }
    
    .project-slogan {
        font-size: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .menu-links li a {
        font-size: 1.4rem;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    #hero-slider {
        height: 100vh;
    }
    
    .slide-content {
        top: 50%;
        transform: translate(-50%, -50%);
    }
    
    .project-title {
        font-size: 2.2rem;
    }
    
    .project-slogan {
        font-size: 1rem;
    }
}

/* High DPI displays optimization */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
    
    .footer-logo-img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Footer */
footer {
    background: linear-gradient(to right, var(--dark-blue), var(--medium-blue), var(--dark-blue));
    color: var(--white);
    padding-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    justify-content: center; /* Logonun her zaman merkezi hizalanmasını sağla */
}

.footer-logo-img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    display: block;
    margin: 0 auto;
    text-align: center;
    object-fit: contain;
    object-position: center;
}

.footer-links, .footer-social {
    flex: 1;
    min-width: 180px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h4::after, .footer-social h4::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
    left: 0;
    bottom: -10px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: #ccc;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social .social-icons {
    margin-top: 20px;
}

.footer-social .social-icons a {
    margin-right: 15px;
    font-size: 1.3rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Yardımcı Sınıflar */
.bg-light {
    background: transparent;
}

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

.mt-5 {
    margin-top: 50px;
}

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

.line {
    height: 3px;
    width: 115px;
    background: linear-gradient(to right, var(--gold) 0%, var(--gold-light) 80%, var(--gold) 100%);
    margin: 20px auto;
    margin-bottom: 40px;
}

/* Bakır renkli başlık */
.copper-title {
    color: var(--copper);
    font-family: var(--elegant-font);
    font-weight: 600;
    letter-spacing: 0.03em;
}

/* Bölüm sloganı */
.section-slogan {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-family: var(--elegant-font);
    font-weight: 400;
    color: var(--white);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* Slayt üzerindeki firma adı overlay'i */
.company-name-overlay {
    position: fixed; /* absolute yerine fixed kullanarak sabit konumlandırma sağlıyoruz */
    top: 50vh; /* Sayfanın ortasına konumlandırıyoruz */
    left: 15%; /* Sola hizalama */
    font-family: var(--handwriting-font); /* Great Vibes font */
    font-size: 7rem; /* Daha büyük yazı */
    font-weight: 400; /* Great Vibes için uygun */
    color: rgba(200, 117, 51); /* Bakır rengi - yarı saydam */
    z-index: 100000; /* Çok yüksek z-index değeri */
    transform: none !important; /* Eğikliği kesinlikle kaldırıyoruz */
    text-shadow: none !important; /* Bulanıklık etkisini kesinlikle kaldırıyoruz */
    pointer-events: none; /* Tıklanabilir olmasın */
    letter-spacing: 0.02em; /* Harfler arası boşluk */
    filter: none !important; /* Tüm filtreleri kesinlikle kaldırıyoruz */
    -webkit-filter: none !important; /* Safari için filtre desteği */
    backdrop-filter: none !important; /* Arka plan filtrelerini de kaldırıyoruz */
    will-change: transform; /* Tarayıcıya bu elemanın özellikleri değişebileceğini bildiriyor */
    isolation: isolate; /* Yeni bir stacking context oluşturarak z-index problemlerini önlüyoruz */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: rgba(200, 117, 51, 1); /* Opak bakır rengi */
}

.company-name-overlay .headline {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 8rem;
    font-weight: 600;
    line-height: 1;
    color: white;
    letter-spacing: 0.02em;
}

.company-name-overlay .guven {
    font-family: 'AW Conqueror Didot Light', serif;
    font-size: 8rem;
    font-weight: 600;
    color: white;
    margin-top: -30px;
    margin-left: 40%; /* sola hizalama */
}

.company-name-overlay .signature {
    font-family: var(--handwriting-font);
    font-size: 12rem;
    color: var(--gold); /* veya bakır rengi */
    margin-left: 75%;
    margin-top: -14%; /* ↓ Aşağı doğru yaklaştırır */
}

.company-name-overlay .unchanged {
    font-family: var(--handwriting-font);
    font-size: 12rem;
    color: var(--gold);
    margin-left: 95%;
    margin-top: -25%; /* ↓ Aşağı doğru yaklaştırır */
}

.contact-info-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 40px 0;
    color: var(--white);
    text-align: center;
}

.contact-box {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.contact-box i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-separator {
    width: 1px;
    height: 80px;
    background-color: var(--gold);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.contact-box p {
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-box a {
    color: var(--gold);
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 5px;
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-box .social-icons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.contact-box .social-icons a {
    color: var(--gold);
    font-size: 1.3rem;
    transition: var(--transition);
}

.contact-box .social-icons a:hover {
    transform: translateY(-3px);
}

/* Enhanced Responsive Düzenlemeler (992px ve altı) */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
        max-width: 900px;
    }

    .stat-number {
        font-size: 2.8rem;
    }

    .company-name-overlay {
        font-size: 6rem;
        left: 8%;
        top: calc(100vh - 50px);
        transform: none;
    }

    .company-name-overlay .headline,
    .company-name-overlay .guven {
        font-size: 6rem;
    }
    
    .company-name-overlay .signature,
    .company-name-overlay .unchanged {
        font-size: 9rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
}

/* Slider Background Images - Desktop */
.slide-1 {
    background-image: url('img/slider1.png');
    background-size: cover;
    background-position: center;
}

.slide-2 {
    background-image: url('img/slider2.png');
    background-size: cover;
    background-position: center;
}

.slide-3 {
    background-image: url('img/slider4.png');
    background-size: cover;
    background-position: center;
}

/* Slider Background Images - Mobile (768px ve altı) */
@media (max-width: 768px) {
    .slide-1 {
        background-image: url('img/slider1-mobile.png') !important;
        background-position: center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
    
    .slide-2 {
        background-image: url('img/slider2-mobile.png') !important;
        background-position: center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
    
    .slide-3 {
        background-image: url('img/slider4-mobile.png') !important;
        background-position: center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
    
    /* Mobile slider optimization */
    #hero-slider {
        height: 100vh;
        margin-top: -80px;
    }
    
    .slider-container {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }
    
    /* Mobile slider content adjustments */
    .slide-content {
        left: 50%;
        max-width: 90%;
        padding: 0 15px;
        transform: translate(-50%, -30%);
        text-align: center;
        top: 60%;
    }
    
    .project-title {
        font-size: 2.5rem;
        padding-left: 0;
        text-align: center;
    }
    
    .project-title::before {
        display: none;
    }
    
    .project-location {
        font-size: 0.6em;
    }
    
    .project-slogan {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    /* Mobile slider controls */
    .slider-controls {
        padding: 0 20px;
    }
    
    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Slider Background Images - Small Mobile (480px ve altı) */
@media (max-width: 480px) {
    .slide-1 {
        background-image: url('img/slider1-mobile.png') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
    
    .slide-2 {
        background-image: url('img/slider2-mobile.png') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
    
    .slide-3 {
        background-image: url('img/slider4-mobile.png') !important;
        background-position: center center !important;
        background-size: cover !important;
        background-attachment: scroll !important;
    }
    
    /* Small mobile slider optimization */
    #hero-slider {
        height: 100vh;
        margin-top: -60px;
    }
    
    /* Small mobile slider content adjustments */
    .slide-content {
        left: 50%;
        max-width: 95%;
        padding: 0 10px;
        transform: translate(-50%, -25%);
        text-align: center;
        top: 65%;
    }
    
    .project-title {
        font-size: 2rem;
        padding-left: 0;
        line-height: 1.1;
        text-align: center;
    }
    
    .project-title::before {
        display: none;
    }
    
    .project-location {
        font-size: 0.55em;
        margin-bottom: 0.2em;
    }
    
    .project-slogan {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    /* Small mobile slider controls */
    .slider-controls {
        padding: 0 15px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 6px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}

/* Enhanced Mobile Responsive - Remove duplicate rules since they're covered above */

/* ===== RESPONSIVE DESIGN IMPROVEMENTS ===== */

/* Genel Mobile-first yaklaşım */
.container {
    padding: 0 20px;
}

/* Header Responsive Düzenlemeleri */
@media (max-width: 1024px) {
    header {
        height: 100px;
    }
    
    .logo-container {
        width: 160px;
        height: 100px;
    }
    
    .logo-img {
        max-width: 90%;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    header {
        height: 80px;
        padding: 0 10px;
    }
    
    .header-container {
        padding: 0 10px;
    }
    
    .logo-container {
        width: 140px;
        height: 80px;
    }
    
    .logo-img {
        max-width: 85%;
    }
    
    .social-icons {
        gap: 12px;
    }
    
    .social-icons a {
        font-size: 1rem;
    }
    
    .menu-toggle {
        width: 28px;
        height: 20px;
    }
    
    .menu-toggle span {
        height: 2px;
    }
}

@media (max-width: 576px) {
    header {
        height: 70px;
    }
    
    .logo-container {
        width: 120px;
        height: 70px;
    }
    
    .logo-img {
        max-width: 80%;
    }
    
    .social-icons {
        gap: 10px;
    }
    
    .social-icons a {
        font-size: 0.9rem;
    }
    
    .menu-toggle {
        width: 25px;
        height: 18px;
    }
}

/* Slider Responsive Düzenlemeleri */
@media (max-width: 1024px) {
    #hero-slider {
        margin-top: -100px;
    }
    
    .slide-content {
        left: 20%;
        transform: translate(-20%, -50%);
        max-width: 700px;
        padding: 0 15px;
    }
    
    .project-title {
        font-size: 3.2rem;
        padding-left: 25px;
    }
    
    .project-slogan {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #hero-slider {
        margin-top: -80px;
        height: 100vh;
    }
    
    .slide-content {
        left: 50%;
        transform: translate(-50%, -30%);
        text-align: center;
        max-width: 90%;
        padding: 0 20px;
        top: 73%;
    }
    
    .project-title {
        font-size: 2.8rem;
        padding-left: 0;
        text-align: center;
    }
    
    .project-title::before {
        display: none;
    }
    
    .project-slogan {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .btn-primary {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .slider-controls {
        padding: 0 20px;
    }
    
    .prev-btn, .next-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    #hero-slider {
        margin-top: -70px;
    }
    
    .slide-content {
        max-width: 95%;
        padding: 0 15px;
    }
    
    .project-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .project-location {
        font-size: 0.6em;
        margin-bottom: 0.05em;
    }
    
    .project-slogan {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .slider-controls {
        padding: 0 15px;
    }
    
    .prev-btn, .next-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

/* Company Name Overlay Responsive */
@media (max-width: 1024px) {
    .company-name-overlay {
        left: 10%;
        font-size: 6rem;
    }
    
    .company-name-overlay .headline,
    .company-name-overlay .guven {
        font-size: 6rem;
    }
    
    .company-name-overlay .signature,
    .company-name-overlay .unchanged {
        font-size: 9rem;
    }
}

@media (max-width: 768px) {
    .company-name-overlay {
        display: none; /* Mobilde overlay'i gizle */
    }
}

/* Section Headers Responsive */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .line {
        width: 80px;
        height: 2px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .line {
        width: 60px;
    }
}

/* Projects Grid Responsive */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 40px auto 0;
    }
    
    .project-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        margin-top: 30px;
    }
    
    .project-img {
        height: 220px;
    }
    
    .project-content {
        padding: 15px;
    }
    
    .project-content h1 {
        font-size: 1.4rem;
    }
    
    .project-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .project-img {
        height: 200px;
    }
    
    .project-content {
        padding: 12px;
    }
    
    .project-content h1 {
        font-size: 1.3rem;
    }
    
    .project-content p {
        font-size: 0.9rem;
    }
}

/* Contact Info Grid Responsive */
@media (max-width: 1024px) {
    .contact-info-grid {
        gap: 30px;
    }
    
    .contact-box {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .contact-info-grid {
        flex-direction: column;
        gap: 25px;
    }
    
    .contact-separator {
        width: 60%;
        height: 1px;
        margin: 10px 0;
    }
    
    .contact-box {
        min-width: auto;
        width: 100%;
    }
    
    .contact-box .social-icons {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        gap: 20px;
        margin: 30px 0;
    }
    
    .contact-box p {
        font-size: 0.95rem;
    }
    
    .contact-box i {
        font-size: 1.3rem;
    }
}

/* Stats Section Responsive */
@media (max-width: 1024px) {
    .stats-container {
        justify-content: center;
        gap: 30px;
    }
    
    .stat-item {
        padding: 15px;
        margin: 5px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-title {
        font-size: 1rem;
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        gap: 30px;
        justify-content: center;
    }
    
    .footer-logo {
        min-width: 200px;
        text-align: center;
    }
    
    .footer-logo-img {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    footer {
        padding-top: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }
    
    .footer-logo {
        order: -1;
        flex: none;
        min-width: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .footer-logo-img {
        max-width: 220px;
        width: auto;
        height: auto;
        margin: 0 auto;
    }
    
    .footer-links,
    .footer-social {
        flex: none;
        min-width: auto;
        width: 100%;
    }
    
    .footer-links h4::after,
    .footer-social h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    footer {
        padding-top: 40px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo-img {
        max-width: 180px;
    }
    
    .footer-links h4,
    .footer-social h4 {
        font-size: 1.1rem;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        font-size: 0.95rem;
    }
}

/* Full Screen Menu Responsive */
@media (max-width: 768px) {
    .menu-content {
        padding: 0 15px;
    }
    
    .menu-links li a {
        font-size: 2rem;
        padding: 8px 15px;
    }
    
    .menu-contact {
        margin-top: 20px;
    }
    
    .menu-contact h3 {
        font-size: 1.3rem;
    }
    
    .menu-contact p {
        font-size: 1rem;
    }
    
    .close-btn {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 35px;
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .menu-links li a {
        font-size: 1.8rem;
        padding: 6px 12px;
    }
    
    .menu-contact h3 {
        font-size: 1.2rem;
    }
    
    .menu-contact p {
        font-size: 0.95rem;
    }
    
    .close-btn {
        width: 30px;
        height: 30px;
        font-size: 1.4rem;
    }
}

/* About Section Responsive */
@media (max-width: 768px) {
    .about-content {
        padding: 0 15px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 576px) {
    .about-text p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* CTA Section Responsive */
@media (max-width: 768px) {
    .cta-content {
        padding: 50px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .cta-content {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

/* Utility Classes for Mobile */
@media (max-width: 768px) {
    .text-center {
        text-align: center !important;
    }
    
    .mt-5 {
        margin-top: 30px !important;
    }
}

@media (max-width: 576px) {
    .mt-5 {
        margin-top: 25px !important;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .slide {
        transition: opacity 0.5s ease;
    }
    
    .project-card {
        transition: transform 0.2s ease;
    }
    
    .project-card:hover {
        transform: translateY(-5px);
    }
    
    /* Optimize background attachment for mobile */
    .stats-section,
    #iletisim-cta {
        background-attachment: scroll;
    }
    
    /* Reduce blur effects on mobile */
    header {
        backdrop-filter: none;
    }
    
    .fullscreen-menu {
        backdrop-filter: blur(5px);
    }
}

/* Optimize for touch interfaces */
@media (pointer: coarse) {
    /* Larger touch targets */
    .btn,
    .btn-primary,
    .btn-outline {
        min-height: 44px;
        padding: 12px 24px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        margin: 0 3px;
    }
    
    .prev-btn, .next-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .menu-toggle {
        padding: 10px;
    }
    
    .social-icons a {
        padding: 8px;
        margin: 0 5px;
    }
}

/* Hide social media icons on mobile */
@media (max-width: 768px) {
    .header-left .social-icons {
        display: none;
    }
    
    .footer-social .social-icons {
        display: none;
    }
    
    .menu-contact .social-icons {
        display: none;
    }
    
    .contact-box .social-icons {
        display: none;
    }
    
    /* Adjust header layout without social icons */
    .header-left {
        flex: 0;
    }
    
    .header-right {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .social-icons {
        display: none !important;
    }
}

/* Hide social media section completely on mobile in contact area */
@media (max-width: 768px) {
    .contact-box:last-child {
        display: none; /* "Bizi Sosyal Medyadan Takip Edin" kutusunu tamamen gizle */
    }
    
    /* Adjust contact grid for mobile without social media box */
    .contact-info-grid {
        justify-content: center;
    }
    
    /* Remove extra separators when social box is hidden */
    .contact-separator:last-of-type {
        display: none;
    }
}

/* Hide social media section in footer on mobile ONLY */
@media (max-width: 768px) {
    .footer-social {
        display: none !important;
    }
    
    /* Adjust footer layout without social section - center logo */
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        align-items: center;
    }
    
    .footer-logo {
        flex: none;
        width: 100%;
        order: -1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .footer-logo-img {
        max-width: 280px;
        width: auto;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .footer-links {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Ensure social media icons are completely hidden on all mobile sizes */
@media (max-width: 480px) {
    .social-icons,
    .footer-social,
    .contact-box:last-child,
    .menu-contact .social-icons {
        display: none !important;
        visibility: hidden !important;
    }
}

@media (max-width: 320px) {
    /* Extra small devices - ensure social media stays hidden */
    .social-icons,
    .footer-social {
        display: none !important;
    }
}

/* Footer logo centering for smaller screens */
@media (max-width: 576px) {
    .footer-logo {
        padding: 0 20px;
    }
    
    .footer-logo-img {
        max-width: 250px;
        width: 90%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        padding: 0 15px;
    }
    
    .footer-logo-img {
        max-width: 220px;
        width: 85%;
    }
}

@media (max-width: 320px) {
    .footer-logo {
        padding: 0 10px;
    }
    
    .footer-logo-img {
        max-width: 200px;
        width: 80%;
    }
}

/* Ensure footer logo is always centered with proper spacing */
.footer-logo-img {
    display: block;
    margin: 0 auto;
    text-align: center;
    object-fit: contain;
    object-position: center;
}

/* Additional mobile centering for very small screens */
@media (max-width: 375px) {
    .footer-logo {
        padding: 0 20px;
    }
    
    .footer-logo-img {
        max-width: 180px;
        width: 75%;
    }
}

/* Landscape mobile optimization for footer */
@media (max-width: 768px) and (orientation: landscape) {
    .footer-logo-img {
        max-width: 200px;
    }
    
    .footer-content {
        gap: 20px;
    }
}

/* Mobile header layout adjustments */
@media (max-width: 768px) {
    /* Logo mobilde sola al */
    .logo-container {
        position: static;
        left: auto;
        transform: none;
        width: auto;
        height: auto;
        order: -1;
        flex: 1;
        justify-content: flex-start;
        margin-left: 20px;
    }
    
    .logo-img {
        max-width: 120px;
        height: auto;
    }
    
    /* Header container düzeni */
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-left {
        display: none; /* Sosyal medya ikonlarını gizle */
    }
    
    .header-right {
        flex: 0;
        order: 2;
    }
    
    /* Hakkımızda bölümünü mobilde gizle */
    #hakkimizda {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .logo-container {
        margin-left: 15px;
    }
    
    .logo-img {
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        margin-left: 10px;
    }
    
    .logo-img {
        max-width: 90px;
    }
}

/* Desktop logo positioning - ensure it stays centered */
@media (min-width: 769px) {
    .logo-container {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 180px;
        height: 120px;
        top: 0;
        order: 0;
        margin-left: 0;
    }
    
    .header-left {
        display: flex !important;
        justify-content: flex-start;
        flex: 1;
    }
    
    .header-right {
        flex: 1;
        justify-content: flex-end;
    }
    
    /* Footer desktop düzeni */
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        flex: 1;
        min-width: 250px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-links {
        flex: 1;
        min-width: 180px;
    }
    
    .footer-social {
        flex: 1;
        min-width: 180px;
        display: block !important; /* Mobil gizleme kuralını override et */
    }
    
    .footer-social .social-icons {
        display: flex !important; /* Mobil gizleme kuralını override et */
        gap: 15px;
        margin-top: 20px;
    }
    
    .footer-social .social-icons a {
        color: var(--gold);
        font-size: 1.3rem;
        transition: var(--transition);
    }
    
    .footer-social .social-icons a:hover {
        transform: translateY(-3px);
        text-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
    }
}

/* Slider optimizations for mobile */
@media (max-width: 768px) {
    .slide {
        background-attachment: scroll; /* Better performance on mobile */
        background-size: cover;
        background-repeat: no-repeat;
    }
    
    .slide-content {
        position: relative;
        z-index: 10;
    }
}

/* Very small mobile optimizations */
@media (max-width: 480px) {
    .slide::before {
        background: rgba(0, 0, 0, 0.4); /* Çok küçük ekranlar için biraz daha karartma */
    }
}

/* Modern Kurumsal Menü Stilleri */
.modern-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, 
        rgba(13, 35, 64, 0.98) 0%, 
        rgba(26, 58, 100, 0.95) 50%, 
        rgba(36, 73, 122, 0.98) 100%);
    backdrop-filter: blur(20px);
    z-index: 15000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.modern-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modern-menu-container {
    width: 100%;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

/* Menü Header */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-bottom: 1px solid rgba(200, 117, 51, 0.2);
    margin-bottom: 40px;
}

.menu-logo img {
    height: 130px;
    width: auto;
}

.menu-close {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    padding: 0;
    z-index: 2;
}

.close-line {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--copper);
    position: absolute;
    top: 50%;
    left: 50%;
    transition: all 0.3s ease;
}

.close-line:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-close:hover .close-line {
    background: white;
}

/* Menü Ana İçerik */
.menu-main-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 80px;
    flex: 1;
    align-items: start;
    padding-top: 20px;
    padding-bottom: 40px;
    min-height: calc(100vh - 140px);
}

/* Navigasyon */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(40px) translateX(-20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-menu-overlay.active .nav-item {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.modern-menu-overlay.active .nav-item:nth-child(1) { transition-delay: 0.15s; }
.modern-menu-overlay.active .nav-item:nth-child(2) { transition-delay: 0.25s; }
.modern-menu-overlay.active .nav-item:nth-child(3) { transition-delay: 0.35s; }
.modern-menu-overlay.active .nav-item:nth-child(4) { transition-delay: 0.45s; }
.modern-menu-overlay.active .nav-item:nth-child(5) { transition-delay: 0.55s; }

.nav-link {
    display: block;
    padding: 30px 25px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 8px;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(200, 117, 51, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-link:hover::before,
.nav-item.active .nav-link::before {
    left: 100%;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--copper);
    border-bottom-color: var(--copper);
    background: rgba(200, 117, 51, 0.08);
    transform: translateX(10px);
}

.nav-number {
    font-size: 0.9rem;
    color: var(--copper);
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-family: 'Inter', sans-serif;
}

.nav-text {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    font-family: 'AW Conqueror Didot Light', serif;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.nav-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    font-family: 'Inter', sans-serif;
    line-height: 1.4;
}

.nav-link:hover .nav-description,
.nav-item.active .nav-link .nav-description {
    color: rgba(200, 117, 51, 0.8);
}

/* Info Panel */
.menu-info-panel {
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    transform: translateX(50px) translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: fit-content;
}

.modern-menu-overlay.active .menu-info-panel {
    opacity: 1;
    transform: translateX(0) translateY(0);
    transition-delay: 0.4s;
}

/* İletişim Kartı */
.contact-card {
    background: linear-gradient(135deg, 
        rgba(200, 117, 51, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    border: 1px solid rgba(200, 117, 51, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.contact-title {
    color: var(--copper);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-family: 'AW Conqueror Didot Light', serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--copper), #d4954a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Sosyal Medya */
.menu-social {
    margin-bottom: 30px;
}

.menu-social h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.menu-social .social-links {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: flex-start;
}

.menu-social .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: none;
    border: none;
}

.menu-social .social-link:hover {
    transform: translateY(-3px);
}

.menu-social .social-link i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
    background: linear-gradient(135deg, var(--copper), #d4954a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    line-height: 1;
}

.menu-social .social-link:hover i {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(200, 117, 51, 0.4);
    background: linear-gradient(135deg, #d4954a, var(--copper));
}

/* Modern Menü Responsive */
@media (max-width: 1024px) {
    .menu-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .menu-info-panel {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }
    
    .modern-menu-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .modern-menu-container {
        padding: 0 20px;
    }
    
    .menu-header {
        padding: 20px 0;
        margin-bottom: 30px;
    }
    
    .menu-logo img {
        height: 130px;
    }
    
    /* Mobil için navigasyon optimizasyonu */
    .nav-link {
        padding: 20px 15px;
        margin-bottom: 6px;
        border-radius: 12px;
    }
    
    .nav-text {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 6px;
    }
    
    .nav-number {
        font-size: 0.8rem;
        margin-bottom: 6px;
    }
    
    .nav-description {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    /* Mobil için contact card */
    .contact-card {
        padding: 25px 20px;
        border-radius: 15px;
        margin-bottom: 25px;
    }
    
    .contact-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .contact-item {
        margin-bottom: 18px;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-details h4 {
        font-size: 0.9rem;
        margin-bottom: 3px;
    }
    
    .contact-details p {
        font-size: 0.85rem;
    }
    
    /* Mobil sosyal medya */
    .menu-social h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .menu-social .social-links {
        gap: 12px;
        justify-content: center;
    }
    
    .menu-social .social-link i {
        width: 38px;
        height: 38px;
        min-width: 38px;
        min-height: 38px;
        font-size: 1rem;
    }
    
    .menu-main-content {
        padding-top: 20px;
        gap: 30px;
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .modern-menu-container {
        padding: 0 15px;
    }
    
    .menu-header {
        padding: 15px 0;
        margin-bottom: 25px;
    }
    
    .menu-logo img {
        height: 130px;
    }
    
    /* Küçük ekranlar için daha kompakt navigasyon */
    .nav-link {
        padding: 15px 12px;
        margin-bottom: 4px;
        border-radius: 10px;
        transform: none;
    }
    
    .nav-link:hover,
    .nav-item.active .nav-link {
        transform: none;
        background: rgba(200, 117, 51, 0.12);
    }
    
    .nav-text {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 4px;
        line-height: 1.1;
    }
    
    .nav-number {
        font-size: 0.75rem;
        margin-bottom: 4px;
    }
    
    .nav-description {
        font-size: 0.8rem;
        line-height: 1.2;
    }
    
    /* Küçük ekran contact card */
    .contact-card {
        padding: 20px 15px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .contact-title {
        font-size: 1.1rem;
        margin-bottom: 18px;
        text-align: center;
    }
    
    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .contact-details {
        flex: 1;
    }
    
    .contact-details h4 {
        font-size: 0.85rem;
        margin-bottom: 2px;
    }
    
    .contact-details p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    /* Küçük ekran sosyal medya */
    .menu-social {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .menu-social h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .menu-social .social-links {
        gap: 10px;
        justify-content: center;
    }
    
    .menu-social .social-link i {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
        font-size: 0.9rem;
    }
    
    .menu-main-content {
        padding-top: 15px;
        gap: 25px;
        padding-bottom: 40px;
        min-height: calc(100vh - 100px);
    }
}

/* Landscape mobil cihazlar için */
@media (max-width: 812px) and (orientation: landscape) {
    .modern-menu-container {
        padding: 0 20px;
    }
    
    .menu-header {
        padding: 15px 0;
        margin-bottom: 20px;
    }
    
    .menu-logo img {
        height: 50px;
    }
    
    .menu-main-content {
        padding-top: 10px;
        gap: 30px;
        padding-bottom: 35px;
        grid-template-columns: 1fr 300px;
    }
    
    .nav-link {
        padding: 12px 15px;
    }
    
    .nav-text {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .menu-info-panel {
        padding-left: 20px;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        padding-top: 0;
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .nav-link {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .menu-social .social-link {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
    
    .menu-close {
        min-height: 44px;
        min-width: 44px;
        touch-action: manipulation;
    }
}

