/* ================================================
   HOME.CSS — Homepage FR Reklamyol
   Modèle : /tr/fransa/assets/css/home.css
   ================================================ */

/* ── HERO ─────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, #1a9de8 0%, #0d8fd8 50%, #e0198a 100%);
    padding: 60px 0 48px;
    color: white;
    text-align: center;
}

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

.hero h1 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 12px rgba(0,0,0,.15);
}

.hero h2 {
    font-size: clamp(.9rem, 2vw, 1.1rem);
    font-weight: 400;
    opacity: .88;
    margin-bottom: 28px;
    line-height: 1.5;
}

.highlight {
    color: #FFD700;
    font-weight: 900;
}

/* ── HERO SEARCH ──────────────────────────────── */
.hero-search-wrapper { margin-bottom: 28px; }

.hero-search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 6px 6px 6px 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    max-width: 620px;
    margin: 0 auto;
}

.hero-search-icon { font-size: 1.1rem; margin-right: 6px; color: #a0aec0; }

.hero-search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: .95rem;
    color: #1a202c;
    background: transparent;
    min-width: 0;
}

.hero-search-input::placeholder { color: #a0aec0; }

.hero-search-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, #1a9de8, #e0198a);
    color: white;
    border: none;
    border-radius: 40px;
    font-weight: 700;
    font-size: .9rem;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity .2s;
}

.hero-search-btn:hover { opacity: .9; }

/* ── HERO STATS ───────────────────────────────── */
.hero-stats {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stat-card {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 24px;
    min-width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}

.hero-stat-label {
    font-size: .75rem;
    opacity: .85;
    margin-top: 4px;
}

/* ── SECTIONS ─────────────────────────────────── */
.section-title {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    font-size: .9rem;
    margin-bottom: 4px;
}

.cities-section  { padding: 40px 0; background: #f7fafc; }
.categories-section { padding: 40px 0; background: white; }
.popular-section { padding: 36px 0; background: #f7fafc; }
.seo-section     { padding: 40px 0; background: white; }

/* ── CITIES GRID ──────────────────────────────── */
.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    justify-content: center;
}

.city-card {
    display: inline-block;
    padding: 7px 18px;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    background: white;
    text-decoration: none;
    color: #1a202c;
    font-size: .9rem;
    font-weight: 600;
    transition: all .2s;
}

.city-card:hover {
    border-color: #1a9de8;
    color: #1a9de8;
    background: #f0f9ff;
}

/* ── CATEGORIES GRID ──────────────────────────── */
.fr-cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-top: 20px;
}

.fr-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    border-left: 3px solid #1a9de8;
    background: white;
    text-decoration: none;
    color: #1a202c;
    font-size: .84rem;
    font-weight: 600;
    transition: all .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
    overflow: hidden;
}

.fr-cat-item:hover {
    background: #f0f9ff;
    border-left-color: #e0198a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(26,157,232,.1);
}

.fr-cat-name {
    font-weight: 600;
    font-size: .84rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ── POPULAR SEARCHES ─────────────────────────── */
.popular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 12px;
}

.popular-pill {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1.5px solid #e2e8f0;
    background: white;
    text-decoration: none;
    color: #1a202c;
    font-size: .85rem;
    font-weight: 600;
    transition: all .2s;
}

.popular-pill:hover {
    border-color: #1a9de8;
    color: #1a9de8;
}

/* ── SEO BLOCK ────────────────────────────────── */
.seo-block {
    background: white;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 28px 32px;
    max-width: 800px;
    margin: 0 auto;
}

.seo-block h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.seo-block p {
    color: #4a5568;
    line-height: 1.8;
    font-size: .92rem;
    margin-top: 8px;
}

/* ── CTA ──────────────────────────────────────── */
.cta-final {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.cta-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e0198a, #1a9de8);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-final h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-final p {
    color: rgba(255,255,255,.8);
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: .85rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 28px;
}

.btn-urgent {
    display: inline-block;
    background: linear-gradient(135deg, #e0198a, #1a9de8);
    color: white;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    transition: opacity .2s, transform .2s;
    box-shadow: 0 6px 20px rgba(224,25,138,.4);
}

.btn-urgent:hover { opacity: .9; transform: translateY(-2px); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 768px) {
    .fr-cat-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 480px) {
    .hero { padding: 40px 0 32px; }
    .hero-search-form { border-radius: 14px; flex-wrap: wrap; padding: 10px; gap: 8px; }
    .hero-search-btn  { width: 100%; border-radius: 10px; }
    .hero-stats       { gap: 10px; }
    .hero-stat-card   { padding: 10px 16px; min-width: 100px; }
    .fr-cat-grid      { grid-template-columns: repeat(2, 1fr) !important; }
}
