@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    --gold-color: #D4AF37;
    --dark-blue-color: #0a2540;
    --white-color: #ffffff;
    --light-gray-color: #f8f9fa;
    --text-color: #333;
    --footer-bg: #051a2e;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white-color);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



h1, h2, h3 {
    font-family: var(--font-secondary);
    color: var(--dark-blue-color);
}

a {
    text-decoration: none;
    color: var(--gold-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-blue-color);
}

.btn-primary {
    display: inline-block;
    background-color: var(--gold-color);
    color: var(--white-color);
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-blue-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

#main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background: var(--dark-blue-color);
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

#main-header.scrolled {
    background: rgba(10, 37, 64, 0.95);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    transition: height 0.4s ease;
}

#main-header.scrolled .logo img {
    height: 40px;
}

.main-nav > ul {
    list-style: none;
    display: flex;
}

.main-nav > ul > li {
    margin-left: 30px;
    position: relative;
}

.main-nav ul li a {
    color: var(--white-color);
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: width 0.4s ease;
}

.main-nav ul li a:hover::after, .main-nav ul li.active a::after {
    width: 100%;
}

/* Aktif Sayfa Menü Çizgisi */
.main-nav > ul > li.active > a::after {
    width: 100%;
}
/* === AÇILIR MENÜ STİLLERİ BAŞLANGIÇ === */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001; /* Diğer elementlerin altında kalmaması için */
    background-color: var(--dark-blue-color);
    list-style: none;
    margin: 0;
    padding: 0; /* İç ve dış tüm boşlukları sıfırla */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    overflow: hidden; /* Hover renginin yuvarlak köşelerden taşmasını engeller */
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    /* Hover efektinin geçişini LI elementine veriyoruz */
    transition: background-color 0.2s ease-in-out;
}

/* Arka plan rengini LI'ye uyguluyoruz */
.dropdown-menu li:hover {
    background-color: var(--gold-color);
}

.dropdown-menu li a {
    display: block; /* Tıklanabilir alanı tüm satıra yayar */
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

/* Yazı rengini LI hover olduğunda değiştiriyoruz */
.dropdown-menu li:hover a {
    color: var(--dark-blue-color);
}

/* === AÇILIR MENÜ STİLLERİ BİTİŞ === */

.lang-switcher a {
    color: var(--white-color);
    font-weight: bold;
    margin-left: 30px;
    border: 1px solid var(--gold-color);
    padding: 5px 10px;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.lang-switcher a:hover {
    background-color: var(--gold-color);
    color: var(--dark-blue-color);
}

#mobile-menu-toggle { display: none; }

#slider-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    color: var(--white-color);
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: absolute;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.slide.active {
    opacity: 1;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}

.slider-content h1 {
    font-size: 4rem;
    color: var(--white-color);
    margin-bottom: 20px;
    animation: fadeInUpSimple 1s ease-out; /* Değişiklik burada */
}

.slider-content p {
    font-size: 1.5rem;
    animation: fadeInUpSimple 1s ease-out 0.5s; /* Değişiklik burada */
    animation-fill-mode: backwards;
}



/* Hızlı İletişim Formu Yeni Stilleri */
.mini-contact-form-container {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 750px;
    background: rgba(10, 37, 64, 0.6); /* Hafif transparan koyu mavi */
    backdrop-filter: blur(8px);
    padding: 25px 30px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    animation: fadeInUp 1s ease-out 1s; /* Animasyonu aşağıdan yukarıya çevirdik */
    animation-fill-mode: backwards;
}

.mini-contact-form {
    text-align: center;
}

.mini-contact-form h3 {
    color: var(--white-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-family: var(--font-secondary);
}

.form-inputs-wrapper {
    display: flex;
    gap: 15px; /* Elemanlar arası boşluk */
    align-items: stretch; /* Yükseklikleri eşitlemek için */
}

.mini-contact-form input {
    flex: 1; /* Esnek genişlik, boşluğu doldurur */
    padding: 15px;
    border: 1px solid var(--gold-color);
    background: transparent;
    color: var(--white-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: var(--font-primary);
}

.mini-contact-form input::placeholder { 
    color: rgba(255,255,255,0.7); 
}

.mini-contact-form button {
    padding: 15px 30px;
    background: var(--gold-color);
    color: var(--dark-blue-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.mini-contact-form button:hover {
    background-color: var(--white-color);
}

/* --- Hızlı İletişim Formu Bitiş --- */



section {
    padding: 80px 0;
}

#featured-projects, #home-about, #team, #home-contact {
    text-align: center;
}

#featured-projects h2, #team h2, #home-contact h2, .content-section h2, .page-header h1 {
    font-size: 2rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

#featured-projects h2::after, #team h2::after, #home-contact h2::after, .content-section h2::after, .page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--gold-color);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 37, 64, 0.7);
    color: var(--white-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.project-card:hover .project-card-overlay {
    opacity: 1;
}

.project-card-overlay h3 {
    color: var(--white-color);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-overlay h3 {
    transform: translateY(0);
}

.project-card-overlay .project-card-link {
    border: 1px solid var(--gold-color);
    padding: 5px 15px;
    margin-top: 15px;
    transform: translateY(20px);
    transition: transform 0.5s ease 0.2s, background-color 0.3s, color 0.3s;
    opacity: 0;
}

.project-card:hover .project-card-overlay .project-card-link {
    transform: translateY(0);
    opacity: 1;
}

#home-about {
    background: var(--light-gray-color);
}

.home-about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: left;
}

.home-about-image {
    flex: 1;
}

.home-about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.home-about-text {
    flex: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background: var(--white-color);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--light-gray-color);
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--gold-color);
    font-style: italic;
}

#home-contact {
    background-attachment: fixed;
}

#home-contact h2 {
    color: var(--white-color);
}
#home-contact h2::after {
    background-color: var(--white-color);
}

.main-contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.9);
    padding: 40px;
    border-radius: 10px;
}

.main-contact-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.main-contact-form input, .main-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-primary);
}

.main-contact-form textarea {
    height: 150px;
    margin-bottom: 20px;
    resize: vertical;
}

#main-footer {
    background-color: var(--footer-bg);
    color: rgba(255,255,255,0.8);
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col h3 {
    color: var(--gold-color);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

#footer-links ul {
    list-style: none;
}

#footer-links ul li a {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: block;
}
#footer-links ul li a:hover {
    color: var(--gold-color);
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-col .social-icons i {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    background-color: var(--dark-blue-color);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

.floating-action-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.fab-main {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gold-color);
    border: none;
    color: var(--dark-blue-color);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.fab-options {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.floating-action-button.active .fab-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.fab-options a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-blue-color);
    color: var(--white-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-header {
    padding: 150px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
}

.page-header-overlay {
    background: rgba(10, 37, 64, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header h1 {
    color: var(--white-color);
    font-size: 3.5rem;
    padding-top: 100px;
}

.content-section {
    padding: 80px 0;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
/* Sadece dikeyde çalışan basit fadeInUp animasyonu */
@keyframes fadeInUpSimple {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 992px) {
    .main-nav, .lang-switcher { display: none; }
    #mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    #mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--white-color);
        margin: 5px 0;
        transition: all 0.3s ease;
    }
    
    .main-nav.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--dark-blue-color);
    }
    .main-nav.active ul {
        flex-direction: column;
        width: 100%;
    }
    .main-nav.active ul li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .main-nav.active ul li a {
        padding: 15px;
        display: block;
    }
    
    .home-about-content { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .slider-content h1 { font-size: 2.8rem; }
    .mini-contact-form-container {
        width: 90%;
        position: relative;
        margin-top: 30px;
        right: auto;
        bottom: auto;
    }
    .main-contact-form .form-row { flex-direction: column; gap: 0; }
}
/* =================================== */
/* === YENİ İLETİŞİM SAYFASI STİLLERİ === */
/* =================================== */

#new-contact-section {
    position: relative;
    padding: 100px 0;
    color: var(--white-color);
}

.contact-map-background,
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-map-background iframe {
    width: 100%;
    height: 100%;
    border: 0; /* Zaten style="" içinde var ama CSS'te de olması iyi */
    /* Önerilen yeni filtreler (istediğini seç veya ayarla): */
    /* Seçenek 1: Hafif soluk ve kontrastlı koyu tema */
    filter: grayscale(80%) contrast(1.2) brightness(0.9); 
    /* Seçenek 2: Daha belirgin bir koyu tema (invert'siz) */
    /* filter: grayscale(100%) brightness(70%) sepia(20%); */
    /* Seçenek 3: Sadece grayscale */
    /* filter: grayscale(1); */
    /* Seçenek 4: Filtresiz (varsayılan renkli harita) */
    /* filter: none; */
}

.contact-overlay {
    background: #0a2540e6;
    z-index: 2;
}

#new-contact-section .container {
    position: relative;
    z-index: 3;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.contact-section-title {
    font-size: 3rem;
    color: var(--white-color);
    font-family: var(--font-secondary);
    margin-bottom: 15px;
}
.contact-section-title::after {
    display: none;
}

.contact-section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 450px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.info-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: var(--gold-color);
    color: var(--dark-blue-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.info-card-text h4 {
    font-family: var(--font-primary);
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 5px;
}

.info-card-text p, .info-card-text a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}
.info-card-text a:hover {
    color: var(--gold-color);
}

.contact-form-right .stylish-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stylish-form input,
.stylish-form textarea {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
}

.stylish-form input::placeholder,
.stylish-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.stylish-form input:focus,
.stylish-form textarea:focus {
    border-color: var(--gold-color);
    background: rgba(0, 0, 0, 0.5);
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    .contact-info-left {
        text-align: center;
    }
    .contact-section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .info-card {
        flex-direction: column;
        text-align: center;
    }
}

/* =================================== */
/* === YENİ HAKKIMIZDA SAYFASI STİLLERİ === */
/* =================================== */

.about-story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text-content h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 20px;
}
.about-text-content h2::after { display: none; } /* Genel başlık çizgisini burada istemiyoruz */

.about-text-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.about-image-content img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#stats-bar {
    padding: 60px 0;
    background-color: var(--dark-blue-color);
    color: var(--white-color);
    margin: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.stat-item .counter {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    padding: 40px;
    text-align: center;
    background: var(--light-gray-color);
    border-radius: 8px;
    border-top: 5px solid var(--gold-color);
    transition: transform 0.3s, box-shadow 0.3s;
}
.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.vm-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}

.vm-card h3 {
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.vm-card p {
    color: #555;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .about-story-grid, .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* Belgelerimiz Sayfası Stilleri */
.documents-section {
    text-align: center;
}

.documents-section .section-subtitle {
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
    color: #555;
}

.document-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.document-item-card {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.document-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.document-icon {
    font-size: 2.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    text-align: center;
}

.document-details h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-blue-color);
    margin-bottom: 10px;
}

.document-details p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1; /* İçeriğin kartı doldurmasını sağlar */
}

.document-action {
    margin-top: auto; /* Butonu kartın altına iter */
    text-align: center;
}

.document-action .btn-primary {
    display: inline-block; /* Veya block eğer tam genişlik istenirse */
}

.document-action .btn-disabled {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ccc;
    color: #777;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: not-allowed;
}

/* Galeri Stilleri */
.gallery-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Otomatik sığdırma ve minimum genişlik */
   gap: 15px; /* Görseller arası boşluk */
}

.gallery-grid a {
   display: block; /* Bağlantıları blok elemanı yapar */
}

.gallery-grid img {
   width: 100%; /* Görselin kapsayıcısının genişliğini tam olarak almasını sağlar */
   height: auto; /* Yüksekliği orantılı ayarlar */
   border-radius: 5px;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
   transform: scale(1.05); /* Üzerine gelindiğinde hafif büyütme efekti */
}
@media (max-width: 768px) {
   /* ... diğer mobil kurallarınız ... */
   .gallery-grid {
       grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Mobil için daha küçük minimum genişlik */
       gap: 10px;
   }
}


/* Video Galeri Stilleri */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-wrapper:hover {
    transform: translateY(-5px);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Küçük ekranlar için galeri düzenlemesi */
@media (max-width: 480px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* =================================== */
/* === MOBİL UYUMLULUK AYARLARI === */
/* =================================== */

@media (max-width: 768px) {

    /* Genel Başlıkları Mobil İçin Küçültme */
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    .slider-content h1 { font-size: 2.5rem; }
    .page-header h1 { font-size: 2.5rem; }


    /* Hızlı İletişim Formu Mobil Ayarları */
    .mini-contact-form-container {
        position: relative; 
        bottom: auto;      
        left: auto;        
        transform: none;   
        padding: 20px 15px;
        margin-top: 2rem;  
        order: 2;          
        animation: fadeInUpSimple 1s ease-out 0.5s; /* BU SATIRI EKLE */
    }

    .mini-contact-form h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .form-inputs-wrapper {
        flex-direction: column; /* Yatay dizilimi DİKEYE çevirir */
        gap: 10px; /* Elemanlar arası boşluğu ayarlar */
    }

    .mini-contact-form input,
    .mini-contact-form button {
        font-size: 1rem; /* Mobilde rahat okunması için boyutu koruyoruz */
        padding: 12px;
    }

    /* Ana İletişim Formu Mobil Ayarları */
    .main-contact-form .form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .main-contact-form .form-row input {
        margin-bottom: 10px;
    }
}



/* Müşteri Yorumları Bölümü Stilleri */
#testimonials {
    background-color: var(--light-gray-color);
    text-align: center;
}

#testimonials h2 {
    margin-bottom: 60px;
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 350px; /* İçerik yüklenirken çökmemesi için */
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0; /* Başlangıçta hepsi görünmez */
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    padding: 0 20px;
}

.testimonial-slide.active {
    opacity: 1; /* Sadece aktif olan görünür olacak */
    visibility: visible;
    position: relative; /* Aktif olan statik kalır, diğerleri absolute */
}

.testimonial-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content i.fa-quote-left {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: var(--gold-color);
    opacity: 0.2;
}

.testimonial-content .comment {
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-color);
}

.author-info .name {
    display: block;
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--dark-blue-color);
}

.author-info .title {
    display: block;
    font-size: 0.9rem;
    color: #777;
}

.testimonial-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white-color);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1rem;
    color: var(--dark-blue-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}
.testimonial-nav button:hover {
    background-color: var(--gold-color);
    color: var(--white-color);
}
.testimonial-nav .prev { left: -60px; }
.testimonial-nav .next { right: -60px; }

@media (max-width: 992px) {
    .testimonial-nav .prev { left: -10px; }
    .testimonial-nav .next { right: -10px; }
}


/* Proje Detay Sayfası Yeni Stilleri */
.project-detail-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.project-detail-main-content {
    flex: 2;
    min-width: 300px;
}

.project-detail-sidebar {
    flex: 1;
    min-width: 280px;
}

.project-info-box {
    background-color: var(--light-gray-color);
    padding: 30px;
    border-radius: 8px;
    position: sticky;
    top: 120px; /* Header yüksekliğine göre ayarlayın */
}

.project-info-box h3 {
    font-family: var(--font-secondary);
    color: var(--dark-blue-color);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold-color);
    padding-bottom: 10px;
}

.project-info-box ul {
    list-style: none;
    margin-bottom: 25px;
}

.project-info-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.project-info-box ul li strong {
    color: var(--dark-blue-color);
}

.project-info-box h4 {
    font-family: var(--font-primary);
    font-weight: bold;
    color: var(--dark-blue-color);
    margin-top: 20px;
    margin-bottom: 10px;
}

.project-info-box p {
    line-height: 1.7;
    font-size: 0.95rem;
}


/* Öne Çıkan Projeler Slider Stilleri */
.featured-project-slider-container {
    position: relative;
    overflow: hidden; /* Taşmaları gizle */
    padding: 0 50px; /* Oklar için yanlarda boşluk */
    margin: 0 -50px; /* Container padding'ini dengele */
}

.featured-project-slider {
    display: flex; /* Proje kartlarını yan yana diz */
    transition: transform 0.5s ease-in-out;
    padding-bottom: 20px; /* Alt boşluk, gölge vs için */
}

.featured-project-slider .project-card {
    min-width: 350px; /* Her bir proje kartının minimum genişliği */
    max-width: 350px; /* Her bir proje kartının maksimum genişliği */
    margin-right: 30px; /* Kartlar arası boşluk */
    flex-shrink: 0; /* Kartların daralmamasını sağla */
}
.featured-project-slider .project-card:last-child {
    margin-right: 0;
}


/* Navigasyon okları için testimonial-nav stilini kullanıyoruz,
   sadece pozisyonlarını ayarlamak gerekebilir veya özelleştirebiliriz.
   Eğer .testimonial-nav zaten sağda/solda ortalı ise,
   aşağıdaki kurallar sadece butonların class isimlerini eşleştirmek için. */
.featured-project-nav {
    /* Eğer testimonial-nav zaten doğru pozisyondaysa, buraya özel stil gerekmez.
       Ancak farklı pozisyonlamak isterseniz: */
    position: absolute;
    top: 50%;
    width: calc(100% - 100px); /* padding'i hesaba kat */
    left: 50px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none; /* Sadece butonlar tıklanabilsin */
}

.featured-project-nav .prev,
.featured-project-nav .next {
    pointer-events: auto; /* Butonlar tıklanabilsin */
    z-index: 10;
}
/* Eğer testimonial-nav'ın okları fazla büyük/küçük gelirse, burada özelleştirebilirsiniz:
.featured-project-nav button {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
}
*/

/* Mobil için proje kartlarını biraz küçültebiliriz */
@media (max-width: 768px) {
    .featured-project-slider-container {
        padding: 0 15px;
        margin: 0 -15px;
    }
    .featured-project-slider .project-card {
        min-width: 300px;
        max-width: 300px;
        margin-right: 15px;
    }
    .featured-project-nav {
        width: calc(100% - 30px);
        left: 15px;
    }
}

@media (max-width: 480px) {
    .featured-project-slider .project-card {
        min-width: 280px;
        max-width: 280px;
    }
}


/* Dil Değiştirici Dropdown Stilleri */
.lang-switcher-dropdown {
    position: relative;
    margin-left: 20px; /* Ana navigasyonla arasına biraz boşluk */
}

.lang-switcher-button {
    background: none;
    border: 1px solid var(--gold-color);
    color: var(--white-color);
    padding: 6px 12px;
    border-radius: 3px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.lang-switcher-button:hover,
.lang-switcher-dropdown.open .lang-switcher-button {
    background-color: var(--gold-color);
    color: var(--dark-blue-color);
}

.current-lang-text {
    margin-right: 8px;
}

.lang-arrow {
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.lang-switcher-dropdown.open .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); /* Butonun biraz altında */
    right: 0;
    background-color: var(--dark-blue-color);
    border: 1px solid var(--gold-color);
    border-radius: 4px;
    list-style: none;
    margin: 0;
    padding: 5px 0;
    z-index: 1100; /* Diğer elementlerin üstünde kalması için */
    min-width: 80px; /* Minimum genişlik */
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.lang-switcher-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-link {
    display: block;
    padding: 8px 15px;
    color: var(--white-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-dropdown-link:hover {
    background-color: var(--gold-color);
    color: var(--dark-blue-color);
}

.lang-dropdown-link.active-lang-item {
    font-weight: bold;
    background-color: rgba(212, 175, 55, 0.2); /* Aktif dil için hafif altın rengi arka plan */
    pointer-events: none; /* Aktif dile tekrar tıklamayı engelle */
}


/* Çağrı Banner (CTA Banner) Stilleri */
#cta-banner {
    background-attachment: fixed; /* Parallax efekti için */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    text-align: center;
    color: var(--white-color);
    margin: 60px 0; /* Diğer bölümlerle arasına boşluk */
}

#cta-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 37, 64, 0.75); /* --dark-blue-color'ın %75 transparan hali */
    z-index: 1;
}

#cta-banner .banner-content {
    position: relative;
    z-index: 2;
}

#cta-banner .banner-content h2 {
    font-size: 2.8rem;
    font-family: var(--font-secondary);
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.3;
}
#cta-banner .banner-content h2::after { /* Genel başlık çizgisini burada istemiyoruz */
    display: none;
}

#cta-banner .banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255,255,255,0.9);
}

#cta-banner .banner-content .btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Mobil için banner yazı boyutlarını ayarla */
@media (max-width: 768px) {
    #cta-banner {
        padding: 80px 0;
        background-attachment: scroll; /* Mobilde parallax sorun çıkarabilir, scroll yap */
    }
    #cta-banner .banner-content h2 {
        font-size: 2rem;
    }
    #cta-banner .banner-content p {
        font-size: 1rem;
    }
}

/* =================================== */
/* === YENİ ANASAYFA İLETİŞİM FORMU STİLLERİ === */
/* =================================== */

#home-contact-redesigned {
    background-color: var(--dark-blue-color); /* Koyu mavi arka plan */
    padding: 80px 0;
    border-radius: 50px;
    color: var(--white-color);
}

.home-contact-info h2 {
    font-size: 2rem; /* Diğer bölüm başlıklarıyla aynı veya isteğe bağlı */
    font-family: var(--font-secondary);
    color: var(--white-color); /* Altın rengi de olabilir: var(--gold-color) */
    margin-bottom: 30px; /* Altındaki h3 ile arasına boşluk */
    position: relative;
    padding-bottom: 10px;
    text-align: left; /* Sola dayalı olduğundan emin olalım */
}

.home-contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0; /* Çizgiyi sola dayalı yapar */
    width: 70px;
    height: 3px;
    background-color: var(--gold-color);
}

/* Mevcut .home-contact-info h3 kuralı */
.home-contact-info h3 {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: var(--gold-color); /* H2 beyazsa bu altın kalsın, ya da tam tersi */
    margin-bottom: 20px;
    line-height: 1.3;
}


.home-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol sütun daha dar, sağ (form) daha geniş */
    gap: 60px;
    align-items: center;
}

.home-contact-info h3 {
    font-size: 2rem;
    font-family: var(--font-secondary);
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.home-contact-info p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
}

.quick-contact-links-home a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.quick-contact-links-home a i {
    color: var(--gold-color);
    margin-right: 12px;
    width: 20px; /* İkonların hizalı durması için */
    text-align: center;
}

.quick-contact-links-home a:hover {
    color: var(--gold-color);
}

/* Anasayfa formu için iletişim sayfasındaki 'stylish-form' benzeri stil */
.stylish-form-home {
    background: rgba(0, 0, 0, 0.15); /* Daha az belirgin bir arka plan */
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stylish-form-home input,
.stylish-form-home textarea {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    padding: 15px; /* Padding'i main-contact-form ile aynı yaptık */
}

.stylish-form-home input::placeholder,
.stylish-form-home textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.stylish-form-home input:focus,
.stylish-form-home textarea:focus {
    border-color: var(--gold-color);
    background: rgba(0, 0, 0, 0.4);
}

.stylish-form-home .btn-primary { /* Butonun form içinde tam genişlik olmaması için */
    width: auto;
    padding-left: 40px;
    padding-right: 40px;
}

/* Mobil Uyum */
@media (max-width: 992px) {
    .home-contact-grid {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
        gap: 40px;
    }
    .home-contact-info {
        text-align: center; /* Mobilde metinleri ortala */
    }
    .quick-contact-links-home a {
        justify-content: center; /* Mobilde linkleri ortala */
    }
}








/* =================================== */
/* === ANASAYFA YENİ BÖLÜM STİLLERİ === */
/* =================================== */

/* Genel İçerik Bölümü Ayarları */
.content-section {
    padding: 80px 0;
}
.section-title-center { /* Bu sınıfı zaten iletişim formu için eklemiştik, genel kullanılabilir */
    text-align: center;
    margin-bottom: 60px;
}
.section-title-center h2 {
    /* Gerekirse stilini buradan genel olarak ayarlayabilirsiniz veya mevcutsa kullanabilirsiniz */
}
.section-subtitle { /* process bölümündeki alt başlık için */
    font-size: 1.1rem;
    color: #666;
    margin-top: -30px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hizmetlerimiz Bölümü */
#services {
    background-color: var(--white-color); /* veya var(--light-gray-color); */
}
.services-grid {
    display: grid;
    /* Mobil için varsayılan tek sütun */
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Tabletler için (örneğin 768px ve üzeri) */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 sütun */
    }
}

/* Masaüstü için (örneğin 992px ve üzeri) */
@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    }
}
.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-icon {
    font-size: 3rem;
    color: var(--gold-color);
    margin-bottom: 20px;
}
.service-card h3 {
    font-family: var(--font-secondary);
    color: var(--dark-blue-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}
.service-card p {
    color: #555;
    line-height: 1.6;
}

/* Proje Sürecimiz Bölümü */
#project-process {
    background-color: var(--dark-blue-color);
    color: var(--white-color);
}
#project-process .section-title-center h2 {
    color: var(--white-color);
}
#project-process .section-title-center h2::after {
    background-color: var(--gold-color);
}
#project-process .section-subtitle {
    color: rgba(255,255,255,0.7);
}
.process-timeline {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}
.process-timeline::before { /* Zaman çizgisinin ortasındaki çizgi */
    content: '';
    position: absolute;
    top: 25px; /* İkon yüksekliğinin yarısı */
    left: 5%;
    right: 5%;
    height: 3px;
    background-color: var(--gold-color);
    opacity: 0.3;
    z-index: 1;
}
.timeline-item {
    width: calc(25% - 20px); /* 4 eleman için, aradaki boşlukları da hesaba kat */
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gold-color);
    color: var(--dark-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 25px auto;
    border: 3px solid var(--dark-blue-color);
    box-shadow: 0 0 0 3px var(--gold-color);
}
.timeline-content h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 10px;
}
.timeline-content h4 span { /* Numara için */
    color: var(--gold-color);
    font-weight: 700;
    margin-right: 5px;
}
.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

/* Neden Ulaş Yapı Bölümü */
#why-us {
    background-color: var(--light-gray-color);
}
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.why-us-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column; /* DİKEY SIRALAMA İÇİN EKLENDİ */
    align-items: center;   /* YATAYDA ORTALAMA İÇİN DEĞİŞTİRİLDİ */
    text-align: center;    /* METİNLERİ ORTALAMAK İÇİN EKLENDİ */
    gap: 15px; /* Elemanlar arası dikey boşluk (ikon, başlık, paragraf arası) */
}
.why-us-icon {
    font-size: 2.8rem; /* Biraz daha büyütülebilir */
    color: var(--gold-color);
    /* margin-top: 5px; - Artık flex gap ile yönetiliyor, gerek yok */
    /* width: 50px; - Artık dikeyde, gerek yok */
    /* flex-shrink: 0; - Artık dikeyde, gerek yok */
    margin-bottom: 5px; /* Başlıkla arasında biraz boşluk için, gap'e ek olarak */
}
.why-us-card h3 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--dark-blue-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.why-us-card p {
    color: #555;
    line-height: 1.6;
}

/* Mobil Uyum Eklemeleri */
@media (max-width: 992px) {
    .process-timeline::before { display: none; } /* Mobilde ortadaki çizgiyi kaldır */
    .timeline-item {
        width: calc(50% - 15px); /* Mobilde 2 sütun */
        margin-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .content-section { padding: 60px 0; }
    .section-title-center { margin-bottom: 40px; }
    .section-subtitle { margin-bottom: 30px; }

    .timeline-item {
        width: 100%; /* Mobilde tek sütun */
        padding-left: 0; padding-right: 0;
    }
    .why-us-card {
        flex-direction: column; /* Mobilde ikon ve metni alt alta */
        text-align: center;
    }
    .why-us-icon {
        margin: 0 auto 15px auto;
    }
}

#custom-map {
    width: 100%;
    height: 100%;
}


/* style.css dosyasına eklenecek */

.form-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    border: 1px solid transparent;
}

.form-message.success {
    background-color: #d1e7dd;
    border-color: #a3cfbb;
    color: #0a3622;
}

.form-message.error {
    background-color: #f8d7da;
    border-color: #f1aeb5;
    color: #58151c;
}


/* --- Bilgilendirme Popup Stilleri --- */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none; /* JavaScript ile açılacak */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease-in-out;
}

.popup-overlay.active .popup-content {
    transform: translateY(0);
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #aaa;
    cursor: pointer;
    padding: 0;
}

.popup-close:hover {
    color: #333;
}

.popup-body h2 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
}

.popup-body p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

/* --- Çerez Bildirim Barı Stilleri --- */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50; /* Koyu renk */
    color: #ecf0f1;
    padding: 15px 25px;
    z-index: 2500;
    display: none; /* JavaScript ile açılacak */
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.5s ease-in-out;
}

#cookie-consent-banner.active {
    display: flex;
    transform: translateY(0);
}

#cookie-consent-banner p {
    margin: 0;
    font-size: 0.9rem;
}

#cookie-consent-banner a {
    color: #3498db; /* Açık mavi link */
    text-decoration: underline;
}

#cookie-consent-banner button {
    white-space: nowrap; /* "Kabul Et" yazısı tek satırda kalsın */
    padding: 8px 16px;
}

@media (max-width: 768px) {
    #cookie-consent-banner {
        flex-direction: column;
        text-align: center;
    }
}