/* --- KRİMP TEKNİK GLOBAL STYLESHEET --- */

/* Reset & Fonts */
html {
    scroll-behavior: smooth;
}

* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Inter', sans-serif; 
}

:root { 
    --primary-color: #0f2c59; 
    --primary-light: #609cf6;
    --secondary-color: #f37021; 
    --secondary-hover: #d65d18;
    --text-main: #1a202c;
    --text-muted: #718096;
    --border-color: #e2e8f0;
    --white: #ffffff; 
    --bg-light: #f1f5f9;
    --light-gray: #f1f5f9;
}

body { 
    background-color: #f8f9fc; 
    color: #2d3748; 
    line-height: 1.6; 
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: smoothPageFadeIn 0.45s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes smoothPageFadeIn {
    0% {
        opacity: 0;
        transform: translateY(6px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

body.page-leaving {
    opacity: 0.15;
    transform: translateY(-4px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* TÜM ETKİLEŞİMLİ ELEMANLAR İÇİN DOKU YUMUŞATMA VE AKICI RENK GEÇİŞLERİ */
a, button, input, select, textarea, .card, .btn, .nav-links li a, .service-card, .store-item-card, .product-card, .subject-pill, .store-category-link, .lang-pill-btn, .service-glass-card, .product-showcase-card, .contact-glass-form, .contact-card-item, .value-box, .stat-card, .corp-gallery-card, .corp-mv-card, .corp-process-step, .corp-value-box {
    transition: background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                color 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

a { text-decoration: none; }

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* --- HEADER & NAVIGATION (TÜM SAYFALARDA BİREBİR AYNI VE BÜTÜNSEL) --- */
header, .main-header, header.header-transparent, header.header-solid { 
    background-color: var(--primary-color) !important; 
    position: sticky !important; 
    top: 0 !important; 
    left: 0; 
    width: 100%; 
    z-index: 1000 !important; 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.nav-container { 
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    height: 90px; 
}

.logo { 
    display: flex; 
    align-items: center; 
    height: 100%; 
    transition: opacity 0.3s; 
}
.logo:hover { opacity: 0.9; }
.logo img { 
    max-height: 60px; 
    width: auto; 
    object-fit: contain; 
    display: block;
}

.nav-links { 
    list-style: none; 
    display: flex; 
    gap: 16px; 
    align-items: center; 
    margin: 0;
    padding: 0;
}

.nav-links li a { 
    color: rgba(255, 255, 255, 0.92) !important; 
    font-weight: 500; 
    font-size: 14.5px; 
    text-decoration: none;
    white-space: nowrap !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1); 
}

.nav-links li a:hover { 
    color: #ffffff !important; 
    background: rgba(255, 255, 255, 0.12);
}

.nav-links li:not(.lang-switcher-item) > a.active { 
    color: var(--secondary-color) !important; 
    font-weight: 700;
    background: transparent !important;
    border-bottom: 2px solid var(--secondary-color) !important;
    border-radius: 0 !important;
}

/* KULLANICI & YÖNETİM PORTAL GİRİŞ BUTONLARI - EŞSİZ PİLL ROZET TASARIMI */
.nav-links li a[href*="admin/login"],
.nav-links li a[href*="superadmin/login"] {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
}

.nav-links li a[href*="admin/login"]:hover,
.nav-links li a[href*="superadmin/login"]:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-contact { 
    background-color: var(--secondary-color) !important; 
    color: #ffffff !important; 
    padding: 9px 22px; 
    border-radius: 20px !important; 
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.3px;
    white-space: nowrap !important;
    box-shadow: 0 4px 14px rgba(243, 112, 33, 0.35);
    transition: all 0.3s ease;
}

.btn-contact:hover,
.btn-contact.active { 
    background-color: var(--secondary-hover) !important; 
    color: #ffffff !important; 
    box-shadow: 0 6px 18px rgba(243, 112, 33, 0.5);
    transform: translateY(-1.5px);
}

/* SOFT ORGANIC HERO SECTION DIVIDER (DİK KESKİN HATLARI YUMUŞATAN GEÇİŞ) */
.hero-curve-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
    pointer-events: none;
}
.hero-curve-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 52px;
}
.hero-curve-divider .shape-fill {
    fill: #f8fafc;
}
.hero-curve-divider.fill-white .shape-fill {
    fill: #ffffff;
}

/* --- HERO SECTION --- */
.hero { 
    background: linear-gradient(180deg, rgba(7, 25, 51, 0.96) 0%, rgba(15, 44, 89, 0.93) 60%, rgba(24, 56, 104, 0.88) 100%), 
                url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&q=80') center/cover no-repeat; 
    min-height: 80vh; 
    display: flex; 
    align-items: center; 
    color: var(--white); 
    position: relative;
    padding: 100px 0 140px 0; 
}
.hero-content { max-width: 720px; padding: 20px 0; animation: fadeIn 1s ease-out forwards; }

.badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(243, 112, 33, 0.15);
    color: var(--secondary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
    border: 1px solid rgba(243, 112, 33, 0.3);
}

.hero h1 { font-size: 54px; margin-bottom: 25px; font-weight: 800; line-height: 1.15; letter-spacing: -1.5px; }
.hero h1 span { color: var(--secondary-color); }
.hero p { font-size: 19px; margin-bottom: 40px; color: #cbd5e1; font-weight: 400; line-height: 1.8; }

.hero-buttons { display: flex; gap: 20px; }
.btn-primary { 
    background-color: var(--secondary-color); 
    color: var(--white); 
    padding: 16px 38px; 
    font-size: 16px; 
    font-weight: 700; 
    border-radius: 12px; 
    display: inline-block; 
    transition: all 0.3s ease;
}
.btn-primary:hover { background-color: var(--secondary-hover); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(243, 112, 33, 0.35); }

.btn-outline-hero { 
    background-color: rgba(255,255,255,0.08); 
    color: var(--white); 
    border: 2px solid rgba(255,255,255,0.3);
    padding: 14px 36px; 
    font-size: 16px; 
    font-weight: 700; 
    border-radius: 12px; 
    display: inline-block; 
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}
.btn-outline-hero:hover { border-color: var(--white); background-color: rgba(255,255,255,0.2); transform: translateY(-3px); }

/* --- TRUST BAR (FROSTED GLASS FERAH DÜZEN) --- */
.trust-bar { 
    background: rgba(255, 255, 255, 0.94); 
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 42px 36px; 
    box-shadow: 0 20px 45px rgba(15, 44, 89, 0.08); 
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 24px;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; text-align: center; }
.trust-item { padding: 0 15px; }
.trust-item h4 { color: var(--primary-color); font-size: 20px; font-weight: 800; margin-bottom: 10px; line-height: 1.3; }
.trust-item p { color: #475569; font-size: 15px; margin: 0 auto; line-height: 1.65; max-width: 280px; font-weight: 500; }
.trust-item:not(:last-child) { border-right: 1px solid var(--border-color); }

/* --- SERVICES --- */
.services { padding: 120px 0; background-color: var(--bg-light); }
.section-header { text-align: center; margin-bottom: 70px; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-header h2 { color: var(--primary-color); font-size: 36px; font-weight: 800; margin-bottom: 15px; letter-spacing: -0.5px; }
.section-header p { color: var(--text-muted); font-size: 16px; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.service-card { 
    background: var(--white); 
    padding: 50px 40px; 
    border-radius: 8px; 
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02); 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 4px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(1, 23, 56, 0.08); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }

.icon-wrapper { 
    width: 70px; height: 70px; 
    background-color: rgba(243, 112, 33, 0.1); 
    color: var(--secondary-color); 
    border-radius: 12px; 
    display: flex; align-items: center; justify-content: center; 
    margin-bottom: 30px; 
    transition: all 0.3s ease;
}
.service-card:hover .icon-wrapper { background-color: var(--secondary-color); color: var(--white); }

.service-card h3 { color: var(--primary-color); font-size: 22px; font-weight: 700; margin-bottom: 15px; }
.service-card p { color: var(--text-muted); font-size: 15px; line-height: 1.7; margin-bottom: 25px; }
.service-link { color: var(--primary-color); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 5px; transition: color 0.3s; }
.service-link:hover { color: var(--secondary-color); }

/* --- CTA SECTION --- */
.cta-section { background-color: var(--primary-color); padding: 80px 0; text-align: center; color: var(--white); }
.cta-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 20px; }
.cta-section p { font-size: 18px; color: #cbd5e1; margin-bottom: 40px; font-weight: 300; }

/* --- PAGE HEADER (INNER PAGES) --- */
.page-header { 
    background: linear-gradient(135deg, #081e42 0%, #0f2c59 50%, #153e75 100%); 
    color: var(--white); 
    padding: 85px 0 115px 0; 
    text-align: center; 
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-animate {
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.header-badge {
    display: inline-block;
    background: rgba(243, 112, 33, 0.15);
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 800;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border: 1px solid rgba(243, 112, 33, 0.3);
}
.page-header h1 { 
    font-size: 42px; 
    margin-bottom: 12px; 
    font-weight: 800; 
    letter-spacing: -0.5px;
}
.page-header p { 
    font-size: 17px; 
    color: #cbd5e1; 
    font-weight: 300; 
    max-width: 600px; 
    margin: 0 auto; 
}

/* --- KURUMSAL SAYFASI (YENİ ANİMASYONLU TASARIM) --- */
.about-section { padding: 90px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }

.sub-title {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}

.about-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.25;
}

.about-text p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 35px;
}

.stat-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.stat-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(243, 112, 33, 0.08);
}
.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary-color);
}
.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 44, 89, 0.12);
    transition: all 0.4s ease;
}
.about-image-wrapper:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 30px 60px rgba(15, 44, 89, 0.18);
}

.about-img-styled {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.image-placeholder-styled {
    height: 420px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}
.icon-pulse {
    font-size: 70px;
    animation: floatIcon 3s ease-in-out infinite;
}

.image-card-badge {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.8);
}
.badge-icon {
    font-size: 24px;
    background: #fff7ed;
    color: var(--secondary-color);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
.badge-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary-color);
}
.badge-text small {
    font-size: 12px;
    color: #64748b;
}

/* MİSYON VİZYON */
.mission-vision-section { padding: 40px 0 90px 0; background: #f8fafc; }
.mv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 35px; }

.mv-card {
    background: var(--white);
    padding: 45px 35px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.mv-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(15, 44, 89, 0.1);
}
.mv-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--secondary-color) 0%, #f97316 100%);
}

.mv-icon-box {
    width: 65px; height: 65px;
    background: #fff7ed;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}
.mv-card:hover .mv-icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary-color);
    color: white;
}

.mv-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}
.mv-card p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
}

/* TEMEL DEĞERLER */
.values-section { padding: 90px 0; background: var(--white); text-align: center; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 30px; margin-top: 50px; }

.value-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 35px 25px;
    border-radius: 16px;
    transition: all 0.35s ease;
    text-align: center;
}
.value-box:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(243, 112, 33, 0.1);
}

.v-icon {
    font-size: 44px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.value-box:hover .v-icon {
    transform: scale(1.2);
}

.value-box h4 {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 12px;
}
.value-box p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

/* KEYFRAMES & ANIMATION UTILITIES */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-right {
    animation: fadeInUp 1s ease forwards;
}

/* --- HİZMETLERİMİZ SAYFASI --- */
.services-page-section { padding: 80px 0; flex: 1; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }

.service-card-page { 
    background: var(--white); 
    border-radius: 12px; 
    padding: 40px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    transition: all 0.3s ease; 
    border: 1px solid var(--border-color); 
    position: relative; 
    overflow: hidden; 
}
.service-card-page:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 40px rgba(15, 44, 89, 0.1); 
    border-color: var(--secondary-color); 
}
.service-card-page::before { 
    content: ""; 
    position: absolute; 
    top: 0; left: 0; 
    width: 0; height: 4px; 
    background-color: var(--secondary-color); 
    transition: width 0.3s ease; 
}
.service-card-page:hover::before { width: 100%; }

.service-icon-box { 
    font-size: 44px; 
    margin-bottom: 25px; 
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    background: var(--light-gray); 
    width: 80px; 
    height: 80px; 
    border-radius: 50%; 
}

.service-card-page h3 { font-size: 24px; color: var(--primary-color); margin-bottom: 15px; font-weight: 700; }
.service-card-page p { font-size: 15px; color: #555; margin-bottom: 25px; line-height: 1.7; }

.service-features { list-style: none; margin-bottom: 30px; }
.service-features li { font-size: 14px; color: #555; margin-bottom: 10px; display: flex; align-items: flex-start; }
.service-features li::before { content: '✓'; color: var(--secondary-color); font-weight: bold; margin-right: 10px; font-size: 16px; }

.btn-outline-card { 
    display: inline-block; 
    padding: 10px 25px; 
    border: 2px solid var(--primary-color); 
    color: var(--primary-color); 
    border-radius: 6px; 
    font-weight: 600; 
    transition: all 0.3s ease; 
    font-size: 14px; 
    text-align: center; 
}
.btn-outline-card:hover { background-color: var(--primary-color); color: var(--white); }

/* --- ÜRÜNLER (KALIPLAR) SAYFASI --- */
.products-section { padding: 60px 0 100px 0; flex: 1; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 40px; }

.product-card { 
    background: var(--white); 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid var(--border-color); 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column; 
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(15, 44, 89, 0.12); border-color: var(--secondary-color); }

.product-img { 
    height: 240px; 
    background-color: var(--light-gray); 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }

.product-badge { 
    position: absolute; 
    top: 15px; 
    right: 15px; 
    background-color: var(--secondary-color); 
    color: var(--white); 
    padding: 6px 14px; 
    border-radius: 20px; 
    font-size: 12px; 
    font-weight: 600; 
}

.product-details { padding: 30px; display: flex; flex-direction: column; flex-grow: 1; }
.product-details h3 { font-size: 22px; color: var(--primary-color); margin-bottom: 10px; font-weight: 700; }
.product-details p { font-size: 14px; color: #666; margin-bottom: 20px; line-height: 1.6; }

.specs-list { list-style: none; margin-bottom: 25px; border-top: 1px dashed var(--border-color); padding-top: 15px; }
.specs-list li { font-size: 13px; color: #555; margin-bottom: 8px; display: flex; justify-content: space-between; }
.specs-list li strong { color: var(--primary-color); }

.btn-quote { 
    margin-top: auto; 
    display: block; 
    text-align: center; 
    background-color: var(--primary-color); 
    color: var(--white); 
    padding: 12px; 
    border-radius: 6px; 
    font-weight: 600; 
    transition: background 0.3s ease; 
}
.btn-quote:hover { background-color: var(--secondary-color); }

/* --- ONLINE MAĞAZA SAYFASI --- */
.store-section { padding: 50px 0; flex: 1; }
.store-layout { display: flex; gap: 40px; }
.sidebar { width: 250px; flex-shrink: 0; }
.filter-box { background: var(--white); padding: 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); border: 1px solid var(--border-color); }
.filter-box h3 { font-size: 18px; color: var(--primary-color); margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--light-gray); }
.category-list { list-style: none; }
.category-list li { margin-bottom: 12px; }
.category-list li a { color: #555; font-size: 15px; transition: color 0.3s; display: flex; justify-content: space-between; align-items: center; }
.category-list li a:hover, .category-list li a.active { color: var(--secondary-color); font-weight: 600; }
.category-list li span { background: var(--light-gray); padding: 2px 8px; border-radius: 20px; font-size: 12px; color: #888; }

.products-area { flex: 1; }
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 30px; }

.store-card { 
    background: var(--white); 
    border-radius: 10px; 
    overflow: hidden; 
    border: 1px solid var(--border-color); 
    transition: all 0.3s ease; 
    display: flex; 
    flex-direction: column; 
}
.store-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: var(--secondary-color); }

.product-image { 
    height: 180px; 
    padding: 20px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    background-color: #fff; 
    border-bottom: 1px solid var(--border-color); 
}
.product-image .placeholder-icon { font-size: 50px; opacity: 0.85; }

.product-info { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; }
.product-category { font-size: 12px; color: #888; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; }
.product-title { font-size: 15px; color: var(--primary-color); font-weight: 600; margin-bottom: 15px; line-height: 1.4; }

.price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.price { font-size: 19px; font-weight: 700; color: var(--secondary-color); }

.btn-cart { 
    background-color: var(--primary-color); 
    color: var(--white); 
    border: none; 
    padding: 10px 15px; 
    border-radius: 6px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: background 0.3s; 
    font-size: 13px; 
}
.btn-cart:hover { background-color: var(--secondary-color); }

/* --- İLETİŞİM SAYFASI --- */
.contact-section { padding: 80px 0; flex: 1; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }

.contact-form-box { 
    background: var(--white); 
    padding: 40px; 
    border-radius: 12px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
    border: 1px solid var(--border-color); 
}
.contact-form-box h2 { font-size: 24px; color: var(--primary-color); margin-bottom: 25px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #555; margin-bottom: 8px; }
.form-control { 
    width: 100%; 
    padding: 12px 15px; 
    border: 1px solid var(--border-color); 
    border-radius: 6px; 
    font-size: 15px; 
    font-family: inherit; 
    transition: border-color 0.3s; 
    background-color: #fafbfc; 
}
.form-control:focus { outline: none; border-color: var(--secondary-color); background-color: #fff; box-shadow: 0 0 0 3px rgba(243, 112, 33, 0.1); }
textarea.form-control { resize: vertical; min-height: 120px; }

.btn-submit { 
    background-color: var(--secondary-color); 
    color: var(--white); 
    border: none; 
    padding: 15px 30px; 
    font-size: 16px; 
    font-weight: 600; 
    border-radius: 6px; 
    cursor: pointer; 
    transition: all 0.3s; 
    width: 100%; 
    display: block; 
}
.btn-submit:hover { background-color: var(--secondary-hover); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(243, 112, 33, 0.3); }

.contact-info-box { display: flex; flex-direction: column; gap: 30px; }
.info-cards { display: grid; grid-template-columns: 1fr; gap: 20px; }
.info-item { 
    background: var(--white); 
    padding: 25px; 
    border-radius: 10px; 
    border: 1px solid var(--border-color); 
    display: flex; 
    align-items: flex-start; 
    gap: 15px; 
}
.info-icon { 
    font-size: 24px; 
    background: var(--light-gray); 
    width: 50px; height: 50px; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; 
    color: var(--secondary-color); 
    flex-shrink: 0; 
}
.info-text h4 { font-size: 16px; color: var(--primary-color); margin-bottom: 5px; }
.info-text p { font-size: 15px; color: #666; }

.map-container { width: 100%; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-color); height: 100%; min-height: 300px; }
.map-container iframe { width: 100%; height: 100%; min-height: 300px; border: none; }

.alert-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}
.alert-success { background-color: #d1e7dd; color: #0f5132; border: 1px solid #badbcc; }
.alert-error { background-color: #f8d7da; color: #842029; border: 1px solid #f5c2c7; }

/* Keyframes & Animations */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* MOBİL HAMBURGER MENÜ BUTONU VE DUYARLI TASARIM */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
}
.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1300px) and (min-width: 869px) {
    .nav-container { padding: 0 16px; }
    .nav-links { gap: 8px; }
    .nav-links li a { font-size: 13px; padding: 6px 8px; }
    .nav-links li a[href*="admin/login"],
    .nav-links li a[href*="superadmin/login"] { padding: 6px 10px; font-size: 12.5px; }
    .btn-contact { padding: 8px 16px; font-size: 13px !important; }
    .lang-pill-btn { padding: 4px 10px; font-size: 12px; }
}

@media (max-width: 992px) {
    .nav-container { padding: 15px 20px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-wrapper { height: 350px; }
    .about-img-styled { height: 350px; }
}

@media (max-width: 868px) {
    .mobile-menu-toggle { display: flex; }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        border-top: 1px solid var(--border-color);
        gap: 12px;
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease forwards;
    }
    
    .nav-links li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        text-align: center;
        font-size: 15px;
    }

    .hero { padding: 60px 0 80px 0; text-align: center; }
    .hero h1 { font-size: 34px; line-height: 1.25; }
    .hero p { font-size: 16px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-primary, .btn-outline-hero { width: 100%; text-align: center; justify-content: center; }

    .page-header { padding: 45px 20px; }
    .page-header h1 { font-size: 28px; }
    .page-header p { font-size: 15px; }

    .store-layout { flex-direction: column; }
    .sidebar { width: 100%; }
    .contact-layout { grid-template-columns: 1fr; }
    .map-container { min-height: 300px; }
}

@media (max-width: 576px) {
    .container { padding: 0 16px; }
    .logo img { height: 42px; }
    .about-stats-grid { grid-template-columns: 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .service-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .store-grid { grid-template-columns: 1fr; }

    .service-card-page { padding: 25px 18px; }
    .contact-form-box { padding: 20px; }
    
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* DİL SEÇİCİ WİDGETİ (TÜRK BAYRAĞI 🇹🇷 & AMERİKA BAYRAĞI 🇺🇸) - PREMİUM CAPSULE TASARIMI */
.lang-switcher-item {
    display: flex !important;
    align-items: center !important;
    margin-left: 8px !important;
}
.lang-switcher-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 30px !important;
    padding: 3px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: blur(10px) !important;
    overflow: hidden !important;
}
.lang-pill-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 5px 13px !important;
    border-radius: 20px !important;
    text-decoration: none !important;
    font-size: 12.5px !important;
    font-weight: 800 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    border: none !important;
    border-bottom: none !important;
    outline: none !important;
    background: transparent !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: none !important;
}
.lang-pill-btn .flag-emoji {
    font-size: 16px !important;
    line-height: 1 !important;
}
.lang-pill-btn:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-bottom: none !important;
}
.lang-pill-btn.active {
    background: linear-gradient(135deg, #f37021 0%, #ff8c42 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-bottom: none !important;
    border-radius: 20px !important;
    box-shadow: 0 3px 10px rgba(243, 112, 33, 0.45) !important;
}

@media (max-width: 868px) {
    .lang-switcher-item {
        justify-content: center;
        margin-left: 0;
        margin-top: 12px;
    }
}

/* --- FOOTER STYLES --- */
footer {
    background: linear-gradient(135deg, #071224 0%, #0f2c59 100%);
    color: #94a3b8;
    padding: 45px 0;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14.5px;
}
footer p {
    margin: 0;
    line-height: 1.6;
}
footer strong {
    color: #ffffff;
}
footer a {
    transition: color 0.25s ease;
}
footer a:hover {
    color: #ff8c42 !important;
}

/* --- ZENGİN ANİMASYON & GEÇİŞ SİSTEMİ (SCROLL REVEAL & HOVER EFFECTS) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes buttonShine {
    0% { left: -100%; }
    100% { left: 200%; }
}

/* Scroll Animation Trigger Classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Buton Işıltı Animasyonu (Shine Sweep Effect) */
.btn-primary, .btn-service-action, .btn-service-link, .btn-store-quote, .btn-product-quote, .btn-form-send, .btn-cta-contact, .btn-cta-action {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-service-action::after, .btn-service-link::after, .btn-store-quote::after, .btn-product-quote::after, .btn-form-send::after, .btn-cta-contact::after, .btn-cta-action::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
    transform: skewX(-25deg);
    transition: none;
}

.btn-primary:hover::after, .btn-service-action:hover::after, .btn-service-link:hover::after, .btn-store-quote:hover::after, .btn-product-quote:hover::after, .btn-form-send:hover::after, .btn-cta-contact:hover::after, .btn-cta-action:hover::after {
    animation: buttonShine 0.85s ease-in-out forwards;
}

.floating-element {
    animation: floatSoft 4s ease-in-out infinite;
}
