/* ================================
   HOMEPAGE SERVICES GRID
================================ */

#home-services {
    padding: 90px 0;
    background: #f6f8fb;
}

.home-services-header h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.home-services-header p {
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* CARD */
.service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.07);
    transition: all .3s ease;
    text-decoration: none;
    color: #111;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

/* ICON */
.service-card i {
    display: inline-block;
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* TITLE */
.service-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* ICON MAP */
.icon-domain   { background-image: url('/assets/img/icons/domain.svg'); }
.icon-hosting  { background-image: url('/assets/img/icons/hosting.svg'); }
.icon-reseller { background-image: url('/assets/img/icons/reseller.svg'); }
.icon-mail     { background-image: url('/assets/img/icons/mail.svg'); }
.icon-ssl      { background-image: url('/assets/img/icons/ssl.svg'); }
.icon-server   { background-image: url('/assets/img/icons/server.svg'); }
.icon-it       { background-image: url('/assets/img/icons/it.svg'); }
.icon-backup   { background-image: url('/assets/img/icons/backup.svg'); }


.old-price {
    font-size: 14px;
    color: #9aa1ac;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.price {
    font-size: 34px;
    font-weight: 700;
    color: #000;
}

.price span {
    font-size: 14px;
    font-weight: 500;
}

.price-desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 18px;
}

.btn-incele {
    display: inline-block;
    background: #f6a400;
    color: #fff;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
}

.btn-incele:hover {
    background: #e69500;
}

/* ================================
   SERVICE CARD HOVER BORDER
================================ */

.service-card {
    position: relative;
    border: 2px solid transparent;
    transition: all .35s ease;
}

/* Hover */
.service-card:hover {
    border-color: #2f6fde; /* Mavi kenar */
    box-shadow: 0 18px 45px rgba(47,111,222,.18);
    transform: translateY(-6px);
}

/* Üstten hafif glow efekti */
.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 2px transparent;
    transition: box-shadow .35s ease;
    pointer-events: none;
}

.service-card:hover::before {
    box-shadow: inset 0 0 0 2px #2f6fde;
}

