/* Custom CSS for Çağdaş Tarım E-commerce */

:root {
    --primary-color: #00a550;
    --secondary-color: #00adee;
    --accent-color: #ec1b23;
    --primary-dark: #007a3d;
    --secondary-dark: #0088bb;
    --accent-dark: #c41520;
    --light-color: #e8f7f0;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

a {
    text-decoration: none !important;
}

a:hover, a:active, a:focus {
    text-decoration: none !important;
}


/* Header Styles */
.header-top {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.header-contact span {
    margin-right: 15px;
}

.header-contact i {
    margin-right: 5px;
    color: var(--secondary-color);
}

.header-social a {
    color: white;
    margin-left: 10px;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.header-social a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Navbar Styles - İki satırlı modern tasarım */
.navbar {
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 24px;
    color: var(--primary-color) !important;
    padding: 0;
    text-decoration: none;
    flex-shrink: 0; /* Logo küçülmesin */
}

.brand-text {
    margin-left: 10px;
    color: var(--primary-color);
}

/* Üst navbar - Logo, Arama, Sepet, Hesap - Tamamen merkezi hizalama */
.top-navbar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
}

.top-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    width: 100%;
    box-sizing: border-box;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 28px;
    color: var(--primary-color) !important;
    padding: 0;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 280px;
    justify-content: flex-start; /* Logo sola yaslanır */
}

.navbar-brand img {
    height: 55px;
    margin-right: 15px;
}

.brand-text {
    margin-left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1; /* Ana alanı kaplasın */
    justify-content: space-between; /* İçeriği dağıt: search solda, butonlar sağda */
    max-width: none;
    min-width: 0;
}

/* Search Box - Logo ile butonlar arasında tam alan kaplasın */
.search-box {
    display: flex;
    align-items: center;
    height: 58px;
    flex: 1; /* Mevcut alanın tamamını kaplasın */
    width: 100%;
    margin: 0 20px; /* Sol ve sağdan margin */
    /* position ve transform kaldırıldı - normal flex layout */
}

.search-box input {
    border-radius: 29px 0 0 29px;
    border: 2px solid var(--border-color); /* Daha kalın border */
    padding: 16px 25px; /* Daha büyük padding */
    width: 100%;
    height: 58px;
    font-size: 16px; /* Daha büyük font */
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 165, 80, 0.1);
    background: white;
}

.search-box input::placeholder {
    color: var(--text-light);
    font-size: 14px;
}

.search-box button {
    border-radius: 0 29px 29px 0;
    border: none;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 25px; /* Daha büyük padding */
    height: 58px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    font-size: 18px; /* Daha büyük ikon */
}

/* Alt navbar - Modern menü - Düzeltildi */
.bottom-navbar {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 0;
    width: 100%;
    display: block !important;
}

.bottom-navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bottom-navbar .navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.modern-menu {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-direction: row !important;
}

.modern-menu .nav-item {
    position: relative;
    margin: 0;
}

/* Mobil görünümde hamburger menü düzeltmesi */
@media (max-width: 991.98px) {
    .bottom-navbar .navbar-collapse {
        display: none !important;
    }

    .bottom-navbar .navbar-collapse.show {
        display: block !important;
        width: 100%;
        background: var(--primary-color);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        border-radius: 0 0 10px 10px;
    }

    .modern-menu {
        flex-direction: column !important;
        align-items: stretch;
        width: 100%;
    }

    .modern-menu .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
    }
}

/* Desktop görünümde hamburger menü gizleme */
@media (min-width: 992px) {
    .navbar-toggler {
        display: none !important;
    }

    .bottom-navbar .navbar-collapse {
        display: flex !important;
    }
}

/* Hero Section with Sidebar */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 20px 0;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/upload/hero/hero_3.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

/* Categories Sidebar */
.categories-sidebar {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    margin-bottom: 20px;
    max-width: 220px; /* Maksimum genişlik sınırı */
}

.sidebar-title {
    background: var(--primary-color);
    color: white;
    padding: 12px 16px; /* Daha kompakt padding */
    margin: 0;
    font-size: 14px; /* Daha küçük font */
    font-weight: 600;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px; /* Daha kompakt padding */
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px; /* Daha küçük font */
}

.category-link:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.category-link i:first-child {
    margin-right: 10px; /* Daha az margin */
    width: 14px; /* Daha küçük ikon alanı */
    color: var(--secondary-color);
    font-size: 12px; /* Daha küçük ikon */
}

.category-link span {
    flex: 1;
    font-weight: 500;
}

.category-link i:last-child {
    font-size: 10px; /* Daha küçük ok ikonu */
    opacity: 0.5;
}

/* Hero Slider */
.hero-slider {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.hero-slide {
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 165, 80, 0.4), rgba(0, 173, 238, 0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 40px;
    max-width: 500px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.95;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}

/* Banner Cards */
.banner-cards {
    margin-top: 20px;
}

.banner-card {
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.banner-card:hover {
    transform: translateY(-3px);
}

.banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.banner-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.banner-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.banner-content p {
    font-size: 0.9rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background-color: white;
    padding: 60px 0;
}

.feature-card {
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-color);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* Section Header Styles - Görsel Başlıklar */
.section-header {
    position: relative;
    margin-bottom: 60px;
}

.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 165, 80, 0.3);
    position: relative;
    z-index: 2;
}

.section-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

.title-text {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-decoration {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.title-decoration::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
}

.title-decoration::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    opacity: 0.6;
}

.section-subtitle i {
    color: var(--primary-color);
    font-size: 16px;
    animation: iconFloat 2s ease-in-out infinite alternate;
}

/* Animations */
@keyframes iconPulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-5px);
    }
}

/* Product Filter Tabs */
.nav-pills .nav-link {
    color: var(--text-dark);
    background: transparent;
    border: 2px solid var(--border-color);
    margin: 0 5px 10px 0;
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Modern Product Cards */
.modern-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.modern-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.product-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-product-card:hover .product-img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-product-card:hover .product-overlay {
    opacity: 1;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
}

.product-badges span {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-right: 5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.badge-sale {
    background: var(--accent-color);
    color: white;
}

.badge-new {
    background: var(--secondary-color);
    color: white;
}

.badge-bestseller {
    background: var(--accent-color);
    color: white;
}

.badge-eco {
    background: var(--primary-color);
    color: white;
}

.badge-professional {
    background: var(--primary-dark);
    color: white;
}

.badge-premium {
    background: var(--primary-dark);
    color: white;
}

.badge-organic {
    background: var(--primary-color);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 2px;
}

.product-rating i {
    color: #ffc107;
    font-size: 12px;
}

.product-rating .fa-star,
.product-rating .fa-star-half-alt {
    color: #ffc107;
}

.product-rating .fa-star.far {
    color: #ddd;
}

.rating-count {
    font-size: 11px;
    color: var(--text-light);
    margin-left: 8px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.3;
}

.product-desc {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-price-section {
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.save-amount {
    display: block;
    font-size: 11px;
    color: #e74c3c;
    font-weight: 600;
    margin-top: 2px;
}

.product-stock {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.stock-status {
    font-size: 12px;
    font-weight: 600;
}

.stock-status.in-stock {
    color: #27ae60;
}

.stock-status.low-stock {
    color: #f39c12;
}

.stock-count {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
}

.btn-add-cart {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Load More Button */
#loadMoreBtn {
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: 600;
    transition: all 0.3s ease;
}

#loadMoreBtn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Category Cards (Updated) */
.category-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--primary-color);
}

.category-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 25px;
}

.category-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(rgba(232, 245, 232, 0.9), rgba(248, 249, 250, 0.9)),
    url('/upload/hero/hero_3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
    opacity: 0.06;
    z-index: 0;
}

.about-section > .container {
    position: relative;
    z-index: 1;
}

.about-content {
    padding-right: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-stats {
    margin-top: 40px;
    background: rgba(46, 125, 50, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    font-weight: 500;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-heavy);
    border: 5px solid rgba(255, 255, 255, 0.9);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    opacity: 0.3;
    z-index: -1;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(0, 165, 80, 0.85), rgba(0, 173, 238, 0.85)),
    url('https://images.unsplash.com/photo-1500595046743-cd271d694d30?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin: 60px 0;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 80, 0.1);
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.newsletter-section p {
    font-size: 1.2rem;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .input-group {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    padding: 18px 25px;
    font-size: 1.1rem;
    border-radius: 50px 0 0 50px;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
    border-color: transparent;
}

.newsletter-form .btn {
    padding: 18px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 50px 50px 0;
    transition: all 0.3s ease;
}

.newsletter-form .btn:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: #1a1a1a !important;
    padding: 50px 0 20px;
}

.footer h5,
.footer h6 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer p {
    color: #cccccc;
    line-height: 1.7;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.contact-info p {
    margin-bottom: 10px;
    color: #cccccc;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 15px;
}

/* Modern Cart & Account Dropdowns - Büyütülmüş */
.cart-link, .account-link {
    display: flex !important;
    align-items: center;
    padding: 16px 20px !important; /* Daha büyük padding */
    margin: 0 10px; /* Daha fazla margin */
    border-radius: 12px; /* Daha büyük border radius */
    transition: all 0.3s ease;
    color: var(--text-dark) !important;
    text-decoration: none;
    position: relative;
    background: rgba(255, 255, 255, 0.9); /* Daha opak background */
    border: 2px solid rgba(0, 165, 80, 0.1); /* Daha kalın border */
    height: 58px; /* Search box ile aynı yükseklik */
    min-width: 140px; /* Daha geniş minimum genişlik */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Hafif gölge */
}

.cart-link:hover, .account-link:hover {
    background: var(--light-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px); /* Daha fazla yükselme */
    box-shadow: 0 6px 20px rgba(0, 165, 80, 0.2);
    border-color: var(--primary-color);
}

/* Cart Link Styles - Büyütülmüş */
.cart-link {
    gap: 15px; /* Daha fazla gap */
    min-width: 160px; /* Daha geniş */
    justify-content: space-between;
}

.cart-link .fas.fa-shopping-cart {
    font-size: 22px; /* Daha büyük ikon */
    color: var(--primary-color);
    position: relative;
}

.cart-badge {
    background: linear-gradient(135deg, var(--accent-color), #ff3333);
    color: white;
    border-radius: 50%;
    width: 22px; /* Daha büyük badge */
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px; /* Daha büyük font */
    font-weight: 700;
    position: absolute;
    top: -10px;
    right: -10px;
    animation: pulse 2s infinite;
    box-shadow: 0 3px 10px rgba(236, 27, 35, 0.4);
    border: 2px solid white;
}

.cart-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 3px; /* Daha fazla gap */
}

.cart-total {
    font-weight: 700;
    font-size: 16px; /* Daha büyük font */
    color: var(--primary-color);
    line-height: 1;
}

.cart-items-count {
    font-size: 12px; /* Daha büyük font */
    color: var(--text-light);
    font-weight: 500;
    line-height: 1;
}

/* Account Link Styles - Büyütülmüş */
.account-link {
    gap: 12px; /* Daha fazla gap */
    min-width: 140px; /* Daha geniş */
}

.account-avatar {
    width: 40px; /* Daha büyük avatar */
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px; /* Daha büyük ikon */
    box-shadow: 0 4px 15px rgba(0, 165, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.account-text {
    font-weight: 600;
    font-size: 15px; /* Daha büyük font */
    color: var(--text-dark);
}

/* Account Dropdown - Düzeltildi */
.account-dropdown {
    width: 280px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    margin-top: 12px !important;
    overflow: hidden !important;
    background: white !important;
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 100% !important;
    z-index: 1000 !important;
    /* Varsayılan olarak gizli */
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.dropdown-menu.account-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Account Dropdown Eksik Stiller - Hesabım Dropdown Düzeltmesi */
.account-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0;
}

.user-avatar {
    font-size: 32px;
    opacity: 0.9;
    color: white;
}

.user-info h6 {
    margin: 0 0 4px 0;
    font-weight: 600;
    font-size: 16px;
    color: white;
}

.user-info small {
    opacity: 0.9;
    font-size: 13px;
    color: white;
}

.account-actions {
    padding: 15px 0;
    background: white;
    margin: 0;
}

.account-actions .dropdown-item {
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.account-actions .dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.account-actions .dropdown-item i {
    margin-right: 10px;
    width: 16px;
    color: var(--text-light);
}

.account-menu {
    background: white;
}

.account-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    text-decoration: none;
}

.account-menu .dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.account-menu .dropdown-item i {
    width: 16px;
    color: var(--text-light);
    margin-right: 10px;
}

.account-dropdown .dropdown-divider {
    margin: 0;
    opacity: 0.1;
    border-color: var(--border-color);
}

.account-dropdown .text-danger {
    color: var(--accent-color) !important;
}

.account-dropdown .text-danger:hover {
    background: #fff5f5 !important;
    color: var(--accent-color) !important;
    padding-left: 25px;
}

/* Cart Dropdown - Düzeltilmiş ve Optimize Edilmiş */
.cart-dropdown {
    width: 400px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
    margin-top: 12px !important;
    overflow: hidden !important;
    max-height: 500px !important;
    background: white !important;
    position: absolute !important;
    right: 0 !important;
    left: auto !important;
    top: 100% !important;
    z-index: 1000 !important;
    /* Varsayılan olarak gizli */
    display: none !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

/* Bootstrap dropdown show class'ı aktif olduğunda görünür yap */
.dropdown-menu.cart-dropdown.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.cart-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    border-radius: 12px 12px 0 0 !important;
}

.cart-header h6 {
    margin: 0 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    color: white !important;
}

.cart-items {
    background: white !important;
    max-height: 300px !important;
    overflow-y: auto !important;
    padding: 0 !important;
    margin: 0 !important;
}

.cart-item {
    display: flex !important;
    align-items: center !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid var(--border-color) !important;
    transition: background-color 0.3s ease !important;
    background: white !important;
}

.cart-item:hover {
    background-color: #f8f9fa !important;
}

.cart-item:last-child {
    border-bottom: none !important;
}

.cart-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    margin-right: 15px !important;
    border: 1px solid var(--border-color) !important;
    flex-shrink: 0 !important;
}

.item-details {
    flex: 1 !important;
    min-width: 0 !important;
}

.item-details h6 {
    margin: 0 0 5px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    line-height: 1.3 !important;
}

.item-price {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-bottom: 3px !important;
}

.item-quantity {
    font-size: 12px !important;
    color: var(--text-light) !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.btn-remove {
    background: none !important;
    border: none !important;
    color: var(--text-light) !important;
    font-size: 14px !important;
    padding: 5px !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    margin-left: 10px !important;
    flex-shrink: 0 !important;
}

.btn-remove:hover {
    background-color: var(--accent-color) !important;
    color: white !important;
    transform: scale(1.1) !important;
}

.cart-footer {
    background: white !important;
    padding: 20px !important;
    border-radius: 0 0 12px 12px !important;
    border-top: 1px solid var(--border-color) !important;
    margin: 0 !important;
}

.cart-total-section {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 15px !important;
    padding: 10px 0 !important;
    border-top: 2px solid var(--border-color) !important;
    border-bottom: 2px solid var(--border-color) !important;
}

.total-label {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
}

.total-amount {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
}

.cart-actions {
    display: flex !important;
    gap: 10px !important;
}

.cart-actions .btn {
    flex: 1 !important;
    padding: 10px 15px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    text-align: center !important;
    display: inline-block !important;
    border: 2px solid transparent !important;
}

.cart-actions .btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
}

.cart-actions .btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.cart-actions .btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.cart-actions .btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px) !important;
}

/* Cart Scrollbar Styling */
.cart-items::-webkit-scrollbar {
    width: 6px !important;
}

.cart-items::-webkit-scrollbar-track {
    background: #f1f1f1 !important;
    border-radius: 3px !important;
}

.cart-items::-webkit-scrollbar-thumb {
    background: var(--primary-color) !important;
    border-radius: 3px !important;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark) !important;
}

/* Responsive düzeltmeleri */
@media (max-width: 576px) {
    .cart-dropdown, .account-dropdown {
        width: 95vw !important;
        max-width: 350px !important;
        right: 10px !important;
        left: 10px !important;
    }

    .cart-item {
        padding: 12px 16px !important;
    }

    .cart-item img {
        width: 50px !important;
        height: 50px !important;
    }

    .cart-actions {
        flex-direction: column !important;
        gap: 8px !important;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.modern-menu .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 18px 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.modern-menu .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.modern-menu .nav-link:hover::before,
.modern-menu .nav-link.active::before {
    width: 100%;
}

.modern-menu .nav-link:hover,
.modern-menu .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
}

.modern-menu .nav-link i {
    font-size: 16px;
}

/* Dropdown menü modernizasyonu */
.modern-menu .dropdown-menu {
    background: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 5px;
    min-width: 220px;
}

.modern-menu .dropdown-item {
    padding: 12px 20px;
    color: var(--text-dark);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
}

.modern-menu .dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
    padding-left: 25px;
}

.modern-menu .dropdown-item i {
    width: 16px;
    color: var(--text-light);
    font-size: 14px;
}

/* Mobil hamburger menü */
.navbar-toggler {
    border: none;
    background: transparent;
    color: white;
    font-size: 18px;
    padding: 10px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background: none;
    width: 24px;
    height: 2px;
    background-color: white;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Cart Dropdown - Düzeltildi ve Tamamlandı */
.cart-dropdown {
    width: 400px;
    padding: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-top: 12px;
    overflow: hidden;
    animation: slideDown 0.3s ease-out;
    max-height: 500px;
    display: flex;
    flex-direction: column;
    /* Varsayılan olarak gizli */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

/* Bootstrap dropdown show class'ı aktif olduğunda görünür yap */
.dropdown-menu.cart-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    display: flex !important;
}

/* ================================
   ÜRÜNLER SAYFASI STİLLERİ
   ================================ */

.products-hero {
    background: linear-gradient(135deg, rgba(0, 165, 80, 0.6) 0%, rgba(39, 174, 96, 0.5) 100%),
    url('/upload/hero/hero_2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 100px;
    color: white;
    position: relative;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.products-hero h1 {
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

.products-hero .lead {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
}

.filter-sidebar {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-section {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
}

.category-item {
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: rgba(39, 174, 96, 0.05);
    padding-left: 10px;
}

.category-link {
    color: #495057;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.category-link:hover {
    color: #27ae60;
}

.category-count {
    background: #e9ecef;
    color: #6c757d;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
}

.subcategory-list {
    margin-left: 15px;
    margin-top: 10px;
    display: none;
}

.subcategory-list.show {
    display: block;
}

.subcategory-item {
    padding: 5px 0;
}

.subcategory-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 13px;
}

.subcategory-link:hover {
    color: #27ae60;
}

.price-range {
    margin-bottom: 15px;
}

.price-input {
    width: 80px;
    font-size: 14px;
}

.filter-checkbox {
    margin-right: 8px;
}

.filter-label {
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    margin-bottom: 8px;
    display: block;
}

.products-header {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f2f5;
}

.products-header .row {
    align-items: center;
}

.products-header .col-md-6:first-child {
    padding-left: 20px;
}

.products-header .col-md-6:last-child {
    padding-right: 20px;
}

.products-result-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.products-result-info strong {
    color: var(--primary-color);
    font-size: 18px;
}

.products-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.sort-dropdown {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    background: white;
    color: #495057;
    font-weight: 500;
    min-width: 200px;
    transition: all 0.3s ease;
}

.sort-dropdown:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.view-toggle {
    display: flex;
    gap: 10px;
}

.view-btn {
    border: 1px solid #ddd;
    background: white;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #e74c3c;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.product-badge.new {
    background: #27ae60;
}

.product-badge.sale {
    background: #f39c12;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}


.product-category {
    color: #27ae60;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.product-category .category-link {
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-category .category-link:hover {
    color: #1e7e45;
}


.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 15px;
}

.product-price .old-price {
    font-size: 14px;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-add-cart {
    background: #27ae60;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    flex: 1;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    background: #229954;
    color: white;
}

.btn-wishlist {
    background: white;
    color: #6c757d;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-wishlist:hover {
    background: #f8f9fa;
    color: #e74c3c;
}

.list-view .product-card {
    margin-bottom: 20px;
}

.list-view .product-content {
    display: flex;
    align-items: center;
}

.list-view .product-image {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

.list-view .product-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.list-view .product-details {
    flex: 1;
}

.list-view .product-actions {
    flex-direction: column;
    min-width: 120px;
}

.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

.mobile-filter-btn {
    display: none;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
}

.mobile-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

/* Modern Pagination Styles */
.pagination-wrapper {
    margin-top: 60px;
    text-align: center;
    padding: 20px;
}

.pagination {
    display: inline-flex;
    gap: 8px;
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f2f5;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 12px 16px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    min-height: 45px;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), #2ecc71);
    color: white;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
    transform: translateY(-2px);
}

.pagination .page-item:not(.active):not(.disabled) .page-link:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pagination .page-item.disabled .page-link {
    background: #f8f9fa;
    color: #adb5bd;
    cursor: not-allowed;
}

.pagination .page-item:first-child .page-link {
    border-radius: 12px;
    padding: 12px 20px;
}

.pagination .page-item:last-child .page-link {
    border-radius: 12px;
    padding: 12px 20px;
}

.pagination .page-link i {
    font-size: 12px;
}

@media (max-width: 768px) {
    .mobile-filter-btn {
        display: block;
    }

    .filter-sidebar {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 1050;
        overflow-y: auto;
        background: white;
        padding: 60px 20px 20px 20px; /* Üstten daha fazla padding */
    }

    .filter-sidebar.show {
        display: block;
    }

    .filter-close {
        position: fixed; /* Absolute yerine fixed */
        top: 15px;
        right: 15px;
        background: #e74c3c;
        border: none;
        font-size: 18px;
        color: white;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1052; /* Daha yüksek z-index */
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    }

    .filter-close:hover {
        background: #c0392b;
        transform: scale(1.1);
    }

    /* Filter content mobilde daha kompakt */
    .filter-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid #e9ecef;
    }

    .filter-title {
        font-size: 15px;
        margin-bottom: 12px;
        color: #2c3e50;
        font-weight: 600;
    }

    .category-item {
        padding: 6px 0;
    }

    .category-link {
        font-size: 13px;
        padding: 8px 0;
    }

    .subcategory-list {
        margin-left: 12px;
        margin-top: 8px;
    }

    .subcategory-link {
        font-size: 12px;
        padding: 4px 0;
        display: block;
    }

    .filter-label {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .price-range {
        margin-bottom: 12px;
    }

    .price-input {
        width: 70px;
        font-size: 13px;
        padding: 6px 8px;
    }

    /* Body scroll engelleme */
    body.filter-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    .products-header {
        padding: 20px;
    }

    .products-header .row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .products-header .col-md-6 {
        padding: 0;
    }

    .products-controls {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .sort-dropdown {
        min-width: 100%;
        max-width: 100%;
    }

    .pagination {
        flex-wrap: wrap;
        padding: 10px 15px;
        gap: 5px;
    }

    .pagination .page-link {
        padding: 10px 12px;
        min-width: 40px;
        min-height: 40px;
        font-size: 13px;
    }
}

/* Masaüstü sepet ve hesap butonlarını mobilde gizle */
@media (max-width: 991.98px) {
    .navbar-actions {
        display: none !important;
    }

    .top-navbar {
        display: none !important;
    }
}

/* ================================
   ÜRÜN DETAY SAYFASI STİLLERİ
   ================================ */

/* Breadcrumb Section */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-dark);
}

.breadcrumb-item.active {
    color: var(--text-light);
}

/* Product Detail Section */
.product-detail-section {
    background: white;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 20px;
}

.main-image-container {
    position: relative;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.main-product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: zoom-in;
}

.main-product-image:hover {
    transform: scale(1.02);
}

.product-badges {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.product-badges .badge {
    display: block;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.zoom-btn:hover {
    background: white;
    transform: scale(1.1);
}

.zoom-btn i {
    color: var(--text-dark);
    font-size: 16px;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumb-container {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.thumb-container:hover,
.thumb-container.active {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.thumb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-container:hover .thumb-image {
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding-left: 30px;
}

.product-category {
    margin-bottom: 15px;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-link:hover {
    color: var(--primary-dark);
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 18px;
}

.rating-score {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    color: var(--text-light);
    font-size: 14px;
}

.review-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.review-link:hover {
    color: var(--primary-dark);
}

/* Price Section */
.price-section {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 1.8rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--accent-color);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

/* Stock Status */
.stock-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.stock-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.stock-indicator.in-stock {
    color: #27ae60;
}

.stock-indicator.low-stock {
    color: #f39c12;
}

.stock-indicator.out-of-stock {
    color: #e74c3c;
}

.stock-count {
    color: var(--text-light);
    font-size: 14px;
}

/* Product Features */
.product-features {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.feature-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    font-size: 16px;
}

/* Product Actions */
.product-actions {
    background: white;
    padding: 5px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.quantity-section {
    margin-bottom: 25px;
}

.quantity-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.qty-btn {
    background: #f8f9fa;
    border: none;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: white;
}

.qty-input {
    border: none;
    width: 80px;
    height: 45px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    background: white;
    color: var(--text-dark);
}

.qty-input:focus {
    outline: none;
}

.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-add-cart {
    flex: 1;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 165, 80, 0.3);
}

.btn-wishlist,
.btn-compare {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-wishlist:hover,
.btn-compare:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Social Share */
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.whatsapp {
    background: #25d366;
}

.share-btn.telegram {
    background: #0088cc;
}

/* Product Tabs */
.product-tabs-section {
    background: #f8f9fa;
}

.product-nav-tabs {
    border: none;
    background: white;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.product-nav-tabs .nav-item {
    margin: 0 5px;
}

.product-nav-tabs .nav-link {
    border: none;
    background: transparent;
    color: var(--text-dark);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-nav-tabs .nav-link:hover,
.product-nav-tabs .nav-link.active {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.product-tab-content {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Description Content */
.description-content {
    line-height: 1.8;
}

.feature-list-detailed {
    padding-left: 20px;
    margin: 20px 0;
}

.feature-list-detailed li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.growing-conditions {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.condition-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.condition-item i {
    font-size: 20px;
}

.condition-item div strong {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.condition-item div span {
    color: var(--text-light);
    font-size: 14px;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.info-content h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.info-content p {
    margin: 0;
    color: var(--text-light);
    font-size: 14px;
}

/* Specifications Table */
.spec-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.spec-table .table {
    margin: 0;
}

.spec-table .table td {
    padding: 15px 20px;
    border-color: #f8f9fa;
    vertical-align: middle;
}

.spec-table .table tr:nth-child(even) {
    background: #f8f9fa;
}

/* Usage Steps */
.usage-steps {
    margin-bottom: 40px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Care Tips */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tip-item i {
    font-size: 30px;
    margin-bottom: 15px;
}

.tip-item h5 {
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.tip-item p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Reviews Section */
.rating-summary {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.overall-rating {
    margin-bottom: 30px;
}

.rating-score-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.rating-stars-large {
    margin-bottom: 10px;
}

.rating-stars-large i {
    color: #ffc107;
    font-size: 20px;
    margin: 0 2px;
}

.total-reviews {
    color: var(--text-light);
    font-size: 14px;
}

.rating-breakdown {
    margin-bottom: 30px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.star-count {
    font-size: 14px;
    font-weight: 600;
    min-width: 30px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: #ffc107;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-percent {
    font-size: 12px;
    color: var(--text-light);
    min-width: 35px;
    text-align: right;
}

.btn-write-review {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
}

/* Reviews List */
.reviews-list {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-filters {
    display: flex;
    justify-content: flex-end;
}

.review-filters .form-select {
    width: auto;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.review-item {
    border-bottom: 1px solid #e9ecef;
    padding: 25px 0;
}

.review-item:last-child {
    border-bottom: none;
}

.reviewer-info {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.reviewer-name {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-rating {
    margin-bottom: 5px;
}

.review-rating i {
    color: #ffc107;
    font-size: 14px;
}

.review-date {
    color: var(--text-light);
    font-size: 12px;
}

.review-content p {
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.btn-helpful {
    background: none;
    border: 1px solid #e9ecef;
    color: var(--text-light);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.btn-helpful:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Q&A Section */
.qa-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.qa-item {
    border-bottom: 1px solid #e9ecef;
    padding: 25px 0;
}

.qa-item:last-child {
    border-bottom: none;
}

.question h5 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.qa-date {
    color: var(--text-light);
    font-size: 12px;
}

.answer {
    margin-top: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.answer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.ask-question-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.ask-question-card h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.ask-question-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.btn-ask-question {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border-radius: 10px;
}

/* Related Products */
.related-products-section {
    background: #f8f9fa;
}

/* Image Zoom Modal */
.image-zoom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.zoom-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.zoom-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
}

.zoom-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.zoom-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Toast Styles */
.product-toast .toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-toast .toast-close {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.8;
}

.product-toast .toast-close:hover {
    opacity: 1;
}

/* ================================
   İLETİŞİM SAYFASI STİLLERİ
   ================================ */

/* Hero Section Enhancements */
.contact-quick-info .info-item {
    margin-bottom: 15px;
}

.contact-quick-info .info-icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.3);
}

.contact-quick-info .info-icon.bg-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.contact-quick-info .info-text h6 {
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text-dark);
}

.contact-quick-info .info-text small {
    font-size: 12px;
    color: var(--text-light);
}

/* Floating Elements Animation */
.hero-image-wrapper {
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(0, 165, 80, 0.2);
    backdrop-filter: blur(10px);
}

.floating-1 {
    top: 10%;
    right: 15%;
    animation: float1 6s ease-in-out infinite;
}

.floating-2 {
    bottom: 20%;
    left: 10%;
    animation: float2 8s ease-in-out infinite;
}

.floating-3 {
    top: 50%;
    right: 5%;
    animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(-10deg);
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
}

/* Modern Branch Cards */
.modern-branch-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #f0f2f5;
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.modern-branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: left 0.5s ease;
}

.modern-branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 165, 80, 0.15);
    border-color: var(--primary-color);
}

.modern-branch-card:hover::before {
    left: 100%;
}

.branch-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.branch-badge .badge {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 165, 80, 0.3);
}

.branch-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.branch-icon-wrapper {
    flex-shrink: 0;
}

.branch-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 165, 80, 0.3);
    transition: all 0.3s ease;
}

.branch-icon.bg-gradient-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.branch-icon.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.branch-icon.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8, #6610f2);
}

.branch-icon.bg-gradient-danger {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.modern-branch-card:hover .branch-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 165, 80, 0.4);
}

.branch-title h5 {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
}

.branch-subtitle {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.branch-info {
    margin-bottom: 25px;
}

.branch-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.branch-info .info-item i {
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    font-size: 14px;
}

.branch-actions {
    display: flex;
    gap: 10px;
}

.branch-actions .btn {
    flex: 1;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.branch-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.3);
}

/* Modern Map Section */
.modern-map-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.modern-map-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h4 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.5rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    min-height: 400px;
    position: relative;
}

.map-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
}

.map-icon {
    margin-bottom: 20px;
}

.map-icon i {
    font-size: 80px;
    color: var(--primary-color);
    opacity: 0.7;
}

.map-placeholder h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.map-placeholder p {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Modern Contact Form */
.modern-contact-form {
    background: white;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    position: relative;
    overflow: hidden;
}

.modern-contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

.form-header {
    margin-bottom: 35px;
    text-align: center;
}

.form-header h3 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-header p {
    font-size: 16px;
    line-height: 1.6;
}

.modern-form-group {
    margin-bottom: 25px;
}

.modern-form-group .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 15px;
}

.modern-form-group .form-label i {
    color: var(--primary-color);
    font-size: 14px;
}

.modern-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 20px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
}

.modern-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 165, 80, 0.1);
    background: white;
    transform: translateY(-2px);
}

.modern-input:valid {
    border-color: #28a745;
}

.modern-checkbox {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    margin-bottom: 25px;
}

.modern-checkbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.modern-checkbox .form-check-label {
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    margin-bottom: 8px;
    display: block;
}

.modern-submit-btn {
    width: 100%;
    padding: 18px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.modern-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modern-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 165, 80, 0.4);
}

.modern-submit-btn:hover::before {
    left: 100%;
}

.modern-submit-btn:active {
    transform: translateY(0);
}

/* Quick Contact Cards */
.quick-contact-card,
.regional-contact-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.quick-contact-card:hover,
.regional-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.quick-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-contact-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border: 2px solid #f0f2f5;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.quick-contact-method:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.15);
    transform: translateX(10px);
    color: inherit;
    text-decoration: none;
}

.quick-contact-method.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.15);
}

.quick-contact-method .method-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 20px;
    flex-shrink: 0;
}

.whatsapp .method-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
}

.live-chat .method-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.video-call .method-icon {
    background: linear-gradient(135deg, #0088cc, #00adee);
    color: white;
}

.phone-call .method-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.method-info {
    flex: 1;
    text-align: left;
}

.method-info h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.method-info span {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 3px;
}

.method-info small {
    color: var(--text-light);
    font-size: 12px;
}

.method-arrow {
    color: var(--text-light);
    font-size: 16px;
    transition: all 0.3s ease;
}

.quick-contact-method:hover .method-arrow {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Regional Grid */
.regional-grid {
    display: grid;
    gap: 15px;
}

.regional-item {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.regional-item:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 165, 80, 0.1);
    transform: translateY(-3px);
}

.region-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.region-header strong {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
}

.rep-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.rep-name {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.rep-phone {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s ease;
}

.rep-phone:hover {
    color: var(--primary-dark);
}

/* Modern FAQ Accordion */
.modern-accordion {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modern-accordion .accordion-item {
    border: none;
    background: white;
    margin-bottom: 2px;
}

.modern-accordion .accordion-button {
    background: white;
    border: none;
    padding: 25px 30px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
}

.modern-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: none;
}

.modern-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.modern-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.modern-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transform: rotate(180deg);
}

.modern-accordion .accordion-body {
    padding: 0 30px 25px 30px;
    background: white;
}

.modern-accordion .accordion-body p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-dark);
}

.faq-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.feature-tag {
    display: inline-block;
    padding: 6px 12px;
    background: var(--light-color);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid rgba(0, 165, 80, 0.2);
}

/* CTA Section Enhancements */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.cta-content,
.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-actions .btn {
    border-radius: 12px;
    font-weight: 600;
    padding: 15px 25px;
    transition: all 0.3s ease;
}

.cta-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* ================================
   HAKKIMIZDA SAYFASI STİLLERİ
   ================================ */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, rgba(0, 165, 80, 0.8) 0%, rgba(39, 174, 96, 0.7) 100%),
    url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content .lead {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    font-size: 1.3rem;
    opacity: 0.95;
}

/* About Main Section */
.about-main-section {
    background: white;
    position: relative;
}

.about-image-section {
    position: relative;
}

.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.main-image img {
    transition: transform 0.5s ease;
}

.main-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 3;
}

.image-badge .badge {
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    box-shadow: 0 5px 15px rgba(0, 165, 80, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.floating-stats {
    position: absolute;
    bottom: -30px;
    left: -30px;
    display: flex;
    gap: 15px;
    z-index: 4;
}

.stat-card {
    background: white;
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

.about-text .mission-values {
    margin-top: 30px;
}

.value-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 15px;
    font-weight: 500;
}

.value-item i {
    font-size: 16px;
    margin-right: 12px;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: #f8f9fa;
}

.mission-card,
.vision-card,
.values-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before,
.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: left 0.5s ease;
}

.mission-card:hover,
.vision-card:hover,
.values-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.mission-card:hover::before,
.vision-card:hover::before,
.values-card:hover::before {
    left: 100%;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 32px;
    box-shadow: 0 10px 30px rgba(0, 165, 80, 0.3);
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon,
.values-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 165, 80, 0.4);
}

.mission-card h3,
.vision-card h3,
.values-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    font-size: 15px;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* Product Categories Showcase */
.product-categories-section {
    background: white;
}

.category-showcase-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f2f5;
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.category-showcase-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 165, 80, 0.05), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.category-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 165, 80, 0.15);
    border-color: var(--primary-color);
}

.category-showcase-card:hover::before {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
    box-shadow: 0 8px 25px rgba(0, 165, 80, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.category-showcase-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(0, 165, 80, 0.4);
}

.category-showcase-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
}

.category-showcase-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
    position: relative;
    z-index: 2;
}

.category-features {
    list-style: none;
    padding: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.category-features li {
    padding: 6px 0;
    color: var(--text-light);
    font-size: 13px;
    position: relative;
    padding-left: 20px;
}

.category-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

/* Team Section */
.team-section {
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    transition: all 0.4s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 165, 80, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 14px;
}

.team-experience {
    color: var(--text-light);
    font-size: 13px;
    margin: 0;
}

/* Statistics Counter Section */
.statistics-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.1;
}

.stat-counter-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-counter-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-content .stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Quality & Certifications Section */
.quality-section {
    background: #f8f9fa;
}

.certifications-list {
    margin-top: 30px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.cert-item i {
    font-size: 24px;
    margin-top: 5px;
}

.cert-item h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.cert-item p {
    color: var(--text-light);
    margin: 0;
    font-size: 14px;
}

.cert-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f2f5;
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.badge-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .floating-stats {
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 30px;
    }

    .about-image-section {
        margin-top: 40px;
    }

    .mission-card,
    .vision-card,
    .values-card {
        margin-bottom: 30px;
    }

    .team-card {
        margin-bottom: 30px;
    }

    .category-showcase-card {
        margin-bottom: 30px;
    }

    .stat-counter-card {
        margin-bottom: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cert-badges {
        margin-top: 30px;
    }
}

@media (max-width: 767.98px) {
    .about-hero {
        padding: 60px 0 40px;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .floating-stats {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .stat-card {
        width: 200px;
    }

    .mission-card,
    .vision-card,
    .values-card {
        padding: 25px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .category-showcase-card {
        padding: 25px 20px;
    }

    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .team-image {
        height: 250px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .cert-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cert-badges {
        flex-direction: column;
        align-items: center;
    }

    .stat-content .stat-number {
        font-size: 2rem;
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.counter {
    animation: countUp 0.6s ease-out;
}
/* ================================
   ARAMA DROPDOWN STİLLERİ - EKLENEN
   ================================ */

/* Arama Kutusu Wrapper - Position relative gerekli */
.search-box-wrapper {
    position: relative;
    flex: 1;
    width: 100%;
    margin: 0 20px;
}

/* Arama Sonuçları Dropdown - Modern Tasarım */
.search-results-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-top: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    padding: 0;
}

.search-results-dropdown:not(:empty) {
    display: block;
}

.search-results-dropdown ul {
    list-style: none;
    padding: 8px;
    margin: 0;
}

.search-results-dropdown li {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.search-results-dropdown li:last-child {
    border-bottom: none;
}

.search-results-dropdown li:hover {
    background-color: #f8f9fa;
    border-radius: 8px;
}

.search-results-dropdown .row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-results-dropdown img {
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

.search-results-dropdown a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.search-results-dropdown a:hover {
    color: var(--primary-color);
}

.search-results-dropdown small a {
    color: #666;
    font-weight: 400;
    font-size: 12px;
}

.search-results-dropdown small a:hover {
    color: var(--primary-color);
}

.search-results-dropdown p {
    padding: 16px;
    margin: 0;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Scrollbar Stilleri - Arama Dropdown için */
.search-results-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    transition: all 0.3s ease;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    box-shadow: 0 0 6px rgba(0, 165, 80, 0.4);
}

/* Arama kutusu button hover efekti */
.search-box button:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 165, 80, 0.3);
}

/* Arama dropdown animasyonu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-results-dropdown {
    animation: slideDown 0.3s ease-out;
}

/* Mobil responsive - Arama dropdown */
@media (max-width: 768px) {
    .search-box-wrapper {
        margin: 0 10px;
    }

    .search-results-dropdown {
        max-height: 400px;
        font-size: 14px;
    }

    .search-results-dropdown li {
        padding: 10px;
    }

    .search-results-dropdown img {
        width: 40px;
        height: 40px;
    }
}
