/* Base Styles */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --text-light: #fff;
    --border-color: #ddd;
    --box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f9f9f9;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 16px;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Header Styles */
header {
    background: rgba(44, 62, 80, 0.95);
    padding: 8px 0; /* 10px'ten 8px'e düşürüldü */
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: background-color;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    perspective: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px; /* 20px'ten 15px'e düşürüldü */
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
    transition: var(--transition);
}

.logo a:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
    header {
        padding: 5px 0; /* 6px'ten 5px'e düşürüldü */
    }
    
    header .container {
        padding: 0 8px; /* 10px'ten 8px'e düşürüldü */
    }
    
    .logo img {
        height: 28px; /* 32px'den 28px'e düşürüldü */
    }
    
    .logo-text {
        font-size: 14px; /* 15px'ten 14px'e düşürüldü */
    }
    
    nav ul li a {
        padding: 6px 10px; /* 8px 12px'den 6px 10px'e düşürüldü */
        font-size: 13px; /* 14px'ten 13px'e düşürüldü */
    }
    
    .mobile-toggle {
        font-size: 20px; /* Hamburger menü ikonunu küçültüyoruz */
        padding: 5px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 3px 0; /* 4px'ten 3px'e düşürüldü */
    }
    
    .logo img {
        height: 24px; /* 28px'den 24px'e düşürüldü */
    }
    
    .logo-text {
        font-size: 14px; /* Logo metni daha da küçük */
        margin-left: 6px; /* Margin azaltılıyor */
    }
    
    /* Brand banner için de daha küçük ölçüler */
    .brand-logo img {
        max-width: 50px; /* 60px'ten 50px'e düşürüldü */
    }
    
    .brand-logo h2 {
        font-size: 16px; /* 18px'ten 16px'e düşürüldü */
    }
}

nav ul {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
}

nav ul li {
    list-style: none;
    position: relative;
}

nav ul li a {
    color: white;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #e74c3c;
    transition: width 0.3s ease;
}

nav ul li a:hover:before,
nav ul li a.active:before {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: rgba(231, 76, 60, 0.8);
    color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-toggle:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

/* Scroll efekti için - sadece arkaplan değişimi */
header.scrolled {
    background: rgba(44, 62, 80, 0.98);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
    header {
        transform: none;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        -webkit-transform: none; /* Mobilde dönüşümü kaldır */
        padding: 15px 0 !important; /* Sabit padding */
    }
    
    /* Mobil görünümde hız optimizasyonları */
    nav ul {
        -webkit-overflow-scrolling: touch; /* Daha akıcı kaydırma */
        -webkit-transform: translateZ(0); /* Hardware acceleration */
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Mobil menüde KVKK öğesi için düzenleme */
    nav ul li:last-child a {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* Mobile Styles */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--text-light);
    cursor: pointer;
}

/* Slider Styles - Updated for multiple images */
.slider {
    position: relative;
    overflow: hidden;
    height: 500px; /* 600px'den 500px'e düşürüldü */
    margin-top: 15px; /* 20px'den 15px'e düşürüldü */
    margin-bottom: 25px; /* 30px'dan 25px'e düşürüldü */
}

.slides {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    padding: 0 15px;
}

.slide.active {
    opacity: 1;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    height: 100%;
}

.slide-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.slide-item:hover img {
    transform: scale(1.05);
}

.slide-item.vertical {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.slide-item.horizontal-1 {
    grid-column: 2;
    grid-row: 1;
}

.slide-item.horizontal-2 {
    grid-column: 2;
    grid-row: 2;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--light-color);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature {
    background-color: var(--text-light);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Stores Preview Section */
.stores-preview {
    padding: 80px 0;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.store {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.store:hover {
    transform: translateY(-10px);
}

.store img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.store h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.store p {
    padding: 0 20px 20px;
    color: var(--text-color);
}

.store .btn {
    margin: 0 20px 20px;
}

/* Newsletter Section */
.newsletter {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.newsletter h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter button {
    border-radius: 0 4px 4px 0;
    background-color: var(--secondary-color);
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-section p {
    margin-bottom: 10px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-light);
    opacity: 0.8;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social {
    display: flex;
    margin-top: 20px;
}

.social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-light);
    transition: var(--transition);
}

.social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Banner */
.page-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
    text-align: center;
}

.page-banner h1 {
    font-size: 36px;
    margin-bottom: 15px;
}

/* Stores Detail Section */
.stores-detail {
    padding: 80px 0;
}

.store-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.store-image {
    height: 100%;
}

.store-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-info {
    padding: 30px;
}

.store-info h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.store-description {
    margin-bottom: 30px;
}

.store-details {
    margin-bottom: 30px;
}

.detail {
    display: flex;
    margin-bottom: 20px;
}

.detail i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.detail h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.store-gallery h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Map Section */
.map-section {
    padding: 0 0 80px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Legal Content Section */
.legal-content {
    padding: 60px 0;
}

.legal-text {
    background-color: var(--text-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.legal-text h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-text h3 {
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.legal-text ul li {
    list-style-type: disc;
    margin-bottom: 10px;
}

/* About Page Styles */
.about-content {
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.value-item {
    background-color: var(--text-light);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-item i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 20px;
    color: var(--primary-color);
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member p {
    padding: 0 20px 20px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    left: 0;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: -10px;
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--text-light);
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Contact Page Styles */
.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.info-items {
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: var(--secondary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.social-connect h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.social-connect .social {
    display: flex;
}

.social-connect .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    margin-right: 15px;
    color: var(--text-light);
    transition: var(--transition);
}

.social-connect .social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.contact-form-container {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 14px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
}

.map-section {
    margin-bottom: 60px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    margin: 0;
    font-size: 16px;
    color: var(--primary-color);
}

.faq-toggle {
    color: var(--secondary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--light-color);
}

.faq-answer p {
    padding: 20px;
    margin: 0;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.faq-item.active .faq-question h3 {
    color: var(--text-light);
}

/* Partner Logos Section */
.partner-logos {
    padding: 50px 0;
    background-color: #f9f9f9;
    overflow: hidden;
}

.logo-slider {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 0 -20px;
}

.logo-track {
    display: flex;
    animation: logoScroll 20s linear infinite;
    width: fit-content;
}

.logo-slide {
    flex: 0 0 auto;
    margin: 0 20px;
    transition: transform 0.3s ease;
}

.logo-slide img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.logo-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Logoların yarısını kaydır */
    }
}

/* Responsive styles for logo slider */
@media (max-width: 768px) {
    .logo-slide img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo-slide img {
        height: 50px;
    }
    
    .logo-slide {
        margin: 0 10px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slider {
        height: 450px; /* 500px'den 450px'e düşürüldü */
    }
    
    .caption {
        width: 80%;
    }

    .caption h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .slider {
        height: 350px; /* 400px'den 350px'e düşürüldü */
    }
    
    .caption {
        width: 90%;
    }

    .caption h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 20px;
    }
    
    .mobile-toggle {
        padding: 8px;
    }
    
    header.scrolled {
        padding: 8px 0;
    }
    
    .slider {
        height: 300px; /* 350px'den 300px'e düşürüldü */
    }
    
    .slide-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 2fr 1fr 1fr;
    }
    
    .slide-item.vertical {
        grid-column: 1;
        grid-row: 1;
    }
    
    .slide-item.horizontal-1 {
        grid-column: 1;
        grid-row: 2;
    }
    
    .slide-item.horizontal-2 {
        grid-column: 1;
        grid-row: 3;
    }
    
    .feature i {
        font-size: 30px;
    }

    .store img {
        height: 200px;
    }

    .legal-text {
        padding: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }
    
    .about-content,
    .contact-content {
        padding: 40px 0;
    }
    
    .about-intro,
    .about-values,
    .about-team,
    .about-milestones,
    .contact-info,
    .contact-form-container,
    .map-section,
    .faq-section {
        margin-bottom: 40px;
    }
    
    .value-item,
    .team-member {
        padding: 15px;
    }
    
    .team-member img {
        height: 200px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .info-item {
        flex-direction: column;
    }
    
    .info-item i {
        margin-bottom: 10px;
    }
    
    .social-connect .social {
        flex-wrap: wrap;
    }
    
    .social-connect .social a {
        margin-bottom: 10px;
    }
    
    .contact-form-container {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .feature {
        padding: 20px;
    }

    .store-info {
        padding: 20px;
    }

    .store-image img {
        height: 200px;
    }

    .team-member img {
        height: 180px;
    }

    .timeline-item {
        padding: 10px 20px;
    }

    .contact-form-container {
        padding: 15px;
    }
}

/* Brand Banner Section */
.brand-banner {
    padding: 3px 0; /* 5px'ten 3px'e düşürüldü */
    text-align: center;
    background-color: #fff;
}

.brand-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 0; /* Padding'i tamamen kaldırıldı */
}

.brand-logo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0 20px; /* Logo bölümüne iç boşluk ekleyerek butonlara yer açtım */
}

.brand-logo img {
    max-width: 60px;
    height: auto;
    margin-right: 15px;
    margin-bottom: 0;
}

.brand-logo h2 {
    font-size: 22px;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    font-family: 'Times New Roman', Times, serif;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.brand-btn {
    display: inline-block;
    padding: 8px 12px; /* Sol-sağ padding'i azaltıldı */
    background-color: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: absolute;
}

.brand-btn:first-child {
    left: -25%; /* Tam kenara yapıştırmak için -1px */
    border-radius: 0 4px 4px 0; /* Sol kenar köşelerini düzleştirdim */
}

.brand-btn:last-child {
    right: -25%; /* Tam kenara yapıştırmak için -1px */
    border-radius: 4px 0 0 4px; /* Sağ kenar köşelerini düzleştirdim */
}

.brand-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3); /* Hover durumunda gölgeyi artırdım */
}

.brand-btn i {
    margin-right: 5px;
}

/* Masaüstü görünümde göster, mobilde gizle */
@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }
    
    /* Mobil görünümde brand logo'yu küçült */
    .brand-logo {
        padding: 0 10px;
    }
    
    .brand-logo img {
        max-width: 40px;
        margin-right: 8px;
    }
    
    .brand-logo h2 {
        font-size: 16px;
        letter-spacing: 0.8px;
    }
    
    /* Mobil görünümde brand banner üst boşluğunu artır */
    .brand-banner {
        padding: 15px 0 10px; /* Üst boşluğu artırıldı */
    }
}

@media (max-width: 480px) {
    /* ...existing code... */
    
    /* Daha küçük ekranlarda üst boşluğu biraz daha artır */
    .brand-banner {
        padding: 20px 0 10px; /* Üst boşluğu daha da artırıldı */
    }
}

/* Mobil Aksiyon Butonları */
.mobile-action-btn {
    display: none; /* Varsayılan olarak gizli */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.mobile-location-btn {
    left: 0;
    border-radius: 0 20px 20px 0;
}

.mobile-website-btn {
    right: 0;
    border-radius: 20px 0 0 20px;
}

.mobile-action-btn i {
    font-size: 20px;
}

.mobile-action-message {
    position: fixed;
    top: 50%;
    background-color: var(--primary-color);
    color: white;
    padding: 10px 15px;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    font-size: 14px;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    left: 50%;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.mobile-action-message.show {
    opacity: 1;
}

/* Sadece mobilde göster */
@media (max-width: 768px) {
    .mobile-action-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Mobil Performance Optimizasyonları */
@media (max-width: 480px) {
    /* Gereksiz animasyonları kaldır veya hafiflet */
    .feature:hover,
    .store:hover,
    .value-item:hover,
    .team-member:hover {
        transform: none;
    }
    
    /* Mobilde daha hafif box-shadow kullan */
    .feature, 
    .store, 
    .store-card,
    .value-item,
    .team-member {
        box-shadow: 0 1px 3px rgba(0,0,0,0.12);
    }
    
    /* Mobilde bazı görsel efektleri devre dışı bırak */
    .slide-item:hover img {
        transform: none;
    }
    
    /* Yavaşlayan scrolling için animasyon optimizasyonu */
    .slide-grid,
    .feature-grid,
    .stores-grid,
    .gallery-grid,
    .logo-track {
        will-change: transform;
        -webkit-transform: translateZ(0);
    }
}

/* İletişim Banner Stili - Mağazalar Sayfası için */
.info-banner {
    background-color: var(--light-color);
    border-radius: 8px;
    padding: 30px;
    margin: 40px 0;
    box-shadow: var(--box-shadow);
}

.info-banner .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.info-banner .col {
    flex: 1;
    min-width: 300px;
    padding: 10px;
}

.info-banner h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.info-banner p {
    color: #666;
    margin-bottom: 0;
}

.info-banner .btn {
    display: inline-block;
    margin-top: 10px;
}

/* Misyon Vizyon Bölümü */
.mission-vision {
    margin: 60px 0;
}

.mission-vision .row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.mission-vision .col {
    flex: 1;
    min-width: 300px;
}

.mission-vision .content-box {
    background-color: var(--light-color);
    padding: 30px;
    height: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.mission-vision .content-box:hover {
    transform: translateY(-5px);
}

.mission-vision h2 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 24px;
}

.mission-vision h2 i {
    margin-right: 15px;
    color: var(--secondary-color);
}

.mission-vision p {
    color: #555;
    line-height: 1.8;
}

/* CTA Bölümü */
.cta-section {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 18px;
    opacity: 0.9;
}

.cta-content .btn {
    background-color: var(--secondary-color);
    padding: 12px 25px;
    font-size: 18px;
    font-weight: 500;
}

.cta-content .btn:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
}

/* Mobil düzenlemeler */
@media (max-width: 768px) {
    .mission-vision .row {
        flex-direction: column;
    }
    
    .mission-vision .col {
        margin-bottom: 30px;
    }
    
    .mission-vision .col:last-child {
        margin-bottom: 0;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

/* Avva Banner özelleştirilmiş stiller */
.avva-banner {
    margin-top: 30px; /* 40px'ten 30px'e düşürüldü */
    background-color: #f8f8f8;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.avva-banner .brand-logo h2 {
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.8px;
}

/* Slaytların farklı markalara göre ayarlanması */
.slider + .slider {
    margin-top: 0;
}

/* İki slider arasında boşluk düzenlemesi */
.avva-slider {
    margin-bottom: 40px; /* 50px'den 40px'e düşürüldü */
}

/* Mobil görünüm düzenlemeleri */
@media (max-width: 768px) {
    .avva-banner {
        margin-top: 30px;
        padding-top: 10px;
    }
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

#lottie-container {
    width: 200px;
    height: 200px;
}

body.loading {
    overflow: hidden;
    height: 100vh;
}

/* Fix for FOUC (Flash of Unstyled Content) */
body.loading .container,
body.loading header,
body.loading section,
body.loading footer {
    opacity: 0;
}

/* Smooth transitions for all elements */
.container, header, section, footer, .logo, .logo-text, nav ul, .slider, .slide-grid {
    transition: opacity 0.3s ease;
    will-change: opacity;
}

/* Force hardware acceleration for smoother transitions */
header, 
.slider,
.slide-grid,
.brand-banner,
.feature,
.store {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000;
    -moz-perspective: 1000;
    -ms-perspective: 1000;
    perspective: 1000;
}
