/* ========================================
   ER MEDYA - Ana Stil Dosyası
   ======================================== */

/* CSS Değişkenleri */
:root {
    /* Ana Renkler */
    --primary-color: #988858;
    /* Kanak Kahve - Ana Renk */
    --primary-dark: #7a6d46;
    /* Koyu Kanak Kahve */
    --primary-light: #b5a574;
    /* Açık Kanak Kahve */

    /* Nötr Renkler */
    --white: #ffffff;
    --black: #000000;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    /* Tipografi */
    --font-family: 'Plus Jakarta Sans', sans-serif;
    --font-size-base: 16px;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;

    /* Geçişler */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Gölgeler */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Dinamik Sayfa Kenar Boşluğu (Geniş ekranlarda sıkışmayı önler) */
    --site-pad-x: clamp(1rem, 5vw, 120px);
    --header-left-pad: clamp(1.5rem, 6vw, 100px);
}

/* Reset & Temel Stiller */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}


body {
    font-family: var(--font-family) !important;
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    /* Layout Constraint: Fully fluid layout */
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

/* Tipografi */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    color: var(--gray-900);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

/* Butonlar */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

/* Özel Utility Classları */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* Container Genişliği - Bootstrap varsayılanlarını koruyalım ama özelleştirelim */
.container {
    max-width: 1440px;
    /* Çok geniş ekranlarda aşırı dağılmasın */
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Genel Padding - Header ile aynı hizalama (Sol %10, Sağ %8) */


/* Görsel Stiller */
img {
    max-width: 100%;
    height: auto;
}

/* ========================================
   Header Stilleri
   ======================================== */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    background-color: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    overflow: visible;
}

.header-wrapper.sticky {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    animation: stickySlideDown 0.3s ease-in-out forwards;
}

@keyframes stickySlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.header-left-panel {
    /* SVG Background - Yükseklik güncellendi */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 950 100' preserveAspectRatio='none'%3E%3Cpath fill='%23988858' d='M0,0h950v70c0,16.6-13.4,30-30,30H0V0Z'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;

    /* Responsive padding ve gap */
    padding: 1rem clamp(0.5rem, 2vw, 2.5rem) 1rem var(--header-left-pad);
    border-bottom-right-radius: 0;
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 1.5rem);

    /* Fixed percentage width */
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
    height: 100px;
    box-sizing: border-box;
    overflow: hidden;
}

.logo-container .brand-logo {
    font-family: var(--font-family);
    font-weight: 800;
    font-size: clamp(1rem, 1.5vw, 2rem);
    color: var(--white);
    background: transparent;
    border-radius: 50px;
    padding: 0.2rem clamp(0.5rem, 1vw, 1.5rem);
    text-transform: lowercase;
    text-decoration: none;
    display: inline-block;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.logo-container .brand-logo img {
    max-width: clamp(80px, 50vw, 200px);
    height: auto;
}

.header-info {
    display: flex;
    align-items: center;
    gap: clamp(0.3rem, 1vw, 1.5rem);
}

.info-pill {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: clamp(0.2rem, 0.5vw, 0.5rem) clamp(0.5rem, 1vw, 1.5rem);
    border-radius: 30px;
    font-size: clamp(0.6rem, 0.9vw, 0.95rem);
    font-weight: 600;
    white-space: nowrap;
}

.info-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.6rem, 0.9vw, 0.95rem);
    font-weight: 500;
    white-space: nowrap;
}

.header-right-panel {
    /* Fixed percentage width */
    flex: 0 0 55%;
    width: 55%;
    max-width: 55%;

    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: clamp(1rem, 2vw, 3%);
    height: 100px;
    box-sizing: border-box;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: clamp(0.8rem, 1.8vw, 2.5rem);
}

.nav-link {
    color: var(--gray-800);
    font-weight: 500;
    font-size: clamp(0.7rem, 0.9vw, 0.95rem);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* ========================================
   Hero Slider Stilleri
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.swiper-slide {
    position: relative;
    width: 100%;
}

.slide-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 0 0 50px 50px; */
    /* Istege bagli alt kavis */
}

/* Sadece 1. slide için */
.first-hero-slide .slide-image img {
    object-position: 1%;
}

/* Koyu Overlay - Yazilarin okunmasi icin */
.slide-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0) 100%);
    border-radius: 0 0 50px 50px;
    pointer-events: none;
}

.slide-content {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically centered */
    align-items: flex-start;
    /* Horizontally left aligned */

    padding-left: var(--header-left-pad);
    /* Match header alignment exactly */
    padding-right: 2rem;

    z-index: 10;
    color: var(--white);

    /* Override/Reset any container or transform effects */
    transform: none;
    max-width: 100%;
    margin: 0;
}

.slide-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 40px;
    max-width: 100%;
    font-weight: 800;
    line-height: 1.1;

    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-desc {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--white);
    max-width: 500px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
}

/* Ozel Butonlar */
.btn-custom-gold {
    background-color: #988858;
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #988858;
    transition: all 0.3s ease;
}

.btn-custom-gold:hover {
    background-color: #7a6d46;
    border-color: #7a6d46;
    color: var(--white);
    transform: translateY(-2px);
}

.btn-custom-outline {
    background-color: transparent;
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--white);
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background-color: var(--white);
    color: #988858;
    transform: translateY(-2px);
}

/* Slider Responsive */
@media (max-width: 991px) {
    .slide-title {
        font-size: 2.2rem;
    }

    .slide-desc {
        font-size: 0.95rem;
        max-width: 400px;
    }

    .slide-image img,
    .slide-image .overlay {
        border-radius: 0 0 30px 30px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding-left: 5%;
        padding-right: 5%;
        top: auto;
        bottom: 10%;
        justify-content: flex-end;
    }

    .slide-title {
        font-size: 1.6rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .slide-desc {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        max-width: 100%;
        line-height: 1.4;
    }

    .slide-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-custom-gold,
    .btn-custom-outline {
        padding: 0.8rem 1.4rem;
        font-size: 1.0rem;
        width: auto;
    }

    .slide-image .overlay {
        border-radius: 0 0 20px 20px;
    }

    .slide-image img {
        min-height: 450px;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding-left: 4%;
        padding-right: 4%;
        bottom: 8%;
    }

    .slide-title {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .slide-desc {
        font-size: 0.75rem;
        margin-bottom: 0.8rem;
    }

    .btn-custom-gold,
    .btn-custom-outline {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .slide-image .overlay {
        border-radius: 0 0 15px 15px;
    }

    .slide-image img {
        min-height: 610px;
        object-fit: cover;
    }

    .first-hero-slide .slide-image img {
        object-position: 10% top;
    }
}


/* ========================================
   Project Slider Stilleri (2. Slider)
   ======================================== */
.project-slider-section {
    position: relative;
    width: 100%;
    padding: 60px 0;
    overflow: visible;
    /* Sticky için şart */
}

.project-slider-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    position: relative;
}

/* Swiper sticky fix - Swiper'ın default hidden özelliği sticky'yi bozar */
.project-slider .swiper,
.project-slider .swiper-wrapper,
.project-slider .swiper-slide {
    overflow: visible !important;
}

/* Sticky için kapsayıcı ayarları */
.project-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Resim kadar yükseklik */
    z-index: 10;
    pointer-events: none;
}

/* Row'un da yüksekliği %100 olmalı ki sticky çalışsın */
.project-slide-content .row {
    height: 100%;
    margin: 0;
    /* Bootstrap row margin reset */
}

/* Sticky olan sol kolon */
.project-slide-content .col-lg-6 {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    padding-left: 0;
    z-index: 20;
    pointer-events: auto;
}

/* Görsel alanı uzatılıyor - Sticky için kaydırma payı */
.project-slide-image {
    position: relative;
    width: 100%;
    height: 110vh;
    min-height: 110vh;
    overflow: hidden;
    border-radius: 50px;
}

.project-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px;
}

.project-slide-image .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.project-slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    /* Align to top */
    padding-top: 80px;
    /* Space from top */
    padding-bottom: 5rem;
    padding-left: var(--header-left-pad);
    /* Align with header */
    z-index: 10;
}

.project-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #29281A;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.project-desc {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    max-width: 90%;
}

.project-features {
    display: flex;
    gap: 2rem;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-icon {
    font-size: 2.5rem;
    /* Material icons look better slightly larger */
    color: #988858;
    /* Referanstaki ikon rengi, altin sarisi */
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Ulm Grotesk', sans-serif;
    color: #29281A;
    line-height: 1.2;
    width: 300px;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 16px;
    color: #29281A;
    line-height: 1.5;
    width: 270px;
}

@media (max-width: 991px) {

    /* Mobilde slider yapısını değiştir - yazı üstte, görsel altta */
    .project-slider .swiper-slide {
        display: flex;
        flex-direction: column;
    }

    .project-slide-image {
        height: auto;
        min-height: auto;
        border-radius: 30px;
        order: 2;
    }

    .project-slide-image img {
        position: relative;
        min-height: auto;
        height: auto;
        object-fit: contain;
    }

    .project-slide-content {
        position: static !important;
        order: 1;
        padding: 1rem 5%;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
        pointer-events: auto;
    }

    .project-slide-image .project-overlay {
        display: none;
    }

    .project-title {
        font-size: 1.8rem;
        color: #000000;
        margin-bottom: 0.5rem;
    }

    .project-desc {
        font-size: 0.9rem;
        color: rgba(0, 0, 0, 0.9);
        margin-bottom: 1rem;
    }

    .project-features {
        flex-direction: column;
        gap: 0.5rem;
    }

    .feature-icon {
        font-size: 1.8rem;
        color: #000000;
    }

    .feature-title {
        font-size: 16px;
        color: #000000;
        width: auto;
    }

    .feature-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .project-slide-content {
        padding-top: 5rem;
        padding-right: 4%;
        padding-bottom: 0.5rem;
        padding-left: 4%;
    }

    .project-slide-content .col-lg-6 {
        padding-top: 5px;
        height: auto;
    }

    .project-title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .project-desc {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }

    .project-features {
        gap: 0.3rem;
        margin-bottom: 0.5rem;
    }

    .feature-item {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }

    .feature-icon {
        font-size: 1.2rem;
    }

    .feature-title {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    /* .project-slide-image img {
        min-height: 500px;
    } */

    .project-title {
        font-size: 1.3rem;
    }

    .project-desc {
        font-size: 0.75rem;
    }

    .feature-icon {
        font-size: 1.3rem;
    }

    .feature-title {
        font-size: 0.8rem;
    }
}


/* ========================================
   Footer Stilleri
   ======================================== */


/* ========================================
   Responsive Düzenlemeler
   ======================================== */
/* @media (max-width: 991.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    section {
        padding: 40px 0;
    }
} */

/* ========================================
   Language Switcher Styles
   ======================================== */
/* Desktop Dropdown Styles */
.lang-dropdown {
    position: relative;
    margin-left: 1.5rem;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gray-800);
    text-decoration: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.lang-toggle:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.lang-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    display: block;
    /* Ensure it's part of layout when visible */
    background: #fff;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 80px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.lang-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-600);
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
}

.dropdown-item:hover,
.dropdown-item.active {
    background: rgba(152, 136, 88, 0.1);
    /* Primary color light */
    color: #988858;
}

/* Mobile Language Switcher */
.mobile-lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Ulm Grotesk', sans-serif;
}

.mobile-lang-switch a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.mobile-lang-switch a.active,
.mobile-lang-switch a:hover {
    color: #988858;
}

.mobile-lang-switch span {
    color: rgba(255, 255, 255, 0.2);
}

/* ========================================
   Mobile Menu Button Styling (Moved from mobile-header.css)
   ======================================== */
.mobile-menu-btn {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2000;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.mobile-menu-btn .material-symbols-outlined {
    font-size: 24px;
    color: #ffffff;
}

/* ========================================
   Mobile Navigation Overlay (Premium)
   ======================================== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: #29281A;
    /* Dark Theme Background */
    z-index: 9999;
    padding: 2rem;

    /* Reveal Animation */
    clip-path: circle(0% at calc(100% - 3rem) 3rem);
    transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Active State */
.mobile-nav-overlay.active {
    clip-path: circle(150% at calc(100% - 3rem) 3rem);
    height: 100%;
}

/* --- Header Section --- */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.mobile-menu-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.mobile-menu-close {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: #fff;
}

.mobile-menu-close:hover {
    background: #fff;
    color: #29281A;
    transform: rotate(90deg);
}

.mobile-menu-close .material-symbols-outlined {
    font-size: 1.5rem;
}

/* --- Content Section (Menu Items) --- */
.mobile-nav-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-menu .nav-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s ease;
}

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

/* Stagger Delays */
.mobile-nav-overlay.active .mobile-nav-menu .nav-item:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-nav-overlay.active .mobile-nav-menu .nav-item:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-nav-overlay.active .mobile-nav-menu .nav-item:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-nav-overlay.active .mobile-nav-menu .nav-item:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-nav-overlay.active .mobile-nav-menu .nav-item:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-nav-overlay.active .mobile-nav-menu .nav-item:nth-child(6) {
    transition-delay: 0.6s;
}

.mobile-nav-menu .nav-link {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    transition: all 0.4s ease;
}

.mobile-nav-menu .nav-link span {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: rgba(255, 255, 255, 0.2);
}

.mobile-nav-menu .nav-link:hover {
    color: #fff;
    padding-left: 10px;
}

.mobile-nav-menu .nav-link:hover span {
    color: #988858;
}

/* --- Footer Section --- */
.mobile-nav-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease 0.8s;
}

.mobile-nav-overlay.active .mobile-nav-footer {
    opacity: 1;
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.mobile-contact a:hover {
    color: #988858;
}

.mobile-socials {
    display: flex;
    gap: 1.5rem;
}

.mobile-socials a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-socials a:hover {
    background: #988858;
    border-color: #988858;
    color: #fff;
}

/* ========================================
   Responsive Media Queries (Custom Mobile Header)
   ======================================== */
@media (max-width: 991px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-wrapper {
        justify-content: center;
        background-color: #998858;
    }

    .header-left-panel {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        height: 100px;
        /* Reduced layout for mobile */
        background-size: cover;
        background-position: center;
        padding-right: 4rem;
        display: flex;
        align-items: center;
    }

    .header-right-panel {
        position: absolute;
        right: 0;
        background: #998858;
        top: 0;
        height: 100%;
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        display: flex;
        align-items: center;
        padding-right: 5;
        z-index: 2002;
    }

    .header-info {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-left-panel {
        padding-left: 5%;
        padding-right: 20%;
    }

    .logo-container .brand-logo {
        font-size: 1.35rem;
    }

    /* Adjust nav font size for small screens */
    .mobile-nav-menu .nav-link {
        font-size: 1.75rem;
    }
}

/* --- Referanslar Bölümü --- */
.references-section {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.references-section .section-title {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: 'Ulm Grotesk', sans-serif;
    color: #333;
    margin-bottom: 2rem;
    padding-left: var(--header-left-pad);
}

/* Swiper Kapsayıcı */
.referencesSwiper {
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
}

.referencesSwiper .swiper-wrapper {
    transition-timing-function: linear;
}

/* Referanslar Slider Özel Aktif Class */
.referencesSwiper .swiper-slide {
    transition: all 0.4s ease;
    opacity: 0.5;
    /* Pasif olanlar biraz sönük kalsın istersen */
}

.referencesSwiper .swiper-slide-active {
    /* Buraya sadece Referanslar slider'ının aktif elemanı için stil yaz */
    opacity: 1;

    transform: scale(1.1);
    /* Örnek: Aktif olan hafif büyüsün */
}



.ref-logo {
    display: block;
    max-width: 100%;
    position: relative;
    z-index: 12123;
    width: 200px;
    height: auto;
    padding-left: 70px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    transition: all 0.4s ease;
    margin: 0 auto;
    cursor: pointer;
}

.ref-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Mobilde başlık ortalansın */
@media (max-width: 768px) {
    .references-section .section-title {
        text-align: left;
        padding-left: 0;
        margin-bottom: 40px;
        font-size: 2rem;
    }

    .ref-logo {
        width: 200px;
        padding-left: 0;
    }
}

.spacer-100 {
    height: 100px;
    width: 100%;
}

/* --- Neden Ermedya Bölümü --- */
.why-ermedya-section {
    position: relative;
    overflow: hidden;
    background-color: #FAFAFA;
}

.why-title {
    font-size: 36px;
    font-family: 'Ulm Grotesk', sans-serif;
    line-height: 1.5;
}

.why-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 496px;
}

.feature-icon {
    color: #20772C;
    font-size: 40px;
    /* fa-2x yaklaşık olarak 32px-40px civarıdır, görseldeki gibi durması için 40px iyi */
}

.why-spacer {
    background-color: #FAFAFA;
}

.why-text-col {
    padding-left: var(--header-left-pad);
}

.feature-box {
    transition: all 0.3s ease;
    background-color: transparent;
}

.feature-title {
    font-family: 'Ulm Grotesk', sans-serif;
    color: #333;
    font-weight: bold;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-box-desc {
    color: #29281A;
    font-size: 17px;
    font-weight: 300;
    width: 238px;
    line-height: 1.5;
}

/* Border Rengi Ayarı (Hafif Gri) */
.why-ermedya-section .border-end,
.why-ermedya-section .border-bottom {
    border-color: #CFCFDB !important;
}

/* Grid Ortasındaki Border Boşluğu (Gap) */
@media (min-width: 768px) {
    .features-grid-row::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        /* Boşluk boyutu */
        height: 30px;
        background-color: #FAFAFA;
        /* Arkaplan rengiyle maskeleme */
        z-index: 10;
    }
}

/* Mobilde Border ve Padding Ayarları */
@media (max-width: 991px) {
    .why-text-col {
        padding-left: 15px;
        padding-right: 15px;

    }

    .why-text-col p {
        max-width: 100% !important;
    }

    .feature-box.border-end {
        border-right: none !important;
    }
}

@media (max-width: 767px) {
    .feature-box {
        border-bottom: 1px solid #e0e0e0 !important;
    }

    .feature-box:last-child {
        border-bottom: none !important;
    }
}

/* Etkinlik Planlama Bölümü */
.event-planning-section {
    position: relative;
    padding: 140px 0;
    background-image: url('img/etkinlik_planlama.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.event-planning-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 3.5rem;
    color: white;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.event-planning-desc {
    font-size: 1.1rem;
    font-weight: 400;
    opacity: 0.9;
    max-width: 550px;
    margin-bottom: 2rem;
    color: white;
    line-height: 1.6;
}

.btn-custom-white {
    background-color: #ffffff;
    color: #796b3c;
    padding: 15px 45px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-custom-white:hover {
    background-color: #f2f2f2;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .event-planning-section {
        background-image: url('img/etkinlik_planlama.png');
        padding: 80px 0;
        text-align: center;
    }

    .btn-custom-white {
        background-color: #ffffff;
        color: #796b3c;
        padding: 0.8rem 1.4rem;
        border-radius: 30px;
        font-weight: bold;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        border: 2px solid #ffffff;
    }

    .event-planning-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to bottom, rgba(153, 136, 88, 0.396) 0%, rgba(153, 136, 88, 0.625) 100%);
        z-index: 0;
    }

    .event-planning-section .container-fluid,
    .event-planning-section .event-content-col {
        position: relative;
        z-index: 1;
    }

    .event-planning-title {
        font-size: 2.5rem;
    }

    .event-planning-desc {
        margin-left: auto;
        margin-right: auto;
    }
}

.event-content-col {
    padding-left: var(--header-left-pad);
}

@media (max-width: 991px) {
    .event-content-col {
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }
}

/* --- Sahada Ermedya Galeri --- */
.er-gallery-section {
    padding: 100px 0;
    overflow: hidden;
}

.er-gallery-header {
    margin-right: 7%;
    /* Sağ taraftaki boşluk */
    margin-left: var(--header-left-pad);
    /* Sol taraftaki hizalama */
}

.er-gallery-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.btn-circle-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #333;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.btn-circle-nav:hover {
    background: #333;
    color: #fff;
}

.erGallerySwiper {
    margin-left: 0 !important;
    padding-left: var(--header-left-pad) !important;
    padding-right: 0;
    padding-bottom: 50px;
    width: 100% !important;
    overflow: visible !important;
}

.er-gallery-left-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--header-left-pad);
    height: 100%;
    background-color: #ffffff;
    z-index: 10;
    pointer-events: none;
}

.er-gallery-slide {
    width: 270px !important;
    /* Kesinlikle 270px olsun */
    height: 270px;
    flex-shrink: 0 !important;
    /* Sıkışmayı önle */
    background-color: #f5f5f5;
    /* Yüklenene kadar gri kalsın */
}

.er-gallery-slide img {
    width: 270px;
    height: 212px;
    object-fit: cover;
    /* Hafif border radius istersen açabilirsin: border-radius: 10px; */
}

@media (max-width: 991px) {

    .er-gallery-header,
    .erGallerySwiper {
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0;
        margin-right: 0;
        position: relative;
        z-index: 10;
    }

    .erGallerySwiper {
        overflow: hidden !important;
    }

    .er-gallery-nav {
        align-self: flex-end;
    }

    .er-gallery-title {
        font-size: 2rem;
    }

    /* Mobilde Slayt Ayarı (Tek Görünüm) */
    .er-gallery-slide {
        width: 100% !important;
        /* Ekrana tam otursun */
        height: auto !important;
        aspect-ratio: 1/1;
        /* Kare formunu koru */
    }

    .er-gallery-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .erGallerySwiper .swiper-wrapper {
        display: flex;
        align-items: stretch;
    }
}

/* =========================================
   FOOTER SECTION (REFINED)
   ========================================= */
.er-footer-section {
    background-color: #f9f9f9;
    padding: 80px var(--site-pad-x) 40px;
    /* Görsele uygun boşluklar */
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
}

/* LOGO: Siyah Yapma Filtresi */
.er-footer-logo img {
    filter: brightness(0) saturate(100%);
    /* Logoyu tamamen siyah yapar */
    opacity: 0.9;
}

/* Slogan */
.er-footer-slogan {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Ulm Grotesk', sans-serif;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-top: 15px;
}

/* Sosyal İkonlar */
.er-social-icons .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.er-social-icons .social-link:hover {
    color: #9a8c5e;
    transform: translateY(-2px);
}

/* Menü Başlıkları */
.er-footer-heading {
    font-size: 1rem;
    font-weight: 800;

    /* Daha kalın */
    color: #000;
    margin-bottom: 20px;
}

/* E-Bülten Başlığı (Küçük) */
.er-footer-heading-sm {
    font-size: 0.75rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Linkler */
.er-footer-links li {
    margin-bottom: 12px;
}

.er-footer-links a {
    color: #666;
    /* Gri ton */
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.er-footer-links a:hover {
    color: #000;
}

/* E-Bülten Formu */
.er-newsletter-form {
    display: flex;
    position: relative;
    margin-bottom: 30px;
}

.er-newsletter-form .form-control {
    height: 54px;
    /* Biraz daha yüksek */
    padding-left: 25px;
    padding-right: 120px;
    border: 1px solid #e5e5e5;
    /* Çok hafif border */
    border-radius: 54px !important;
    background-color: #fff;
    font-size: 0.95rem;
    color: #333;
    font-weight: 300;
}

.er-newsletter-form .form-control:focus {
    box-shadow: 0 0 0 3px rgba(154, 140, 94, 0.1);
    border-color: #9a8c5e;
}

.er-newsletter-form .btn-gold {
    position: absolute;
    top: 0;
    right: 0;
    height: 54px;
    padding: 0 40px;
    background-color: #9a8c5e;
    /* Görseldeki toprak/altın tonu */
    color: #fff;
    border: none;
    border-radius: 0 54px 54px 0 !important;
    font-weight: 600;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.er-newsletter-form .btn-gold:hover {
    background-color: #85784e;
}

/* İletişim Bilgileri */
.er-footer-contact {
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
}

/* Footer Bottom / Adshub */
.er-footer-bottom {
    border-top: 1px solid #eaeaea !important;
    margin-top: 60px !important;
    padding-top: 30px !important;
}

.adshub-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
}

/* =========================================
   FOOTER RESPONSIVE (MOBILE)
   ========================================= */
@media (max-width: 991px) {
    .er-footer-section {
        padding: 50px 5% 30px;
    }

    .er-footer-slogan {
        font-size: 1.3rem;
    }

    .er-footer-links {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .er-footer-section {
        padding: 40px 20px 20px;
        text-align: center;
        /* Mobilde ortalı */
    }

    /* Sol taraf Flex yapısını Mobilde Sıfırla/Yeniden Düzenle */
    .er-footer-section .col-lg-4.d-flex {
        height: auto !important;
        align-items: center;
        margin-bottom: 40px !important;
    }

    .er-footer-slogan {
        margin-bottom: 25px;
        font-size: 1.25rem;
    }

    .er-social-icons {
        justify-content: center;
        /* İkonları ortala */
        margin-bottom: 20px;
    }

    /* Linkler ve Kurumsal */
    .er-footer-links li {
        text-align: left;
    }

    .er-footer-heading {
        margin-top: 20px;
        text-align: left;
    }

    /* Form ve İletişim */
    .er-newsletter-form {
        margin-top: 20px;
    }

    .er-footer-contact {
        margin-bottom: 15px;
    }

    .adshub-logo {
        align-items: center;
        margin-bottom: 15px;
    }

    .text-end {
        text-align: center !important;
    }
}

/* =========================================
   MOBILE / RESPONSIVE FIXES (EN SONA EKLENDİ)
   Bu kurallar en altta olduğu için diğer tüm stilleri ezer.
   ========================================= */

@media (max-width: 768px) {

    /* Footer Sol Kolon: Mobilde ortala ve boşluk bırak */
    .er-footer-logo,
    .er-footer-slogan {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Sol ve Sağ Sütun Arası Boşluk */
    .col-lg-4.mb-5 {
        margin-bottom: 3rem !important;
        /* Mobilde arayı aç */
    }

    /* Sosyal İkonlar: Mobilde ortala */
    .er-social-icons {
        justify-content: center;
        margin-top: 1rem;
        gap: 1.5rem !important;
        /* Mobilde gap-5 çok büyük gelebilir, biraz kıstım */
    }

    /* Sağ Taraftaki Menüler */
    .col-md-4.col-6 {
        margin-bottom: 2rem;
    }

    /* E-Bülten Formu: Mobilde alt alta gelmesin, yan yana kalsın ama sığsın */
    .er-newsletter-form .btn-gold {
        padding: 0 25px;
        /* Mobilde butonu biraz daralt */
    }

    /* İletişim Bilgileri */
    .er-footer-contact {
        font-size: 1rem;
        /* Mobilde fontu bir tık küçült */
    }

    /* Copyright ve Adshub */
    .er-footer-bottom .row>div {
        text-align: center !important;
        justify-content: center !important;
        margin-bottom: 10px;
    }

    .er-footer-bottom .text-end {
        text-align: center !important;
    }
}

/* .feature-title için Mobil Düzeltme (Sıralama Hatası Giderildi) */
@media (max-width: 768px) {
    .feature-title {
        font-size: 0.9em !important;
        /* Görseldeki 0.15px hatalı görünüyordu, mantıklı bir boyut verdim */
        margin-bottom: 0.5rem !important;
    }

    /* Eğer görseldeki gibi margin-bottom: 0 isteniyorsa: */
    /* margin-bottom: 0 !important; */
}

/* Features Grid Row - Mobil Düzeltme */
@media (max-width: 768px) {
    .features-grid-row {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }

    /* İçindeki kolonların da yanlardan boşluğunu alalım ki tam yapışsın */
    .features-grid-row>div[class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Feature Box - Mobilde p-5 class'ını ezme */
@media (max-width: 768px) {
    .feature-box.p-5 {
        padding: 30px 15px !important;
        /* Üst-alt 1.5rem, Sağ-sol 15px (okunabilirlik için) */
    }
}

/* ========================================
   Navigasyon Dropdown Stilleri (Kurumsal vb.)
   ======================================== */
.nav-dropdown-parent {
    position: relative;
    padding-bottom: 20px;
    /* Hover alanını genişletmek için */
    margin-bottom: -20px;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    list-style: none;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Mobil Menü Dropdown Overrides */
.mobile-nav-menu .nav-dropdown {
    position: static !important;
    transform: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    min-width: auto !important;
    padding: 0 !important;
    padding-left: 1.5rem !important;
    margin-top: 0.5rem !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: none;
}

.mobile-nav-menu .nav-dropdown.active {
    display: block !important;
}

.mobile-nav-menu .nav-dropdown li {
    margin-bottom: 0.5rem;
}

.mobile-nav-menu .nav-dropdown li a,
.mobile-nav-menu .nav-dropdown .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.25rem !important;
    padding: 0.5rem 0 !important;
    text-decoration: none;
}


.nav-dropdown-parent:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
    display: block;
    padding: 10px 25px;
    color: var(--gray-800);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
    text-align: left;
    /* Sola dayalı */
}

.nav-dropdown li a:hover {
    color: var(--primary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

/* ========================================
   Hakkımızda Sayfası Stilleri
   ======================================== */
.about-page-wrapper {
    /* Header yüksekliği */
    min-height: 100vh;
    display: flex;
    flex-wrap: wrap;
    background-color: var(--white);
    width: 100%;
}

.about-left-panel {
    flex: 0 0 45%;
    width: 45%;
    max-width: 45%;
    /* Header ile aynı sol padding: clamp(1rem, 10vw, 7%) */
    padding: 5rem 2rem 5rem var(--header-left-pad);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.about-right-panel {
    flex: 0 0 55%;
    width: 55%;
    max-width: 55%;
    position: relative;
    box-sizing: border-box;
}

.about-title {
    font-family: 'Ulm Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-text p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Sağdaki Görsel Alanı */
.about-image-wrapper {
    width: 100%;
    height: 100%;
    background-color: var(--gray-100);
    border-bottom-left-radius: 60px;
    overflow: hidden;
    position: relative;
    min-height: 600px;
    /* Mobilde veya içerik azken yükseklik */
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Hakkımızda Responsive */
@media (max-width: 991px) {
    .about-page-wrapper {
        flex-direction: column;
    }

    .about-left-panel {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        padding: 3rem 1.5rem;
        order: 2;
    }

    .about-right-panel {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        height: 400px;
        order: 1;
    }

    .about-image-wrapper {
        min-height: auto;
        border-bottom-left-radius: 0;
    }

    .about-title {
        font-size: 2.5rem;
    }
}

/* ========================================
   Referanslar Sayfası Stilleri
   ======================================== */
.references-page-wrapper {
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: 100vh;
    background-color: var(--white);
}

.references-page-wrapper .references-title {
    font-family: 'Ulm Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 3rem;
    padding-left: var(--header-left-pad);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 var(--header-left-pad);
}

.reference-card {
    aspect-ratio: 1 / 1;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-color: #fff;
    transition: all 0.3s ease;
}

.reference-card:hover {
    scale: 1.03;
    z-index: 2;
}

.reference-card img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .references-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .references-page-wrapper .references-title {
        padding-left: 1.5rem;
    }
}

@media (max-width: 767px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 1rem;
    }

    .references-page-wrapper .references-title {
        font-size: 2rem;
        padding-left: 1rem;
    }
}

/* ========================================
   Vizyon & Misyon Sayfası Stilleri
   ======================================== */
.vizyon-misyon-page {
    padding: 3rem 2rem 5rem var(--header-left-pad);
    /* min-height: 100vh; */
    background-color: #FFF;
}

.vizyon-misyon-container {
    padding: 3rem clamp(1.5rem, 5vw, 4rem);
    background-color: #FAFAFA;
    border-radius: 0;
}

.vm-title {
    font-family: 'Ulm Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;


    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

..vm-content h3 {
    font-family: 'Ulm Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;


    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.vm-intro {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700, #555);
    margin-bottom: 0.5rem;
}

.vm-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900, #222);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.vm-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700, #555);
    margin-bottom: 0.5rem;
}

.vm-content {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);

}

.vm-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.vm-content p {
    margin-bottom: 1.2rem;
}

/* Responsive */
@media (max-width: 767px) {
    .vizyon-misyon-page {
        padding-top: 0px;
    }

    .vizyon-misyon-container {
        padding: 2rem 1rem;
    }

    .vm-title {
        font-size: 2.2rem;
    }

    .vm-content h3 {
        font-size: 1.5rem;
    }
}

/* ========================================
   Sayfa Breadcrumb Banner
   ======================================== */
.page-breadcrumb {
    width: 100%;
    overflow: hidden;
}

.page-breadcrumb img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ========================================
   İletişim Sayfası Stilleri
   ======================================== */
.contact-page {
    padding: 100px var(--header-left-pad) 80px;
    min-height: 100vh;
    background-color: #FAFAFA;
}

.contact-main-title {
    font-family: 'Ulm Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--gray-900, #222);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Sol Taraf */
.contact-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
}

.contact-phones {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.phone-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.phone-icon {
    color: #A08C5B;
    margin-bottom: 0.5rem;
}

.phone-icon .material-symbols-outlined {
    font-size: 28px;
}

.phone-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900, #222);
}

.phone-number {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--gray-600, #666);
}

.contact-address {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding-top: 2rem;
    margin-top: 1rem;
}

.address-icon {
    color: #A08C5B;
    margin-bottom: 0.5rem;
}

.address-icon .material-symbols-outlined {
    font-size: 28px;
}

.address-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900, #222);
}

.address-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    color: var(--gray-600, #666);
    line-height: 1.6;
}

/* Sağ Taraf - Form */
.contact-right {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.form-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900, #222);
    margin-bottom: 1.5rem;
}

/* Alert Stilleri */
.alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.25rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
}

.alert .material-symbols-outlined {
    font-size: 24px;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700, #444);
}

.form-group input,
.form-group textarea {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    padding: 0.875rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    color: var(--gray-900, #222);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #A08C5B;
    box-shadow: 0 0 0 3px rgba(160, 140, 91, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.875rem 3rem;
    background-color: #A08C5B;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    height: auto;
}

.submit-btn:hover {
    background-color: #8a7a50;
    transform: translateY(-2px);
}

.form-row-submit {
    align-items: flex-end;
}

/* Link Stilleri */
a.phone-item,
a.contact-address {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a.phone-item:hover,
a.contact-address:hover {
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 767px) {
    .contact-page {
        padding: 20px 1rem 60px;
    }

    .contact-phones {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
        width: 100%;
    }

    .phone-item {
        min-width: 0;
        /* İçeriğin taşmasını önlemek için */

        width: 100%;
    }

    .phone-label {
        font-size: 0.8rem;
        /* Biraz daha küçültelim */
        white-space: nowrap;
    }

    .phone-number {
        font-size: 0.75rem;
        /* Numaralar sığsın */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
        display: block;
    }

    .contact-address {
        padding-top: 1.5rem;
        margin-top: 0.5rem;
    }

    .address-label {
        font-size: 1rem;
    }

    .address-text {
        font-size: 0.85rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-row-submit {
        gap: 1rem;
    }

    .contact-right {
        padding: 1.5rem;
    }

    .contact-map iframe {
        height: 300px;
    }
}

/* ========================================
   Blog Sayfası Stilleri
   ======================================== */
.blog-page-section {
    padding: 80px var(--header-left-pad);
    background-color: #FAFAFA;
    min-height: 80vh;
}

.blog-header {
    margin-bottom: 4rem;
}

.blog-main-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: clamp(2.5rem, 3.5rem, 4rem);
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-family: 'Ulm Grotesk', 'Plus Jakarta Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2.5rem;
    line-height: 1.1;
    letter-spacing: -1px
}

.blog-subtitle {
    font-family: var(--font-family);
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 3rem;
}

.blog-card {
    background: transparent;
    border: none;
    transition: transform var(--transition-normal);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 40px 0 40px 0;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-date {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
    min-height: 125px;
}

.blog-read-more {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gray-900);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto;
}

.blog-read-more::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.blog-card:hover .blog-read-more::after {
    width: 60px;
}

/* Blog Respomsive */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-page-section {
        padding: 60px 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-card-image {
        border-radius: 30px 0 30px 0;
    }

    .blog-card-title {
        font-size: 1.4rem;
    }
}

/* ========================================
   Blog Detay Sayfası Stilleri
   ======================================== */
.blog-detail-section {
    padding: 80px var(--header-left-pad);
    background-color: var(--white);
}

.blog-detail-header {
    max-width: 900px;
    margin-bottom: 3rem;
}

.blog-detail-category {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
}

.blog-detail-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--gray-500);
    font-size: 0.95rem;
    border-top: 1px solid var(--gray-200);
    padding-top: 1.5rem;
}

.blog-detail-main-image {
    width: 100%;
    aspect-ratio: 21 / 9;
    border-radius: 60px 0 60px 0;
    overflow: hidden;
    margin-bottom: 4rem;
    box-shadow: var(--shadow-xl);
}

.blog-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 5rem;
    align-items: start;
}

.blog-content-area {
    font-family: var(--font-family);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.blog-content-area p {
    margin-bottom: 1.5rem;
}

.blog-content-area h2,
.blog-content-area h3 {
    font-family: 'Ulm Grotesk', sans-serif;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.blog-content-area blockquote {
    padding: 2rem 3rem;
    background-color: var(--gray-100);
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--gray-800);
    margin: 3rem 0;
    font-family: 'Ulm Grotesk', sans-serif;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}

.widget-title {
    font-family: 'Ulm Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    text-decoration: none;
}

.recent-post-thumb {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--gray-900);
    line-height: 1.4;
    transition: color 0.3s;
}

.recent-post-item:hover h4 {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-700);
    transition: all 0.3s;
}

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

@media (max-width: 1200px) {
    .blog-detail-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-detail-section {
        padding: 60px 1.5rem;
    }

    .blog-detail-main-image {
        border-radius: 30px 0 30px 0;
        aspect-ratio: 16 / 9;
    }

    .blog-content-area {
        font-size: 1rem;
    }
}

/* ========================================
   Hizmetler Section
   ======================================== */
.hizmetler-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hizmetler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
}

.hizmet-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    min-height: 200px;
    text-align: center;
    transition: all 0.3s ease;
}

.hizmet-box:hover {
    transform: scale(1.02);
    z-index: 2;
}

/* Renk Varyasyonları */
.hizmet-olive {
    background-color: #6b6b3c;
}

.hizmet-black {
    background-color: #000000;
}

.hizmet-red {
    background-color: #C90003;
}

.hizmet-green {
    background-color: #034EA2;
}

.hizmet-icon {
    margin-bottom: 15px;
}

.hizmet-icon .material-symbols-outlined {
    font-size: 48px;
    color: #ffffff;
    opacity: 0.9;
}

.hizmet-title {
    font-family: var(--font-family);
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.hizmet-btn {
    display: inline-block;
    padding: 8px 25px;
    border: 1px solid #ffffff;
    border-radius: 50px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hizmet-btn:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 991px) {
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hizmet-box {
        min-height: 180px;
        padding: 30px 15px;
    }
}

@media (max-width: 576px) {
    .hizmetler-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hizmet-box {
        min-height: 150px;
        padding: 25px 10px;
    }

    .hizmet-icon .material-symbols-outlined {
        font-size: 36px;
    }

    .hizmet-title {
        font-size: 12px;
    }

    .hizmet-btn {
        padding: 6px 18px;
        font-size: 11px;
    }
}

/* ========================================
   Sayfa Bazlı Header Renkleri
   ======================================== */

/* Konser Sayfası - Siyah Header */
body.page-konser .header-left-panel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 950 100' preserveAspectRatio='none'%3E%3Cpath fill='%23000000' d='M0,0h950v70c0,16.6-13.4,30-30,30H0V0Z'/%3E%3C/svg%3E");
}

/* Kongre/Miting Sayfası - Kırmızı Header */
body.page-kongre .header-left-panel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 950 100' preserveAspectRatio='none'%3E%3Cpath fill='%23C90003' d='M0,0h950v70c0,16.6-13.4,30-30,30H0V0Z'/%3E%3C/svg%3E");
}

/* Mobil Jeneratör Sayfası - Yeşil Header */
body.page-jenerator .header-left-panel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 950 100' preserveAspectRatio='none'%3E%3Cpath fill='%23034EA2' d='M0,0h950v70c0,16.6-13.4,30-30,30H0V0Z'/%3E%3C/svg%3E");
}

/* Toprak Günleri Sayfası - Zeytin Yeşili Header */
body.page-toprak .header-left-panel {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 950 100' preserveAspectRatio='none'%3E%3Cpath fill='%236b6b3c' d='M0,0h950v70c0,16.6-13.4,30-30,30H0V0Z'/%3E%3C/svg%3E");
}