/* ===== TARIM MARKET STYLES ===== */

/* Market Hero Section */
.hero {
    padding: 3rem 0 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.hero-logo-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #e8f5e8;
    transition: all 0.3s ease;
}

.hero-logo-container:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.15);
}

.hero-logo {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.feature-badge {
    background: linear-gradient(135deg, #6cb745, #5ba037);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(107, 183, 69, 0.3);
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Hero CTA Button Styles */
.hero-cta .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: normal;
}

.hero-cta .cta-btn.primary {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.hero-cta .cta-btn.primary:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: white;
}

.hero-cta .cta-btn.secondary {
    background: #25d366;
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.hero-cta .cta-btn.secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Keep old placeholder styles for backward compatibility */
.hero-img-placeholder {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    border: 2px dashed #81c784;
    border-radius: 12px;
    width: 300px;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.placeholder-icon {
    font-size: 4rem;
}

.placeholder-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4caf50;
    text-align: center;
    line-height: 1.3;
}

/* Categories Section Enhanced */
.categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.categories-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1b5e20;
    margin-bottom: 1rem;
    text-align: center;
}

.categories-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(46, 125, 50, 0.2);
    border-color: #2e7d32;
}

.category-header {
    text-align: center;
    margin-bottom: 2rem;
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.category-card h3 {
    font-size: 1.5rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 600;
}

.category-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature-tag {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(46, 125, 50, 0.3);
}

.category-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.category-actions {
    display: flex;
    gap: 1rem;
}

.category-btn {
    flex: 1;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.category-btn.primary {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.category-btn.primary:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: white;
}

.category-btn.secondary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.category-btn.secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.products-section:nth-child(even) {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(107, 183, 69, 0.2);
    border-color: #6cb745;
}

.product-image {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.product-info {
    padding: 1.5rem;
}

.product-info h4 {
    font-size: 1.3rem;
    color: #2e7d32;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-features span {
    background: #e8f5e8;
    color: #2e7d32;
    padding: 0.3rem 0.7rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6cb745;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 0.8rem;
    border-radius: 8px;
}

.product-actions {
    display: flex;
    gap: 0.8rem;
}

.product-btn {
    flex: 1;
    text-align: center;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.product-btn.primary {
    background: linear-gradient(135deg, #6cb745, #5ba037);
    color: white;
}

.product-btn.primary:hover {
    background: linear-gradient(135deg, #5ba037, #4a8c2a);
    transform: translateY(-2px);
}

.product-btn.secondary {
    background: #25d366;
    color: white;
}

.product-btn.secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Market CTA Section */
.market-cta {
    background: linear-gradient(135deg, #2e7d32 0%, #388e3c 50%, #4caf50 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a5d6a7;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-btn.primary:hover {
    background: white;
    color: #2e7d32;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
    background: #25d366;
    color: white;
}

.cta-btn.secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.cta-btn.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Footer Button Styles */
.bahce-bakim-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bahce-bakim-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .categories-title {
        font-size: 2rem;
    }
    
    .category-card {
        padding: 2rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-logo-container {
        padding: 0.8rem;
        border-radius: 15px;
    }
    
    .hero-logo {
        max-width: 200px;
        border-radius: 8px;
    }
    
    .categories-section,
    .products-section {
        padding: 3rem 0;
    }
    
    .category-card,
    .product-card {
        margin: 0 1rem;
    }
    
    .hero-img-placeholder {
        width: 200px;
        height: 150px;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .market-cta {
        padding: 3rem 0;
    }
    
    .bahce-bakim-btn {
        font-size: 0.95rem;
        padding: 0.8rem 1.5rem;
    }
}

/* Featured Products Section */
.featured-products {
    padding: 4rem 0;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.featured-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.featured-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.25);
    border-color: #2e7d32;
}

.featured-product-card .product-image {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-icon {
    font-size: 4rem;
    opacity: 0.8;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.featured-product-card .product-info {
    padding: 2rem;
}

.featured-product-card .product-info h4 {
    font-size: 1.4rem;
    color: #1b5e20;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.featured-product-card .product-description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.featured-product-card .product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.featured-product-card .product-features span {
    font-size: 0.9rem;
    color: #2e7d32;
    font-weight: 500;
}

.featured-product-card .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 1.5rem;
    text-align: center;
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 1rem;
    border-radius: 8px;
}

.featured-product-card .product-actions {
    display: flex;
    gap: 1rem;
}

.featured-product-card .product-btn {
    flex: 1;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.featured-product-card .product-btn.primary {
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.featured-product-card .product-btn.primary:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: white;
}

.featured-product-card .product-btn.secondary {
    background: #25d366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.featured-product-card .product-btn.secondary:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #2e7d32, #4caf50);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.cta-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
    color: white;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.advantage-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(46, 125, 50, 0.2);
    border-color: #2e7d32;
}

.advantage-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.advantage-card h3 {
    font-size: 1.3rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 600;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Service Areas Section */
.service-areas {
    padding: 4rem 0;
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.area-card {
    background: linear-gradient(135deg, #e8f5e8, #c8e6c9);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46, 125, 50, 0.2);
    border-color: #2e7d32;
}

.area-card h4 {
    font-size: 1.2rem;
    color: #1b5e20;
    margin-bottom: 1rem;
    font-weight: 600;
}

.area-card p {
    color: #2e7d32;
    line-height: 1.5;
    font-weight: 500;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-features {
        justify-content: flex-start;
    }
    
    .featured-product-card .product-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .category-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
} 