@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
    --primary-red: #E30613; /* Petlas Kırmızısı */
    --dark-black: #111111;
    --light-gray: #f4f4f4;
}

body {
    font-family:"Open Sans", sans-serif;
    overflow-x: hidden;
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-red);
    font-size: 18px;
    padding: 8px 0;
    font-weight:bold;
}

/* --- Navbar --- */
.navbar {
    background-color: #000;
    padding: 15px 0;
    z-index: 1000;
}

.navbar-brand img {
    filter: brightness(0) invert(1); /* Logoyu beyaz yap (placeholder için) */
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    margin-left: 40px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: var(--primary-red) !important;
    }
.dropdown-menu {
    border-radius:0;
    width:100%;
    line-height:35px;
}
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; /* İnce ayar: Menü ile buton arasındaki boşluğu siler */


    }
}
.p-rl-126 {
    padding: 0 126px;
}
/* --- Hero Section (GÜNCELLENDİ) --- */
.mainslider {
    background-color: #000;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-slide-row {
    min-height: 650px; /* Yükseklik artırıldı */
    position: relative;
}

.hero-image-col {
    padding: 0;
  position: relative;
    /* overflow: hidden; */
    z-index: 99;
    margin: 50px 0;
}

    .hero-image-col img {
 /*       width: 100%;
        height: 100%;*/
    /*    object-fit: cover;*/
        /* Hafif zoom efekti için */
       /* transition: transform 10s ease;*/
    }

.swiper-slide-active .hero-image-col img {
 /*   transform: scale(1.1);*/
}
.swiper-slide a{
    color:#fff;
}
.swiper-slide small {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    text-decoration: underline;
    /* İşte sihirli kod burası: */
    text-underline-offset: 8px;
    text-decoration-thickness: 2px; /* Çizgi kalınlığı (opsiyonel) */
    text-decoration-color: #fff; /* Çizgi rengi (opsiyonel) */
}
.swiper-slide h1 {
    color: #fff;
    font-size: 80px;
    font-weight: 700;
    line-height: 135.8%;
    letter-spacing:-8%;
    text-transform:capitalize;
    
}

/* Sağ Taraf - Kırmızı Alan */
.hero-text-col {
    background-color: var(--primary-red);
    display: flex;
    flex-direction: column;
    padding: 5rem 0 0 13rem;
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    height: 100%;
}



.hero-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 10rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke:1px #fff;
    line-height: 1;
    user-select: none;

}

.hero-nav-btns {
    position: absolute;
    bottom: 60px;
    right: 6rem; /* Padding ile hizalı */
    display: flex;
    gap: 15px;
    z-index: 10;
}

@media (max-width: 991px) {
    .hero-nav-btns {
        left: 2rem;
        bottom: 30px;
    }

    .hero-text-col {
        padding: 3rem 2rem;
    }
}

.custom-swiper-btn {
    color: white;
    font-size:52px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
  
}

    .custom-swiper-btn:hover {
        color: black;
        font-size: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
    }

/* --- Products Section --- */
.category-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.section-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 5px;
    text-decoration: underline;
    /* İşte sihirli kod burası: */
    text-underline-offset: 8px;
    text-decoration-thickness: 2px; /* Çizgi kalınlığı (opsiyonel) */
    text-decoration-color: var(--primary-red); /* Çizgi rengi (opsiyonel) */
}
.section-title {
    font-size: 5rem;
    line-height: 135.8%;
    font-weight:800;
}
.category-nav-btns {
    position: absolute;
    top: 0%;
    z-index: 999;
    color: #E30613;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    height: 100%;

}
.category-next {
    background-color: #000;
    height: 100%;
    width: 106px;
    background: linear-gradient(to right, #d9d9d900, #737373);
}
.category-prev {
    background-color: #000;
    height: 100%;
    width: 106px;
    background: linear-gradient(to right, #737373, #d9d9d900);
}
.product-card {
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

    .product-card img {
      /*  height: 220px;
        width: 100%;
        object-fit: cover;*/
   /*     background-color: #ddd;*/
    }

.product-content {
    padding: 1.5rem;
    background-color: #e4e4e4;
    color: #333;
    min-height: 140px;
}

.product-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* --- Map Section --- */
.map-section {
    background-color: #e9e9e9;
    padding: 3rem 0;
    position: relative;
    min-height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column; /* İçerikleri alt alta diz */
    align-items: center;
    justify-content: center;
}

#chartdiv {
    width: 100%;
    height: 500px;
    position: relative; /* Absolute yerine relative */
    top: auto;
    left: auto;
    z-index: 1;
    margin-bottom: 2rem; /* Harita ile form arasına boşluk */
}

.map-overlay-container {
    position: relative;
    z-index: 10;
    pointer-events: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0; /* Eski negatif marjini sıfırla */
}

.map-overlay-card {
    pointer-events: auto;
    background: white;
    padding: 2.5rem 3rem;
    width: 100%;
    /* Removed max-width to allow wider horizontal bar */
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-top: 5px solid var(--primary-red);
    border-radius: 4px;
}

@media (max-width: 991px) {
    .map-section {
        padding: 2rem 0;
    }

    #chartdiv {
        height: 400px;
    }

    .map-overlay-container {
        margin-top: 0;
        padding: 0 15px;
        z-index: 20;
    }

    .map-overlay-card {
        padding: 2rem;
    }
}

.form-select-custom {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 15px;
    width: 100%;
    background-color: #fff;
    font-size: 0.9rem;
    color: #555;
    transition: 0.3s;
    /* Removed bottom margin from base class for grid usage */
}

    .form-select-custom:focus {
        outline: none;
        border-color: var(--primary-red);
        box-shadow: none;
    }

.btn-search {
    background-color: var(--primary-red);
    color: white;
    width: 100%;
    border: none;
    padding: 15px;
    font-weight: 700;
    border-radius: 0;
    letter-spacing: 1px;
    transition: 0.3s;
    /* Removed top margin from base class for grid usage */
}

    .btn-search:hover {
        background-color: #b01319;
    }

/* --- Partner / Info Section --- */
.partner-section .row {
    --bs-gutter-x: 0;
}

.red-box {
    background-color: var(--primary-red);
    color: white;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.white-box {
    background-color: white;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-outline-white {
    border: 2px solid white;
    color: white;
    border-radius: 0;
    padding: 10px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    width: fit-content;
}

    .btn-outline-white:hover {
        background: white;
        color: var(--primary-red);
    }

.btn-black {
    background: black;
    color: white;
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    width: 50%;
}
.btn-white {
    background: #fff;
    color: var(--primary-red);
    border-radius: 0;
    padding: 12px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    width: 50%;
}

.btn-red-link {
    background: var(--primary-red);
    color: white;
    border-radius: 0;
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
  
    border: none;
    width: 50%;
}

/* --- Footer --- */
footer {
    background-color: #111;
    color: #fff;
    padding: 4rem 0 2rem;
    font-size: 0.9rem;
}

    footer h5 {
        color: white;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1rem;
    }

    footer ul {
        list-style: none;
        padding: 0;
    }

        footer ul li {
            margin-bottom: 10px;
        }

            footer ul li a {
                color: #fff !important;
                text-decoration: none;
                transition: color 0.3s;
            }

                footer ul li a:hover {
                    color: var(--primary-red)!important;
                }

.social-icons a {
    color: white!important;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    margin-top: 3rem;
}
.ml-15 {
    margin-left: 15rem !important;
}
.form-select {
    --bs-form-select-bg-img: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e);
    display: block;
    width: 100%;
    padding: 1.375rem 2.25rem 1.375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: none;
     border-radius: 0; 
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.partner-section h2 {
    font-size:80px;
    font-weight:700
}
.partner-section h3 {
    font-size: 64px;
    font-weight: 700
}


/* --- Page Header --- */
.page-header {
    background-color: #111;
    padding: 5rem 0;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1594541783457-375997230248?q=80&w=2073&auto=format&fit=crop'); /* Daha koyu endüstriyel görsel */
    background-size: cover;
    background-position: center;
    margin-bottom: 3rem;
}

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)); /* Degrade karartma */
    }

.header-content {
    position: relative;
    z-index: 2;
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

.breadcrumb-item.active {
    color: var(--primary-red);
    font-weight: bold;
}

.breadcrumb-item a {
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
}

/* --- Sidebar Filters --- */
.sidebar-title {
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    position: relative;
}

    .sidebar-title::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--primary-red);
    }

.filter-group {
    margin-bottom: 2rem;
}

.filter-header {
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: #000;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* Özel Checkbox Tasarımı */
.custom-check {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #555;
    transition: 0.2s;
}

    .custom-check:hover {
        color: var(--primary-red);
    }

    .custom-check input {
        display: none; /* Standart checkbox'ı gizle */
    }

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ddd;
    margin-right: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}

.custom-check input:checked + .checkmark {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: white;
    font-size: 10px;
    display: none;
}

.custom-check input:checked + .checkmark::after {
    display: block;
}

/* --- Product Grid (Ana Sayfa Stili) --- */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
        border-color: transparent;
    }

.product-image-wrapper {
    overflow: hidden;
    position: relative;
    height: 270px;
    width:60%

}

.product-card img {
    width: 100%;
    /*height: 100%;
    object-fit: cover;*/
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1); /* Zoom effect */
}

/* Rozetler */
.product-badges {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: flex-end;
}

.badge-new {
    background-color: var(--primary-red);
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 8px;
    text-transform: uppercase;
}

.badge-tech {
    background-color: #000;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    text-transform: uppercase;
}

.product-content {
    padding: 2rem;
    background-color: #fff;
    color: #333;
    position: relative;
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-line {
    width: 40px;
    height: 3px;
    background-color: var(--primary-red);
    margin-bottom: 15px;
    transition: width 0.3s;
}

.product-card:hover .product-line {
    width: 60px;
}

.product-title {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-desc {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-link {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.8rem;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    transition: 0.3s;
}

    .product-link i {
        margin-left: 8px;
        font-size: 0.75rem;
        transition: margin 0.3s;
    }

.product-card:hover .product-link {
    color: var(--primary-red);
}

    .product-card:hover .product-link i {
        margin-left: 12px;
    }

/* Pagination Style */
.pagination .page-link {
    border: none;
    color: #333;
    font-weight: 600;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-red);
    color: white;
}

.pagination .page-link:hover {
    background-color: #eee;
    color: var(--primary-red);
}
.product-options ul li {
    border: 1px solid var(--light-gray);
    padding: 15px 5px;
    width: 55px;
    height: 55px;
    text-align: center;
}

.product-options h6 {
    font-size:40px;
    font-weight:700
}
.product-options img {
    height: 82px !important;
}
.product-properties h5 {
    font-weight:700;
    line-height:35px;
    font-size:30px;margin-bottom:20px;
    
}
.px-9 {
    padding-left: 9em;
    padding-right: 9em;
}
.py-6 {
    padding-top: 6em;
    padding-bottom: 6em;
}
.bg-red {
    background-color:var(--primary-red)
}
.text-red {
  color:var(--primary-red)
}

.bayi-card {
    border-radius:0
}
.teknoloji h2 {
    font-weight:700;
    font-size:30px
}
.teknoloji img {
    height: 81px
}
   .redteknoloji  {
    color:#fff;
  
}
.redteknoloji i {
    font-size:60px;
  
}
.testlab {
    border-radius:0;
    height:100%;
    font-size:36px;
    font-weight:700;
}
.red-hover :hover {
    background-color: var(--primary-red);
    color: #fff;
}
.form-control {
    border-radius:0
}
footer a {
    color:#fff
}



/* Widget Container */
.wp-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

/* Ana Buton */
.wp-widget-btn {
    width: 60px;
    height: 60px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
}

    .wp-widget-btn:hover {
        transform: scale(1.1);
        background-color: #b71c1c;
    }

    .wp-widget-btn i {
        font-size: 30px;
        color: white;
        transition: all 0.3s;
    }

/* Buton Üzerindeki Bildirim Noktası */
.wp-status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid white;
    background-color: #2ecc71; /* Online Yeşil */
}

    .wp-status-dot.offline {
        background-color: #95a5a6; /* Offline Gri */
    }

/* Açılır Pencere (Tooltip/Card) */
.wp-widget-card {
    background: white;
    width: 300px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    margin-bottom: 15px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transform-origin: bottom right;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wp-widget-container.active .wp-widget-card {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Card Header */
.wp-card-header {
    background-color: var(--primary-red);
    color: white;
    padding: 20px;
    position: relative;
}

    .wp-card-header h5 {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
    }

    .wp-card-header p {
        margin: 5px 0 0;
        font-size: 12px;
        opacity: 0.9;
    }

.wp-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 16px;
    opacity: 0.7;
}

    .wp-close-btn:hover {
        opacity: 1;
    }

/* Card Body */
.wp-card-body {
    padding: 20px;
    text-align: center;
}

.agent-avatar {
    width: 60px;
    height: 60px;
    background: #f1f1f1;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #666;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.wp-status-text {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    display: block;
}

/* Action Button */
.wp-action-btn {
    display: block;
    width: 100%;
    padding: 12px;

    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.2s;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

    .btn-whatsapp:hover {
        background-color: #128C7E;
        color: white;
    }

.btn-contact {
    background-color: #333;
    color: white;
}

    .btn-contact:hover {
        background-color: #000;
        color: white;
    }

/* Animasyonlar */
.wp-widget-container.active .wp-widget-btn i {
    transform: rotate(45deg); /* Çarpı işareti efekti için */
}

