@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --hurrah-purple: #b794f6;
    --hurrah-blue: #7dd3fc;
    --hurrah-green: #86efac;
    --hurrah-yellow: #fde047;
    --hurrah-orange: #fdba74;
    --hurrah-red: #fca5a5;
    --gradient-primary: linear-gradient(135deg, var(--hurrah-purple) 0%, var(--hurrah-blue) 25%, var(--hurrah-green) 50%, var(--hurrah-yellow) 75%, var(--hurrah-orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--hurrah-blue) 0%, var(--hurrah-green) 50%, var(--hurrah-yellow) 100%);
}

#landing-page {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section */
.hero-landing {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero-landing::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transform: skewX(-15deg);
    transform-origin: top;
}

.hero-landing h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
    letter-spacing: -0.02em;
}

.hero-landing h1::first-line {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-landing .lead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #4a5568;
    font-weight: 400;
    line-height: 1.6;
}

.hero-logo {
    max-width: 280px;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
}

.hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* CTA Buttons */
.btn-primary-gradient {
    background: var(--gradient-primary);
    border: none;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    color: #ffffff;
    text-decoration: none !important;
}

/* All button hover fixes */
.btn:hover,
.btn-outline-primary:hover,
.btn-light:hover,
a.btn:hover {
    text-decoration: none !important;
}

/* Section Headers */
section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Pain Points Cards */
.pain-points {
    background: white;
}

.pain-points .card {
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.pain-points .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--hurrah-blue);
}

.pain-points .card-body {
    padding: 2rem;
}

.pain-points i {
    font-size: 3rem;
}

/* Use Cases Section */
.use-cases {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.use-cases .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.use-cases .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
}

.use-cases .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.use-cases .card-body {
    padding: 2.5rem;
}

.use-cases .process-label {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 0.5rem;
}

.use-cases .process-label.before {
    background: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.use-cases .process-label.after {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #0369a1;
    border: 1px solid #7dd3fc;
}

.use-cases .arrow-icon {
    color: #94a3b8;
    font-size: 1.2rem;
}

.use-cases h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.use-cases .card-body p.fw-semibold {
    color: #059669;
    font-size: 1.05rem;
}

/* Pricing Section */
.pricing {
    background: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(183, 148, 246, 0.03) 0%, transparent 70%);
}

.pricing .card {
    border-radius: 24px;
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    position: relative;
}

.pricing .display-3 {
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
}

.pricing .alert-info {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    border: none;
    border-radius: 12px;
}

/* Owner Operated Section */
.owner-operated {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.owner-operated img {
    border: 5px solid white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.owner-operated ul li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.owner-operated i {
    font-size: 1.5rem;
}

/* Testimonials */
.testimonials-landing {
    background: white;
}

.testimonials-landing .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonials-landing .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonials-landing .card-body {
    padding: 2.5rem;
}

.testimonials-landing .bi-star-fill {
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-landing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-landing .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 100%;
}

.faq-landing .accordion-button {
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    background: white;
    color: #1a202c;
    border: none;
    width: 100%;
    text-align: left;
}

.faq-landing .accordion-header {
    margin: 0;
    width: 100%;
}

.faq-landing .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
    color: #1a202c;
    box-shadow: none;
}

.faq-landing .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-landing .accordion-button::after {
    filter: brightness(0);
}

.faq-landing .accordion-body {
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Contact Form */
.contact-form-landing {
    background: white;
    padding: 5rem 0;
}

.contact-form-landing .card {
    border-radius: 24px;
    border: none;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form-landing .form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.contact-form-landing .form-control {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.contact-form-landing .form-control:focus {
    border-color: var(--hurrah-blue);
    box-shadow: 0 0 0 3px rgba(125, 211, 252, 0.1);
}

.contact-form-landing textarea.form-control {
    min-height: 120px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.15;
}

.final-cta::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: var(--gradient-primary);
    opacity: 0.08;
    transform: rotate(-15deg);
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: white;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.final-cta h2::after {
    background: var(--gradient-primary);
}

.final-cta .lead {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    background: white;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d3748;
    border: 2px solid #f0f4f8;
    transition: all 0.3s ease;
}

.trust-badge i {
    font-size: 1.1rem;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Capacity Alert Styling */
.alert-warning {
    background: #fef3c7;
    border: 1px solid #fcd34d;
}

.alert-warning .d-flex {
    align-items: center;
}

.alert-warning i {
    flex-shrink: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero-landing {
        min-height: auto;
        padding: 2rem 0 3rem 0;
    }

    .hero-landing h1 {
        font-size: 2rem;
        margin-top: 0;
    }

    .hero-landing .trust-badge {
        margin-bottom: 1rem;
    }

    .hero-logo {
        max-width: 200px;
        margin-bottom: 1.5rem;
    }

    section h2 {
        font-size: 1.75rem;
    }

    .btn-primary-gradient {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .pricing .display-3 {
        font-size: 3rem;
    }

    .use-cases .card-body,
    .testimonials-landing .card-body {
        padding: 1.5rem;
    }
}
