/*
// ============================================
// ENDÜSTRİYEL MUTFAK TÜRKİYE - B2B PLATFORMU
// www.atilimdijital.com - Atılım Dijital
// ============================================ 
*/

:root {
    --primary-color: #0f2b46;
    --secondary-color: #34495e;
    --accent-color: #00b894;
    --accent-hover: #00a180;
    --text-color: #333333;
    --text-light: #666666;
    --light-bg: #f4f6f9;
    --border-color: #e0e0e0;
    --white: #ffffff;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --danger-color: #e74c3c;
    --font-heading: 'Roboto Condensed', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 5px rgba(0,0,0,0.03);
    --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--primary-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-3 { width: 25%; padding: 0 15px; }
.col-4 { width: 33.33%; padding: 0 15px; }
.col-5 { width: 41.66%; padding: 0 15px; }
.col-7 { width: 58.33%; padding: 0 15px; }
.col-9 { width: 75%; padding: 0 15px; }
.col-12 { width: 100%; padding: 0 15px; }

.mt-2 { margin-top: 10px; }
.mt-3 { margin-top: 15px; }
.mt-4 { margin-top: 20px; }
.mb-3 { margin-bottom: 15px; }
.section-padding { padding: 60px 0; }
.text-center { text-align: center; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 12px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}
.btn-primary:hover {
    background-color: #1a4266;
    border-color: #1a4266;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}
.btn-secondary:hover {
    background-color: #2c3e50;
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}
.btn-accent:hover {
    background-color: var(--accent-hover);
}

.btn-outline-white {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* YENİ BUTON */
.btn1 {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.btn1:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-block1 {
    display: block;
    width: 100%;
}

.btn-lg1 {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-sm1 {
    padding: 8px 16px;
    font-size: 12px;
}

/* KIRMIZI – BEYAZ */
.btn-primary1 {
    background-color: red;       /* Arka plan kırmızı */
    color: white;                /* Yazı beyaz */
    border: 2px solid red;       /* Kenarlık kırmızı */
}

.btn-primary1:hover {
    background-color: #b30000;   /* Hover koyu kırmızı */
    border-color: #b30000;
}

.btn-secondary1 {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}
.btn-secondary1:hover {
    background-color: #2c3e50;
}

.btn-accent1 {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}
.btn-accent1:hover {
    background-color: var(--accent-hover);
}

.btn-outline-white1 {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}
.btn-outline-white1:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: #0a1f33;
    color: #aab7c4;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #1c354a;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}
.contact-info i {
    color: var(--accent-color);
    margin-right: 5px;
}
.contact-info a:hover {
    color: var(--accent-color);
}

.social-links a {
    margin-left: 15px;
    color: #aab7c4;
    font-weight: 600;
}
.social-links a:hover {
    color: var(--accent-color);
}

/* ============================================
   HEADER
   ============================================ */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 65px;
    transition: transform 0.3s;
}
.logo:hover img {
    transform: scale(1.05);
}

.main-nav ul {
    display: flex;
    align-items: center;
}

.main-nav ul li {
    position: relative;
    margin: 0 20px;
}

.main-nav ul li a {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-color);
    padding: 10px 0;
    display: block;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.main-nav ul li a.active::after,
.main-nav ul li a:hover::after {
    width: 100%;
}

.main-nav ul li a.active,
.main-nav ul li a:hover {
    color: var(--accent-color);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent-color);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 200;
    border-radius: 0 0 8px 8px;
}

.dropdown-menu a {
    padding: 12px 20px !important;
    font-size: 14px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}
.dropdown-menu a:last-child {
    border-bottom: none !important;
}
.dropdown-menu a::after {
    display: none !important;
}
.dropdown-menu a:hover {
    background-color: #f8f9fa;
    padding-left: 25px !important;
}

.dropdown-menu a i {
    color: var(--accent-color);
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--primary-color);
    cursor: pointer;
}

/* ============================================
   HERO SECTION (GELİŞTİRİLMİŞ)
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #0f2b46 0%, #1a4266 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,184,148,0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(0,184,148,0.2);
    color: var(--accent-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.hero-feature i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.hero-feature span {
    font-size: 14px;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--white);
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.cat-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.cat-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    text-align: center;
    font-size: 3.5rem;
}

.card-body {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.card-body p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-text {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cat-card:hover .btn-text {
    gap: 12px;
}

/* ============================================
   CITIES SECTION
   ============================================ */
.cities-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.city-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.city-card:hover {
    border-color: var(--accent-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.city-card i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.city-card:hover i {
    color: var(--white);
}

.city-card span {
    font-weight: 600;
    font-size: 14px;
}

.all-cities-text {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
    padding: 60px 0;
}

.service-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 35px 25px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,184,148,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    background-color: var(--white);
    padding: 15px 0;
    font-size: 14px;
    margin-bottom: 30px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--accent-color);
}

.breadcrumb i {
    font-size: 10px;
    color: #999;
}

.breadcrumb span {
    color: var(--text-light);
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.main-container {
    margin-top: 30px;
    margin-bottom: 60px;
}

/* ============================================
   SIDEBAR & LOCATION PANEL
   ============================================ */
.sidebar {
    padding-top: 0;
}

.location-panel {
    background-color: var(--white);
    padding: 25px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.sticky-box {
    position: sticky;
    top: 100px;
}

.location-header h3 {
    color: var(--primary-color);
    font-family: var(--font-heading);
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 12px;
    margin-bottom: 15px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-header p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-list-container {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 10px;
}

.location-list-container::-webkit-scrollbar {
    width: 6px;
}

.location-list-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.location-list-container::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.location-level {
    margin-bottom: 25px;
}

.location-level-title {
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-item {
    padding: 10px 15px;
    margin-bottom: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    border: 2px solid transparent;
}

.location-item:hover {
    background-color: #f0f7ff;
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.location-item.active {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-sm);
}

.location-item a {
    display: block;
    color: inherit;
}

.location-item.active a {
    color: var(--white);
}

.location-sub-list {
    margin-top: 10px;
    padding-left: 20px;
    border-left: 3px solid var(--border-color);
}

.support-box {
    background: linear-gradient(135deg, #eaf6ff 0%, #d4edff 100%);
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    border: 2px dashed var(--primary-color);
}

.support-box h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.support-box p {
    font-size: 13px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.support-box .phone-link {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 10px 0;
}

.support-box .phone-link:hover {
    color: var(--accent-color);
}

/* ============================================
   CATEGORY PAGE
   ============================================ */
.category-header {
    background: var(--white);
    padding: 30px;
    border-bottom: 4px solid var(--primary-color);
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.category-header h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.location-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.category-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.location-info-box {
    background: linear-gradient(135deg, #eaf6ff 0%, #d4edff 100%);
    padding: 20px;
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.location-info-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.location-info-box p {
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   PRODUCT LIST (Horizontal Cards)
   ============================================ */
.product-list {
    margin-top: 30px;
}

.product-card-horizontal {
    display: flex;
    background: var(--white);
    border: 2px solid var(--border-color);
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 10px;
    align-items: center;
    transition: all 0.3s;
}

.product-card-horizontal:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
    transform: translateX(5px);
}

.prod-img {
    width: 220px;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
}

.prod-img img {
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.stock-badge-img {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--success-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.prod-info {
    flex-grow: 1;
}

.prod-info h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.prod-code {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    font-family: monospace;
}

.prod-code strong {
    color: var(--primary-color);
}

.prod-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.prod-specs {
    margin-top: 12px;
}

.prod-specs li {
    font-size: 13px;
    color: var(--text-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prod-specs i {
    color: var(--accent-color);
    font-size: 14px;
}

.prod-action {
    width: 200px;
    flex-shrink: 0;
    text-align: center;
    border-left: 2px solid var(--border-color);
    padding-left: 25px;
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
}

.prod-action .btn {
    margin: 0;
    font-size: 13px;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.product-detail-header {
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.product-image {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.product-detail h1 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-stars i {
    color: #f39c12;
    font-size: 14px;
}

.rating-stars span {
    color: var(--text-light);
    font-size: 13px;
    margin-left: 8px;
}

.location-info-badge {
    background: linear-gradient(135deg, #eaf6ff 0%, #d4edff 100%);
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    border: 2px solid var(--accent-color);
}

.location-info-badge i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.product-description {
    margin-bottom: 25px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: 15px;
}

.product-specs-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-left: 5px solid var(--accent-color);
    margin-bottom: 25px;
    border-radius: 8px;
}

.product-specs-box h3 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.product-specs-box ul {
    list-style: none;
}

.product-specs-box li {
    padding: 12px 0;
    border-bottom: 1px solid #d0d0d0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-specs-box li:last-child {
    border-bottom: none;
}

.product-specs-box i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.product-badges {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge i {
    color: var(--accent-color);
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 200px;
}

.product-detail-content {
    margin-top: 40px;
}

.product-tabs {
    border-bottom: 2px solid var(--border-color);
    margin-bottom: 30px;
}

.tab {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    border-bottom: 3px solid transparent;
}

.tab.active {
    color: var(--primary-color);
    border-bottom-color: var(--accent-color);
}

.tab-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.tab-content h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.tab-content ul {
    list-style: none;
    margin: 20px 0;
}

.tab-content li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.tab-content li:last-child {
    border-bottom: none;
}

.tab-content li i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 8px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

.location-service-box {
    background: linear-gradient(135deg, #eaf6ff 0%, #d4edff 100%);
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-top: 40px;
}

.location-service-box h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-service-box ul {
    list-style: none;
    margin-top: 20px;
}

.location-service-box li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.location-service-box li:last-child {
    border-bottom: none;
}

/* ============================================
   SEO CONTENT BOX
   ============================================ */
.seo-content-box {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    margin-top: 40px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.seo-content-box h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.seo-content-box h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.seo-content-box ul {
    list-style: none;
    margin: 20px 0;
}

.seo-content-box li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.seo-content-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   CORPORATE PAGE
   ============================================ */
.corporate-page {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.corporate-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 40px;
    text-align: center;
    color: var(--white);
    border-radius: 10px 10px 0 0;
}

.corporate-hero h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 15px;
}

.lead {
    font-size: 1.3rem;
    opacity: 0.95;
    margin: 0;
}

.corporate-content {
    padding: 50px 40px;
}

.content-section {
    margin-bottom: 45px;
}

.content-section h2 {
    font-size: 1.9rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.content-section h2 i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-section h3 i {
    color: var(--accent-color);
}

.content-section p {
    line-height: 1.9;
    margin-bottom: 15px;
    color: var(--text-color);
    font-size: 15px;
}

.service-list {
    list-style: none;
    margin: 25px 0;
}

.service-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.7;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.cert-badge {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cert-badge i {
    font-size: 2rem;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.why-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.why-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.why-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.contact-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    border-left: 5px solid var(--accent-color);
}

.contact-box h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 1.05rem;
}

.contact-item p {
    margin: 3px 0;
    font-size: 14px;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0a1f33 100%);
    color: #aab7c4;
    padding-top: 60px;
    margin-top: 80px;
}

.footer-col {
    margin-bottom: 40px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-certifications {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.cert-badge-sm {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 12px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 12px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 8px;
}

.contact-list li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-list i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

.contact-list a:hover {
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    background-color: #0a1f33;
    padding: 25px 0;
    text-align: center;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 40px;
}

.footer-bottom a {
    color: var(--accent-color);
    margin: 0 10px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37,211,102,0.7);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .col-3, .col-9 { 
        width: 100%; 
    }
    
    .sidebar {
        margin-bottom: 40px;
    }
    
    .sticky-box {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-btn { 
        display: block; 
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: var(--shadow-lg);
    }
    
    .main-nav.active { 
        display: block; 
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
    }
    
    .main-nav ul li { 
        margin: 0;
        width: 100%;
    }
    
    .main-nav ul li a { 
        border-bottom: 1px solid var(--border-color);
        padding: 15px 0 !important;
    }
    
    .main-nav ul li a::after {
        display: none;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
        background: #f9f9f9;
        border-top: none;
        border-radius: 0;
    }

    .header-cta { 
        display: none; 
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .hero-feature i {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .col-4, .col-5, .col-7 { 
        width: 100%; 
        margin-bottom: 30px; 
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .product-card-horizontal {
        flex-direction: column;
        text-align: center;
    }
    
    .prod-img { 
        margin: 0 0 20px 0; 
        width: 100%; 
    }
    
    .prod-action {
        width: 100%;
        border-left: none;
        border-top: 2px solid var(--border-color);
        padding: 20px 0 0 0;
        margin: 20px 0 0 0;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .btn {
        min-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    .desktop-only { 
        display: none; 
    }
    
    .corporate-hero {
        padding: 40px 20px;
    }
    
    .corporate-hero h1 {
        font-size: 2rem;
    }
    
    .corporate-content {
        padding: 30px 20px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   İL SAYFASI STYLING (EKLE)
   ============================================ */

.city-page-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.city-page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid var(--primary-color);
}

.city-page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.location-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: var(--white);
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.location-badge-large i {
    font-size: 1.5rem;
}

.city-page-intro {
    margin-bottom: 50px;
}

.city-page-intro .lead {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-color);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.city-products-section {
    margin-bottom: 50px;
}

.city-products-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.city-products-section h2 i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.equipment-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.equipment-item:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.equipment-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: block;
}

.equipment-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.equipment-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Contact CTA Box */
.contact-cta-box {
    background: linear-gradient(135deg, #eaf6ff 0%, #d4edff 100%);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-color);
    margin-top: 50px;
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-cta-box p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .city-page-content {
        padding: 25px 20px;
    }
    
    .city-page-header h1 {
        font-size: 1.8rem;
    }
    
    .location-badge-large {
        font-size: 0.95rem;
        padding: 12px 20px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cta-box {
        padding: 30px 20px;
    }
    
    .contact-cta-box h3 {
        font-size: 1.4rem;
        flex-direction: column;
    }
}