:root {
    --bg-color: #eef0f4;
    --main-bg-color: #f8f9fb;
    --hero-bg-color: #f8f9fb;
    --dark-bg-color: #1a1a1a;
    --text-color: #000000;
    --light-text-color: #ffffff;
    --primary-color: #4a4a4a;
    --secondary-color: #888888;
    --accent-color: #4a40ff;
    --green-accent: #00b894;
    --orange-placeholder: orange;
    --border-radius-main: 40px;
    --border-radius-small: 10px;
}

/* === Custom Scrollbar Design === */
/* Web için modern ve şık scrollbar tasarımı */
::-webkit-scrollbar {
    width: 14px;
}

::-webkit-scrollbar-track {
    background: #f0f2f5;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
    border: 1px solid #e1e5e9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0062E6, #33AEFF, #00b894);
    border-radius: 10px;
    border: 2px solid #f0f2f5;
    box-shadow: 0 2px 8px rgba(0,98,230,0.2);
    transition: all 0.3s ease;
    min-height: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #004bb5, #0062E6, #00a085);
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0,98,230,0.4);
    border: 2px solid #e8ecf0;
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #003a8c, #004bb5, #007766);
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-corner {
    background: #f0f2f5;
}

/* Firefox için modern scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: #0062E6 #f0f2f5;
}

/* Mobilde scrollbar'ı tamamen gizle */
@media (max-width: 768px) {
    ::-webkit-scrollbar {
        width: 0px;
        background: transparent;
        display: none;
    }
    
    ::-webkit-scrollbar-track {
        background: transparent;
    }
    
    ::-webkit-scrollbar-thumb {
        background: transparent;
        display: none;
    }
    
    ::-webkit-scrollbar-corner {
        background: transparent;
    }
    
    * {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    html {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    body {
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    /* Mevcut contact-section'ı mobilde gizle */
    .contact-section {
        display: none !important;
    }
}

/* === Scroll to Top Button === */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    background: rgba(0, 0, 0, 0.95);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Mobilde biraz daha küçük */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 50px;
        height: 50px;
        bottom: 25px;
        right: 25px;
        font-size: 1.3rem;
    }
}

/* === MOBİL ÖZEL CONTACT-SECTION === */
.mobile-contact-section {
    display: none !important; /* Masaüstünde gizli */
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

@media screen and (max-width: 768px) {
    .mobile-contact-section {
        display: block !important;
        background: linear-gradient(to right, #0062E6, #33AEFF);
        background: -webkit-linear-gradient(left, #0062E6, #33AEFF); /* Opera uyumluluğu */
        background: -moz-linear-gradient(left, #0062E6, #33AEFF); /* Firefox uyumluluğu */
        color: white;
        margin-top: 20px;
        margin-bottom: 25px;
        border-radius: var(--border-radius-main);
        -webkit-border-radius: 25px; /* Safari/Opera fallback */
        -moz-border-radius: 25px; /* Firefox fallback */
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Opera/Safari uyumluluğu */
        -moz-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3); /* Firefox uyumluluğu */
        padding: 20px 15px;
    }
    
    .mobile-contact-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }
    
    .mobile-intro-section {
        text-align: center;
        margin-bottom: 10px;
    }
    
    .mobile-intro-section h3 {
        font-size: 1.2rem;
        margin: 0 0 8px 0;
        text-align: center;
    }
    
    .mobile-intro-section p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 0;
        text-align: center;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .mobile-links-section {
        display: flex;
        justify-content: space-around;
        gap: 20px;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .mobile-links-column {
        flex: 1;
        text-align: center;
    }
    
    .mobile-links-column h3 {
        font-size: 1rem;
        margin: 0 0 8px 0;
        text-align: center;
    }
    
    .mobile-links-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-links-column li {
        margin: 4px 0;
        text-align: center;
    }
    
    .mobile-links-column a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.3s;
    }
    
    .mobile-links-column a:hover {
        color: #fff;
        text-decoration: underline;
    }
    
    .mobile-contact-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        align-items: center;
    }
    
    .mobile-buttons-row {
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .mobile-btn {
        flex: 1;
        max-width: 140px;
        padding: 10px 15px;
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        color: white;
        transition: background-color 0.3s ease;
    }
    
    .mobile-phone-btn {
        background-color: #d42d3e;
    }
    
    .mobile-phone-btn:hover {
        background-color: #ff4c4c;
    }
    
    .mobile-whatsapp-btn {
        background-color: #3fc756;
    }
    
    .mobile-whatsapp-btn:hover {
        background-color: #4be067;
    }
    
    .mobile-social-icons {
        display: flex;
        gap: 12px;
        margin: 10px 0;
        justify-content: center;
    }
    
    .mobile-social-icon {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.2);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }
    
    .mobile-social-icon:hover {
        background-color: rgba(255, 255, 255, 0.3);
    }
    
    .mobile-subscribe-form {
        display: flex;
        gap: 5px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .mobile-subscribe-form input[type="email"] {
        flex: 1;
        padding: 8px 12px;
        border-radius: 8px;
        border: none;
        font-size: 0.9rem;
        outline: none;
    }
    
    .mobile-subscribe-form button {
        padding: 8px 15px;
        background-color: #000;
        border: none;
        border-radius: 8px;
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease;
        font-size: 0.9rem;
    }
    
    .mobile-subscribe-form button:hover {
        background-color: #333;
    }
    
    .mobile-footer-info {
        text-align: center;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.3;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

html,body{
    overflow-x:hidden;
}

.page-wrapper {
    width: calc(100% - 40px); /* 20px margin each side without overflow */
    max-width: 1400px;
    margin: 20px auto; /* top/bottom 20px, center horizontally */
}

/* Page transition effects disabled */
.page-transition {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    z-index: -1 !important;
}

/* Hide any transition overlays */
.page-transition,
.page-transition.fade-in,
.page-transition-hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Remove transition animations */
@keyframes pageFadeOut {
    from { opacity: 0; }
    to   { opacity: 0; }
}

@keyframes pageFadeIn {
    from { opacity: 0; }
    to   { opacity: 0; }
}

.container {
    background: linear-gradient(to bottom, #fff,#f5f5f5, #bdbdbd, #757575);
    border-radius: var(--border-radius-main);
    padding: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.05);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

header .logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

header nav ul li a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    padding: 10px 20px;
    border-radius: var(--border-radius-small);
    transition: all 0.3s ease;
}

header nav ul li a.active,
header nav ul li a:hover {
    background-color: var(--text-color);
    color: var(--light-text-color);
}

.header-icons a {
    font-size: 1.2rem;
    color: var(--text-color);
    border: 2px solid #000; /* Siyah border */
    padding: 8px; /* Border ile ikon arasında boşluk */
    border-radius: 50%; /* Yuvarlak çerçeve */
    display: inline-flex; /* İkonu ortalamak için */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Hover için yumuşak geçiş */
    text-decoration: none; /* Alt çizgiyi kaldırır */
}

.header-icons a:hover {
    background-color: #000; /* Üzerine gelince arka plan siyah olur */
    color: #fff; /* İkon rengi beyaz olur */
    transform: scale(1.1); /* Hafif büyür */
}

main {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 20px;
    padding: 20px 40px;
}

.sidebar {
    display: flex;
    flex-direction: column; /* Kutuları dikey dizer */
    gap: 20px; /* Kutular arası boşluk */
    padding-top: 100px;
}

.menu-box {
    list-style: none;
    background-color: var(--text-color); /* Siyah kutu */
    color: var(--light-text-color); /* Yazı rengi */
    padding: 40px 20px; /* İç boşluk (yüksek padding yazıyı büyütür) */
    border-radius: 40px;
    text-align: center; /* Yazıyı ortalar */
    font-size: 20px; /* Yazı boyutu */
    font-weight: bold; /* Yazıyı kalın yapar */
    cursor: pointer; /* Üzerine gelince tıklanabilir görünür */
    transition: transform 0.2s, background-color 0.2s; /* Animasyon efekti */
}

.menu-box:hover {
    transform: scale(1.1); /* Üzerine gelince hafif büyür */
    background:linear-gradient(to right, #0062E6, #33AEFF); ; /* Üzerine gelince renk değişir */
    color: #fff;
}

.sidebar ul li {
    padding: 15px 10px;
    cursor: pointer;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar ul li.active {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
}

.sidebar ul .show-more {
    background-color: #000;
    border: 1px solid #333;
    border-radius: 10%;
    width: 200px;
    height: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px auto 0;
    font-size: 0.9rem;
}

.show-more span {
    color: #fdd835;
    font-size: 1.5rem;
}

.hero {
    display: block;
    align-items: flex-start;
    gap: 20px;
    background-color: transparent;
    border-radius: var(--border-radius-main);
    padding: 0;
    margin-top: -30px;
}

.hero-left{
    background: transparent;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    position: relative;
    padding: 40px;
    display: flex;
    align-items: center;
    min-height: 450px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%; /* genişlik tam, ikonlar görsel altına hizalanabilir */
}

.hero-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-title-image {
    margin-left: 80px;
    width: 500px;
    height: 500px;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 10px;
}

.hero-right {
    display: none;
}

.info-box {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-main);
    padding: 15px;
    width: 100%;
}

.info-box-header {
    margin-bottom: 10px;
}

.info-box-header span {
    background-color: var(--green-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
}

.info-box-header p {
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
}

.info-box-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-response {
    display: flex;
    align-items: center;
    background: white;
    padding: 5px;
    border-radius: var(--border-radius-small);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.person-image {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--orange-placeholder);
    margin-right: 8px;
}

.quick-response span {
    font-size: 0.8rem;
    font-weight: 600;
}

.extra-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.extra-info span{
    background-color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.search-section {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--main-bg-color);
    border-radius: var(--border-radius-main);
    padding: 10px 20px;
    margin: 20px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.search-section .search-bar {
    flex: 1;
}

.search-section .search-options {
    display: flex;
    justify-content: flex-end;
    flex: 0 0 auto;
}

.search-section .show-all-btn {
    white-space: nowrap;
}

.search-bar {
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    padding: 15px 20px;
    box-shadow: none;
    border: 1px solid #eef0f4;
}

.search-bar i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.search-bar i.fa-microphone {
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.search-bar i.fa-microphone:hover {
    color: #000;
    transform: scale(1.1);
}

.search-bar i.fa-microphone.listening {
    color: #ff4444;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.search-bar input {
    border: none;
    outline: none;
    font-size: 1.1rem;
    width: 100%;
    margin: 0 15px;
}

.search-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.search-options .recent-btn {
    background-color: var(--main-bg-color);
    border: 1px solid #e0e0e0;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-options .recent-btn:hover {
    background-color: black;
    color: #fff;
}

.search-options .search-links a {
    text-decoration: none;
    color: var(--primary-color);
    margin: 0 20px;
    font-weight: 500;
}

.search-options .show-all-btn {
    background: linear-gradient(to right, #0062E6, #33AEFF); /* Sağdan sola mavi geçiş */
    color: white; /* Yazı beyaz */
    border: none; /* Çerçeve yok */
    width: 90px;
    height: 50px;
    border-radius:var(--border-radius-main);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-options .show-all-btn:hover {
    background: linear-gradient(to right, #0053c7, #1d99f3); /* Daha koyu mavi gradient */
    transform: scale(1.05); /* Hafif büyüme efekti */
}

.search-options span {
    margin-left: 10px;
}

.social-promo {
    margin-top: 40px;
    text-align: center;
}
.social-promo h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}
.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.social-icons-large a {
    font-size: 2.8rem;
    color: #000;
    transition: color 0.3s;
}
.social-icons-large a:hover { 
    transform: scale(1.5); 
    background: linear-gradient(to right, #0062E6, #33AEFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-left .social-icons{
    margin-top:-30px;
}

.categories {
    margin-top: 20px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: var(--border-radius-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.categories h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
}

.category-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.category-item {
    background-color: #fff;
    border-radius: var(--border-radius-main);
    text-align: center;
    flex: 1;
    overflow: hidden;
    padding-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

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

.category-image {
    overflow: hidden;
    border-radius: 20px;
}

.category-image img {
    width: 60%;
    height: 260px;
    object-fit: cover;
    border-radius: var(--border-radius-main);
    transition: transform 0.3s ease;
}

.category-item span {
    font-weight: 600;
    color: #fff;
}

.category-span-view {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--border-radius-main);
    display: inline-block;
    margin: 0 auto;
    text-align: center;
    transition: all 0.3s ease;
}

.category-item:hover .category-span-view {
    background-color: #333;
    transform: scale(1.05);
}

/* Ana bölüm tasarımı */
.daily-deals {
    background-color: #000;
    color: var(--light-text-color);
    padding: 40px;
    border-radius: var(--border-radius-main);
    margin-top: 20px;
}

/* Başlık ve bağlantı kısmı */
.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.deals-header h2 {
    font-size: 1.8rem;
}

.deals-header a {
    color: var(--light-text-color);
    text-decoration: none;
    border: 2px solid #fff;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.deals-header a:hover {
    background-color: white;
    border: 2px solid white;
    color: black;
    transform: scale(1.1);
}

.contact-section {
    background: linear-gradient(to right, #0062E6, #33AEFF);
    color: white;
    margin-top: 20px;
    border-radius: var(--border-radius-main);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  
  .contact-container {
    background: linear-gradient(to right, #0062E6, #33AEFF);
    display: flex;
    padding: 20px 40px;
    gap: 40px;
    align-items: flex-start;
    border-radius: var(--border-radius-main);
    justify-content: space-between;
  }
  
  /* Sol taraf başlık ve açıklama */
  .left-side h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .left-side p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
  }
  
  /* Sağ taraf butonlar ve form */
  .right-side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 320px;
    justify-content: center;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-radius: 15px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    color: white;
    transition: background-color 0.3s ease;
  }
  
  .phone-btn {
    background-color: #d42d3e; /* kırmızı */
  }
  
  .phone-btn:hover {
    background-color: #ff4c4c;
  }
  
  .whatsapp-btn {
    background-color: #3fc756; /* yeşil */
  }
  
  .whatsapp-btn:hover {
    background-color: #4be067;
  }
  
  .subscribe-form {
    display: flex;
    gap: 5px;
    margin-top: 8px;
  }
  
  .subscribe-form input[type="email"] {
    flex: 1;
    padding: 10px 12px;
    border-radius: var(--border-radius-small);
    border: none;
    font-size: 1rem;
    outline: none;
  }
  
  .subscribe-form button {
    padding: 10px 18px;
    background-color: #000;
    border: none;
    border-radius: var(--border-radius-small);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .subscribe-form button:hover {
    background-color: #fff;
    color: #000;
  }
  
  .privacy-text {
    margin-top: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
  }
  
/* Ürünler Sayfası Stilleri */
.products-section {
    padding: 40px;
    background: #fff;
    border-radius: var(--border-radius-main);
    margin-top: 20px;
}

.products-header {
    text-align: center;
    margin-bottom: 40px;
}

.products-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #000;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 25px;
    border: 2px solid #000;
    background: transparent;
    color: #000;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: #000;
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 550px));
    justify-content: center;
    gap: 30px;
    padding: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: white;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 600px;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: var(--border-radius-small);
}

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

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

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

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

.detail-btn {
    padding: 12px 30px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.product-card:hover .detail-btn {
    transform: translateY(0);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #000;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #444;
}

.product-features i {
    color: #00b894;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: #333;
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .products-section {
        padding: 15px 10px;
    }
    
    .products-header h1 {
        font-size: 2rem;
    }
    
    .filter-options {
        flex-wrap: nowrap;
        gap: 10px;
        padding: 0 10px;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 0;
        padding: 8px 5px;
        font-size: 0.85rem;
        white-space: nowrap;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 10px;
    }
    
    .product-card {
        max-width: none;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-info {
        padding: 12px;
        text-align: left;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .product-info p {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }
    
    .product-features {
        gap: 4px;
        margin-bottom: 12px;
    }
    
    .product-features span {
        font-size: 0.8rem;
    }
    
    .contact-btn {
        width: calc(100% - 16px);
        padding: 8px;
        font-size: 0.9rem;
        margin: 0 8px 8px 8px;
    }
}

/* Sosyal Medya İkonları */
.image-wrapper {
    position: relative;
    display: inline-block;
}

/* Alt satır: slogan + ikonlar */
.hero-subrow {
    display: flex;
    align-items: center;
    justify-content: space-between; /* ikonları sağa it */
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-right: 10%;
}

.social-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-4px) scale(1.1);
    background-color: #000;
    color: #fff;
}

@media (max-width: 768px) {
    .social-icons {
        position: static;
        margin-top: 15px;
        justify-content: flex-start;
    }
}

/* New footer columns and footer lists and footer social smaller variant */

/* Add your new styles here */

/* ===== Footer Columns ===== */
.contact-container{
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}
.about-side, .links-side, .legal-side{
    flex: 1 1 220px;
    min-width: 200px;
}
.footer-list{
    list-style:none;
    padding:0;
    margin-top:10px;
}
.footer-list li{
    margin:6px 0;
}
.footer-list a{
    color:#fff;
    text-decoration:none;
    transition:color .2s;
}
.footer-list a:hover{
    text-decoration:underline;
    color:#f1f1f1;
}
/* Sosyal ikonlar footer için küçültülmüş */
.footer-social{
    display:flex;
    gap:12px;
    margin-bottom:12px;
}
.footer-social .social-icon{
    width:36px;
    height:36px;
    font-size:1rem;
}

.footer-bottom{
    width:100%;
    text-align:center;
    margin-top:30px;
    color:#fff;
    font-size:0.9rem;
}

.links-legal-side-container{
    flex-direction:column;
}

.links-legal-side{
    display:flex;
    flex:1 1 380px;
    gap:60px;
    min-width:240px;
}
.links-legal-side .links-column,
.links-legal-side .legal-column{
    flex:1 1 150px;
    min-width:150px;
}

.about-side{
    max-width:300px;
}

/* === About Section Styles === */
.about-content{
    display:flex;
    flex-direction:column;
    gap:60px;
    margin-top:40px;
}
.about-block{
    display:flex;
    align-items:center;
    gap:40px;
}
.about-block.reverse{
    flex-direction:row-reverse;
}
.about-text{
    flex:1;
    color:#fff;
}
.about-text h3, .about-text h4{
    margin-bottom:15px;
    color:#fff;
}
.about-text ul{
    list-style:disc;
    margin-left:20px;
}


.about-image{
    flex:1 1 45%;
    max-width:600px;
    height:500px;
}
.about-image img{
    width:100%;
    height:100%;
    border-radius:var(--border-radius-main);
    box-shadow:0 8px 25px rgba(0,0,0,0.25);
    object-fit:fill
}

/* Scroll reveal slide */
.slide-left, .slide-right{
    opacity:0;
    transition:transform 0.8s ease-out, opacity 0.8s ease-out;
}
.slide-left{transform:translateX(-120px);}
.slide-right{transform:translateX(120px);}
.slide-left.in-view, .slide-right.in-view{
    opacity:1;
    transform:translateX(0);
}

/* Map Section */
.map-section {
    margin-top: 20px;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: var(--border-radius-main);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.map-section .map-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 600px;
    border-radius: var(--border-radius-main);
    overflow: hidden;
    margin-bottom: 17px;
}

#cities-map {
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
}

.custom-label {
    color: red;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-bottom: 5px;
    white-space: nowrap;
}

.custom-marker i {
    line-height: 1;
}

/* about page white container */
.about-container{
    background:#fff;
    margin-top: 30px;
}

/* Stats Section */
.stats-section{
    display:flex;
    flex-wrap:wrap;
    text-align:center;
    min-height:180px;
    border-radius: var(--border-radius-main);
    overflow:hidden;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
    margin-top: 20px;
    margin-bottom: 20px;
    justify-content:center;
}

.stat-card{
    flex:1 1 200px;
    padding:40px 20px;
    background:#fff;
    color:#000;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    position:relative;
    min-width:200px;
}
.stat-card.highlight{background: #FF6600;}
.stat-card i{font-size:48px;margin-bottom:20px;}
.stat-number{font-size:56px;font-weight:700;display:block;margin-bottom:10px;}
.stat-card:not(:last-child)::after{
    content:"";
    position:absolute;
    top:50%;
    right:0;
    transform:translateY(-50%);
    width:1px;
    height:60%;
    background:#000;
}
@media(max-width:768px){
    .stat-card:not(:last-child)::after{display:none;}
    .stats-section{
        min-height:140px;
        flex-wrap:nowrap;
    }
    .stat-card{
        flex:1 1 0;
        min-width:0;
        max-width:none;
        padding:10px 6px;
    }
    .stat-card i{
        font-size:24px;
        margin-bottom:8px;
    }
    .stat-number{
        font-size:28px;
        margin-bottom:4px;
    }
    .stat-card p{
        font-size:12px;
        line-height:1.2;
    }
}

@media(max-width:480px){
    .stat-card{
        flex:1 1 0;
        min-width:0;
        max-width:none;
        padding:10px 5px;
    }
    .stat-card i{
        font-size:20px;
        margin-bottom:6px;
    }
    .stat-number{
        font-size:24px;
        margin-bottom:3px;
    }
    .stat-card p{
        font-size:10px;
        line-height:1.1;
    }
}

/* Highlight for search matches */
.search-highlight{
    background: yellow;
    color:#000;
}

/* Search result indicator */
.search-info{
    position:fixed;
    top:20px;
    right:20px;
    background:#000;
    color:#fff;
    padding:10px 16px;
    border:2px solid #fff;
    border-radius:var(--border-radius-small);
    display:flex;
    align-items:center;
    gap:12px;
    z-index:10000;
    box-shadow:0 4px 12px rgba(0,0,0,0.3);
}
.search-info button{
    background:none;
    border:none;
    color:#fff;
    font-size:1rem;
    cursor:pointer;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 768px){
  .container{padding:20px 15px;border-radius:20px;}
  .page-wrapper{width:100%;margin:0;}
  header{flex-direction:row;justify-content:space-between;align-items:center;gap:10px;padding:18px 20px;}
  header nav ul{flex-wrap:wrap;gap:15px;justify-content:center;}
  .hero{display:flex;flex-direction:column;align-items:center;padding:0 !important;}
  .hero-left{padding:5px 0 !important;margin:0 !important;}
  .hero-title-wrapper{display:flex;flex-direction:column;align-items:center;gap:10px;}
  .hero-title-image{order:2;margin-top:15px;}
  .hero-content h1{order:3;}
  .hero-tagline{display:none;}
  .social-icons{position:static;transform:none;justify-content:center;margin:15px 0 0;gap:20px;}
  .search-bar{padding:8px 12px;}
  .category-list{justify-content:center;gap:15px;flex-wrap:wrap;}
  .category-item{flex:1 1 45%;max-width:180px;}
  .category-span-view{padding:6px 10px;}
  .category-span-view span{font-size:0.9rem;}
  .about-block,.about-block.reverse{flex-direction:column;text-align:center;gap:20px;}
  .about-image{max-height:260px;height:auto;}
  .container{padding:15px 15px 35px 15px;}
  .intro-section{flex-direction:column;align-items:center;}
  .intro-section img{max-width:90%;height:auto;margin:0}
  .intro-text{margin:0;}
  .contact-container{flex-direction:column;align-items:stretch;text-align:left;}
  .links-legal-side{flex-direction:column;gap:30px;}
  
  /* Mobile contact-section reorganization */
  .contact-section {
    padding:10px 8px !important;
    margin-bottom:25px !important;
  }
  
  .contact-section .contact-container {
    display:flex;
    flex-direction:column;
    gap:0px;
    padding:5px !important;
  }
  
  /* Create a wrapper for top row elements */
  .contact-container > .left-side.about-side,
  .contact-container > .links-legal-side-container {
    display:inline-block;
  }
  
  /* DIRECT FLEX FOR SIDE BY SIDE */
  .contact-container {
    display:flex;
    flex-direction:row;
    flex-wrap:wrap;
    gap:2px;
    align-items:flex-start;
  }
  
  .contact-container > .left-side.about-side {
    flex: 0 0 35%;
    font-size:8px;
    padding:2px;
    margin:0;
    box-sizing:border-box;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
  }
  
  .contact-container > .left-side.about-side h3 {
    text-align: center;
    width: 100%;
    margin: 0 auto;
  }
  
  .contact-container > .links-legal-side-container {
    flex: 0 0 63%;
    padding:0;
    margin:0;
    box-sizing:border-box;
  }
  
  .contact-container > .right-side {
    flex: 1 1 100%;
    width:100%;
    margin-top:2px;
  }
  
  /* COMPACT GRID LAYOUT */
  .right-side {
    width:100%;
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap:2px;
    margin-top:1px;
    grid-template-areas:
      "phone social"
      "whatsapp social" 
      "email email";
  }
  
  .phone-btn {
    grid-area:phone;
  }
  
  .whatsapp-btn {
    grid-area:whatsapp;
  }
  
  .footer-social {
    grid-area:social;
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    margin:0 !important;
  }
  
  .subscribe-form {
    grid-area:email;
    width:100%;
  }
  
  /* Smaller buttons and form elements */
  .btn {
    padding:8px 0 !important;
    font-size:14px !important;
  }
  
  .footer-social {
    gap:8px !important;
    margin-bottom:8px !important;
  }
  
  .footer-social .social-icon {
    width:28px !important;
    height:28px !important;
    font-size:12px !important;
  }
  
  .subscribe-form {
    gap:3px !important;
    margin-top:5px !important;
  }
  
  .subscribe-form input[type="email"] {
    padding:6px 8px !important;
    font-size:12px !important;
  }
  
  .subscribe-form button {
    padding:6px 12px !important;
    font-size:12px !important;
  }
  
  /* Hide privacy text on mobile */
  .privacy-text {
    display:none !important;
  }
  
  /* CENTERED LINKS LAYOUT */
  .links-legal-side {
    display:flex;
    flex-direction:row;
    gap:3px;
    justify-content:space-between;
    align-items:flex-start;
    width:100%;
    padding:0;
    margin:0;
  }
  
  .links-column, .legal-column {
    flex:1 1 50%;
    min-width:0;
    text-align:center;
    padding:1px;
  }
  
  .links-column h3, .legal-column h3 {
    font-size:9px;
    margin-bottom:1px;
    text-align:center;
    width: 100%;
  }
  
  .left-side h3 {
    font-size:9px;
    margin-bottom:1px;
    text-align:center;
    width: 100%;
  }
  
  .footer-list li {
    margin:0;
    text-align: center;
  }
  
  .footer-list a {
    font-size:7px;
    text-align: center;
  }
  
  .left-side p {
    font-size:7px;
    line-height:1.1;
    margin:0;
    text-align:center;
    width: 100%;
  }
  
  /* Hide desktop footer-bottom in mobile */
  .footer-bottom {
    display:none !important;
  }
  
  /* COMPACT FOOTER */
  .contact-section::after {
    content: "© 2025 Onur Petrol. Tüm hakları saklıdır. \A Bu site, Mert Aladağ tarafından tasarlanmış ve kodlanmıştır.";
    white-space: pre-line;
    display:block;
    text-align:center;
    padding:2px 5px;
    background:rgba(255,255,255,0.1);
    color:#fff;
    font-size:8px;
    line-height:1.1;
    margin-top:2px;
    margin-bottom:15px;
    border-radius:var(--border-radius-small);
  }
  /* Mobile Map Section */
  .map-section {
    padding:10px 15px !important;
    margin-top:15px !important;
  }
  
  .map-section .map-title {
    font-size:1.4rem !important;
    margin-bottom:15px !important;
  }
  
  .map-container {
    height:250px !important;
    margin-bottom:10px !important;
  }
  
  #cities-map {
    height:230px !important;
  }
  
  /* hide header phone icon */
  .header-icons{display:none;}
  /* category image fit */
  .category-image img{width:100%;height:auto;object-fit:contain;}
  /* daily deals blocks vertical */
  .about-block,.about-block.reverse{flex-direction:column !important;text-align:center;}
  .about-image{height:auto;max-height:300px;}
  /* Fix bottom spacing for image 4.jpg */
  .about-image img[src*="4.jpg"]{margin-bottom:20px !important;}
  .about-image img[alt*="Nakliye"]{margin-bottom:20px !important;}
  .slide-left img[src*="4.jpg"]{margin-bottom:20px !important;}
  /* Container padding for last about-block */
  .about-block:last-child{margin-bottom:20px !important;}
  .about-block:last-child .about-image{padding-bottom:20px !important;}
  /* search button hide */
  .show-all-btn{display:none;}
  /* Sidebar boxes center below header */
  .sidebar{display:flex !important;flex-direction:row !important;justify-content:center !important;align-items:center;gap:12px;width:100%;margin:0 !important;}
  .menu-box{width:130px;height:130px;border-radius:30px;padding:20px 5px;display:flex;align-items:center;justify-content:center;font-size:0.85rem;}
  /* hero image center */
  .hero-title-image{width:240px;height:auto;margin:0 auto;}
  /* Hide large hero title on mobile */
  .hero-content h1{
    display:block;
    padding-bottom: 0;
    word-wrap:break-word;
    overflow-wrap:break-word;
    white-space:normal;
    line-height:1.6;
    padding:5px 0;
    margin:5px 0 0 0;
  }
  /* Show tagline, center */
  .hero-tagline{display:block;text-align:center;font-size:1rem;margin-top:10px;}
  /* Place tagline/social icons together */
  .hero-subrow{display:none !important;}
  .sidebar{order:0 !important;}
  .hero-left{order:1;}
}
@media (max-width: 480px){
  .search-bar input{font-size:1rem;}
  .show-all-btn{width:100%;height:44px;}
  .social-icon{width:42px;height:42px;font-size:1rem;}
  .social-icons-large a{font-size:2.2rem;}
  #modalBox{width:95%;padding:20px;}
  
  /* Smaller filter buttons for very small screens */
  .filter-btn {
    padding: 6px 3px !important;
    font-size: 0.75rem !important;
    text-align: center !important;
  }
  
  /* Extra small product cards */
  .products-grid {
    gap: 10px !important;
    padding: 8px !important;
  }
  
  .product-image {
    height: 150px !important;
  }
  
  .product-info {
    padding: 8px !important;
    text-align: left !important;
  }
  
  .product-info h3 {
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }
  
  .product-info p {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
  }
  
  .product-features span {
    font-size: 0.75rem !important;
  }
  
  .contact-btn {
    padding: 6px !important;
    font-size: 0.8rem !important;
    margin: 0 6px 6px 6px !important;
  }
}

/* Very small screens - prevent logo text wrapping */
@media (max-width: 385px){
  header .logo {
    font-size: 1.4rem !important;
    white-space: nowrap;
  }
}

@media (max-width: 320px){
  header .logo {
    font-size: 1.2rem !important;
    white-space: nowrap;
  }
}
/* -------------------------------------------- */

/* Hamburger */
.hamburger{display:none;width:28px;height:22px;flex-direction:column;justify-content:space-between;cursor:pointer;}
.hamburger span{display:block;height:3px;background:#000;border-radius:3px;transition:transform .3s,opacity .3s;}
body.nav-open .hamburger span:nth-child(1){transform:translateY(9px) rotate(45deg);} 
body.nav-open .hamburger span:nth-child(2){opacity:0;} 
body.nav-open .hamburger span:nth-child(3){transform:translateY(-9px) rotate(-45deg);}


@media(max-width:768px){
  .hamburger{display:flex !important;}
  header nav ul{
    position:fixed;
    top:0;
    left:0;
    right:0;
    background: linear-gradient(135deg, #0062E6, #33AEFF);
    flex-direction:column;
    align-items:center;
    gap:0;
    padding:80px 20px 40px 20px;
    transform:translateY(-100%);
    transition:transform .3s ease;
    z-index:10000;
    box-shadow:0 4px 20px rgba(0,0,0,0.3);
    border-radius:0 0 25px 25px;
  } 
  body.nav-open header nav ul{transform:translateY(0);}
  
  header nav ul li {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  
  header nav ul li a {
    display: block;
    padding: 15px 20px;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }
  
  header nav ul li:last-child a {
    border-bottom: none;
  }
  
  header nav ul li a:hover,
  header nav ul li a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white !important;
  }
  
  .header-icons {
    display: none;
  }
}

@media(max-width:768px){
  .category-list{flex-wrap:wrap;gap:15px;}
  .category-item{flex:1 1 45%;}
}

/* === MOBİL TAM DÜZEN ( <768px ) YENİDEN YAZILDI === */
@media (max-width: 768px) {
  /* Hero container centered */
  .hero{align-items:center;}
  .hero-title-wrapper{flex-direction:row;justify-content:center;align-items:center;gap:14px;margin-top:10px;}
  .hero-title-image{width:160px;height:auto;flex-shrink:0;}
  .hero-content h1{font-size:1.1rem;width:100%;max-width:none;text-align:left;word-wrap:break-word;overflow-wrap:break-word;white-space:normal;line-height:1.6;padding:5px 0;margin:5px 0 0 0;}
  .hero-tagline{display:none !important;}
  .sidebar{justify-content:center;margin:0 !important;}
  .social-icons{justify-content:center;margin:0;}
}

@media(max-width:768px){
  .sidebar{flex-wrap:nowrap !important;}
  .menu-box{flex:1 1 45%;max-width:none;width:auto;}
}
@media(max-width:480px){
  .menu-box{flex:1 1 48%;}
}

@media(max-width:768px){
  .hero-title-image{display:none;}
  .hero-left{order:0;}
  .hero-tagline{display:block;font-size:1rem;text-align:center;margin-bottom:10px;}
  .sidebar{order:1;margin:0 !important;}
  .social-icons{order:2;display:flex;justify-content:center;margin:0;}
}

/* ---- Son mobil düzeltmeler ---- */
@media (max-width: 768px){
  /* Görsel + başlık yan yana */
  .hero-title-wrapper{
      display:flex;
      flex-direction:row;
      align-items:center;
      justify-content:center;
      gap:14px;
      margin:8px 0 0 0;
      width:100%;
  }
  .image-wrapper{order:1;}
  .hero-title-image{
      width:160px;
      height:auto;
      display:block !important;
      flex-shrink:0;
  }
  .hero-content h1{
      order:2;
      font-size:1.1rem;
      line-height:1.6;
      text-align:left;
      width:100%;
      max-width:none;
      margin:5px 0 0 0;
      word-wrap:break-word;
      overflow-wrap:break-word;
      white-space:normal;
      flex:1;
      padding:5px 0;
  }
  /* Ana akış: hero → sidebar → sosyal → arama */
  main{display:flex;flex-direction:column;align-items:center;}
  .hero{order:1 !important;width:100%;}
  .sidebar{order:2 !important;}
  .social-icons{order:3 !important;}
  .menu-box{
      width:100px;height:100px;
      border-radius:18px;
      padding:10px 2px;
      font-size:.9rem;
      flex:1 1 45%;
  }
  .search-section{
      order:4;
      margin:0;
  }
  .hero-tagline{display:none!important;}
}

/* Mobile-only social icons - clean implementation */
.social-icons-mobile-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .hero .social-icons {
        display: none !important; /* hide desktop social icons */
    }
    
    .social-icons-mobile-only {
        display: flex !important;
        display: -webkit-flex !important;
        display: -moz-flex !important;
        justify-content: center !important;
        -webkit-justify-content: center !important;
        align-items: center;
        gap: 16px;
        margin: 10px 0;
        order: 3;
        width: 100%;
        flex-wrap: wrap;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        left: auto !important;
        height: auto !important;
    }
    
    .social-icons-mobile-only .social-icon {
        width: 40px !important;
        height: 40px !important;
        border-radius: 50% !important;
        background-color: #f0f0f0 !important;
        color: #333 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
        border: 2px solid transparent !important;
    }
    
    .social-icons-mobile-only .social-icon:hover {
        background-color: #333 !important;
        color: #fff !important;
        transform: translateY(-2px) !important;
        border-color: #333 !important;
    }
}

@media(max-width:768px){
  .hero-left{min-height:auto !important;height:auto !important;padding:10px 0 !important;display:flex;justify-content:center;align-items:center;}
  .hero{padding:0 !important;}
  .hero-content{margin:0 !important;padding:0 !important;}
  .sidebar{margin:0 !important;}
}

@media(max-width:768px){
  /* swap order: heading left, image right */
  .hero-title-wrapper{flex-direction:row-reverse;}
  /* reduce space between hero and sidebar */
  .hero-title-wrapper{margin:8px 0 0 0 !important;}
  .hero-left{padding:5px 0 !important;margin:0 !important;}
  .sidebar{margin:0 !important;}
}

/* Final mobile spacing fix */
@media(max-width:768px){
  .hero-left{
    min-height:auto !important;
    height:auto !important;
    padding:10px 0 !important;
    margin:0 !important;
  }
  .hero-content{
    margin:0 !important;
    padding:5px 0 !important;
    width:100%;
    flex:1;
  }
  .hero-title-wrapper{
    margin:8px 0 0 0 !important;
    padding:0 !important;
  }
  .sidebar{
    margin:0 !important;
    padding:0 !important;
  }
}

/* Mobile Touch Hover Effects */
@media (hover: none) and (pointer: coarse) {
  /* Menu boxes */
  .menu-box:active {
    background-color: #333;
    transform: scale(0.95);
  }
  
  /* Category items */
  .category-item:active {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  .category-item:active .category-image img {
    transform: scale(1.1);
  }
  
  .category-item:active .category-span-view {
    background-color: #333;
    transform: scale(1.05);
  }
  
  /* Social icons */
  .social-icon:active {
    transform: translateY(-4px) scale(1.1);
    background-color: #000;
    color: #fff;
  }
  
  /* Buttons */
  .phone-btn:active {
    background-color: #ff4c4c;
  }
  
  .whatsapp-btn:active {
    background-color: #4be067;
  }
  
  .subscribe-form button:active {
    background-color: #fff;
    color: #000;
  }
  
  .deals-header a:active {
    background-color: white;
    border: 2px solid white;
    color: black;
    transform: scale(1.1);
  }
  
  .contact-btn:active {
    background: #333;
    transform: scale(1.02);
  }
  
  /* Navigation */
  header nav ul li a:active {
    color: #333;
  }
  
  /* Search button */
  .search-options .show-all-btn:active {
    background: linear-gradient(to right, #0053c7, #1d99f3);
    transform: scale(1.05);
  }
  
  /* Footer links */
  .footer-list a:active {
    text-decoration: underline;
    color: #f1f1f1;
  }
  
  /* Product cards */
  .product-card:active {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  }
  
  .product-card:active .product-image img {
    transform: scale(1.1);
  }
  
  .product-card:active .product-overlay {
    opacity: 1;
  }
  
  .product-card:active .detail-btn {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Filter buttons */
  .filter-btn:active {
    background: #000;
    color: #fff;
    transform: scale(1.05);
  }
  
  /* Stats cards */
  .stat-card:active {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
}

/* Alternative touch support for all devices */
@media (max-width: 768px) {
  /* Menu boxes */
  .menu-box:active,
  .menu-box:focus {
    background-color: #333;
    transform: scale(0.95);
  }
  
  /* Category items */
  .category-item:active,
  .category-item:focus {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  }
  
  /* Social icons */
  .social-icon:active,
  .social-icon:focus {
    transform: translateY(-4px) scale(1.1);
    background-color: #000;
    color: #fff;
  }
  
  /* Buttons */
  .phone-btn:active,
  .phone-btn:focus {
    background-color: #ff4c4c;
  }
  
  .whatsapp-btn:active,
  .whatsapp-btn:focus {
    background-color: #4be067;
  }
  
  /* Stats cards */
  .stat-card:active,
  .stat-card:focus {
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }
  
  /* Footer links in mobile contact section */
  .footer-list a:active,
  .footer-list a:focus {
    color: #f1f1f1;
    text-decoration: underline;
  }
  
}

/* Modal styles for legal pages */
#modalOverlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, 0.75) !important;
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 10000 !important;
    backdrop-filter: blur(3px) !important;
    animation: fadeIn 0.3s ease !important;
}

#modalBox {
    background: #fff !important;
    max-width: 900px !important;
    width: 95% !important;
    max-height: 90vh !important;
    overflow: auto !important;
    border-radius: 20px !important;
    position: relative !important;
    color: #000 !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4) !important;
    animation: slideIn 0.4s ease !important;
    scroll-behavior: smooth !important;
}

#modalBox h2 {
    margin: 0 !important;
    font-size: 1.5rem !important;
    color: #000 !important;
    font-weight: 600 !important;
}

#modalBox h3 {
    color: #000 !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin-top: 25px !important;
    margin-bottom: 15px !important;
}

#modalBox p {
    color: #333 !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

#modalBox ul {
    color: #333 !important;
    padding-left: 20px !important;
}

#modalBox li {
    color: #333 !important;
    margin: 8px 0 !important;
}

#modalBox a {
    color: #0062E6 !important;
    text-decoration: none !important;
}

#modalBox a:hover {
    text-decoration: underline !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile modal optimizations */
@media (max-width: 768px) {
    #modalBox {
        width: 98% !important;
        max-height: 95vh !important;
        margin: 0 1% !important;
        border-radius: 15px !important;
    }
    
    #modalBox h2 {
        font-size: 1.3rem !important;
    }
    
    #modalBox h3 {
        font-size: 1.1rem !important;
    }
    
    #modalContent {
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    #modalBox {
        width: 100% !important;
        height: 100% !important;
        max-height: 100vh !important;
        border-radius: 0 !important;
        margin: 0 !important;
    }
    
    #modalBox h2 {
        font-size: 1.2rem !important;
    }
}

/* 🗺️ PREMIUM MAP STYLES - cPanel Optimized */
.premium-map-section {
    padding: 40px 20px;
    background: #fff;
    border-radius: 25px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    background: #000;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.premium-map-container {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.interactive-map {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 🗺️ LEAFLET PROFESSIONAL MAP SYSTEM */
.leaflet-professional-map {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 17px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
}

/* Leaflet Map Container */
.leaflet-map-container {
    flex: 1;
    height: 100%;
    position: relative;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
}

/* Leaflet Custom Styles */
.leaflet-container {
    height: 100% !important;
    border-radius: 0 15px 15px 0;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.leaflet-control-zoom a {
    background: rgba(255, 255, 255, 0.9) !important;
    color: #333 !important;
    border: none !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease !important;
}

.leaflet-control-zoom a:hover {
    background: linear-gradient(135deg, #0062E6, #33AEFF) !important;
    color: white !important;
    transform: scale(1.05);
}

/* Custom Marker Animation */
@keyframes markerBounce {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-5px); }
}

.custom-marker {
    background: transparent !important;
    border: none !important;
}

/* Custom Popup Styles */
.leaflet-popup-content-wrapper {
    border-radius: 15px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.leaflet-popup-content {
    margin: 15px !important;
    font-family: 'Poppins', sans-serif !important;
}

.leaflet-popup-tip {
    background: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .leaflet-professional-map {
        flex-direction: column;
    }
    
    .map-info-overlay {
        flex: none;
        border-radius: 15px 15px 0 0;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding: 20px;
    }
    
    .leaflet-map-container {
        border-radius: 0 0 15px 15px;
        min-height: 300px;
    }
    
    .company-info h3 {
        font-size: 1.2rem !important;
        margin-bottom: 15px;
    }
    
    .address-details p {
        font-size: 0.9rem !important;
        margin: 6px 0;
    }
    
    .quick-actions {
        flex-direction: row !important;
        gap: 8px;
    }
    
    .map-btn {
        padding: 10px 16px !important;
        font-size: 0.85rem !important;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .premium-map-container {
        height: 450px !important;
    }
    
    .map-info-overlay {
        padding: 15px;
    }
    
    .leaflet-map-container {
        min-height: 250px;
    }
    
    .company-info h3 {
        font-size: 1.1rem !important;
    }
    
    .address-details p {
        font-size: 0.85rem !important;
    }
    
    .map-btn {
        padding: 8px 12px !important;
        font-size: 0.8rem !important;
    }
}

/* Gereksiz CSS'ler kaldırıldı - Leaflet kullanıyoruz */

.road {
    position: absolute;
    border-radius: 1px;
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

.main-road {
    background: linear-gradient(90deg, #ffffff, #f8f9fa, #ffffff);
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.main-road.vertical {
    background: linear-gradient(180deg, #ffffff, #f8f9fa, #ffffff);
}

.secondary-road {
    background: linear-gradient(90deg, #f8f9fa, #e9ecef, #f8f9fa);
    border: 0.5px solid #e9ecef;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.secondary-road.vertical {
    background: linear-gradient(180deg, #f8f9fa, #e9ecef, #f8f9fa);
}

.small-road {
    background: #e9ecef;
    border: 0.5px solid #dee2e6;
    opacity: 0.8;
}

.small-road.vertical {
    background: #e9ecef;
}

/* Road Intersections */
.intersection {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #ffffff, #f8f9fa);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 3;
}

/* Buildings and Areas */
.buildings-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.building {
    position: absolute;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    opacity: 0.9;
}

.building.commercial {
    background: linear-gradient(135deg, #70a1ff, #5352ed);
    animation: buildingGlow 4s infinite;
}

.building.residential {
    background: linear-gradient(135deg, #ffa726, #ff9800);
}

.green-space {
    position: absolute;
    background: linear-gradient(135deg, #2ed573, #1dd1a1);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    opacity: 0.8;
}

/* Professional Location Marker */
.location-marker-container {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 15;
}

.location-marker-pro {
    position: relative;
    animation: markerFloat 3s ease-in-out infinite;
}

.marker-shadow {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 8px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.3), transparent);
    border-radius: 50%;
    animation: shadowPulse 3s ease-in-out infinite;
}

.marker-body {
    width: 28px;
    height: 35px;
    background: linear-gradient(135deg, #ff4757, #ff3838);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 3px solid #ffffff;
    box-shadow: 
        0 4px 20px rgba(255, 71, 87, 0.4),
        inset 0 2px 4px rgba(255,255,255,0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-tip {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 6px;
    height: 6px;
    background: #ff4757;
    border-radius: 0 0 50% 0;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
}

.marker-inner {
    transform: rotate(45deg);
    font-size: 14px;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.location-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    border: 3px solid #ff4757;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: locationPulse 2s infinite;
    opacity: 0.6;
}

/* Location Info Popup */
.location-popup {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    min-width: 200px;
    opacity: 0;
    transform: translateX(-50%) translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 20;
}

.location-marker-container:hover .location-popup {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.popup-arrow {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 8px;
    background: rgba(255, 255, 255, 0.95);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.popup-content h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.popup-content p {
    margin: 4px 0;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

/* Area Labels */
.area-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.district-label {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
    transform: translate(-50%, -50%);
    white-space: nowrap;
}

.district-label.main-district {
    background: linear-gradient(135deg, #0062E6, #33AEFF);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 16px;
    border: 2px solid rgba(255,255,255,0.3);
    animation: districtGlow 4s infinite;
}

/* Interactive Overlay */
.map-interaction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 98, 230, 0.1), rgba(51, 174, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    z-index: 10;
}

.map-base-layer:hover .map-interaction-overlay {
    opacity: 1;
}

.interaction-hint {
    text-align: center;
    color: #0062E6;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.map-base-layer:hover .interaction-hint {
    transform: translateY(0);
}

.hint-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: hintFloat 2s ease-in-out infinite;
}

.interaction-hint h3 {
    margin: 0 0 8px 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.interaction-hint p {
    margin: 0 0 15px 0;
    font-size: 1rem;
    opacity: 0.8;
}

.hint-arrow {
    font-size: 1.5rem;
    animation: arrowBounce 1.5s ease-in-out infinite;
}

/* Professional Map Controls */
.pro-map-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 25;
}

.control-group {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.pro-control-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 100px;
    justify-content: center;
}

.pro-control-btn.primary {
    background: linear-gradient(135deg, #0062E6, #33AEFF);
    color: white;
}

.pro-control-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #333;
}

.pro-control-btn.accent {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
}

.pro-control-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.pro-control-btn.primary:hover {
    box-shadow: 0 8px 30px rgba(0, 98, 230, 0.4);
}

.pro-control-btn.accent:hover {
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.4);
}

.control-icon {
    font-size: 1.1rem;
}

/* Map Legend */
.map-legend {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    z-index: 20;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
}

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

.legend-icon {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 1px solid rgba(255,255,255,0.5);
}

/* Animations */
@keyframes markerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes shadowPulse {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.1; transform: translateX(-50%) scale(1.2); }
}

@keyframes locationPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0.2; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
}

@keyframes buildingGlow {
    0%, 100% { box-shadow: 0 2px 8px rgba(112, 161, 255, 0.3); }
    50% { box-shadow: 0 4px 16px rgba(112, 161, 255, 0.5); }
}

@keyframes districtGlow {
    0%, 100% { box-shadow: 0 4px 16px rgba(0, 98, 230, 0.3); }
    50% { box-shadow: 0 6px 24px rgba(0, 98, 230, 0.5); }
}

@keyframes hintFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes markerGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4), inset 0 2px 4px rgba(255,255,255,0.3); }
    50% { box-shadow: 0 8px 30px rgba(255, 71, 87, 0.7), inset 0 2px 4px rgba(255,255,255,0.5); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .map-legend {
        top: 15px;
        left: 15px;
        padding: 12px;
    }
    
    .legend-item {
        font-size: 0.75rem;
    }
    
    .pro-map-controls {
        bottom: 15px;
        right: 15px;
    }
    
    .control-group {
        gap: 8px;
    }
    
    .pro-control-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
        min-width: 80px;
    }
    
    .district-label {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .district-label.main-district {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .location-popup {
        min-width: 180px;
        padding: 12px;
    }
    
    .popup-content h4 {
        font-size: 0.9rem;
    }
    
    .popup-content p {
        font-size: 0.8rem;
    }
    
    .interaction-hint h3 {
        font-size: 1.1rem;
    }
    
    .interaction-hint p {
        font-size: 0.9rem;
    }
    
    .hint-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .control-group {
        flex-direction: row;
        gap: 6px;
    }
    
    .pro-control-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        min-width: 60px;
    }
    
    .pro-control-btn span {
        display: none;
    }
    
    .control-icon {
        font-size: 1.2rem;
    }
    
    .map-legend {
        display: none;
    }
}

/* Enhanced hover states */
.professional-map:hover .marker-body {
    animation: markerFloat 3s ease-in-out infinite, markerGlow 2s ease-in-out infinite;
}

/* Premium Overlay Info Panel */
.map-info-overlay {
    flex: 0 0 320px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px 0 0 15px;
    padding: 30px 25px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInLeft 0.8s ease-out;
}

.company-info h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.address-details {
    margin-bottom: 20px;
}

.address-details p {
    margin: 8px 0;
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.map-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.map-btn:hover::before {
    left: 100%;
}

.directions-btn {
    background: linear-gradient(135deg, #0062E6, #33AEFF);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 98, 230, 0.3);
}

.directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 98, 230, 0.4);
    background: linear-gradient(135deg, #0056d3, #2b8ce6);
}

.call-btn {
    background: linear-gradient(135deg,  #ff4e50, #f44336);
    color: white;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg,  #ff4e50, #f44336);
}

/* Additional Map Enhancements */
.professional-map:active {
    transform: scale(0.99);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .premium-map-section {
        padding: 30px 15px;
        margin: 30px 0;
        border-radius: 20px;
    }
    
    .map-title {
        font-size: 1.8rem;
    }
    
    .map-subtitle {
        font-size: 1rem;
    }
    
    .premium-map-container {
        height: 400px;
        border-radius: 15px;
        border-width: 2px;
    }
    
    .map-info-overlay {
        position: static;
        margin-bottom: 20px;
        max-width: none;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }
    
    .company-info h3 {
        font-size: 1.2rem;
    }
    
    .address-details p {
        font-size: 0.95rem;
    }
    
    .quick-actions {
        flex-direction: row;
        gap: 8px;
    }
    
    .map-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        flex: 1;
    }
}

@media (max-width: 480px) {
    .premium-map-container {
        height: 350px;
    }
    
    .map-info-overlay {
        padding: 20px;
        border-radius: 15px;
    }
    
    .quick-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .map-btn {
        padding: 12px 16px;
    }
}

/* Loading animation for iframe */
.interactive-map iframe {
    opacity: 0;
    animation: fadeInMap 1s ease 0.5s forwards;
}

@keyframes fadeInMap {
    from { opacity: 0; }
    to { opacity: 1; }
}
  
/* Genel webkit uyumluluğu için prefix'ler */
@media screen and (max-width: 768px) {
    /* Temel tarayıcı algılama düzeltmesi */
    * {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    
    /* Mobile navigation uyumluluğu */
    .hamburger {
        display: flex !important;
        display: -webkit-flex !important;
        display: -moz-flex !important;
    }
    
    /* Hero bölümü düzeltmesi */
    .hero {
        display: flex !important;
        display: -webkit-flex !important;
        display: -moz-flex !important;
        flex-direction: column;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        align-items: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        padding: 0 !important;
    }
    
    /* Sidebar düzeltmesi */
    .sidebar {
        display: flex !important;
        display: -webkit-flex !important;
        display: -moz-flex !important;
        flex-direction: row !important;
        -webkit-flex-direction: row !important;
        -moz-flex-direction: row !important;
        justify-content: center !important;
        -webkit-justify-content: center !important;
        align-items: center;
        -webkit-align-items: center;
        gap: 12px;
        width: 100%;
        margin: 0 !important;
    }
    
    /* Social icons düzeltmesi */
    .social-icons {
        display: flex !important;
        display: -webkit-flex !important;
        display: -moz-flex !important;
        justify-content: center;
        -webkit-justify-content: center !important;
        margin: 0;
    }
}

/* Local dosya uyumluluğu için ek düzeltmeler */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 1) {
    /* Webkit tabanlı tarayıcılar için özel düzeltmeler */
    .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
    }
    
    .social-icons-mobile-only {
        display: flex !important;
        visibility: visible !important;
    }
}

/* Opera özel düzeltmeleri */
@media screen and (max-width: 768px) {
    @supports (-webkit-appearance: none) or (-moz-appearance: none) {
        .mobile-contact-section {
            display: block !important;
        }
        
        .social-icons-mobile-only {
            display: flex !important;
        }
        
        .hero {
            display: flex !important;
            flex-direction: column !important;
        }
        
        .sidebar {
            display: flex !important;
            flex-direction: row !important;
        }
    }
}

/* Firefox özel düzeltmeleri */
@-moz-document url-prefix() {
    @media screen and (max-width: 768px) {
        .mobile-contact-section {
            display: block !important;
        }
        
        .social-icons-mobile-only {
            display: flex !important;
        }
    }
}

/* Tarayıcı-özel CSS sınıfları - SADECE MOBİLDE */
@media screen and (max-width: 768px) {
    .opera-browser .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }

    .opera-browser .social-icons-mobile-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }

    .firefox-browser .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }

    .chrome-browser.mobile-view .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }

    .safari-browser.mobile-view .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }
}

/* Local dosya için özel stiller - SADECE MOBİLDE */
@media screen and (max-width: 768px) {
    .local-file.mobile-view .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }

    .local-file.mobile-view .social-icons-mobile-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        position: static !important;
        left: auto !important;
    }

    .local-file.mobile-view .contact-section:not(.mobile-contact-section) {
        display: none !important;
    }
}

/* Force display for mobile elements - son çare */
@media screen and (max-width: 768px) {
    body.mobile-view .mobile-contact-section,
    .mobile-contact-section {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(to right, #0062E6, #33AEFF) !important;
        color: white !important;
        margin-top: 20px !important;
        margin-bottom: 25px !important;
        border-radius: 25px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
        padding: 20px 15px !important;
    }
    
    body.mobile-view .social-icons-mobile-only,
    .social-icons-mobile-only {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        justify-content: center !important;
        gap: 16px !important;
        margin: 10px 0 !important;
        order: 3 !important;
    }
    
    /* Hamburger menü force */
    .hamburger {
        display: flex !important;
        width: 28px !important;
        height: 22px !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        cursor: pointer !important;
    }
    
    .hamburger span {
        display: block !important;
        height: 3px !important;
        background: #000 !important;
        border-radius: 3px !important;
        transition: transform 0.3s, opacity 0.3s !important;
    }
}
  