/* ============================================
   ERVEY - ANA STYLE DOSYASI (TÜM CSS BİR ARADA)
   ============================================ */

/* ========== DEĞİŞKENLER ========== */
:root {
    /* Açık Tema (Varsayılan) */
    --bg-primary: #ffffff;
    --bg-secondary: #F4F6F8;
    --text-primary: #333333;
    --text-secondary: #666666;
    --card-bg: #ffffff;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.05);
    --hero-bg-start: #0f172a;
    --hero-bg-end: #0f172a;

    /* Sabit Renkler (Temadan etkilenmeyen) */
    --koyu-mavi: #0f172a;
    --turkuaz: #008a44;
    --turkuaz-koyu: #008a44;
    --beyaz: #ffffff;
    --siyah: #333333;
}

/* Koyu Tema */
[data-theme="dark"] {
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --card-bg: #2d2d2d;
    --border-color: #404040;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --hero-bg-start: #0a0a0a;
    --hero-bg-end: #1a1a1a;
}

/* ========== GENEL STILLER ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.text-turkuaz {
    color: var(--turkuaz) !important;
}

/* ========== BUTONLAR ========== */
.custom-btn-primary {
    background-color: var(--turkuaz);
    color: var(--koyu-mavi);
    font-weight: 600;
    border: 2px solid transparent;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.custom-btn-primary:hover {
    background-color: var(--turkuaz-koyu);
    color: var(--beyaz);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 217, 71, 0.4);
}

.btn-outline-turkuaz {
    background: transparent;
    color: var(--turkuaz);
    border: 2px solid var(--turkuaz);
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-turkuaz:hover {
    background: var(--turkuaz);
    color: var(--beyaz);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 217, 71, 0.4);
}

/* ========== BÖLÜM BAŞLIKLARI ========== */
.section-padding {
    padding: 100px 0;
}

.bg-light-gray {
    background-color: var(--bg-secondary) !important;
    transition: background-color 0.3s ease;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 179, 198, 0.1);
    color: var(--turkuaz);
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    transition: color 0.3s ease;
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 15px;
}

.feature-item i {
    font-size: 1.3rem;
    color: var(--turkuaz);
}

.feature-item span {
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

/* ========== NAVBAR ========== */
.custom-navbar {
    background-color: var(--koyu-mavi);
    padding: 10px 0;
    border-bottom: 3px solid var(--turkuaz);
    transition: all 0.3s ease;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.custom-navbar.navbar-shrink {
    padding: 5px 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-navbar .navbar-brand img {
    max-height: 55px;
    width: 230px;
    margin-right: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.custom-navbar.navbar-shrink .navbar-brand img {
    max-height: 45px;
}

.custom-navbar .navbar-nav {
    gap: 2px;
}

.custom-navbar .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 8px 12px;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.custom-navbar .navbar-nav .nav-link:hover {
    color: var(--beyaz);
}

.custom-navbar .navbar-nav .nav-link.active {
    color: var(--beyaz);
}

.custom-navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: var(--turkuaz);
    border-radius: 3px;
    transition: transform 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover::after,
.custom-navbar .navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.custom-toggler.navbar-toggler {
    border: 2px solid var(--turkuaz);
    padding: 6px 10px;
}

.custom-toggler.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(23, 66, 35, 0.5);
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 198, 43, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--hero-bg-start) 0%, var(--hero-bg-end) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0 0;
    overflow: hidden;
    transition: background 0.3s ease;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 179, 198, 0.2);
    color: var(--turkuaz);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 179, 198, 0.3);
}

.hero-title {
    color: var(--beyaz);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 20px;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-wave svg {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
}

.hero-wave svg path {
    fill: var(--bg-secondary);
    transition: fill 0.3s ease;
}

/* ========== 3D SLIDER ========== */
.product-slider-3d {
    position: relative;
    width: 100%;
    height: 500px;
    perspective: 1200px;
    margin-top: -50px;
}

.slider-item {
    position: absolute;
    width: 280px;
    height: 360px;
    left: 50%;
    top: 45%;
    margin-left: -140px;
    margin-top: -200px;
    transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    cursor: pointer;
    transform-style: preserve-3d;
    z-index: 10;
    pointer-events: auto;
}

.slider-item.active {
    z-index: 20;
}

.product-card-3d {
    width: 100%;
    height: 100%;
    background: var(--card-bg);
    border-radius: 15px;
    padding: 25px 20px;
    box-shadow: 0 25px 50px var(--shadow-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card-3d::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--turkuaz);
}

.product-card-3d:hover {
    border-color: var(--turkuaz);
    transform: translateY(-10px) translateZ(30px);
    box-shadow: 0 35px 70px rgba(0, 179, 198, 0.3);
}

.product-card-3d:hover::after {
    height: 6px;
    background: linear-gradient(90deg, var(--turkuaz-koyu), var(--turkuaz));
}

/* Slider Kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 100;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--koyu-mavi);
    border: 3px solid var(--turkuaz);
    color: var(--turkuaz);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 101;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(5px);
    border: 2px solid var(--turkuaz);
    pointer-events: auto;
    z-index: 101;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid var(--turkuaz);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.dot.active {
    background: var(--turkuaz);
    transform: scale(1.3);
}

.dot:hover {
    background: var(--turkuaz);
    transform: scale(1.2);
}

/* ========== KARTLAR ========== */

/* Ürün Kartları */
.product-card-new {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 20px 15px 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.product-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-color);
    border-color: var(--turkuaz);
}

.product-card-title {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 12px;
}

.product-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: var(--turkuaz);
    border-radius: 3px;
}

.product-card-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: all 0.3s ease;
}

.product-card-new:hover .product-card-image {
    transform: scale(1.02);
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-icon-circle {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 4px solid var(--turkuaz);
}

.product-icon-circle i {
    font-size: 4rem;
    color: var(--turkuaz);
}

.product-card-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    padding: 0 5px;
}

.product-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--turkuaz);
    border: 2px solid var(--turkuaz);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 5px;
    align-self: center;
    width: fit-content;
}

.product-card-btn:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    gap: 12px;
    transform: scale(1.05);
}

.product-card-btn i {
    transition: transform 0.3s ease;
    font-size: 1.1rem;
}

.product-card-btn:hover i {
    transform: translateX(5px);
}

/* Hizmet Kartları */
.service-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-color);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--turkuaz);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.service-card img {
    width: 150px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.service-icon-mini {
    font-size: 2.5rem;
    color: var(--turkuaz);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-mini {
    transform: scale(1.1);
    color: var(--turkuaz-koyu);
}

.service-card h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Referans Kartları */
.reference-card {
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 90px;
    height: 100%;
}

.reference-card:hover {
    border-color: var(--turkuaz);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.reference-logo-wrapper {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reference-logo {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.reference-card:hover .reference-logo {
    transform: scale(1.1);
}

.reference-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    word-break: break-word;
    transition: color 0.3s ease;
}

.reference-card:hover .reference-name {
    color: var(--turkuaz);
}

/* Haber Kartları */
.news-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    height: 100%;
    border-left: 4px solid var(--turkuaz);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.news-date {
    color: var(--turkuaz);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-card h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.news-card p {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* ========== İLETİŞİM ========== */
.contact-info-card,
.map-card,
.contact-form-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    height: 100%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card h3,
.map-card h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    transition: color 0.3s ease;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-item i,
.contact-item svg {
    font-size: 1.8rem;
    min-width: 40px;
    color: var(--turkuaz);
}

.contact-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.contact-item p {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.contact-form-card .form-control,
.contact-form-card select {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--turkuaz);
    box-shadow: 0 0 0 0.2rem rgba(0, 179, 198, 0.25);
}

.contact-form-card .form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
    transition: color 0.3s ease;
}

/* Harita */
#map {
    background: #e9ecef;
    border-radius: 15px;
    height: 300px;
    margin-bottom: 15px;
}

[data-theme="dark"] #map {
    filter: brightness(0.8) contrast(1.2);
}

/* ========== SERVİS ÖZELLİKLERİ ========== */
.service-features {
    margin-top: 20px;
}

.service-features .feature-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.service-features .feature-item i {
    font-size: 1.8rem;
    min-width: 40px;
    color: var(--turkuaz);
}

.service-features .feature-item h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.service-features .feature-item p {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* ========== ARAMA ========== */
.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-toggle {
    background: transparent;
    border: 2px solid var(--turkuaz);
    color: var(--turkuaz);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.search-toggle i {
    font-size: 1.1rem;
}

.search-toggle:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 179, 198, 0.3);
}

.search-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 380px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 15px 50px var(--shadow-color);
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 2px solid var(--turkuaz);
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 5px;
}

.search-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: var(--text-primary);
    border-radius: 12px;
}

.search-input:focus {
    outline: none;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-submit {
    background: var(--turkuaz);
    border: none;
    color: var(--koyu-mavi);
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.search-submit:hover {
    background: var(--turkuaz-koyu);
    color: white;
    transform: scale(1.05);
}

.search-results {
    max-height: 300px;
    overflow-y: auto;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(0, 179, 198, 0.1);
    transform: translateX(5px);
}

.search-result-item h4 {
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.search-result-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin: 0;
}

.search-result-item .badge {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    font-size: 0.7rem;
    padding: 3px 8px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.no-results i {
    font-size: 2rem;
    color: var(--turkuaz);
    margin-bottom: 10px;
    display: block;
}

/* ========== ARAMA SAYFASI ÖZEL ========== */
.search-form .input-group {
    box-shadow: 0 5px 20px var(--shadow-color);
    border-radius: 50px;
    overflow: hidden;
}

.search-form .form-control,
.input-group input {
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    border-right: none;
    color: var(--text-primary);
    border-radius: 50px 0 0 50px;
    padding: 15px 20px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--turkuaz);
    box-shadow: none;
    outline: none;
}

.search-form .btn {
    border-radius: 0 50px 50px 0;
    padding-left: 30px;
    padding-right: 30px;
}

.search-suggestions {
    background: var(--bg-secondary);
    padding: 30px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.search-suggestions h5 {
    color: var(--text-primary);
}

.border-bottom.border-turkuaz {
    border-bottom: 2px solid var(--turkuaz) !important;
    padding-bottom: 10px;
}

/* ========== TEMA DEĞİŞTİRME ========== */
.theme-toggle {
    background: transparent;
    border: 2px solid var(--turkuaz);
    color: var(--turkuaz);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    margin-left: 10px;
}

.theme-toggle:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    transform: rotate(180deg);
}

[data-theme="dark"] .theme-toggle i {
    transform: rotate(180deg);
}

/* ========== WHATSAPP BUTON ========== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5c;
    color: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--koyu-mavi);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--koyu-mavi);
    color: var(--beyaz);
    padding-top: 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    color: var(--turkuaz);
}

.footer h4 {
    color: var(--beyaz);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: var(--turkuaz);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ========== ÜRÜN DETAY SAYFASI ========== */

/* Breadcrumb */
.breadcrumb-section {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.breadcrumb {
    background: transparent;
    padding: 15px 0;
    margin: 0;
}

.breadcrumb-item {
    color: var(--text-secondary);
}

.breadcrumb-item a {
    color: var(--turkuaz);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--turkuaz-koyu);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-primary);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-secondary);
    content: "›";
}

/* Ürün Detay Ana Bölüm */
.product-detail-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.product-detail-title {
    color: var(--text-primary) !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Resim Alanı */
.product-detail-image-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.product-detail-image {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
}

.product-detail-icon {
    font-size: 8rem;
    color: var(--turkuaz);
    text-align: center;
    padding: 40px;
}

/* Thumbnail Galerisi */
.product-thumb-wrapper {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumb-wrapper:hover {
    border-color: var(--turkuaz);
    transform: scale(1.05);
}

.product-thumb-image {
    max-height: 70px;
    width: 100%;
    object-fit: contain;
}

/* Feature Row - Resim ve Metin Yan Yana */
.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: var(--bg-secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.feature-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--turkuaz);
    border-radius: 2px;
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.feature-text ul {
    list-style: none;
    padding: 0;
}

.feature-text li {
    color: var(--text-secondary);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.feature-text li::before {
    content: '✓';
    color: var(--turkuaz);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Features Grid - Ürün Detay Kartları */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: all 0.3s ease;

    /* SABİT YÜKSEKLİK VE KAYDIRMA */
    height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--turkuaz);
    box-shadow: 0 15px 40px var(--shadow-color);
}

.feature-card h3,
.feature-card h1 {
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--turkuaz);
    display: flex;
    align-items: center;
    gap: 12px;

    /* Başlık sabit kalsın */
    flex-shrink: 0;
}

.feature-card h3 i,
.feature-card h1 i,
.feature-card h3 svg,
.feature-card h1 svg {
    color: var(--turkuaz);
    font-size: 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

/* İçerik alanı - kaydırma çubuğu burada */
.feature-content {
    color: var(--text-secondary);
    line-height: 1.8;

    /* Kaydırma özellikleri */
    flex-grow: 1;
    overflow-y: auto;
    padding-right: 10px;

    /* Kaydırma çubuğu stilleri */
    scrollbar-width: thin;
    scrollbar-color: var(--turkuaz) var(--bg-secondary);
}

/* Webkit tarayıcılar için kaydırma çubuğu (Chrome, Safari, Edge) */
.feature-content::-webkit-scrollbar {
    width: 6px;
}

.feature-content::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 10px;
}

.feature-content::-webkit-scrollbar-thumb {
    background: var(--turkuaz);
    border-radius: 10px;
}

.feature-content::-webkit-scrollbar-thumb:hover {
    background: var(--turkuaz-koyu);
}

.feature-content p {
    margin-bottom: 12px;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

/* Özellikler Listesi */
.product-features {
    background: var(--bg-secondary);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.features-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--turkuaz);
    border-radius: 3px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
    color: var(--text-secondary);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--turkuaz);
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Modeller Tablosu */
.models-section {
    margin: 60px 0;
}

.models-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.models-section h2 span {
    color: var(--turkuaz);
}

/* Tablo responsive wrapper */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 0 -15px;
    padding: 0 15px;
}

/* Tablo tasarımı */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    border: 1px solid var(--border-color);
    min-width: 900px;
}

/* Başlık stilleri */
.spec-table th {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    padding: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--turkuaz);
    white-space: nowrap;
}

/* Hücre stilleri */
.spec-table td {
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-align: center;
    font-size: 0.95rem;
    white-space: nowrap;
}

.spec-table tbody tr:hover {
    background: var(--bg-secondary);
    transition: background 0.3s ease;
}

.spec-table tbody tr:last-child td {
    border-bottom: none;
}

/* İlk hücre (Model adı) */
.spec-table tbody td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 600;
    color: var(--turkuaz);
}

/* Son hücre */
.spec-table tbody td:last-child {
    border-radius: 0 12px 12px 0;
}

/* ===== MİNİMAL BUTONLAR ===== */

/* Fiyat/WhatsApp butonu */
.btn-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 12px;
    background: #25D366;
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-price i {
    font-size: 1rem;
}

.btn-price:hover {
    background: #20ba5c;
    transform: scale(1.05);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.3);
    color: white;
}

/* Döküman butonu */
.btn-doc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 10px;
    background: transparent;
    color: var(--turkuaz);
    border: 1px solid var(--turkuaz);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-doc i {
    font-size: 1rem;
}

.btn-doc:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    transform: scale(1.05);
}

/* Dark tema uyumu */
[data-theme="dark"] .btn-doc {
    border-color: var(--turkuaz);
    color: var(--turkuaz);
}

[data-theme="dark"] .btn-doc:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
}

/* Daha da minimal butonlar - sadece ikon */
.btn-price-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-price-minimal i {
    font-size: 1.1rem;
}

.btn-price-minimal:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
}

.btn-doc-minimal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    color: var(--turkuaz);
    border: 1px solid var(--turkuaz);
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-doc-minimal i {
    font-size: 1.1rem;
}

.btn-doc-minimal:hover {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    transform: scale(1.1);
}

.table-btn {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.table-btn a {
    padding: 5px;
    text-decoration: none;
}

/* Teknik Özellikler */
.technical-specs-section {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.technical-specs-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.technical-specs-title span {
    color: var(--turkuaz);
}

.technical-specs-content {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    color: var(--text-secondary);
    line-height: 1.8;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* İstatistik Kartları */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 60px 0;
}

.stat-card {
    background: var(--card-bg);
    padding: 15px 10px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--turkuaz);
    box-shadow: 0 20px 40px var(--shadow-color);
}

.stat-card h4 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 15px 0 10px;
    text-align: center;
}

.stat-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

.stat-card i {
    font-size: 3rem;
    color: var(--turkuaz);
    display: block;
    margin-bottom: 15px;
}

/* Ürün Butonları */
.product-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-brochure {
    background: var(--turkuaz);
    color: var(--koyu-mavi);
    border: 2px solid var(--turkuaz);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-brochure:hover {
    background: var(--turkuaz-koyu);
    color: var(--beyaz);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 179, 198, 0.3);
}

.btn-offer {
    background: transparent;
    color: var(--turkuaz);
    border: 2px solid var(--turkuaz);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-offer:hover {
    background: var(--turkuaz);
    color: var(--beyaz);
    transform: translateY(-2px);
}

/* Benzer Ürünler */
.similar-products-section {
    padding: 60px 0;
    background: var(--bg-primary);
}

.similar-products-title {
    color: var(--text-primary);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.similar-products-title span {
    color: var(--turkuaz);
}

/* ========== İKONLAR ========== */
.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    transition: all 0.3s ease;
}

.icon-2x {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.icon-3x {
    display: inline-block;
    width: 2em;
    height: 2em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.icon-4x {
    display: inline-block;
    width: 3em;
    height: 3em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

/* ========== DARK TEMA DÜZENLEMELERİ ========== */
[data-theme="dark"] .service-card,
[data-theme="dark"] .reference-card,
[data-theme="dark"] .news-card,
[data-theme="dark"] .stat-card,
[data-theme="dark"] .feature-card,
[data-theme="dark"] .search-suggestions {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .service-card h4,
[data-theme="dark"] .reference-card,
[data-theme="dark"] .reference-name,
[data-theme="dark"] .news-card h3,
[data-theme="dark"] .stat-card h4 {
    color: var(--text-primary);
}

[data-theme="dark"] .news-card p,
[data-theme="dark"] .stat-card p,
[data-theme="dark"] .feature-text p,
[data-theme="dark"] .feature-text li,
[data-theme="dark"] .feature-content {
    color: var(--text-secondary);
}

[data-theme="dark"] .feature-text li::before,
[data-theme="dark"] .feature-card h3 i,
[data-theme="dark"] .feature-card h1 i {
    color: var(--turkuaz);
}

[data-theme="dark"] .feature-content {
    scrollbar-color: var(--turkuaz) var(--card-bg);
}

[data-theme="dark"] .feature-content::-webkit-scrollbar-track {
    background: var(--card-bg);
}

[data-theme="dark"] .spec-table th {
    background: var(--turkuaz-koyu);
    color: var(--beyaz);
}

[data-theme="dark"] .spec-table td {
    border-color: var(--border-color);
}

[data-theme="dark"] #map {
    filter: brightness(0.8) contrast(1.2);
}

[data-theme="dark"] .search-highlight {
    background-color: rgba(0, 179, 198, 0.3);
    color: var(--turkuaz);
    text-shadow: 0 0 5px rgba(0, 179, 198, 0.5);
}

/* ========== CKEDITOR5 STYLES ========== */
.ck-content {
    color: var(--text-primary) !important;
    line-height: 1.8 !important;
}

.ck-content h1,
.ck-content h2,
.ck-content h3,
.ck-content h4 {
    color: var(--text-primary) !important;
}

.ck-content p,
.ck-content li {
    color: var(--text-secondary) !important;
}

.ck-content span {
    background-color: transparent !important;
    color: inherit !important;
}

[data-theme="dark"] .ck-content h1,
[data-theme="dark"] .ck-content h2,
[data-theme="dark"] .ck-content h3,
[data-theme="dark"] .ck-content h4 {
    color: var(--beyaz) !important;
}

/* ========== SLIDER ÜRÜN BİLGİLERİ ========== */
.product-info h3 {
    margin-top: 40px;
}

.product-info p {
    color: var(--turkuaz);
    margin-top: 10px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1400px) {
    .slider-item {
        width: 250px;
        height: 330px;
        margin-left: -125px;
        margin-top: -165px;
    }

    .product-image {
        width: 110px;
        height: 110px;
    }

    .product-image i {
        font-size: 3.5rem;
    }

    .hero-section {
        padding: 50px 0 0;
    }

    .product-slider-3d {
        height: 550px;
    }

    .slider-controls {
        bottom: 10px;
    }
}

@media (max-width: 1200px) {
    .slider-item {
        width: 220px;
        height: 300px;
        margin-left: -110px;
        margin-top: -150px;
    }

    .product-image {
        width: 100px;
        height: 100px;
    }

    .product-image i {
        font-size: 3rem;
    }

    .hero-section {
        padding: 40px 0 0;
    }

    .product-slider-3d {
        height: 500px;
    }

    .slider-controls {
        bottom: 5px;
    }

    .slider-prev,
    .slider-next {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .dot {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 991.98px) {
    .search-wrapper {
        margin: 10px 0 5px;
        width: 100%;
    }

    .search-toggle {
        width: 100%;
        padding: 12px;
    }

    .search-dropdown {
        position: fixed;
        top: auto;
        left: 20px;
        right: 20px;
        width: auto;
        margin-top: 10px;
    }

    .theme-toggle {
        margin: 10px 0 0;
        width: 100%;
        border-radius: 30px;
    }

    .custom-navbar .navbar-nav .nav-link {
        text-align: center;
        margin: 2px 0;
        padding: 12px !important;
    }

    .custom-navbar .navbar-nav .nav-link::after {
        bottom: 4px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .contact-form-card {
        padding: 25px;
    }

    /* Ürün Kartları */
    .product-card-new {
        padding: 25px 20px 20px;
    }

    .product-card-title {
        font-size: 1.2rem;
    }

    .product-card-image {
        width: 150px;
        height: 150px;
    }

    .product-icon-circle i {
        font-size: 3rem;
    }

    .product-card-btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    /* Hizmet Kartları */
    .service-card {
        padding: 20px 15px;
    }

    .service-icon-mini {
        font-size: 2rem;
    }

    .service-card h4 {
        font-size: 1rem;
    }

    /* Referans Kartları */
    .reference-card {
        padding: 8px;
        gap: 8px;
        min-height: 70px;
    }

    .reference-logo-wrapper {
        width: 40px;
    }

    .reference-name {
        font-size: 0.9rem;
    }

    /* Haber Kartları */
    .news-card {
        padding: 20px;
    }

    .news-card h3 {
        font-size: 1.1rem;
    }

    /* Ürün Detay */
    .product-detail-title {
        font-size: 2rem;
    }

    .product-detail-icon {
        font-size: 6rem;
    }

    .product-buttons {
        flex-direction: column;
    }

    .btn-brochure,
    .btn-offer {
        width: 100%;
        justify-content: center;
    }

    .feature-row {
        flex-direction: column;
        gap: 30px;
    }

    .feature-image {
        height: 300px;
        width: 100%;
    }

    .feature-text h2 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        height: 350px;
        padding: 20px;
    }

    .feature-card h3,
    .feature-card h1 {
        font-size: 1.2rem;
    }

    .feature-card h3 i,
    .feature-card h1 i,
    .feature-card h3 svg,
    .feature-card h1 svg {
        font-size: 1.5rem;
        width: 1.5rem;
        height: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .spec-table {
        font-size: 0.9rem;
    }

    .spec-table th,
    .spec-table td {
        padding: 8px;
    }

    .btn-price,
    .btn-doc {
        padding: 4px 8px;
        font-size: 0.8rem;
    }

    .btn-price i,
    .btn-doc i {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .search-dropdown {
        left: 10px;
        right: 10px;
        padding: 20px;
    }

    .product-card-image {
        width: 120px;
        height: 120px;
    }

    .reference-card {
        padding: 5px;
        min-height: 60px;
    }

    .reference-logo-wrapper {
        width: 35px;
    }

    .reference-name {
        font-size: 0.8rem;
    }

    .feature-image {
        height: 250px;
    }

    .spec-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* ========== 404 SAYFASI ========== */
.error-page {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.error-page::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 138, 68, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-page::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 138, 68, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.error-code {
    position: relative;
    display: inline-block;
}

.error-code span {
    display: inline-block;
    text-shadow: 10px 10px 20px var(--shadow-color);
    animation: float 3s ease-in-out infinite;
}

.error-code span:nth-child(1) {
    animation-delay: 0s;
}

.error-code span:nth-child(2) {
    animation-delay: 0.2s;
}

.error-code span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Popüler ürün kartları */
.popular-product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.popular-product-card:hover {
    transform: translateY(-5px);
    border-color: var(--turkuaz);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.popular-product-card h6 {
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.popular-product-card:hover h6 {
    color: var(--turkuaz);
}

/* Yardım ipuçları */
.tip-item {
    text-align: center;
    padding: 15px;
}

.tip-item i {
    transition: transform 0.3s ease;
}

.tip-item:hover i {
    transform: scale(1.1);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .error-page {
        padding: 60px 0;
    }

    .error-code .display-1 {
        font-size: 4rem;
    }

    .popular-products .row {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .error-code .display-1 {
        font-size: 3rem;
    }

    .display-4 {
        font-size: 1.8rem;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}


/* static/css/style.css - 500 sayfası için ek stiller */

.contact-info-error {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.debug-info {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    border: 1px solid #404040;
}

.debug-info pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    color: #00ff00;
    margin: 0;
}

/* Dark tema uyumu */
[data-theme="dark"] .debug-info {
    background: #1e1e1e !important;
    color: #d4d4d4 !important;
}

[data-theme="dark"] .debug-info pre {
    color: #6a9955 !important;
}


/* ========== 404 SAYFASI ========== */