/* Inherit universal styles from the main file */
@import url('universal.css');

/* --- General Styling for New Design --- */
body {
    background-color: #f1f5f9;
}
html.dark body {
    background-color: #111827;
}

.employer-nav-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.employer-nav-header .nav-link {
    font-weight: 500;
    color: #64748b;
    padding: 0.5rem;
    transition: color 0.2s;
    font-size: 0.875rem;
}
.employer-nav-header .nav-link.active,
.employer-nav-header .nav-link:hover {
    color: #2563eb;
    font-weight: 600;
}
.employer-nav-header .btn-primary-small {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.85rem;
    background-color: #2563eb;
    color: #ffffff;
}
@media (max-width: 767px) {
    .employer-nav-header {
        display: none;
    }
}
html.dark .employer-nav-header {
    background-color: #1f2937;
    border-color: #374151;
}
html.dark .employer-nav-header .nav-link {
    color: #94a3b8;
}
html.dark .employer-nav-header .nav-link.active,
html.dark .employer-nav-header .nav-link:hover {
    color: #60a5fa;
}


/* --- Welcome Offer Hero Section --- */
.welcome-offer-hero {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    padding: 1rem 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    text-align: center;
}
html.dark .welcome-offer-hero {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
}

.welcome-offer-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .welcome-offer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.text-block {
    flex: 1;
    max-width: 600px;
}
.welcome-badge {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.welcome-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}
.welcome-tagline {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 500px;
}

.price-block {
    text-align: center;
    background: #fff;
    color: #111827;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    flex-shrink: 0;
    min-width: 300px;
}
@media (min-width: 768px) {
    .price-block {
        text-align: right;
    }
}
.price-display {
    margin-bottom: 1.5rem;
}
.old-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1rem;
    font-weight: 500;
}
.new-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    display: block;
    color: #111827;
}
.discount-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff5722;
}
.btn-hero-offer {
    background-color: #ff5722;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
}
.btn-hero-offer:hover {
    transform: translateY(-2px);
    background-color: #e64a19;
}
.terms-text {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 1rem;
}

/* --- Pricing Plans Section --- */
.pricing-plan-cards {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .pricing-plan-cards {
        grid-template-columns: repeat(3, 1fr);
        align-items: stretch;
    }
}

.plan-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e5e7eb;
}
.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.plan-card.highlighted {
    /* transform: translateY(-10px) scale(1.05); */
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    border-color: #2563eb;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}
/* .addon-card {
    background: #f5f7fb;
    padding: 20px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    font-family: Arial, sans-serif;
} */
 .addon.sp-quantity {
    margin-bottom: 15px;
}

.addon-title {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.sp-quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.sp-quantity .btn {
    /* width: 40px; */
    /* height: 40px; */
    border: none;
    border-radius: 40px;
    background: #2563eb;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
    padding: 10px 18px;
}

.sp-quantity .btn:hover {
    background: #1e4ed8;
}

.quantity-input {
    width: 70px;
    height: 40px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 16px;
    outline: none;
}

.quantity-input:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}
@media (min-width: 768px) {
    .plan-card.highlighted:hover {
        transform: translateY(-15px) scale(1.02);
    }
}
html.dark .plan-card {
    background-color: #1f2937;
    border-color: #374151;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
html.dark .plan-card.highlighted {
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    color: #fff;
    border-color: #60a5fa;
    box-shadow: 0 8px 20px rgba(96, 165, 250, 0.2);
}

.plan-badge-highlight {
    display: inline-block;
    background-color: #ff5722;
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.plan-card .plan-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.plan-card .plan-description {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 1rem;
    min-height: 2.25rem;
}
.plan-card.highlighted .plan-description {
    color: #e5e7eb;
}
html.dark .plan-card .plan-description {
    color: #9ca3af;
}

.price-section {
    margin-bottom: 2rem;
    text-align: center;
}
.price-section .price-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    display: block;
}
.plan-card.highlighted .price-value {
    color: #fff;
}
html.dark .plan-card .price-value {
    color: #fff;
}
.price-section .price-period {
    font-size: 0.9rem;
    color: #6b7280;
}
.plan-card.highlighted .price-period {
    color: #e5e7eb;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}
.plan-features li {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #4b5563;
}
.plan-features li .fa-check-circle {
    color: #10b981;
    margin-right: 0.75rem;
}
.plan-features li .fa-times-circle {
    color: #ef4444;
    margin-right: 0.75rem;
}
.plan-card.highlighted .plan-features li {
    color: #e5e7eb;
}
.plan-card.highlighted .plan-features li .fa-check-circle {
    color: #a7f3d0;
}
.plan-card.highlighted .plan-features li .fa-times-circle {
    color: #fca5a5;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    background-color: #e2e8f0;
    color: #2563eb;
    border: none;
    transition: background-color 0.2s, transform 0.2s;
}
.btn-plan:hover {
    background-color: #d1d5db;
    transform: translateY(-2px);
}
.btn-plan-highlighted {
    width: 100%;
    padding: 1rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 700;
    background-color: #fff;
    color: #2563eb;
    border: none;
    transition: transform 0.2s;
}
.btn-plan-highlighted:hover {
    transform: translateY(-2px);
    background-color: #f1f5f9;
}

/* --- Mobile Specific Styles --- */
@media (max-width: 767px) {
    .welcome-offer-hero {
        padding: 2rem 0;
        text-align: center;
        min-height: auto;
    }
    .welcome-offer-content {
        gap: 1.5rem;
    }
    .welcome-title {
        font-size: 1.8rem;
    }
    .welcome-tagline {
        font-size: 0.9rem;
    }
    .price-block {
        padding: 1.5rem;
        min-width: 100%;
    }
    .new-price {
        font-size: 2.5rem;
    }
    .old-price {
        font-size: 0.9rem;
    }
    .btn-hero-offer {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h2.text-4xl {
        font-size: 1.8rem;
    }
    p.text-center.mb-16 {
        font-size: 0.8rem;
        margin-bottom: 2rem;
    }
    .pricing-plan-cards {
        gap: 1.5rem;
    }
    .plan-card {
        padding: 1.5rem;
    }
    .plan-card.highlighted {
        /* transform: translateY(0) scale(1.05); */
    }
    .plan-card.highlighted:hover {
        transform: translateY(0) scale(1.02);
    }
    .plan-title {
        font-size: 1.25rem;
    }
    .plan-description {
        font-size: 0.8rem;
        min-height: auto;
    }
    .price-section {
        margin-bottom: 1.5rem;
    }
    .price-section .price-value {
        font-size: 2rem;
    }
    .price-section .price-period {
        font-size: 0.8rem;
    }
    .plan-features li {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    .btn-plan, .btn-plan-highlighted {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}