:root {
    --primary-blue: #2563eb;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --light-blue: #eff6ff;
    --dark-blue: #1e40af;
    --white: #ffffff;
    --text-dark: #1f2937;
    --box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --card-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

/* Animated Background */
@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 50% 100%;
    }
    50% {
        background-position: 100% 50%;
    }
    75% {
        background-position: 50% 0%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Base Styles */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(-45deg, 
        var(--dark-blue),
        var(--primary-blue),
        var(--secondary-blue),
        var(--accent-blue),
        var(--light-blue)
    );
    background-size: 300% 300%;
    background-attachment: fixed; /* This ensures the background stays fixed while scrolling */
    animation: gradient 20s ease infinite;
}

.sme-planner {
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    position: relative;
    width: 100%;
}

/* Update card backgrounds to be white and slightly transparent */
.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

/* Hero section with enhanced grid pattern */
.hero {
    height: 40vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.97),
        rgba(239, 246, 255, 0.97)
    );
    overflow: hidden;
}

/* Grid pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/sme/pattern-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

/* Add subtle animation to the grid */
@keyframes patternFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

.hero::before {
    animation: patternFloat 20s ease-in-out infinite;
}

/* Hero Content Wrapper */
.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

/* Update text styling for better contrast */
.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Hero background with light gradient */
.hero {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95),
        rgba(239, 246, 255, 0.95)
    );
    position: relative;
    overflow: hidden;
}

/* Update container backgrounds to be transparent */
.features {
    padding: 80px 0;
    background: transparent;
}

/* Ensure text remains readable */
.hero h1 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-spacer {
    height: 80px; /* Adjust this value to match your navbar height */
}

.navbar-brand {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    font-size: 1.25rem;
}

.navbar-brand:hover {
    color: var(--primary-blue);
    opacity: 0.9;
}

.navbar .nav-link {
    color: #2c3e50;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.navbar .nav-link:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 1rem;
    background-color: var(--primary-blue);
    transition: width 0.3s ease;
}

.navbar .nav-link:not(.btn):hover::after {
    width: calc(100% - 2rem);
}

.navbar .nav-link.btn {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-left: 0.5rem;
}

.navbar .nav-link i {
    opacity: 0.8;
}

/* Scrolled State */
.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 10px;
        margin-top: 0.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-link {
        padding: 0.75rem 1rem;
    }

    .navbar .nav-link.btn {
        margin: 0.5rem 1rem;
        display: block;
        text-align: center;
    }
}

/* Add scroll behavior */
.navbar-scroll {
    transform: translateY(-100%);
}

.navbar-scroll.scrolled {
    transform: translateY(0);
}

/* Button in navbar */
.navbar .btn-primary {
    background: var(--primary-blue);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Content Wrapper */
.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero p {
    font-size: 1.125rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

/* Feature Cards */
.features {
    padding: 80px 0;
    background: transparent;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before,
.feature-card.active::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.feature-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-footer {
    margin-top: auto;
}

.feature-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.feature-link:hover {
    color: var(--dark-blue);
}

.feature-link i {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
}

.feature-link:hover i {
    transform: translateX(4px);
}

/* Buttons */
.btn-primary {
    background: var(--gradient-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Modern Footer */
.footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 4rem 0 2rem 0;
    position: relative;
    overflow: hidden;
}

/* Footer Grid Container */
.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--white);
}

/* Social Media Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

/* Bottom Bar */
.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Newsletter Form */
.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 80px 0;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .feature-card {
        margin-bottom: 1.5rem;
    }
}

/* Form Styles */
.idea-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    max-width: 600px;
    margin: 0 auto;
}

.form-control {
    border: 2px solid var(--light-blue);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: none;
}

/* Loading States */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-blue);
    border-top: 5px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Results Display */
.evaluation-result {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    box-shadow: var(--box-shadow);
}

.evaluation-result h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

/* Question Display */
.question-container {
    background: var(--light-blue);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.question-text {
    color: var(--dark-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Add these styles after your existing CSS */

.how-it-works {
    padding: 100px 0;
    position: relative;
    background: transparent; /* Remove the white background */
    color: var(--white); /* Update text color for better contrast */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.9;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-card {
    flex: 1;
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.step-icon::after {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: var(--light-blue);
    opacity: 0.3;
    border-radius: 50%;
    z-index: -1;
    transition: all 0.3s ease;
}

.step-card:hover .step-icon::after {
    transform: scale(1.2);
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.step-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.3;
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-dark);
    opacity: 0.7;
    line-height: 1.6;
    font-size: 1rem;
}

.step-arrow {
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-blue);
    font-size: 1.5rem;
    z-index: 2;
}

/* Animation for scroll reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 992px) {
    .steps-container {
        flex-direction: column;
        gap: 3rem;
    }

    .step-arrow {
        right: 50%;
        top: auto;
        bottom: -2rem;
        transform: translateX(50%) rotate(90deg);
    }

    .step-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }
}

/* Evaluation Section Styles */
.evaluation-section {
    padding: 100px 0;
    position: relative;
    background: transparent;
    color: var(--white);
}

.evaluation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.05), transparent);
}

.evaluation-header {
    text-align: center;
    margin-bottom: 3rem;
}

.evaluation-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.evaluation-subtitle {
    font-size: 1.125rem;
    color: var(--white);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.evaluation-container {
    max-width: 800px;
    margin: 0 auto;
}

.form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.custom-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 120px;
    background-color: #f8fafc;
}

.custom-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(var(--primary-blue-rgb), 0.1);
    background-color: var(--white);
}

.custom-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.btn-evaluate {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-evaluate:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-blue-rgb), 0.2);
}

.btn-evaluate i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-evaluate:hover i {
    transform: translateX(4px);
}

/* Hero section button update */
.hero .btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-blue-rgb), 0.2);
}

.hero .btn-primary i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero .btn-primary:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .evaluation-header h2 {
        font-size: 2rem;
    }

    .evaluation-subtitle {
        font-size: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .btn-evaluate {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1920px) {
    .hero::before {
        background-size: contain;
        background-repeat: repeat-x;
    }
}

/* Section transitions */
.features,
.how-it-works,
.evaluate-business {
    position: relative;
    z-index: 1;
}

/* Ensure headings are visible against gradient */
.section-title,
.section-description {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Update all section cards to have white background */
.feature-card,
.how-it-works-card,
.evaluate-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    color: var(--text-dark); /* Keep text dark in cards */
}

/* Add hover effect for all cards */
.feature-card:hover,
.how-it-works-card:hover,
.evaluate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    background: rgba(255, 255, 255, 0.98);
}

/* Update container backgrounds to be transparent */
.container {
    background: transparent;
}

/* Questions Form Styling */
.questions-form {
    max-width: 800px;
    margin: 0 auto;
}

.questions-form .form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.questions-form .form-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.questions-form h4 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.questions-form .form-group {
    margin-bottom: 2rem;
}

.questions-form .form-label {
    display: block;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.4;
}

.questions-form .custom-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
    resize: vertical;
    min-height: 100px;
    background-color: #f8fafc;
}

.questions-form .custom-textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(var(--primary-blue-rgb), 0.1);
    background-color: var(--white);
}

.questions-form .custom-textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.questions-form .form-footer {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.questions-form .btn-evaluate {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.questions-form .btn-evaluate:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.questions-form .btn-evaluate:disabled {
    background: var(--light-blue);
    cursor: not-allowed;
    transform: none;
}

.questions-form .btn-evaluate i {
    transition: transform 0.3s ease;
}

.questions-form .btn-evaluate:hover i {
    transform: translateX(4px);
}

/* Consistent width for both forms */
.idea-form, .questions-form {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.idea-form .form-card, .questions-form .form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    width: 100%;
}

/* Add required field indicator */
.questions-form .form-label::after {
    content: "*";
    color: #dc3545;
    margin-left: 4px;
}

.score-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.score-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-out;
}

.circular-progress {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-progress circle {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

.progress-bg {
    stroke: #f0f0f0;
}

.progress-bar {
    stroke-dasharray: 339.292; /* 2 * PI * 54 */
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 0.5s ease-in-out;
    transform-origin: center;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

.score-explanation {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.score-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

/* Score color classes with transition */
.score-excellent {
    stroke: #4CAF50;
    transition: stroke 0.3s ease;
}

.score-good {
    stroke: #2196F3;
    transition: stroke 0.3s ease;
}

.score-fair {
    stroke: #FFC107;
    transition: stroke 0.3s ease;
}

.score-poor {
    stroke: #F44336;
    transition: stroke 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Evaluation Results Styling */
.evaluation-results .custom-card {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.evaluation-results .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    padding: 1.25rem;
}

.evaluation-results .card-header h3 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.25rem;
}

.evaluation-results .card-body {
    padding: 1.5rem;
}

/* Risk Score Display */
.risk-score-display {
    text-align: center;
    padding: 1rem;
}

.risk-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    color: white;
}

.risk-indicator.low { background-color: #28a745; }
.risk-indicator.medium { background-color: #ffc107; }
.risk-indicator.high { background-color: #dc3545; }

.risk-value {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.risk-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Category Scores Grid */
.category-scores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.category-score-card {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.category-score-card h4 {
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

/* Circular Progress */
.score-circle {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
}

.score-circle svg {
    transform: rotate(-90deg);
}

.score-circle circle {
    fill: none;
    stroke-linecap: round;
}

.progress-bg {
    stroke: #eee;
}

.progress-ring {
    transition: stroke-dashoffset 1s ease-in-out;
}

.progress-ring.success { stroke: #28a745; }
.progress-ring.warning { stroke: #ffc107; }
.progress-ring.danger { stroke: #dc3545; }

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.score-explanation {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.action-buttons .btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.action-buttons .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.action-buttons .btn-light {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.action-buttons .btn-light:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.action-buttons i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.action-buttons button:hover i {
    transform: translateX(4px);
}

/* Error Message Styling */
.evaluation-error {
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(220, 53, 69, 0.1);
}

.evaluation-error .alert-heading {
    color: #dc3545;
    font-size: 1.1rem;
}

.evaluation-error p {
    color: #6c757d;
    font-size: 0.95rem;
}

.evaluation-error i {
    color: #dc3545;
    font-size: 1.5rem;
}

.evaluation-section {
    padding: 100px 0;
    position: relative;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
}

.analysis-content p,
.recommendations-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}

.analysis-content p:last-child,
.recommendations-content p:last-child {
    margin-bottom: 0;
}

.evaluation-summary h3 {
    color: #1a237e;
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.advisor-header {
    background: linear-gradient(45deg, var(--primary-blue), #2d5ca9);
    color: white;
}

.advisor-promotion {
    padding: 1rem;
}

.advisor-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.advisor-intro h4 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.feature-item h5 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.advisor-highlights {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.highlights-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlights-list i {
    color: #28a745;
}

.advisor-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--primary-blue), #2d5ca9);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-blue-rgb), 0.2);
}

.btn-primary-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-blue-rgb), 0.3);
}

.cta-subtitle {
    margin-top: 1rem;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Coming Soon Page Specific Styles */
.coming-soon-hero {
    min-height: 300px;
}

.launch-date {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    display: inline-block;
}

.features-preview {
    padding: 4rem 0;
}

.notify-section {
    padding: 4rem 0;
}

.notify-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notify-form {
    display: flex;
    gap: 1rem;
    max-width: 450px;
    margin: 2rem auto 0;
}

.notify-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.return-section {
    padding: 2rem 0 4rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--primary-blue);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notify-form {
        flex-direction: column;
    }

    .notify-form button {
        width: 100%;
    }
}
 
