/* /css/services.css */

.services-hero {
    padding: 110px 20px 90px;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.hero-inner {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
}

.eyebrow,
.section-label {
    color: #60a5fa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-hero h1 {
    font-size: 3.4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 760px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
    color: #cbd5e1;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
}

.btn-primary:hover {
    background: #1d4ed8;
}

.btn-secondary {
    border: 1px solid #475569;
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

.services-section {
    padding: 90px 20px;
}

.alt-section {
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.section-header p {
    color: #475569;
    line-height: 1.7;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.package-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 35px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.package-card.featured {
    border: 2px solid #2563eb;
    transform: translateY(-6px);
}

.badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: #2563eb;
    color: #ffffff;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
}

.package-top h3,
.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #0f172a;
}

.price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.package-description {
    color: #64748b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.package-card ul li {
    margin-bottom: 14px;
    color: #334155;
    position: relative;
    padding-left: 22px;
}

.package-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.package-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #0f172a;
    color: #ffffff;
    text-decoration: none;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
}

.package-btn:hover {
    background: #1e293b;
}

.services-cta {
    padding: 90px 20px;
    background: #0f172a;
    color: #ffffff;
    text-align: center;
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-cta p {
    max-width: 720px;
    margin: 0 auto 35px;
    color: #cbd5e1;
    line-height: 1.7;
}

@media (max-width: 768px) {

    .services-hero h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .package-card.featured {
        transform: none;
    }
}