@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: "Poppins", sans-serif;
    background: #050510;
    color: #f1f1f1;
    padding: 20px;
    line-height: 1.6;
}

a { color: #ee0979; text-decoration: none; transition: 0.25s; }
a:hover { color: #ff6a00; }

.back-home { text-align: center; margin: 20px 0; }
.back-home-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    transition: 0.3s;
}
.back-home-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    overflow: hidden;
}

.header {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.header h1 {
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    font-weight: 700;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #8e2de2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.header p {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-size: 0.95rem;
}

.table-wrapper { padding: 25px; overflow-x: auto; }

table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

thead { background: rgba(255,255,255,0.06); }
thead th {
    padding: 14px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
th:first-child, th:nth-child(2) { background: rgba(255,255,255,0.04); }

td {
    padding: 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-right: 1px solid rgba(255,255,255,0.05);
    vertical-align: middle;
    font-size: 0.9rem;
}

tbody tr:hover { background: rgba(255,255,255,0.06); }

.stt { text-align: center; background: rgba(255,255,255,0.02); font-weight: 600; }
.feature-name { font-weight: 600; color: #fff; }

.check-cell {
    text-align: center;
    background: linear-gradient(135deg, rgba(238,9,121,0.05), rgba(142,45,226,0.05));
    color: #ee0979;
    font-weight: 700;
    font-size: 1.1rem;
}

.number-cell {
    text-align: center;
    background: rgba(142,45,226,0.15);
    color: #b873f9;
    font-weight: 700;
}

.description-cell { color: rgba(255,255,255,0.7); }
.custom-cell { color: rgba(255,255,255,0.6); }

.extra-service {
    margin: 40px 20px;
    padding: 30px;
    background: rgba(255,255,255,0.03);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}
.extra-service h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ff6a00, #ee0979, #8e2de2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.extra-service table { width: 100%; border: 1px solid rgba(255,255,255,0.1); }
.extra-service th, .extra-service td {
    padding: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
    .header h1 { font-size: 1.6rem; }
    td, th { font-size: 0.82rem; padding: 10px; }
    .table-wrapper { -webkit-overflow-scrolling: touch; }
}
