/* Header Styles */
.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #1E1E1E;
    font-weight: 500;
    padding: 0.5rem 2rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #0056b3;
}

.iletisim-btn {
    background-color: #161a33;
    color: white !important;
    border-radius: 25px;
    padding: 0.5rem 2rem !important;
    margin-left: 0.5rem;
}

.iletisim-btn:hover {
    background-color: #0056b3;
}

/* Kapatma butonu varsayılan olarak gizli */
.close-menu {
    display: none;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: white;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 9999;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-collapse.hiding {
        transform: translateX(-100%);
    }

    .navbar-nav {
        padding: 1rem 0;
    }
    
    .iletisim-btn {
        margin: 0;
        text-align: center;
        display: inline-block;
    }

    .navbar-toggler {
        position: relative;
        z-index: 1001;
        margin-right: 0;
    }

    .navbar-brand {
        margin: 0 auto;
    }

    .navbar-nav.ms-auto {
        margin-left: 0 !important;
    }

    /* Kapatma butonu için yeni stiller */
    .close-menu {
        display: flex;
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: none;
        border: none;
        font-size: 1.5rem;
        color: #1E1E1E;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 10000;
        align-items: center;
        justify-content: center;
        transition: color 0.3s ease;
    }

    .close-menu:hover {
        color: #0056b3;
    }

    /* Mobil menüdeki çıkış butonunu nav-link gibi stillendir */
    .navbar-collapse .nav-item form button.nav-link {
        padding: 0.5rem 1rem;
        font-size: 1rem;
        line-height: 1.5;
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    .navbar-collapse .nav-item form button.nav-link:hover {
        background-color: rgba(220, 53, 69, 0.1) !important;
    }

    .navbar-collapse .nav-item form button.nav-link:focus {
        outline: none;
        box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25);
    }

    /* Menü açıkken arka plan overlay */
    .navbar-collapse.show + .navbar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    /* Mobil header düzeni */
    .navbar > .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-toggler {
        order: 1;
    }

    .navbar-brand {
        order: 2;
    }

    .d-lg-none.iletisim-btn {
        order: 3;
        margin-left: 0;
        padding: 0.5rem 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .logo {
        height: 40px;
    }
}

/* Banner Styles */
.banner {
    height: 100vh;
    position: relative;
}

.banner-slider {
    height: 100%;
}

.banner-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner h1 {
    font-size: 4rem;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: white;
    max-width: 800px;
}

.banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.banner-buttons .btn {
    padding: 0.35rem 3rem;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: none;
}

.banner-buttons .btn-light {
    background: white;
    color: #1E1E4E;
    border: 2px solid white;
}

.banner-buttons .btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.banner-buttons .btn-light:hover {
    background: #f8f9fa;
}

.banner-buttons .btn-outline:hover {
    background: white;
    color: #1E1E4E;
}

/* Banner Slider Navigation */
.banner .swiper-button-next,
.banner .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.banner .swiper-button-next:after,
.banner .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.banner .swiper-button-next:hover,
.banner .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Banner Slider Pagination */
.banner .swiper-pagination {
    bottom: 30px;
}

.banner .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .banner-content {
        padding-top: 76px; /* Mobil header yüksekliğini telafi etmek için */
    }
    
    .banner h1 {
        font-size: 3rem;
        padding: 0 1rem;
    }
}

@media (max-width: 576px) {
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }
    
    .banner-buttons .btn {
        width: 100%;
    }
}

/* Referanslar Styles */
.referanslar {
    padding: 5rem 0;
    background-color: #fff;
}

.referanslar h2 {
    text-align: center;
    color: #1E1E4E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.referans-slider {
    position: relative;
    padding: 0 50px;
}

.referans-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.referans-item img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.referans-item:hover img {
    transform: scale(1.1);
}

/* Swiper Navigation Styles */
.referanslar .swiper-button-next,
.referanslar .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #1E1E4E;
    border-radius: 50%;
    color: white;
}

.referanslar .swiper-button-next:after,
.referanslar .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.referanslar .swiper-button-next:hover,
.referanslar .swiper-button-prev:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .referanslar {
        padding: 3rem 0;
    }
    
    .referanslar h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .referans-slider {
        padding: 0 30px;
    }
}

/* Hakkımızda Styles */
.hakkimizda {
    padding: 5rem 0;
    background-color: #161a33;
    color: white;
}

.hakkimizda-content {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    color: #1E1E4E;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.hakkimizda-title {
    display: flex;
    align-items: center;
}

.hakkimizda h2 {
    font-size: 3.2rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
    letter-spacing: 0.1em;
}

.hakkimizda-text {
    position: relative;
}

.hakkimizda-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hakkimizda-text p:last-child {
    margin-bottom: 0;
}

.devamini-oku-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #161a33;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.devamini-oku-btn:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.devamini-oku-btn i {
    transition: transform 0.3s ease;
}

.devamini-oku-btn:hover i {
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hakkimizda-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hakkimizda h2 {
        writing-mode: horizontal-tb;
        transform: none;
        text-align: left;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .hakkimizda {
        padding: 3rem 0;
    }

    .hakkimizda-content {
        padding: 2rem;
    }

    .hakkimizda h2 {
        font-size: 2rem;
    }

    .hakkimizda-text p {
        font-size: 1rem;
    }

    .devamini-oku-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hakkimizda-content {
        padding: 1.5rem;
    }

    .devamini-oku-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Ürünler Styles */
.urunler {
    padding: 5rem 0;
    background-color: #fff;
}

.urunler h2 {
    text-align: center;
    color: #1E1E4E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.urunler-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.urun-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-decoration: none;
    display: block;
}

.urun-card:hover {
    transform: translateY(-5px);
}

.urun-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
}

.urun-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.urun-card:hover .urun-image img {
    filter: grayscale(0%);
}

.urun-content {
    padding: 0.7rem 1.5rem;
}

.urun-content h3 {
    color: #1E1E4E;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.incele-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #1E1E4E;
    font-weight: 600;
    transition: color 0.3s ease;
    gap: 10px;
    font-size: 1.1rem;
}

.incele-btn img {
    width: 48px;
    height: 48px;
    background-color: #161a33;
    border-radius: 50%;
    padding: 6px;
    transition: all 0.3s ease;
    transform: rotate(0);
}

.urun-card:hover .incele-btn {
    color: #0056b3;
}

.urun-card:hover .incele-btn img {
    background-color: #0056b3;
    transform: rotate(0) translateX(5px);
}

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

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

@media (max-width: 768px) {
    .urunler {
        padding: 3rem 0;
    }

    .urunler h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .urunler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .urun-content {
        padding: 1rem;
    }

    .incele-btn {
        font-size: 1rem;
    }
    
    .incele-btn img {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .urunler {
        padding: 3rem 0;
    }

    .urunler h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .urunler-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .urun-content {
        padding: 1rem;
    }

    .incele-btn {
        font-size: 0.9rem;
    }
    
    .incele-btn img {
        width: 36px;
        height: 36px;
        padding: 8px;
    }
}

/* Projeler Styles */
.projeler {
    padding: 5rem 0;
    background-color: #161a33;
}

.projeler h2 {
    text-align: center;
    color: white;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.projeler-slider {
    position: relative;
    padding: 0 50px;
}

.proje-card {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 15px;
    overflow: hidden;
}

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

.proje-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.proje-overlay h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

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

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

/* Swiper Navigation Styles */
.swiper-button-next,
.swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    color: #1E1E4E;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: #f8f9fa;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .projeler {
        padding: 3rem 0;
    }

    .projeler h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .proje-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .projeler-slider {
        padding: 0 30px;
    }

    .proje-card {
        height: 250px;
    }

    .proje-overlay h3 {
        font-size: 1.2rem;
    }
}

/* Basında Biz Styles */
.basinda-biz {
    padding: 5rem 0;
    background-color: #fff;
}

.basinda-biz h2 {
    text-align: left;
    color: #1E1E4E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.basinda-biz-slider {
    position: relative;
    padding: 0 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.haber-card {
    background: white;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.haber-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
    border-radius: 24px;
}

.haber-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.haber-content {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.haber-content h3 {
    color: #1E1E4E;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.haber-content h4 {
    color: #1E1E4E;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.haber-content p {
    color: #1E1E4E;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.haber-location {
    color: #1E1E4E;
    font-size: 1rem;
    font-weight: 500;
}

/* Swiper Navigation Styles */
.basinda-biz .swiper-button-next,
.basinda-biz .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: #1E1E4E;
    border-radius: 50%;
    color: white;
}

.basinda-biz .swiper-button-next:after,
.basinda-biz .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.basinda-biz .swiper-button-next:hover,
.basinda-biz .swiper-button-prev:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .haber-card {
        grid-template-columns: 1fr;
    }

    .haber-image {
        min-height: 300px;
    }

    .haber-content {
        padding: 2rem;
    }

    .haber-content h3 {
        font-size: 2rem;
    }

    .haber-content h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .basinda-biz {
        padding: 3rem 0;
    }

    .basinda-biz h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .haber-image {
        min-height: 250px;
    }

    .haber-content {
        padding: 1.5rem;
    }

    .haber-content h3 {
        font-size: 1.8rem;
    }

    .haber-content h4 {
        font-size: 1.3rem;
    }

    .haber-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .basinda-biz-slider {
        padding: 0 30px;
    }

    .haber-image {
        min-height: 200px;
    }

    .haber-content {
        padding: 1rem;
    }
}

/* İstatistik Styles */
.istatistik {
    padding: 5rem 0;
    background-color: #161a33;
    color: white;
}

.istatistik h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 600;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.istatistik-item {
    text-align: center;
}

.istatistik-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.istatistik-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.istatistik-icon svg {
    width: 100%;
    height: 100%;
    color: white;
}

.soket-icon {
    color: white;
}

.servis-icon {
    color: white;
}

.istatistik-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.istatistik-value {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.istatistik-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.istatistik-date {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .istatistik-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .istatistik {
        padding: 3rem 0;
    }

    .istatistik h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .istatistik-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .istatistik-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .istatistik-value {
        font-size: 2rem;
    }

    .istatistik-label {
        font-size: 0.9rem;
    }

    .istatistik-date {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .istatistik-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* İletişim Styles */
.iletisim {
    padding: 5rem 0;
    background-color: #fff;
}

.iletisim h2 {
    text-align: center;
    color: #1E1E4E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.iletisim-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    background-color: #F8F8F8;
    font-size: 1rem;
    color: #1E1E4E;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #1E1E4E;
    opacity: 0.7;
}

.form-control:focus {
    outline: none;
    border-color: #1E1E4E;
    background-color: #fff;
}

textarea.form-control {
    resize: none;
    height: auto;
}

.submit-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background-color: #1E1E4E;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.submit-icon {
    width: 20px;
    height: 20px;
}

.gonder-btn {
    margin-top: 2rem;
    padding: 1rem 4rem;
    border: none;
    border-radius: 50px;
    background-color: #303073;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gonder-btn:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .iletisim {
        padding: 3rem 0;
    }

    .iletisim h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .gonder-btn {
        display: inline-block;
    }

    .submit-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .form-control {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

/* Footer Styles */
.footer {
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: 50% 75%;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    color: #fff;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
}

.footer-logo img {
    width: 180px;
    height: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.contact-item {
    margin-bottom: 1rem;
}

.contact-item a,
.contact-item .address {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    text-decoration: none;
    font-size: 1rem;
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: white;
}

.footer-nav h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav ul li {
    margin-bottom: 1rem;
}

.footer-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.footer-nav ul li a:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: #1E1E4E;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .contact-item a,
    .contact-item .address {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* SSS Styles */
.sss {
    padding: 5rem 0;
    background-color: #fff;
}

.sss h2 {
    text-align: center;
    color: #161a33;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.sss-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sss-item {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
}

.sss-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.sss-header:hover {
    background-color: #f8f8f8;
}

.sss-header h3 {
    color: #161a33;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

.sss-toggle {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background-color: #161a33;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sss-toggle i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.sss-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sss-content p {
    padding: 1rem 1.5rem 1.5rem;
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.sss-item.active .sss-toggle {
    background-color: #0056b3;
}

.sss-item.active .sss-toggle i {
    transform: rotate(45deg);
}

.sss-item.active .sss-content {
    max-height: 200px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .sss {
        padding: 3rem 0;
    }

    .sss h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .sss-header {
        padding: 1.25rem;
    }

    .sss-header h3 {
        font-size: 1.1rem;
    }

    .sss-content p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .sss-header {
        padding: 1rem;
    }

    .sss-header h3 {
        font-size: 1rem;
    }

    .sss-content p {
        padding: 0 1rem 1rem;
    }
}

/* Ürün Detay Styles */
.urun-breadcrumb {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 90px;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.urun-breadcrumb .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.urun-breadcrumb h1 {
    color: white;
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
}

.urun-detay {
    padding: 5rem 0;
    background-color: #fff;
}

.urun-content {
    max-width: 800px;
    margin: 0 auto;
}

.urun-content h2 {
    color: #1E1E4E;
    font-size: 2rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem;
}

.urun-content h2:first-child {
    margin-top: 0;
}

.urun-content h3 {
    color: #1E1E4E;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 2rem 0 1rem;
}

.urun-content p {
    color: #1E1E4E;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.urun-content ul,
.urun-content ol {
    color: #1E1E4E;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.urun-content li {
    margin-bottom: 1rem;
}

.urun-content strong {
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .urun-breadcrumb {
        height: 200px;
        margin-top: 76px;
    }

    .urun-breadcrumb h1 {
        font-size: 2.2rem;
    }

    .urun-detay {
        padding: 3rem 0;
    }

    .urun-content h2 {
        font-size: 1.8rem;
        margin: 2rem 0 1.2rem;
    }

    .urun-content h3 {
        font-size: 1.3rem;
        margin: 1.5rem 0 1rem;
    }

    .urun-content p,
    .urun-content ul,
    .urun-content ol {
        font-size: 1rem;
        line-height: 1.6;
    }

    .urun-content li {
        margin-bottom: 0.8rem;
    }
}

@media (max-width: 576px) {
    .urun-breadcrumb h1 {
        font-size: 1.8rem;
    }

    .urun-content h2 {
        font-size: 1.6rem;
    }

    .urun-content h3 {
        font-size: 1.2rem;
    }
}

/* WhatsApp Destek Butonu */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #4CD964;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(76, 217, 100, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-btn:hover {
    background-color: #3cb853;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(76, 217, 100, 0.4);
}

.whatsapp-btn i {
    font-size: 20px;
}

.whatsapp-btn span {
    position: absolute;
    right: 70px;
    background-color: #25D366;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn:hover span {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 576px) {
    .whatsapp-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0;
        gap: 0;
    }
    .whatsapp-btn i {
        font-size: 25px;
    }
    .whatsapp-btn::after {
        display: none;
    }
    .whatsapp-btn {
        white-space: nowrap;
    }
    .whatsapp-btn span, .whatsapp-btn br {
        display: none !important;
    }
    .whatsapp-btn {
        min-width: 0;
    }
}

/* Blog Styles */
.blog {
    padding: 5rem 0;
    background-color: #161a33;
    color: white;
}

.blog h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.blog-slider {
    position: relative;
    padding: 0 50px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    color: #0056b3;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.blog-content h3 {
    color: #1E1E4E;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: #1E1E4E;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Blog Slider Navigation */
.blog .swiper-button-next,
.blog .swiper-button-prev {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.blog .swiper-button-next:after,
.blog .swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: bold;
}

.blog .swiper-button-next:hover,
.blog .swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Blog Slider Pagination */
.blog .swiper-pagination {
    bottom: 30px;
}

.blog .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.blog .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .blog {
        padding: 3rem 0;
    }

    .blog h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .blog-slider {
        padding: 0 30px;
    }

    .blog-image {
        height: 180px;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }
}

/* Error Pages */
.error-page {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-content h1 {
    font-size: 120px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
    line-height: 1;
}

.error-content h2 {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.error-content p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.error-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-buttons .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.error-buttons .btn-outline {
    border: 2px solid #007bff;
    color: #007bff;
}

.error-buttons .btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}

@media (max-width: 768px) {
    .error-page {
        padding: 60px 0;
    }

    .error-content h1 {
        font-size: 80px;
    }

    .error-content h2 {
        font-size: 28px;
    }

    .error-buttons {
        flex-direction: column;
    }

    .error-buttons .btn {
        width: 100%;
    }
} 

/* Şarj Dolum Süresi Sectionu */
.sarj-dolum-suresi {
    padding: 5rem 0;
    background-color: #fff;
}
.sarj-baslik {
    text-align: left;
    color: #1E1E4E;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.sarj-form {
    max-width: 600px;
    margin: 0 auto 2rem auto;
}
.sarj-label {
    font-weight: 500;
    font-size: 1.2rem;
}
.sarj-select {
    height: 50px;
    font-size: 1.1rem;
}
.sarj-btn {
    background-color: #1E6AE1;
    color: #fff;
    font-size: 1.1rem;
    padding: 0.7rem 2.5rem;
    border-radius: 30px;
    border: none;
    font-weight: 500;
    transition: background 0.2s;
}
.sarj-btn:hover {
    background-color: #0056b3;
}
.sarj-kutular {
    background: #f4f8fb;
    border-radius: 30px;
    padding: 40px 0;
    max-width: 900px;
    margin: auto;
    box-shadow: 0 2px 24px #e9eef2;
}
.sarj-type {
    display: inline-block;
    padding: 0.5rem 2rem;
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1.3rem;
}
.sarj-ac {
    background: #1E6AE1;
}
.sarj-dc {
    background: #1E6AE1;
}
.sarj-title {
    font-size: 1.2rem;
}
.sarj-value {
    font-size: 2rem;
    font-weight: 700;
}
.sarj-time {
    font-size: 1.5rem;
    font-weight: 700;
}
.sarj-aciklama {
    color: #b3b3b3;
    font-size: 1rem;
}
@media (max-width: 768px) {
    .sarj-baslik {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    .sarj-kutular {
        padding: 25px 0;
    }
    .sarj-form {
        margin-bottom: 1.5rem;
    }
}
@media (max-width: 576px) {
    .sarj-baslik {
        font-size: 1.5rem;
    }
    .sarj-kutular {
        padding: 15px 0;
    }
    .sarj-form {
        margin-bottom: 1rem;
    }
    .sarj-type {
        font-size: 1.1rem;
        padding: 0.4rem 1.2rem;
    }
    .sarj-value {
        font-size: 1.3rem;
    }
    .sarj-time {
        font-size: 1.1rem;
    }
} 

/* Hero Content Styles */
.hero-content {
    padding: 5.8rem 0 0 0;
    background-color: #ffffff;
}

.hero-text {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-text h1 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1E1E4E;
    margin-bottom: 2rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: #1E1E4E;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.hero-text p:last-child {
    margin-bottom: 0;
}

.hero-image {
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-content.colored-section {
    background-color: #0156b3;
}
.hero-content.colored-section .hero-text h1 {
    color: #ffffff;
}
.hero-content.colored-section .hero-text h3 {
    color: #ffffff;
}
.hero-content.colored-section .hero-text p {
    color: #ffffff;
}
.hero-content.colored-section .hero-text ul {
    color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text {
        padding: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-image {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-text {
        padding: 1.5rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 0.95rem;
    }
} 

/* Principles Section Styles */
.principles-section {
    padding: 5rem 0;
    background-color: #161a33;
    color: #ffffff;
}

.principles-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.principles-content h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 3rem;
}

.principle-item {
    margin-bottom: 3rem;
    text-align: left;
}

.principle-item:last-child {
    margin-bottom: 0;
}

.principle-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.principle-item p {
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.principle-item p:last-child {
    margin-bottom: 0;
}

.principle-item ul {
    list-style-type: decimal;
}

.revenue-sharing {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.7;
}

.revenue-sharing strong {
    color: #ffffff;
    font-weight: 600;
}

.principles-section.white-section {
    background-color: #ffffff;
    color: #1E1E4E;
}
.principles-section.white-section .principles-content h2 {
    color: #1E1E4E;
}
.principles-section.white-section .principle-item h3 {
    color: #1E1E4E;
}
.principles-section.white-section .principle-item p {
    color: #1E1E4E;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .principles-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .principle-item h3 {
        font-size: 1.3rem;
    }
    
    .principle-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .principles-section {
        padding: 3rem 0;
    }
    
    .principles-content h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .principle-item {
        margin-bottom: 2rem;
    }
    
    .principle-item h3 {
        font-size: 1.2rem;
    }
    
    .revenue-sharing {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .principles-content h2 {
        font-size: 1.8rem;
    }
    
    .principle-item h3 {
        font-size: 1.1rem;
    }
    
    .principle-item p {
        font-size: 0.95rem;
    }
    
    .revenue-sharing {
        font-size: 0.9rem;
    }
}
/* Mobil Logout Butonu Stilleri */
.mobile-logout-btn:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
}

.mobile-logout-btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.25) !important;
}

.mobile-logout-btn:active {
    background-color: rgba(220, 53, 69, 0.2) !important;
} 
