* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #c5a880;
    /* Şampanya Altını (Zarif Vurgu Rengi) */
    --bg-dark: #121212;
    /* Derin Gece Siyahı (Premium Koyu Tema Arka Planı) */
    --bg-light: #fcfaf7;
    /* Sıcak Fildişi / Krem Rengi (Aydınlık Tema Arka Planı) */
}

header {
    background-color: var(--bg-dark); /* Şeffaflık kaldırıldı, tam solid yapıldı */
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: solid 1px rgba(197, 168, 128, 0.15); /* Altın rengi ince, şık bir çizgi eklendi */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navlist {
    /* menü elemanlarını hizaladık */
    display: flex;
    justify-content: space-between;
    gap: 20px;
    list-style-type: none;
}

body {
    background-color: var(--bg-light);
    padding-top: 80px;
}

.navlist a {
    text-decoration: none;
    color: white;
    display: inline-block;
    padding: 12px 20px;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;

}

.navlist i {
    margin-right: 5px;
}

.navlist a:after {
    content: '';
    width: 0;
    height: 2px;
    background-color: var(--primary);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;


}

.navlist a:hover:after {
    width: 60%;
    transition: all 0.3s ease;

}

.navlist a:hover {
    color: var(--primary);
}



#logo {
    display: block;
    max-height: 85px;
    width: auto;
    border-radius: 8px;
}



.arrows {
    z-index: 10;
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    cursor: pointer;
}


.arrows i {
    font-size: 2rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    /* Biraz daha şeffaf */
    backdrop-filter: blur(8px);
    /* Lüks cam efekti (Glassmorphism) */
    -webkit-backdrop-filter: blur(8px);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    /* Yumuşak geçiş */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.arrows i:hover {
    background-color: var(--primary);
    /* Sitenin şampanya rengi */
    color: var(--bg-dark);
    /* İkon rengi koyu siyah */
    transform: scale(1.15);
    /* Üzerine gelince hafifçe büyüme */
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(197, 168, 128, 0.5);
    /* Etrafa şampanya rengi parlama */
}



/* =======================================================
   HERO / GİRİŞ BÖLÜMÜ STİLLERİ
   ======================================================= */

.hero {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 5%;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent glow */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.1) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.08) 0%, rgba(0,0,0,0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.hero-tagline {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary);
    margin-bottom: 25px;
    border-radius: 2px;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ccc;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    font-weight: 600;
    margin-top: 0;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

.hero-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 168, 128, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(197, 168, 128, 0.25);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Hero Section Media Queries */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-container {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 5% 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 45px;
    }
    
    .hero-text-content {
        align-items: center;
    }
    
    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image-wrapper {
        max-width: 420px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 30px;
    outline: none;
    border: 2px solid transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-solid {
    background-color: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.btn-solid:hover {
    background-color: transparent;
    color: var(--primary);
    transform: translateY(-3px);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.3);
}

.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 30px 5% 15px;
    font-family: 'Outfit', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.footer-info {
    flex: 1;
    min-width: 300px;
}

.footer-info h2 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.footer-desc {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 400px;
    font-size: 0.9rem;
}

.contact-info p {
    color: #bbb;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--primary);
    font-size: 1.1rem;
    width: 30px;
    text-align: left;
}

.contact-info strong {
    color: white;
    font-weight: 500;
    margin-right: 8px;
    letter-spacing: 0.5px;
}

.social-icons {
    margin-top: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-2px);
    display: inline-block;
}

.footer-map {
    flex: 1;
    min-width: 300px;
}

.footer-map h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.footer-map iframe {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(197, 168, 128, 0.2);
    display: block;
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
}

/* Sayfa İçerik Stilleri */
.page-header {
    padding: 120px 5% 50px;
    background-color: var(--bg-dark);
    text-align: center;
    color: white;
}

.page-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-content {
    min-height: 50vh;
    padding: 50px 5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--bg-dark);
}

.coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    text-align: center;
}

.coming-soon i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.coming-soon h2 {
    color: white;
    margin-bottom: 10px;
}

.coming-soon p {
    color: #bbb;
}




/* Hizmetler Bölümü Stilleri */
.services-section {
    padding: 50px 5%;
    background-color: var(--bg-dark);
    /* Koyu arka plan */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    /* Cam efekti / Koyu tema */
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(197, 168, 128, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 168, 128, 0.2);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(197, 168, 128, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--bg-dark);
    transform: rotateY(180deg);
}

.service-card h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.service-card p {
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
    flex-grow: 1;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Buton stilleri yukarıya (line 345 civarı) taşındı. */
/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 60px 5%;
    background-color: var(--bg-dark);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-boxes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.info-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.info-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.info-box h3 {
    color: white;
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
}

.info-box p {
    color: #bbb;
    margin-bottom: 5px;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(197, 168, 128, 0.1);
}

.contact-form-container h2 {
    color: var(--primary);
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-family: 'Outfit', sans-serif;
}

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

.input-group {
    display: flex;
    gap: 20px;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    width: 100%;
}

.input-group .form-control {
    flex: 1;
}

.form-control label {
    font-family: 'Outfit', sans-serif;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-left: 4px;
    opacity: 0.9;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: 'Outfit', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* =======================================================
   RESPONSİV TASARIM (DUYARLI TASARIM)
   ======================================================= */

/* MASAÜSTÜ (≥1025px) */
@media (min-width: 1025px) {
    .hero-text-content {
        max-width: 800px;
    }
}

/* TABLET (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 15px 3%;
    }

    .header-right {
        gap: 12px;
    }

    .navlist {
        gap: 8px;
    }

    .navlist a {
        font-size: 0.72rem;
        padding: 8px 8px;
        letter-spacing: 1px;
    }

    #lang-toggle-btn {
        padding: 7px 13px;
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197,168,128,0.2);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(197,168,128,0.15);
    border-color: rgba(197,168,128,0.5);
}

/* =======================================================
   OVERLAY & DRAWER — GLOBAL (tüm ekranlarda hidden, mobilde aktif)
   ======================================================= */

/* Body scroll kilidi */
body.drawer-open {
    overflow: hidden;
}

/* Karartma overlay */
#nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.35s ease;
}

#nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Drawer header (JS ile enjekte ediliyor) */
.drawer-header {
    display: none; /* masaüstünde gizli */
}

/* Drawer footer (JS ile enjekte ediliyor) */
.drawer-footer {
    display: none;
}

/* ═══════════════════════════════════════════════════════
   MOBİL (≤768px) — Premium Drawer Tasarımı
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Header ────────────────────────────────────────── */
    header {
        padding: 0 5%;
        height: 62px;
        background-color: var(--bg-dark);
    }

    #logo {
        max-height: 40px;
    }

    /* Sadece hamburger görünür, dil butonu gizlenir */
    .header-right {
        gap: 0;
    }

    #lang-toggle-btn {
        display: none !important;
    }

    /* Hamburger — minimal, temiz */
    .menu-toggle {
        display: flex;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(197, 168, 128, 0.08);
        border: 1px solid rgba(197, 168, 128, 0.25);
        font-size: 1.1rem;
    }

    /* ── Drawer (sağdan kayan panel) ───────────────────── */
    nav.navbar {
        position: fixed;
        top: 0;
        right: -110%;           /* başta ekran dışında */
        width: min(320px, 85vw);
        height: 100dvh;
        background: linear-gradient(160deg, #0d0d0d 0%, #111111 100%);
        border-left: 1px solid rgba(197, 168, 128, 0.18);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
        z-index: 1000;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
        max-height: none;
        padding: 0;
        transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav.navbar.active {
        right: 0;
        padding: 0;
        border-top: none;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
    }

    /* ── Drawer header (JS enjeksiyonu) ────────────────── */
    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 22px;
        border-bottom: 1px solid rgba(197, 168, 128, 0.12);
        background: rgba(197, 168, 128, 0.04);
        flex-shrink: 0;
    }

    .drawer-brand {
        font-family: 'Outfit', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 3px;
        color: var(--primary);
        opacity: 0.8;
    }

    .drawer-actions {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Drawer dil butonu */
    #lang-toggle-btn-drawer {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(197, 168, 128, 0.1);
        border: 1px solid rgba(197, 168, 128, 0.3);
        color: var(--primary);
        padding: 6px 14px;
        border-radius: 50px;
        font-family: 'Outfit', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    #lang-toggle-btn-drawer:hover {
        background: var(--primary);
        color: var(--bg-dark);
    }

    /* Drawer kapat butonu */
    #drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        color: #aaa;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    #drawer-close:hover {
        background: rgba(255, 80, 80, 0.15);
        border-color: rgba(255, 80, 80, 0.4);
        color: #ff6b6b;
    }

    /* ── Nav linkleri ──────────────────────────────────── */
    .navlist {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
        padding: 12px 0;
    }

    .navlist li {
        width: 100%;
    }

    .navlist a {
        display: flex;
        align-items: center;
        gap: 14px;
        font-size: 0.9rem;
        padding: 16px 24px;
        text-align: left;
        color: rgba(255, 255, 255, 0.85);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        transition: all 0.22s ease;
        letter-spacing: 1.5px;
    }

    .navlist a:hover,
    .navlist a:active {
        background: rgba(197, 168, 128, 0.07);
        color: var(--primary);
        padding-left: 30px;
    }

    .navlist a i {
        width: 20px;
        font-size: 0.9rem;
        color: var(--primary);
        opacity: 0.8;
        flex-shrink: 0;
    }

    .navlist a:after {
        display: none;
    }

    /* ── Drawer footer (JS enjeksiyonu) ────────────────── */
    .drawer-footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-top: auto;
        padding: 24px 22px;
        border-top: 1px solid rgba(197, 168, 128, 0.12);
        flex-shrink: 0;
    }

    .drawer-footer-label {
        font-family: 'Outfit', sans-serif;
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        color: #555;
        text-transform: uppercase;
    }

    .drawer-socials {
        display: flex;
        gap: 14px;
    }

    .drawer-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: rgba(197, 168, 128, 0.08);
        border: 1px solid rgba(197, 168, 128, 0.2);
        color: var(--primary);
        font-size: 0.95rem;
        transition: all 0.25s ease;
        text-decoration: none;
    }

    .drawer-socials a:hover {
        background: var(--primary);
        color: var(--bg-dark);
        transform: translateY(-2px);
    }

    /* ── Body ──────────────────────────────────────────── */
    body {
        padding-top: 62px;
    }

    /* ── Hero ──────────────────────────────────────────── */
    .hero {
        padding: 50px 5% 60px;
        min-height: calc(100dvh - 62px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .hero-text-content {
        width: 100%;
        text-align: center;
        align-items: center;
        order: 1;
    }

    .hero-image-content {
        order: 2;
    }

    .hero-title {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .hero-tagline {
        font-size: 0.78rem;
        letter-spacing: 2.5px;
    }

    .hero-desc {
        font-size: 0.95rem;
        text-align: center;
    }

    .hero-divider {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 100%;
    }

    /* ── Butonlar ──────────────────────────────────────── */
    .btn {
        padding: 13px 24px;
        font-size: 0.85rem;
    }

    /* ── Footer ────────────────────────────────────────── */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .footer-info,
    .footer-map {
        min-width: unset;
        width: 100%;
    }

    .footer-desc {
        max-width: 100%;
    }

    .contact-info p {
        justify-content: center;
    }

    .contact-info i {
        text-align: center;
    }

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

    .social-icons a {
        margin-right: 0;
    }

    .footer-map iframe {
        height: 200px;
    }

    /* ── Page header ───────────────────────────────────── */
    .page-header {
        padding: 40px 5% 25px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* ── Contact ───────────────────────────────────────── */
    .contact-section {
        padding: 40px 5%;
    }

    .contact-info-boxes {
        flex-direction: column;
    }

    .info-box {
        min-width: unset;
    }

    .input-group {
        flex-direction: column;
    }

    .contact-form-container {
        padding: 25px 15px;
    }

    .contact-form-container h2 {
        font-size: 1.4rem;
    }

    /* ── Services / Pricing ────────────────────────────── */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .pricing-section {
        padding: 30px 5%;
    }

    .pricing-cards-grid {
        grid-template-columns: 1fr;
    }

    /* ── About ─────────────────────────────────────────── */
    .about-section {
        padding: 40px 5%;
    }

    .about-container {
        flex-direction: column;
        gap: 50px;
    }

    .about-experience {
        right: 10px;
        bottom: -15px;
        padding: 15px;
    }

    .about-experience h3 {
        font-size: 1.8rem;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .feature {
        gap: 12px;
    }

    /* ── Arrows ────────────────────────────────────────── */
    .arrows {
        padding: 5px;
    }

    .arrows i {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
}


/* =======================================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ======================================================= */
.about-section {
    padding: 60px 5%;
    background-color: var(--bg-dark);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(197, 168, 128, 0.2);
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: var(--bg-dark);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.3);
}

.about-experience h3 {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 5px;
}

.about-experience p {
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.about-text p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-features {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(197, 168, 128, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    border-color: var(--primary);
}

.feature i {
    font-size: 2.2rem;
    color: var(--primary);
}

.feature h4 {
    color: white;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
}

.feature p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* Hakkımızda Responsive */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 30px;
    }

    .about-experience {
        right: 50%;
        bottom: -30px;
        transform: translateX(50%);
    }

    .feature {
        text-align: left;
    }
}

/* =======================================================
   GALERİ & ÖRNEKLER SAYFASI STİLLERİ (MINIMAL & ZARİF TASARIM)
   ======================================================= */

.gallery-category {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.gallery-category h2 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.gallery-category h2 i {
    color: var(--primary);
}

.gallery-desc {
    color: #888;
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Swiper Slider Tasarımı */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 80%; /* Mobil cihazlarda tam ekran, masaüstünde ortalı */
    max-width: 800px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    background: #000;
}

/* Swiper gölgelerinin video tıklamalarını engellemesini önler */
.swiper-slide-shadow,
.swiper-slide-shadow-left,
.swiper-slide-shadow-right,
.swiper-slide-shadow-top,
.swiper-slide-shadow-bottom {
    pointer-events: none !important;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 95%;
    }
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    opacity: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    width: 100%;
    background: #000;
    transition: padding-bottom 0.3s ease;
    overflow: hidden; /* Critical for cropping the Google Drive header */
}

@media (max-width: 768px) {
    .video-wrapper {
        padding-bottom: 80%; /* Sleek aspect ratio on mobile: large enough to fit full video width without excessive black letterbox bars! */
    }
}

.video-wrapper iframe {
    position: absolute;
    top: -46px; /* Shift the iframe up by 46px to push the Google Drive header & pop-out icon outside the visible container */
    left: 0;
    width: 100%;
    height: calc(100% + 46px); /* Add 46px to the height so the bottom controls are perfectly visible and not cut off */
    border: none;
}

/* Fix mobile video compositor freeze by removing 3D transforms when playing */
.swiper-slide.is-playing {
    transform: none !important;
    transition: none !important;
    z-index: 10 !important;
}

/* Premium Video Cover for smooth Mobile Swiping & Tap-to-Play */
.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1b1b1b 0%, #0d0d0d 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.video-cover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

.video-cover:hover {
    background: linear-gradient(135deg, #222 0%, #111 100%);
}

.play-btn-circle {
    width: 65px;
    height: 65px;
    background: rgba(197, 168, 128, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #070707;
    font-size: 1.6rem;
    margin-bottom: 15px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.35);
    z-index: 6;
    padding-left: 4px; /* Centering visual fix for play icon */
}

.video-cover:hover .play-btn-circle {
    transform: scale(1.1);
    background: var(--primary);
    box-shadow: 0 10px 30px rgba(197, 168, 128, 0.55);
    color: #000;
}

.video-cover-title {
    color: #eaeaea;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    z-index: 6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 0 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .play-btn-circle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .video-cover-title {
        font-size: 0.95rem;
    }
}

.video-card h3 {
    color: #eee;
    font-size: 1.15rem;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

/* Fotoğraf Galerisi - Temiz Grid */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.photo-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: #111;
}

.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.photo-card:hover img {
    transform: scale(1.05);
}

.photo-overlay i {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.photo-overlay p {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.photo-card:hover .photo-overlay i,
.photo-card:hover .photo-overlay p {
    transform: translateY(0);
}

/* Galeri Responsive */
@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .photo-grid {
        grid-template-columns: 1fr;
    }
}
/* =======================================================
   FİYAT KARTLARI (PRICING PACKAGES) BÖLÜMÜ STİLLERİ
   ======================================================= */
.pricing-section {
    padding: 60px 5%;
    background-color: var(--bg-dark); 
    background-image: radial-gradient(circle at center, rgba(197, 168, 128, 0.05) 0%, transparent 70%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-header h2 {
    font-family: 'Outfit', sans-serif;
    color: white;
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.pricing-header h2 span {
    color: var(--primary);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
    font-family: 'Times New Roman', serif;
}

.pricing-header p {
    color: #ccc;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.pricing-card.premium {
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(197, 168, 128, 0.15);
    position: relative;
    overflow: hidden;
}

.pricing-card.premium::before {
    content: 'En Çok Tercih Edilen';
    position: absolute;
    top: 25px;
    right: -45px;
    background: var(--primary);
    color: var(--bg-dark);
    font-size: 0.75rem;
    font-weight: bold;
    padding: 8px 45px;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px dashed rgba(197, 168, 128, 0.3);
    padding-bottom: 20px;
}

.pricing-card-header i {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.pricing-card-header h3 {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-card-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-card-features li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-card-features .feature-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card-features .feature-name i {
    color: var(--primary);
    font-size: 0.9rem;
}

.pricing-card-features .feature-price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
}

/* =======================================================
   DİL DEĞİŞTİRME BUTONU (TR / EN)
   ======================================================= */

#lang-toggle-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(197, 168, 128, 0.1);
    border: 1px solid rgba(197, 168, 128, 0.4);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

#lang-toggle-btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.35);
    transform: translateY(-2px);
}

#lang-toggle-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

#lang-toggle-btn:hover i {
    transform: rotate(20deg);
}

/* Butonun header içindeki konumu */
.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobilde buton küçültülür */
@media (max-width: 768px) {
    #lang-toggle-btn {
        padding: 7px 12px;
        font-size: 0.75rem;
    }
}


/* =======================================================
   ANASAYFA YENİ BÖLÜM STİLLERİ (SERVICES)
   ======================================================= */

/* Ortak Bölüm Başlığı */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 5%;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    color: white;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto 15px;
    line-height: 1.6;
}

.section-divider {
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* Hızlı Hizmetlerimiz (Quick Services) */
.quick-services-section {
    background: #070707;
    padding: 100px 5%;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
}

.quick-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.quick-service-card {
    background: linear-gradient(145deg, #111 0%, #0c0c0c 100%);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 50px 35px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quick-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(197, 168, 128, 0.35);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.quick-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.quick-service-card:hover::before {
    transform: scaleX(1);
}

.qs-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

.quick-service-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.quick-service-card p {
    font-size: 0.92rem;
    color: #999;
    line-height: 1.6;
    margin-bottom: 30px;
}

.qs-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(197, 168, 128, 0.1);
    color: var(--primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-service-card:hover .qs-link {
    background: var(--primary);
    color: var(--bg-dark);
    transform: translateX(4px);
}

/* =======================================================
   RESPONSIVE UYARLAMALAR (YENİ ALANLAR İÇİN)
   ======================================================= */
@media (max-width: 992px) {
    .quick-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 35px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

    .quick-services-section {
        padding: 60px 5%;
    }

    .quick-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-service-card {
        padding: 40px 25px;
    }
}



