:root {
    --primary-red: #D32F2F;
    --primary-blue: #0D47A1;
    --primary-dark: #1A1A1A;
    --text-color: #333;
    --text-light: #f4f4f4;
    --bg-light: #f9f9f9;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed header */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--primary-red);
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-red);
}

.btn-primary:hover {
    background: var(--primary-red) !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    border-color: var(--primary-red) !important;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: none !important;
    /* Kill transition */
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: transparent !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Navbar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 60px;
    /* Adjust based on actual logo ratio */
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--primary-dark);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-links .btn-primary {
    padding: 10px 25px;
    color: #fff;
}

.nav-links .btn-primary:hover {
    color: var(--primary-red);
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--primary-dark);
    z-index: 1100;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 80px;
    /* Offset for fixed nav */
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('assets/hero_main.jpg') no-repeat center center/cover;
    z-index: -1;
    /* Parallax effect could be added here or via JS */
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.3s forwards;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1.2s ease-out 0.6s forwards;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-blue);
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--primary-red);
    font-size: 1rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.about-features li {
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features i {
    color: var(--primary-red);
}

.office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.office-card {
    background: #f8fbff;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-blue);
}

.office-card h5 {
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.office-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border-top: 4px solid var(--primary-blue);
}

.service-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--primary-red);
}

.icon-box {
    margin: 0 auto 20px;
    background: #f8fbff;
    color: var(--primary-blue);
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: var(--transition);
}

.service-card:hover .icon-box {
    background: var(--primary-red);
    color: #fff;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Freight Section */
.freight-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.freight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.freight-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.freight-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.freight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-dark);
}

.freight-item i {
    color: var(--primary-red);
}

.compliance-note {
    font-style: italic;
    border-left: 4px solid var(--primary-red);
    padding-left: 15px;
    color: #666;
}

/* Benefits Detail Section */
.benefits-section {
    padding: 100px 0;
    background: #fff;
}

.benefits-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    background: #f8fbff;
    border-radius: 8px;
    transition: var(--transition);
}

.benefit-card:hover {
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.bonus-highlight {
    margin-top: 60px;
    background: var(--primary-dark);
    color: #fff;
    padding: 50px;
    border-radius: 12px;
    text-align: center;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.bonus-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
}

.bonus-item span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.bonus-item strong {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.referral {
    margin-top: 30px;
    font-weight: 600;
}

/* Equipment Section */
.equipment-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.equipment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.equip-features {
    margin-top: 30px;
}

.equip-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.equip-features i {
    color: var(--primary-red);
}

/* Safety Section */
.safety-section {
    padding: 100px 0;
    background: url('assets/truck_flatbed.jpg') no-repeat center/cover;
    position: relative;
}

.safety-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 71, 161, 0.9);
}

.safety-box {
    position: relative;
    z-index: 1;
    color: #fff;
}

.safety-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
}

.check-item i {
    color: #4CAF50;
    font-size: 1.3rem;
}

/* Yard Section */
.yard-section {
    padding: 100px 0;
    background: #fff;
}

.yard-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Gallery */
.gallery-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Legal Modal Styling */
.legal-modal {
    text-align: left;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
}

.legal-text h4 {
    margin: 20px 0 10px;
    color: var(--primary-blue);
}

.legal-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

/* Footer Additions */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

.footer-info p {
    margin-bottom: 10px;
    color: #aaa;
}

.footer-info i {
    color: var(--primary-red);
    margin-right: 10px;
    width: 20px;
}

.careers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.careers-image img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-top: 5px;
}

.benefit-item h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.benefit-item span {
    font-size: 0.9rem;
    color: #666;
}

/* Gallery / CTA */
.gallery-cta {
    position: relative;
    padding: 120px 0;
    text-align: center;
    color: #fff;
    background-attachment: fixed;
    overflow: hidden;
}

.gallery-cta .bg-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.gallery-cta .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 71, 161, 0.85);
    /* Blue overlay */
    z-index: -1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn-primary {
    background: #fff;
    color: var(--primary-blue);
    border-color: #fff;
}

.cta-content .btn-primary:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info .info-item {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.contact-info i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 40px;
    height: 40px;
    background: rgba(211, 47, 47, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.contact-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-form h3 {
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

/* Footer */
footer {
    background: #111;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
    border-radius: 6px;
    /* Removed filter that turned non-transparent images white */
}

.footer-links h4 {
    margin-bottom: 20px;
    color: var(--primary-red);
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #aaa;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Social Join in Careers */
.social-join {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.social-join h5 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.social-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-btns a {
    padding: 10px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.insta-link {
    background: #f0f0f0;
    color: #E1306C;
}

.fb-link {
    background: #f0f0f0;
    color: #1877F2;
}

.social-btns a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.little-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.service-card:hover .little-icon {
    transform: scale(1.2) rotate(5deg);
}

/* New Mobile Navigation (Drawer Style) */
@media (max-width: 991px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -300px;
        /* Hidden by default */
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 30px 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1050;
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links.active {
        transform: translateX(-300px);
        /* Slide in */
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 1.2rem;
        /* Slightly larger */
        padding: 15px 0;
        /* Healthy tap area */
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links .btn-primary {
        text-align: center;
        margin-top: 10px;
        border-bottom: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Mobile Overlay Background */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    /* Significantly lightened per user request */
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Comprehensive Mobile Grid Fixes */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-grid,
    .freight-grid,
    .equipment-grid,
    .yard-grid,
    .careers-content,
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-image {
        order: -1;
    }

    .experience-badge {
        right: 0;
        bottom: 0px;
        padding: 15px;
    }

    .office-grid,
    .freight-list,
    .bonus-grid,
    .benefits-grid,
    .safety-checklist {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    .gallery-item {
        height: 180px;
    }

    .contact-wrapper {
        padding: 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .safety-section {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Modal / Wizard Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Dark background */
    z-index: 2000;
    display: none !important;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
}

.wizard-title h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    margin-bottom: 10px;
}

.wizard-title p {
    color: #666;
    margin-bottom: 30px;
}

.wizard-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wizard-card {
    border: 2px solid #eee;
    padding: 30px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.wizard-card:hover {
    border-color: var(--primary-blue);
    background: #f0f7ff;
    /* transform: translateY(-5px); */
}

.wizard-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
    display: block;
}

.wizard-card.hiring i {
    color: var(--primary-red);
}

.wizard-card.hiring:hover {
    border-color: var(--primary-red);
    background: #fff5f5;
}

.wizard-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

@media (max-width: 600px) {
    .wizard-options {
        grid-template-columns: 1fr;
    }
}

/* Hiring Ad Specifics */
.hiring-ad-content {
    border-top: 5px solid var(--primary-red);
    text-align: center;
}

.ad-header h2 {
    color: var(--primary-red);
    font-size: 2.5rem;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.ad-header h3 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.ad-features p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.ad-features i {
    color: var(--primary-red);
    margin-right: 10px;
}

.ad-actions {
    margin-top: 30px;
}

.big-btn {
    font-size: 1.3rem;
    padding: 15px 40px;
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

.customer-link {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.customer-link p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.customer-link .btn-secondary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

/* Styled Forms in Modals */
.form-modal-content {
    max-width: 500px;
    text-align: left;
}

.styled-form {
    margin-top: 20px;
}

.form-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border: 1px solid #eee;
}

.form-section h4 {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    text-transform: uppercase;
}

.checkbox-label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    cursor: pointer;
}

.checkbox-label input {
    margin-right: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Step Wizard Styles */
.wizard-step {
    display: none;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.wizard-step.active {
    display: block;
}

.question-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 20px 0 30px;
    color: var(--primary-dark);
}

.step-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.step-actions.vertical {
    flex-direction: column;
}

.big-opt {
    padding: 15px 30px;
    font-size: 1.1rem;
    min-width: 150px;
    cursor: pointer;
}

/* FIX: Force wizard option buttons to be visible on white background */
.step-actions .btn-secondary {
    color: #333 !important;
    border-color: #333 !important;
    background: transparent !important;
    opacity: 1 !important;
}

.step-actions .btn-primary {
    /* Keep primary red */
    background: var(--primary-red) !important;
    color: #fff !important;
    border-color: var(--primary-red) !important;
    opacity: 1 !important;
}

/* Ensure ABSOLUTELY NO HOVER CHANGE for these specific buttons */
.step-actions .btn-secondary:hover,
.step-actions .btn-primary:hover {
    transform: none !important;
    box-shadow: none !important;
    background: inherit !important;
    color: inherit !important;
    border-color: inherit !important;
}

.big-opt:hover {
    background: initial !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: #ddd !important;
    /* Keep border stable */
}

/* Ensure secondary buttons don't change color on hover either if requested */
.btn-secondary:hover {
    background: transparent !important;
    color: var(--primary-blue) !important;
    transform: none !important;
    box-shadow: none !important;
}

#disqualified-step {
    padding: 40px;
    background: #fff5f5;
    border: 2px solid #ffcdd2;
    border-radius: 8px;
    /* Restoring border-radius */
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 10px;
    background: #eee;
    border-radius: 5px;
    margin-bottom: 30px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

/* Success Modal Specifics */
.success-content {
    text-align: center;
    padding: 50px 30px;
    max-width: 450px;
}

.success-icon {
    font-size: 4rem;
    color: #4CAF50;
    /* Success Green */
    margin-bottom: 20px;
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

#success-title {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

#success-message {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}