/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
*/

/* ============================================
   EUROPAGES TARZI B2B ANA SAYFA STILLERI
   ============================================ */

:root {
    --ep-primary: #0056b3;
    --ep-primary-dark: #004494;
    --ep-secondary: #00a8e8;
    --ep-accent: #ff6b35;
    --ep-text: #333333;
    --ep-text-light: #666666;
    --ep-bg-light: #f8f9fa;
    --ep-bg-white: #ffffff;
    --ep-border: #e0e0e0;
    --ep-shadow: 0 2px 10px rgba(0,0,0,0.1);
    --ep-shadow-hover: 0 5px 20px rgba(0,0,0,0.15);
    --ep-radius: 8px;
    --ep-transition: all 0.3s ease;
}

/* Genel Konteyner */
.ep-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.ep-hero-section {
    background: linear-gradient(135deg, var(--ep-primary) 0%, var(--ep-primary-dark) 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.ep-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.ep-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Arama Kutusu */
.ep-search-box {
    background: white;
    padding: 30px;
    border-radius: var(--ep-radius);
    box-shadow: var(--ep-shadow-hover);
    max-width: 900px;
    margin: 0 auto 40px;
}

.ep-search-row {
    display: flex;
    gap: 15px;
    align-items: stretch;
}

.ep-search-field {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.ep-search-field i {
    position: absolute;
    left: 15px;
    color: var(--ep-text-light);
    font-size: 1.1rem;
}

.ep-search-field input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--ep-border);
    border-radius: var(--ep-radius);
    font-size: 1rem;
    transition: var(--ep-transition);
}

.ep-search-field input:focus {
    outline: none;
    border-color: var(--ep-primary);
}

.ep-search-btn {
    padding: 15px 40px;
    background: var(--ep-accent);
    color: white;
    border: none;
    border-radius: var(--ep-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--ep-transition);
}

.ep-search-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Hero Stats */
.ep-hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.ep-stat-item {
    text-align: center;
}

.ep-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.ep-stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   SECTION TITLES
   ============================================ */
.ep-section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--ep-text);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 20px;
}

.ep-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--ep-primary);
    border-radius: 2px;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.ep-categories-section {
    padding: 80px 0;
    background: var(--ep-bg-light);
}

.ep-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.ep-category-card {
    background: white;
    padding: 30px;
    border-radius: var(--ep-radius);
    text-align: center;
    box-shadow: var(--ep-shadow);
    transition: var(--ep-transition);
    cursor: pointer;
}

.ep-category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--ep-shadow-hover);
}

.ep-category-icon {
    width: 70px;
    height: 70px;
    background: var(--ep-bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--ep-primary);
    transition: var(--ep-transition);
}

.ep-category-card:hover .ep-category-icon {
    background: var(--ep-primary);
    color: white;
}

.ep-category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--ep-text);
}

.ep-category-card p {
    color: var(--ep-text-light);
    font-size: 0.95rem;
}

/* ============================================
   FEATURED COMPANIES SECTION
   ============================================ */
.ep-featured-section {
    padding: 80px 0;
    background: white;
}

.ep-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.ep-company-card {
    background: white;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    padding: 25px;
    transition: var(--ep-transition);
}

.ep-company-card:hover {
    box-shadow: var(--ep-shadow-hover);
    border-color: var(--ep-primary);
}

.ep-company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.ep-company-logo {
    width: 60px;
    height: 60px;
    background: var(--ep-bg-light);
    border-radius: var(--ep-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--ep-text-light);
    font-weight: 600;
}

.ep-verified-badge {
    color: #28a745;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ep-company-name {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--ep-text);
}

.ep-company-desc {
    color: var(--ep-text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.ep-company-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--ep-text-light);
}

.ep-company-meta i {
    color: var(--ep-primary);
    margin-right: 5px;
}

.ep-btn-outline {
    display: inline-block;
    padding: 10px 25px;
    border: 2px solid var(--ep-primary);
    color: var(--ep-primary);
    text-decoration: none;
    border-radius: var(--ep-radius);
    font-weight: 600;
    transition: var(--ep-transition);
    text-align: center;
    width: 100%;
}

.ep-btn-outline:hover {
    background: var(--ep-primary);
    color: white;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.ep-how-it-works {
    padding: 80px 0;
    background: var(--ep-bg-light);
}

.ep-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.ep-step-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--ep-radius);
    text-align: center;
    position: relative;
    box-shadow: var(--ep-shadow);
}

.ep-step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--ep-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.ep-step-card i {
    font-size: 3rem;
    color: var(--ep-primary);
    margin: 20px 0;
}

.ep-step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--ep-text);
}

.ep-step-card p {
    color: var(--ep-text-light);
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ep-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ep-secondary) 0%, var(--ep-primary) 100%);
    color: white;
    text-align: center;
}

.ep-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.ep-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ep-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.ep-btn-primary {
    padding: 15px 40px;
    background: white;
    color: var(--ep-primary);
    text-decoration: none;
    border-radius: var(--ep-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--ep-transition);
    display: inline-block;
}

.ep-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.ep-btn-secondary {
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: var(--ep-radius);
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: var(--ep-transition);
    display: inline-block;
}

.ep-btn-secondary:hover {
    background: white;
    color: var(--ep-primary);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.ep-products-section {
    padding: 80px 0;
    background: white;
}

.ep-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.ep-product-card {
    background: white;
    border: 1px solid var(--ep-border);
    border-radius: var(--ep-radius);
    overflow: hidden;
    transition: var(--ep-transition);
}

.ep-product-card:hover {
    box-shadow: var(--ep-shadow-hover);
    transform: translateY(-5px);
}

.ep-product-image {
    height: 200px;
    background: var(--ep-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-placeholder-img {
    color: var(--ep-text-light);
    font-size: 0.9rem;
}

.ep-product-info {
    padding: 20px;
}

.ep-product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--ep-text);
}

.ep-product-company {
    color: var(--ep-primary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.ep-product-location {
    color: var(--ep-text-light);
    font-size: 0.85rem;
}

.ep-product-location i {
    margin-right: 5px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.ep-stats-section {
    padding: 60px 0;
    background: var(--ep-bg-light);
}

.ep-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.ep-stat-box {
    padding: 30px;
}

.ep-stat-box i {
    font-size: 2.5rem;
    color: var(--ep-primary);
    margin-bottom: 15px;
}

.ep-stat-box h3 {
    font-size: 2rem;
    color: var(--ep-text);
    margin-bottom: 10px;
}

.ep-stat-box p {
    color: var(--ep-text-light);
    font-size: 1rem;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.ep-trust-section {
    padding: 60px 0;
    background: white;
    border-top: 1px solid var(--ep-border);
}

.ep-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.ep-trust-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ep-text-light);
    padding: 20px;
    background: var(--ep-bg-light);
    border-radius: var(--ep-radius);
    min-width: 120px;
    text-align: center;
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */
@media (max-width: 768px) {
    .ep-hero-title {
        font-size: 2rem;
    }
    
    .ep-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .ep-search-row {
        flex-direction: column;
    }
    
    .ep-search-btn {
        width: 100%;
    }
    
    .ep-hero-stats {
        gap: 30px;
    }
    
    .ep-stat-number {
        font-size: 2rem;
    }
    
    .ep-section-title {
        font-size: 1.8rem;
    }
    
    .ep-cta-content h2 {
        font-size: 1.8rem;
    }
    
    .ep-steps-grid {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .ep-hero-section {
        padding: 50px 0;
    }
    
    .ep-search-box {
        padding: 20px;
    }
    
    .ep-categories-grid,
    .ep-companies-grid {
        grid-template-columns: 1fr;
    }
}