/* ==========================================================================
   GLOBAL RESET & FONTS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* ==========================================================================
   TOP BAR (ORİJİNAL)
   ========================================================================== */
.top-bar {
    background-color: #a89974;
    padding: 8px 0;
    width: 100%;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-social-links {
    display: flex;
    gap: 8px;
}

.social-icon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    background-color: #000000;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.social-icon-btn i {
    font-size: 14px;
    color: #ffffff;
}

.social-icon-btn:hover {
    background-color: #222222;
}

.btn-black-shop {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 18px;
    transition: background-color 0.3s ease;
}

.btn-black-shop:hover {
    background-color: #222222;
}

.shop-icon {
    font-size: 13px;
    color: #ffffff;
}

/* ==========================================================================
   MAIN HEADER & NAVIGATION (MASAÜSTÜ AYARLARI)
   ========================================================================== */
.main-header {
    background-color: #000000;
    border-bottom: 1px solid #a89974;
    width: 100%;
    padding: 20px 0;
    position: relative;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
}

.site-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.close-menu-btn {
    display: none !important;
}

.nav-menu-wrapper {
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
    color: #a89974;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: #a89974;
    transition: all 0.3s ease-in-out;
}

/* ==========================================================================
   KUSURSUZ MOBİL RESPONSIVE (MAX-WIDTH: 992px)
   ========================================================================== */
@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .nav-menu-wrapper {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 260px !important;
        height: 100vh !important;
        background-color: #000000 !important;
        border-left: 1px solid #a89974 !important;
        transition: right 0.3s ease-in-out !important;
        z-index: 99999 !important;
        padding-top: 90px !important;
        display: block !important;
    }

    .nav-menu-wrapper.active {
        right: 0 !important;
    }

    .nav-menu {
        flex-direction: column !important;
        padding: 0 30px !important;
        gap: 20px !important;
        display: flex !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .nav-menu li a {
        display: block !important;
        width: 100% !important;
        font-size: 16px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        padding: 5px 0 !important;
    }

    .close-menu-btn {
        display: block !important;
        position: absolute !important;
        top: 25px !important;
        right: 25px !important;
        background: transparent !important;
        border: none !important;
        color: #a89974 !important;
        font-size: 38px !important;
        line-height: 1 !important;
        cursor: pointer !important;
        z-index: 100000 !important;
    }
    
    .close-menu-btn:hover {
        color: #ffffff !important;
    }
}

/* ==========================================================================
   HERO VIDEO BANNER STYLES
   ========================================================================== */
.hero-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - 151px);
    min-height: 400px;
    background-color: #000000;
    overflow: hidden;
}

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

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-dot.active {
    background-color: #a89974;
    transform: scale(1.1);
}

.banner-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.banner-arrow svg {
    width: 20px;
    height: 35px;
    fill: #a89974;
    opacity: 0.6;
    transition: fill 0.3s ease, opacity 0.3s ease;
}

.banner-arrow:hover svg {
    fill: #ffffff;
    opacity: 1;
}

@media (max-width: 992px) {
    .hero-banner {
        height: 60vh;
    }
}

/* ==========================================================================
   PRODUCTS SLIDER SECTION STYLES
   ========================================================================== */
.products-section {
    background-color: #000000;
    padding: 80px 0;
    width: 100%;
}

.section-header {
    max-width: 1280px;
    margin: 0 auto 50px auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 30px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

.btn-view-all {
    display: inline-block;
    border: 1px solid #a89974;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 22px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-view-all:hover {
    background-color: #a89974;
    color: #000000;
}

.slider-outer-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

.products-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;  
    scrollbar-width: none;  
    padding-bottom: 10px;
}

.products-slider::-webkit-scrollbar {
    display: none; 
    width: 0 !important;
    height: 0 !important;
}

.product-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: 280px;
    background-color: #050505; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px; 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(168, 153, 116, 0.15);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(168, 153, 116, 0.15); 
    border-color: rgba(168, 153, 116, 0.4);
}

.product-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #050505;
    border: none; 
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    background-color: #050505;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-info {
    padding: 20px 0 10px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    flex-grow: 1;
    justify-content: space-between;
}

.product-title {
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.5;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
}

.btn-product-outline {
    display: inline-block;
    border: 1px solid #a89974;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 35px;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-product-outline:hover {
    background-color: #a89974;
    color: #000000;
}

.slider-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #000000;
    border: 1px solid rgba(168, 153, 116, 0.3);
    border-radius: 0%; 
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: #a89974;
    transition: fill 0.3s ease;
}

.slider-nav-btn:hover {
    border-color: #a89974;
    background: #a89974;
}

.slider-nav-btn:hover svg {
    fill: #000000;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

@media (max-width: 1200px) {
    .product-card {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 992px) {
    .section-header { padding: 0 20px; }
    .product-card { flex: 0 0 calc(50% - 15px); }
}

@media (max-width: 768px) {
    .products-section { padding: 50px 0; }
    .section-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .slider-outer-container { padding: 0 20px; }
    .products-slider { overflow-x: auto; scrollbar-width: none; }
    .product-card { flex: 0 0 calc(80% - 15px); }
    .slider-nav-btn { display: none; }
}

/* ==========================================================================
   ARCHIVE FILTER & LAYOUT STYLES
   ========================================================================== */
.archive-main-layout {
    display: flex;
    gap: 50px;
    padding: 0 40px;
    max-width: 1440px;
    margin: 0 auto;
}

/* Sol Filtre Sütunu */
.archive-sidebar-filter {
    flex: 0 0 250px;
    width: 250px;
}

.filter-drawer-wrapper {
    background-color: #050505;
    border: 1px solid rgba(168, 153, 116, 0.15);
    padding: 25px;
    height: fit-content;
    position: sticky;
    top: 30px;
}

.mobile-filter-open-btn,
.close-filter-drawer {
    display: none;
}

.filter-widget-title {
    font-size: 16px;
    font-weight: 600;
    color: #a89974;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(168, 153, 116, 0.15);
    padding-bottom: 10px;
}

.filter-brands-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-brands-list li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.filter-brands-list li a:hover,
.filter-brands-list li.current-brand a {
    color: #ffffff;
    padding-left: 5px;
}

.brand-count-badge {
    font-size: 11px;
    background-color: rgba(168, 153, 116, 0.1);
    color: #a89974;
    padding: 2px 8px;
    border: 1px solid rgba(168, 153, 116, 0.2);
}

.filter-brands-list li a:hover .brand-count-badge,
.filter-brands-list li.current-brand .brand-count-badge {
    background-color: #a89974;
    color: #000000;
}

/* Sağ Ürünler Sütunu */
.archive-content-products {
    flex: 1;
    min-width: 0;
}

.archive-grid-section .archive-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0;
    width: 100%;
}

/* TABLET KILIRMASI */
@media (max-width: 1024px) {
    .archive-main-layout {
        padding: 0 20px;
    }
}

/* MOBİL ÖZEL OFF-CANVAS (YANDAN AÇILIR) VE 2'Lİ GRID DÜZENİ */
@media (max-width: 768px) {
    .archive-main-layout {
        flex-direction: column;
        padding: 0 15px;
        gap: 20px;
    }

    .archive-sidebar-filter {
        flex: unset;
        width: 100%;
    }

    /* Mobilde Açma Butonu */
    .mobile-filter-open-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        background-color: #050505;
        border: 1px solid rgba(168, 153, 116, 0.3);
        color: #a89974;
        padding: 12px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
        cursor: pointer;
    }

    /* Yandan Kayarak Gelen Drawer Kutusu */
    .filter-drawer-wrapper {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 280px !important;
        height: 100vh !important;
        z-index: 999999 !important;
        background-color: #050505 !important;
        border-right: 1px solid #a89974 !important;
        border-left: none !important;
        border-top: none !important;
        border-bottom: none !important;
        transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
        overflow-y: auto !important;
        padding: 25px 20px !important;
    }

    .filter-drawer-wrapper.is-active {
        left: 0 !important;
    }

    .filter-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 1px solid rgba(168, 153, 116, 0.2);
        padding-bottom: 10px;
    }

    .filter-drawer-header .filter-widget-title {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .close-filter-drawer {
        display: block;
        background: transparent;
        border: none;
        color: #a89974;
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
    }

    /* Karartma Perdesi */
    .filter-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 999998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .filter-overlay.is-active {
        opacity: 1;
        visibility: visible;
    }

    /* MOBİL ÜRÜNLERİ TAM 2'Lİ NİZAMİ YAPAN ALAN */
    .archive-grid-section .archive-grid-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
    }

    .archive-grid-container .product-card {
        padding: 10px;
    }

    .archive-grid-container .btn-product-outline {
        padding: 8px 10px;
        font-size: 11px;
    }
}
.filter-brands-list li a i {
    font-size: 11px;
    color: #a89974;
    margin-right: 8px;
}
/* ==========================================================================
   VIP PAGE TITLE BAR (BANNER ALTI YENİ KUŞAK)
   ========================================================================== */
.vip-page-title-bar {
    background-color: #050505; /* Hafif açılan şık koyu zemin */
    border-bottom: 1px solid rgba(168, 153, 116, 0.15);
    padding: 25px 0;
    width: 100%;
}

.title-bar-container {
    max-width: 1440px; /* Alttaki ürünler layoutu ile tam hizalı 📐 */
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-main-title {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}

/* Breadcrumb Bar İçi İnce Ayar */
.vip-page-title-bar .archive-breadcrumb {
    font-size: 13px;
    color: #a89974;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vip-page-title-bar .archive-breadcrumb a {
    color: #888888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vip-page-title-bar .archive-breadcrumb a:hover {
    color: #a89974;
}

@media (max-width: 992px) {
    .title-bar-container {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 0 20px;
    }
    .bar-main-title {
        font-size: 22px;
    }
}

/* ==========================================================================
   DOUBLE BANNER STYLES
   ========================================================================== */
.double-banner-section {
    background-color: #000000;
    padding: 60px 0;
    width: 100%;
}

.double-banner-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 30px;
}

.banner-box {
    flex: 1;
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid rgba(168, 153, 116, 0.2);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.4s ease;
}

.banner-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    background-color: #050505;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.banner-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner-title {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #a89974;
    letter-spacing: 4px;
}

.banner-box:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 153, 116, 0.5);
    box-shadow: 0 15px 40px rgba(168, 153, 116, 0.15);
}

.banner-box:hover .banner-img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .double-banner-container { gap: 20px; padding: 0 20px; }
    .banner-title { font-size: 26px; }
}

@media (max-width: 768px) {
    .double-banner-container { flex-direction: column; gap: 30px; }
    .banner-box { width: 100%; }
    .banner-title { font-size: 28px; }
}

/* ==========================================================================
   BRANDS GRID STYLES
   ========================================================================== */
.brands-section {
    background-color: #ffffff; 
    padding: 80px 0;
    width: 100%;
}

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

.brands-main-title {
    font-size: 32px;
    font-weight: 500;
    color: #a89974;
    letter-spacing: 2px;
}

.brands-grid-container {
    width: 100%;
    max-width: 100%;
    padding: 0 40px; 
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px; 
    background-color: transparent;
}

.brand-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    position: relative;
    border: 1px solid #e0e0e0;
    text-decoration: none; 
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s ease, border-color 0.2s ease;
}

.brand-logo-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    background-color: #ffffff;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-name-tag {
    background-color: #a89974;
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    padding: 10px 5px;
    /*text-transform: uppercase;*/
    letter-spacing: 1.5px;
}

.brand-card:hover {
    transform: scale(1.05); 
    border: 3px solid #ffffff; 
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); 
    z-index: 10; 
}

@media (max-width: 1200px) {
    .brands-grid-container { grid-template-columns: repeat(5, 1fr); padding: 0 30px; }
}

@media (max-width: 992px) {
    .brands-grid-container { grid-template-columns: repeat(4, 1fr); padding: 0 20px; }
}

@media (max-width: 768px) {
    .brands-section { padding: 50px 0; }
}

@media (max-width: 480px) {
    .brands-grid-container { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ==========================================================================
   ABOUT TEXT SCROLL BOX STYLES
   ========================================================================== */
.about-text-section {
    background-color: #000000;
    padding: 80px 0;
    width: 100%;
}

.about-text-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    font-family: 'Poppins', sans-serif;
}

.about-main-title {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.4;
    border-left: 4px solid #a89974;
    padding-left: 15px;
}

.about-scroll-box {
    width: 100%;
    max-height: 380px; 
    overflow-y: auto; 
    border: 1px solid rgba(168, 153, 116, 0.2); 
    background-color: #050505; 
    padding: 30px; 
    box-sizing: border-box;
}

.about-scroll-box::-webkit-scrollbar { width: 5px; }
.about-scroll-box::-webkit-scrollbar-track { background: #000000; }
.about-scroll-box::-webkit-scrollbar-thumb { background: #a89974; border-radius: 0px; }
.about-scroll-box::-webkit-scrollbar-thumb:hover { background: #ffffff; }
.about-scroll-box { scrollbar-width: thin; scrollbar-color: #a89974 #000000; }

.about-scroll-content { color: #cccccc; }
.about-scroll-content h3 {
    font-size: 18px;
    font-weight: 500;
    color: #a89974;
    margin-top: 0;
    margin-bottom: 15px;
}
.about-scroll-content h3:not(:first-child) { margin-top: 30px; }
.about-scroll-content p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; text-align: justify; }
.about-scroll-content ul { list-style: none; padding-left: 0; margin: 20px 0; }
.about-scroll-content li { font-size: 14px; line-height: 1.8; margin-bottom: 10px; position: relative; padding-left: 20px; }
.about-scroll-content li::before { content: "■"; position: absolute; left: 0; color: #a89974; font-size: 9px; top: 0; }
.about-scroll-content .highlight-text { color: #a89974; font-weight: 500; border-top: 1px solid rgba(168, 153, 116, 0.15); padding-top: 15px; margin-top: 25px; }

@media (max-width: 768px) {
    .about-text-container { padding: 0 20px; }
    .about-main-title { font-size: 20px; }
    .about-scroll-box { padding: 20px; max-height: 320px; }
    .about-scroll-content p { text-align: left; }
}

/* ==========================================================================
   BLOG GRID STYLES (RECENT POSTS)
   ========================================================================== */
.recent-posts-section {
    background-color: #ffffff; 
    padding: 80px 0;
    width: 100%;
}

.posts-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.posts-main-title {
    font-size: 32px;
    font-weight: 700; 
    color: #000000; 
    letter-spacing: 1.5px;
}

.btn-all-posts {
    display: inline-block;
    border: 1px solid #a89974;
    color: #a89974;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 28px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.btn-all-posts:hover {
    background-color: #a89974;
    color: #ffffff; 
}

.posts-grid-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
}

.post-card {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    border: 1px solid #e5e5e5; 
    text-decoration: none;
    box-sizing: border-box;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease;
}

.post-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    background-color: #f5f5f5;
}

.post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.post-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-date {
    font-size: 11px;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 45px;
    transition: color 0.3s ease;
}

.post-excerpt {
    font-size: 13px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 62px;
}

.btn-read-more {
    font-size: 12px;
    font-weight: 600;
    color: #a89974;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto; 
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.post-card:hover {
    transform: translateY(-6px);
    border-color: #a89974; 
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08); 
}

.post-card:hover .post-img { transform: scale(1.05); }
.post-card:hover .post-title { color: #a89974; }
.post-card:hover .btn-read-more { color: #000000; }

@media (max-width: 1200px) {
    .posts-grid-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .recent-posts-section { padding: 50px 0; }
    .posts-grid-container { grid-template-columns: 1fr; padding: 0 20px; }
    .posts-main-title { font-size: 26px; }
}

/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */
.site-footer {
    background-color: #000000;
    width: 100%;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    position: relative;
    box-sizing: border-box;
}

.footer-top-bar {
    border-bottom: 1px solid rgba(168, 153, 116, 0.15);
    padding: 20px 0;
}

.footer-top-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social-links {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #a89974; 
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-social-btn i {
    font-size: 16px;
    color: #ffffff; 
    transition: color 0.3s ease;
}

.footer-social-btn:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.footer-social-btn:hover i { color: #000000; }

.footer-quick-contact {
    display: flex;
    gap: 30px;
}

.quick-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center; 
    gap: 10px;
    transition: color 0.3s ease;
}

.quick-link:hover { color: #a89974; }
.quick-icon { font-size: 15px; color: #a89974; }

.footer-main-area { padding: 60px 0; }
.footer-main-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1.1fr 1.1fr 1.3fr; 
    gap: 50px;
}

.footer-col { display: flex; flex-direction: column; }
.footer-logo { height: 50px; width: auto; object-fit: contain; align-self: flex-start; margin-bottom: 22px; }
.footer-about-text { font-size: 13.5px; color: #cccccc; line-height: 1.8; text-align: justify; margin: 0; }
.footer-about-text strong { color: #ffffff; font-weight: 600; }
.footer-col-title { font-size: 16px; font-weight: 600; color: #a89974; letter-spacing: 1.5px; margin-top: 0; margin-bottom: 25px; }

.footer-links-list { list-style: none; padding: 0; margin: 0; }
.footer-links-list li { margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.footer-list-arrow { color: #a89974; font-size: 18px; font-weight: bold; user-select: none; display: inline-block; transform: translateY(-1.5px); }
.footer-links-list a { color: #cccccc; text-decoration: none; font-size: 13.5px; transition: color 0.3s ease, transform 0.3s ease; display: inline-block; }
.footer-links-list a:hover { color: #ffffff; transform: translateX(4px); }

.footer-contact-list { list-style: none; padding: 0; margin: 0; }
.footer-contact-list li { font-size: 13.5px; color: #cccccc; display: flex; align-items: center; gap: 15px; margin-bottom: 18px; line-height: 1.4; }
.footer-contact-list a { color: #cccccc; text-decoration: none; transition: color 0.3s ease; }
.footer-contact-list a:hover { color: #ffffff; }
.contact-icon { font-size: 16px; color: #a89974; width: 20px; text-align: center; flex-shrink: 0; }

.footer-sub-bar { background-color: #050505; border-top: 1px solid rgba(168, 153, 116, 0.1); padding: 25px 0; }
.footer-sub-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; }
.copyright-text, .agency-text { font-size: 12px; color: #888888; margin: 0; }
.agency-link { color: #a89974; text-decoration: none; font-weight: 500; transition: color 0.3s ease; }
.agency-link:hover { color: #ffffff; }

/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #a89974;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-to-top.show { opacity: 1; visibility: visible; }
.scroll-to-top i { font-size: 18px; color: #000000; transition: transform 0.3s ease; }
.scroll-to-top:hover { background-color: #ffffff; transform: translateY(-5px); }

@media (max-width: 1024px) {
    .footer-main-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .footer-top-container { flex-direction: column; gap: 20px; text-align: center; padding: 0 20px; }
    .footer-quick-contact { flex-direction: column; gap: 12px; }
    .footer-main-container { grid-template-columns: 1fr; padding: 0 20px; gap: 35px; }
    .footer-sub-container { flex-direction: column; gap: 15px; text-align: center; padding: 0 20px; }
    .scroll-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }
}

/* ==========================================================================
   ARCHIVE APPLICATIONS PAGE STYLES (GÜNCELLENEN DÜZENLİ DÜZEN)
   ========================================================================== */
.archive-body { background-color: #000000; }
.archive-hero-banner { position: relative; width: 100%; height: 400px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; background-color: #000000; }
.archive-hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; }
.archive-hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%); z-index: 2; }
.archive-hero-content { position: relative; z-index: 3; padding: 0 20px; }
.archive-hero-title { font-size: 42px; font-weight: 600; color: #ffffff; letter-spacing: 2px; margin-bottom: 15px; text-transform: uppercase; font-family: 'Poppins', sans-serif; }
.archive-breadcrumb { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 13px; color: #a89974; letter-spacing: 1px; }
.archive-breadcrumb a { color: #cccccc; text-decoration: none; transition: color 0.3s ease; }
.archive-breadcrumb a:hover { color: #a89974; }
.breadcrumb-separator { color: rgba(168, 153, 116, 0.4); font-size: 11px; }

.archive-grid-section { padding: 80px 0; max-width: 1280px; margin: 0 auto; }
.archive-grid-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; padding: 0 40px; }

/* ARŞİV KARTLARININ HİZALANMASI VE DENGELENMESİ */
.archive-grid-container .product-card {
    flex: unset;
    min-width: unset;
    width: 100%;
    height: 100%;
}

.archive-grid-container .product-info {
    padding: 25px 10px;
}

.archive-grid-container .btn-product-outline {
    width: 100%;
    text-align: center;
}

.archive-pagination { display: flex; justify-content: center; align-items: center; gap: 12px; margin-top: 60px; padding: 0 40px; }
.archive-pagination .page-num, .archive-pagination .page-nav-btn { display: inline-flex; justify-content: center; align-items: center; width: 44px; height: 44px; background-color: transparent; border: 1px solid rgba(168, 153, 116, 0.25); color: #ffffff; text-decoration: none; font-size: 14px; font-weight: 500; font-family: 'Poppins', sans-serif; transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1); box-sizing: border-box; }
.archive-pagination .page-num.active { background-color: #a89974; color: #000000; border-color: #a89974; font-weight: 600; box-shadow: 0 4px 15px rgba(168, 153, 116, 0.25); }
.archive-pagination .page-num:not(.active):hover, .archive-pagination .page-nav-btn:hover { border-color: #a89974; color: #a89974; background-color: rgba(168, 153, 116, 0.05); }
.archive-pagination .page-dots { color: rgba(168, 153, 116, 0.5); font-size: 14px; letter-spacing: 2px; display: inline-block; padding: 0 5px; user-select: none; }

@media (max-width: 1024px) {
    .archive-grid-container { grid-template-columns: repeat(2, 1fr); gap: 25px; }
}

@media (max-width: 768px) {
    .archive-hero-banner { height: 300px; }
    .archive-hero-title { font-size: 32px; }
    .archive-grid-section { padding: 50px 0; }
    .archive-grid-container { grid-template-columns: 1fr; padding: 0 20px; }
    .archive-pagination { margin-top: 40px; gap: 8px; padding: 0 20px; }
    .archive-pagination .page-num, .archive-pagination .page-nav-btn { width: 38px; height: 38px; font-size: 13px; }
}

/* ==========================================================================
   SINGLE APPLICATION PAGE STYLES (STICKY & LIGHTBOX)
   ========================================================================== */
.single-product-body { background-color: #000000; }
.single-container { max-width: 1280px; margin: 0 auto; padding: 60px 40px; }
.single-wrapper { display: flex; gap: 50px; align-items: flex-start; }

/* SOL TARAF: GÖRSEL SÜTUNU YAPISI */
.single-gallery-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ANA GÖRSEL KUTUSU (ORİJİNALDEKİ GİBİ NİZAMİ SABİT ORAN) */
.single-gallery-column .main-img-item {
    width: 100%;
    background-color: #050505;
    border: 1px solid rgba(168, 153, 116, 0.15);
    cursor: pointer;
    display: block;
    overflow: hidden;
}
.single-gallery-column .main-img-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.single-gallery-column .main-img-item:hover img { 
    transform: scale(1.02); 
}

/* ALTTAKİ DETAY GÖRSELLERİ - 2 SÜTUNLU KUTU GRID YAPISI */
.gallery-sub-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    align-items: start;
}

/* DETAY GÖRSEL KUTULARI (KARE KUTU YAPISI, ASLA KIRPMAZ) */
.gallery-sub-grid .gallery-item { 
    width: 100%;
    background-color: #050505; 
    border: 1px solid rgba(168, 153, 116, 0.15); 
    cursor: pointer; 
    display: block;
    overflow: hidden;
}
.gallery-sub-grid .gallery-item img { 
    width: 100%; 
    height: auto; 
    display: block; 
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); 
}
.gallery-sub-grid .gallery-item:hover img { 
    transform: scale(1.03); 
}

/* SAĞ TARAF: YAZI VE DETAY SÜTUNU */
.single-info-column { flex: 0.8; position: sticky; top: 100px; height: auto; }
.sticky-info-card { background-color: #050505; border: 1px solid rgba(168, 153, 116, 0.15); padding: 40px; font-family: 'Poppins', sans-serif; }
.single-product-title { font-size: 28px; font-weight: 600; color: #ffffff; line-height: 1.3; margin-bottom: 15px; }
.single-category-tag { font-size: 13px; color: #a89974; margin-bottom: 30px; display: flex; align-items: center; gap: 8px; }

.warning-box { background-color: rgba(255, 0, 0, 0.03); border: 1px solid rgba(255, 0, 0, 0.2); padding: 20px; margin-bottom: 30px; }
.warning-box p { font-size: 13.5px; color: #ffffff; line-height: 1.6; margin: 0; }
.warning-box strong { color: #ff3333; font-weight: 700; }

/* --------------------------------------------------------------------------
   UYGULAMA AÇIKLAMASI METİN TEMİZLİĞİ VE BEYAZLAŞTIRMA (GÜNCELLENDİ)
   -------------------------------------------------------------------------- */
.single-desc-text h3 { 
    font-size: 15px; 
    font-weight: 600; 
    color: #a89974; 
    margin-bottom: 10px; 
}

/* İçerikteki tüm eski iç içe geçmiş etiketlerin arka planını yok eder */
.single-desc-text,
.single-desc-text * {
    background-color: transparent !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

/* Eski içerikten gelen mükerrer h1, h2, h3 başlıklarını ve sol ikonları gizler */
.single-desc-text h1,
.single-desc-text h2,
.single-desc-text img {
    display: none !important;
}

/* Paragrafları düzgünce alt alta dizilmeye zorlar */
.single-desc-text p {
    display: block !important;
    margin-bottom: 15px !important;
}

/* TÜM METİNLERİ SAF BEYAZ YAPAR */
.single-desc-text p,
.single-desc-text span,
.single-desc-text strong { 
    color: #ffffff !important;
    font-size: 13.5px !important; 
    line-height: 1.7 !important; 
    font-family: 'Poppins', sans-serif !important;
}

/* Orijinal kırmızı "SATILIK DEĞİLDİR" uyarı stillerini korur */
.single-desc-text [style*="color: red"],
.single-desc-text [style*="color: #ff0000"],
.single-desc-text span[style*="color:red"],
.single-desc-text strong[style*="color: red"] {
    color: #ff3333 !important;
    font-weight: 700 !important;
}
/* -------------------------------------------------------------------------- */

.sticky-action-area { margin-top: 35px; display: flex; flex-direction: column; gap: 15px; border-top: 1px solid rgba(168, 153, 116, 0.15); padding-top: 30px; }
.btn-sticky-contact { display: flex; justify-content: center; align-items: center; gap: 10px; background-color: #a89974; color: #000000; text-decoration: none; font-size: 14px; font-weight: 600; padding: 15px; text-transform: uppercase; letter-spacing: 1px; transition: all 0.3s ease; }
.btn-sticky-contact:hover { background-color: #ffffff; color: #000000; }

.sticky-share-socials { display: flex; justify-content: center; gap: 10px; }
.share-btn { display: flex; justify-content: center; align-items: center; width: 40px; height: 40px; background-color: rgba(168, 153, 116, 0.1); color: #a89974; text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
.share-btn:hover { background-color: #a89974; color: #ffffff; }

.sub-warning-info { display: flex; align-items: flex-start; gap: 10px; margin-top: 30px; border-top: 1px solid rgba(255, 0, 0, 0.1); padding-top: 20px; }
.warning-bullet { width: 8px; height: 8px; background-color: #ff3333; display: block; margin-top: 5px; flex-shrink: 0; }
.sub-warning-info p { font-size: 11px; color: #888888; line-height: 1.5; margin: 0; }

/* LIGHTBOX */
.lightbox-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.95); z-index: 99999; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.lightbox-modal.active { display: flex; opacity: 1; }
.lightbox-content { max-width: 80%; max-height: 80%; display: flex; justify-content: center; align-items: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; object-fit: contain; border: 1px solid rgba(168, 153, 116, 0.3); }
.lightbox-close { position: absolute; top: 30px; right: 40px; color: #ffffff; font-size: 40px; font-weight: 300; cursor: pointer; transition: color 0.3s; user-select: none; }
.lightbox-close:hover { color: #a89974; }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: transparent; border: none; color: #ffffff; font-size: 30px; cursor: pointer; padding: 20px; transition: color 0.3s; user-select: none; z-index: 100000; }
.lightbox-arrow:hover { color: #a89974; }
.lightbox-arrow.prev { left: 40px; }
.lightbox-arrow.next { right: 40px; }

/* RESPONSIVE */
@media (max-width: 992px) {
    .single-wrapper { flex-direction: column; gap: 40px; }
    .single-info-column { position: static; width: 100%; }
}

@media (max-width: 768px) {
    .single-container { padding: 40px 20px; }
    .gallery-sub-grid { grid-template-columns: 1fr; gap: 15px; }
    .sticky-info-card { padding: 25px; }
    .single-product-title { font-size: 22px; }
    .lightbox-arrow.prev { left: 10px; }
    .lightbox-arrow.next { right: 10px; }
}
.v-filter-btn {
    background-color: #111111;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.v-filter-btn:hover, 
.v-filter-btn.active {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

/* Kartların Hover Efekti */
.video-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(168, 153, 116, 0.1);
}

.youtube-open-btn:hover {
    background-color: #cc0000 !important;
}
/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */
.contact-page-body { background-color: #000000; }
.contact-main { padding: 80px 0; width: 100%; }
.contact-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.contact-wrapper { display: flex; gap: 60px; align-items: flex-start; }

.contact-info-column { flex: 1; font-family: 'Poppins', sans-serif; }
.contact-section-title { font-size: 32px; font-weight: 600; color: #ffffff; margin-top: 0; margin-bottom: 20px; letter-spacing: 1px; }
.contact-section-desc { font-size: 14.5px; color: #cccccc; line-height: 1.8; margin-bottom: 40px; }
.contact-details-list { display: flex; flex-direction: column; gap: 30px; }
.contact-detail-item { display: flex; align-items: center; gap: 20px; }

.detail-icon-box { width: 50px; height: 50px; background-color: rgba(168, 153, 116, 0.1); border: 1px solid rgba(168, 153, 116, 0.25); display: flex; justify-content: center; align-items: center; flex-shrink: 0; transition: all 0.3s ease; }
.detail-icon-box i { font-size: 18px; color: #a89974; }
.contact-detail-item:hover .detail-icon-box {
    background: #a89974 !important; /* Arka plan altın sarısı oluyor */
    border-color: #a89974 !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}
.contact-detail-item:hover .detail-icon-box i { color: #000000; }

.contact-detail-item:hover .detail-icon-box .fa-whatsapp {
    color: #ffffff !important; /* WhatsApp yeşilinin üzerinde beyaz ikon asil durur */
}
.contact-detail-item:hover .detail-icon-box:has(.fa-whatsapp) {
    background: #25d366 !important;
    border-color: #25d366 !important;
}

/* Link geçiş yumuşaklıkları */
.detail-icon-box, .detail-icon-box i {
    transition: all 0.3s ease-in-out;
}

.detail-text-box { display: flex; flex-direction: column; gap: 4px; }
.detail-text-box span { font-size: 12px; color: #888888; text-transform: uppercase; letter-spacing: 1px; }
.detail-text-box a, .detail-text-box p { font-size: 16px; font-weight: 500; color: #ffffff; text-decoration: none; margin: 0; transition: color 0.3s ease; }
.detail-text-box a:hover { color: #a89974; }

.contact-form-column { flex: 1; }
.contact-form-card { background-color: #050505; border: 1px solid rgba(168, 153, 116, 0.15); padding: 40px; font-family: 'Poppins', sans-serif; }
.form-title { font-size: 20px; font-weight: 600; color: #a89974; margin-top: 0; margin-bottom: 10px; letter-spacing: 1px; }
.form-desc { font-size: 13px; color: #888888; line-height: 1.6; margin-bottom: 30px; }
.custom-contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 12px; color: #cccccc; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }
.form-group input, .form-group textarea { background-color: #000000; border: 1px solid rgba(168, 153, 116, 0.2); color: #ffffff; padding: 12px 15px; font-size: 14px; font-family: 'Poppins', sans-serif; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #a89974; box-shadow: 0 0 10px rgba(168, 153, 116, 0.1); }
.btn-form-submit { background-color: #a89974; color: #000000; border: none; font-size: 14px; font-weight: 600; padding: 15px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: all 0.3s ease; margin-top: 10px; }
.btn-form-submit:hover { background-color: #ffffff; color: #000000; }

.wpcf7 form .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.wpcf7 form label {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
    width: 100%;
    background: #141414 !important;
    border: 1px solid rgba(168,153,116,0.3) !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}
.wpcf7 input:focus,
.wpcf7 textarea:focus {
    border-color: #a89974 !important;
    outline: none;
    background: #1a1a1a !important;
}
.wpcf7 input[type="submit"] {
    width: 100%;
    background: #a89974 !important;
    color: #000 !important;
    border: none !important;
    padding: 14px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}
.wpcf7 input[type="submit"]:hover {
    background: #fff !important;
    color: #000 !important;
}
/* Responsive Kırılmalar */
@media (max-width: 992px) {
    .contact-wrapper { grid-template-columns: 1fr !important; gap: 40px !important; }
    .contact-container { padding: 0 20px !important; }
}

@media (max-width: 992px) {
    .contact-wrapper { flex-direction: column; gap: 50px; }
    .contact-info-column, .contact-form-column { width: 100%; }
}

@media (max-width: 768px) {
    .contact-main { padding: 50px 0; }
    .contact-container { padding: 0 20px; }
    .contact-section-title { font-size: 26px; }
    .contact-form-card { padding: 25px; }
}

/* ==========================================================================
   VIP WORDPRESS ORTAK YAPISI (1440px & 400px Banner)
   ========================================================================== */
.vip-section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}
.vip-archive-hero-banner {
    height: 400px !important;
    position: relative;
    overflow: hidden;
}
.vip-archive-hero-banner .archive-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vip-page-title-bar {
    background: #111;
    padding: 20px 0;
    border-bottom: 1px solid rgba(168,153,116,0.2);
}
.vip-page-title-bar .title-bar-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.vip-page-title-bar .bar-main-title {
    color: #fff;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}
.vip-page-title-bar .archive-breadcrumb {
    color: #ccc;
    font-size: 14px;
}
.vip-page-title-bar .archive-breadcrumb a {
    color: #a89974;
    text-decoration: none;
}
.vip-page-title-bar .breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

/* ==========================================================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ========================================================================== */
.about-main-section { 
    padding: 90px 0; 
    background-color: #000; 
    color: #fff; 
}
.about-wrapper { 
    display: grid; 
    grid-template-columns: 45% 55%; 
    gap: 60px; 
    align-items: center; 
}
.about-image-column { 
    position: relative; 
}
.about-image-frame { 
    border: 1px solid rgba(168,153,116,0.3); 
    padding: 15px; 
    border-radius: 12px; 
    background: #0d0d0d; 
}
.about-image-frame img { 
    width: 100%; 
    height: auto; 
    display: block; 
    border-radius: 6px; 
    object-fit: cover; 
}
.gold-badge-effect { 
    position: absolute; 
    bottom: -20px; 
    right: -20px; 
    width: 100px; 
    height: 100px; 
    border-right: 2px solid #a89974; 
    border-bottom: 2px solid #a89974; 
    pointer-events: none; 
    z-index: 1; 
}
.about-subtitle { 
    color: #a89974; 
    text-transform: uppercase; 
    font-size: 13px; 
    letter-spacing: 2px; 
    font-weight: 600; 
    display: block; 
    margin-bottom: 10px; 
}
.about-main-heading { 
    font-size: 36px; 
    color: #fff; 
    margin: 0 0 25px 0; 
    font-weight: 600; 
    line-height: 1.3; 
}
.about-main-heading .gold-light-text { 
    color: #a89974; 
    font-weight: 300; 
}
.about-editable-content { 
    color: #ccc; 
    line-height: 1.9; 
    font-size: 15px; 
}
.about-editable-content p { 
    margin-bottom: 20px; 
}
.about-editable-content strong { 
    color: #a89974; 
}

/* ==========================================================================
   HAKKIMIZDA RESPONSIVE (MOBİL) DÜZENLEMELERİ
   ========================================================================== */
@media (max-width: 992px) {
    .about-wrapper { 
        grid-template-columns: 1fr !important; 
        gap: 40px !important; 
    }
    .about-image-column { 
        max-width: 600px; 
        margin: 0 auto; 
    }
    .gold-badge-effect { 
        display: none; 
    }
    .vip-section-container { 
        padding: 0 20px !important; 
    }
}
@media (max-width: 576px) {
    .vip-archive-hero-banner { 
        height: 300px !important; 
    }
    .about-main-heading { 
        font-size: 28px !important; 
    }
}
