/*
  home-sections.css — index.php gövde içeriğinde kullanılan, dinamik PHP
  döngüleriyle (platformlar / öne çıkan paketler) üretilen bölümler için
  ek stiller. Ana şablonun style.css'iyle çakışmaması için tüm kurallar
  isimlendirilmiş (namespaced) sınıflara bağlıdır; body/a/* gibi genel
  seçiciler kullanılmaz.
*/

/* ---------------------------------------------------------- HERO/ARKAPLAN */
.background {
    width: 100%;
    padding: 70px 20px 90px;
    background: linear-gradient(135deg, #1a0207 0%, #5c0716 45%, #F70E36 100%);
    position: relative;
    overflow: hidden;
}
.background-container,
.background-animation,
.borders { display: none; }

/* ------------------------------------------------------------- SECTION */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}
.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1e1e1e;
}
.section-subtitle {
    color: #6b7280;
    margin-bottom: 28px;
}

/* -------------------------------------------------------- PLATFORM GRID */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 16px;
}
.platform-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-radius: 14px;
    color: #fff;
    font-weight: 600;
    transition: transform .15s, box-shadow .15s;
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
}
.platform-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.18); }
.platform-card i { font-size: 1.7rem; opacity: .95; }
.platform-card .platform-card-name { font-size: 1.02rem; line-height: 1.15; }
.platform-card .platform-card-sub { font-size: .72rem; font-weight: 400; opacity: .85; letter-spacing: .03em; }

/* ------------------------------------------------------------ PKG CARDS */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}
.pkg-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    transition: box-shadow .15s, transform .15s;
}
.pkg-card:hover { box-shadow: 0 10px 24px rgba(0,0,0,.09); transform: translateY(-2px); }
.pkg-badge {
    position: absolute;
    top: -10px;
    right: 16px;
    background: #F70E36;
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
}
.pkg-card h3 { margin: 0; font-size: 1.1rem; color: #1e1e1e; }
.pkg-card p.desc { color: #6b7280; font-size: .88rem; margin: 0; flex-grow: 1; }
.pkg-price-row { display: flex; align-items: baseline; gap: 8px; }
.pkg-price { font-size: 1.4rem; font-weight: 700; color: #F70E36; }
.pkg-old-price { font-size: .9rem; color: #9ca3af; text-decoration: line-through; }
.pkg-card .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: .95rem;
    border: none;
    cursor: pointer;
    background: #F70E36;
    color: #fff;
    text-decoration: none;
    transition: filter .15s, transform .1s;
}
.pkg-card .btn:hover { filter: brightness(0.92); }
.pkg-card .btn:active { transform: scale(.98); }
