/* Steady Welding School — Public Marketing Pages */

/* Navigation */
.ws-navbar {
    background-color: #1a1a1a !important;
    border-bottom: 2px solid #D4AF37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ws-brand-text {
    font-weight: 700;
    font-size: 1.15rem;
    color: #ffd700;
}

.ws-navbar .nav-link {
    color: #ccc !important;
    font-weight: 500;
    padding: 0.5rem 0.75rem !important;
    transition: color 0.2s ease;
}

.ws-navbar .nav-link:hover,
.ws-navbar .nav-link.active {
    color: #ffd700 !important;
}

/* Main content offset for fixed navbar */
.ws-main {
    padding-top: 70px;
}

/* Hero sections */
.ws-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    padding: 5rem 0 4rem;
    border-bottom: 2px solid #D4AF37;
    position: relative;
    overflow: hidden;
}

.ws-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ws-hero h1 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.25rem;
}

.ws-hero h1 .text-gold {
    color: #ffd700;
}

.ws-hero .lead {
    font-size: 1.25rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Section styling */
.ws-section {
    padding: 4rem 0;
    background: #111;
}

.ws-section.alt {
    background: #1a1a1a;
}

.ws-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.ws-section-subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 2.5rem;
}

/* Feature cards */
.ws-card {
    background: #2a2a2a;
    border: 1px solid #444;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.ws-card:hover {
    transform: translateY(-4px);
    border-color: #D4AF37;
}

.ws-card .card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.ws-card .card-icon i {
    font-size: 1.5rem;
    color: #ffd700;
}

.ws-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.ws-card p {
    color: #aaa;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Stat badges */
.ws-stat {
    text-align: center;
    padding: 1.5rem;
}

.ws-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.ws-stat .stat-label {
    font-size: 0.95rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Timeline / curriculum weeks */
.ws-timeline {
    position: relative;
    padding-left: 2rem;
}

.ws-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #D4AF37, #b8860b);
    border-radius: 2px;
}

.ws-timeline-item {
    position: relative;
    padding: 1.25rem 0 1.25rem 1.5rem;
    border-bottom: 1px solid #333;
}

.ws-timeline-item:last-child {
    border-bottom: none;
}

.ws-timeline-item::before {
    content: '';
    position: absolute;
    left: -2.35rem;
    top: 1.75rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffd700;
    border: 2px solid #1a1a1a;
}

.ws-timeline-item .week-label {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-timeline-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.ws-timeline-item p {
    color: #aaa;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Pricing card */
.ws-pricing {
    background: #2a2a2a;
    border: 2px solid #D4AF37;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ws-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
}

.ws-pricing .price-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
}

.ws-pricing .price-period {
    font-size: 1rem;
    color: #999;
    margin-bottom: 1.5rem;
}

.ws-pricing .price-includes {
    text-align: left;
    margin: 1.5rem 0;
}

.ws-pricing .price-includes li {
    padding: 0.5rem 0;
    color: #ccc;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ws-pricing .price-includes li:last-child {
    border-bottom: none;
}

.ws-pricing .price-includes li i {
    color: #28a745;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* FAQ accordion */
.ws-faq .accordion-item {
    background: #2a2a2a;
    border: 1px solid #444;
    margin-bottom: 0.75rem;
    border-radius: 8px !important;
    overflow: hidden;
}

.ws-faq .accordion-button {
    background: #2a2a2a;
    color: #fff;
    font-weight: 600;
    padding: 1.25rem;
    box-shadow: none;
}

.ws-faq .accordion-button:not(.collapsed) {
    background: #333;
    color: #ffd700;
}

.ws-faq .accordion-button::after {
    filter: invert(1);
}

.ws-faq .accordion-body {
    background: #2a2a2a;
    color: #ccc;
    padding: 1.25rem;
    border-top: 1px solid #444;
    line-height: 1.7;
}

/* CTA banner */
.ws-cta {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-top: 2px solid #D4AF37;
    border-bottom: 2px solid #D4AF37;
    padding: 3.5rem 0;
    text-align: center;
}

.ws-cta h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.ws-cta p {
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

/* Badge/pill */
.ws-badge {
    display: inline-block;
    background: rgba(40, 167, 69, 0.15);
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.ws-badge.gold {
    background: rgba(212, 175, 55, 0.15);
    color: #ffd700;
    border-color: rgba(212, 175, 55, 0.3);
}

/* Highlight boxes */
.ws-highlight {
    background: rgba(212, 175, 55, 0.08);
    border-left: 4px solid #D4AF37;
    padding: 1.25rem 1.5rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.5rem;
}

.ws-highlight h5 {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ws-highlight p {
    color: #ccc;
    margin-bottom: 0;
}

/* Footer */
.ws-footer {
    background: #0d0d0d;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid #333;
}

.ws-footer h5 {
    font-size: 1rem;
    font-weight: 700;
}

.ws-footer a:hover {
    color: #ffd700 !important;
}

/* Payment option cards */
.ws-payment-option {
    background: #333;
    border: 1px solid #555;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
}

.ws-payment-option:hover {
    border-color: #D4AF37;
}

.ws-payment-option h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.ws-payment-option .option-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.ws-payment-option p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Check list in cards */
.ws-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ws-checklist li {
    padding: 0.4rem 0;
    color: #ccc;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
}

.ws-checklist li i {
    color: #28a745;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .ws-hero h1 {
        font-size: 2rem;
    }

    .ws-hero .lead {
        font-size: 1.05rem;
    }

    .ws-section {
        padding: 3rem 0;
    }

    .ws-section-title {
        font-size: 1.5rem;
    }

    .ws-pricing .price-value {
        font-size: 2.5rem;
    }

    .ws-stat .stat-value {
        font-size: 2rem;
    }
}
