/* Global Styles */
:root {
    --primary: #461871;
    --primary-dark: #2a0e44;
    --cyan-fluo: #8dffc8;
    --text-color: #333;
    --bg-color: #f8f9fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: white;
}

/* Navbar Styles */
.navbar {
    background-color: white;
    padding: 20px 0;
}

.nav-link {
    color: #1F0B33 !important;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.btn-signup {
    background-color: #461871;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
}

/* Buttons */
.btn-primary-custom {
    background-color: #461871;
    color: white;
    border-radius: 25px;
    padding: 15px 30px;
    border: none;
}

.btn-secondary-custom {
    background-color: #dcffee;
    color: #461871;
    border-radius: 25px;
    padding: 15px 30px;
    border: none;
}

.btn-mint {
    background-color: #8dffc8;
    color: #14081c;
    border-radius: 25px;
    padding: 15px 30px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-right: 15px;
}

.btn-light-mint {
    background-color: #dcffee;
    color: #14081c;
    border-radius: 25px;
    padding: 15px 30px;
    border: none;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: #461871;
    border-color: #461871;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #2a0e44;
    border-color: #2a0e44;
}

/* Hero Section */
.hero-title {
    font-size: 72px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
    color: #2a0e44;
}

.underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.underline::after {
    content: '';
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: 5px;
    height: 15px;
    background-color: #8dffc8;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.text-mint {
    color: #8dffc8;
}

.hero-description {
    color: #c3c3c3;
    font-weight: 600;
    font-size: 18px;
    margin: 30px 0;
}

/* Services Banner */
.services-banner {
    width: 100%;
    background-color: #6abf96;
    padding: 20px 0;
    margin: 50px 0;
}

.services-banner span {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
}

.services-banner .separator {
    color: #fae100;
    margin: 0 15px;
}

/* How It Works Section */
.how-it-works {
    margin: 80px 0;
}

.how-it-works-title {
    color: #14081c;
    font-size: 36px;
    font-weight: bold;
}

.how-it-works-description {
    color: #c3c3c3;
    font-weight: 500;
    font-size: 16px;
    margin: 15px 0 30px 0;
}

.step-card {
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    height: 100%;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.5;
}

.step-primary {
    background-color: #461871;
    color: white;
}

.step-secondary {
    background-color: white;
    border: 2px solid #14081c;
    color: #14081c;
}

.how-it-works-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    background-color: #14081c;
    padding: 80px 0;
}

.features-title {
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.features-description {
    color: #c3c3c3;
    font-size: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.feature-card {
    background-color: #1f0b33;
    border-radius: 15px;
    padding: 30px;
    color: white;
    height: 100%;
}

.feature-card.highlight {
    background-color: #8dffc8;
    color: #1f0b33;
}

.feature-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.feature-title i {
    font-size: 24px;
}

.feature-title h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    font-weight: 500;
    font-size: 14px;
}

/* Page Headers */
.page-header {
    background-color: #f8f9fa;
    padding: 50px 0;
    margin-bottom: 40px;
}

.page-header h1 {
    color: #2a0e44;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-header p {
    color: #6c757d;
    font-size: 18px;
}

/* Section Titles */
.section-title {
    color: #2a0e44;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
}

.section-description {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
}

/* Price Cards */
.price-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #461871;
    margin: 10px 0;
}

.price-features {
    list-style: none;
    padding: 0;
}

.price-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.price-features li:last-child {
    border-bottom: none;
}

/* CTA Section */
.cta-section {
    background-color: #3f1666;
    padding: 80px 0;
    color: white;
}

.cta-title {
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-size: 16px;
    margin-bottom: 30px;
    color: #c3c3c3;
}

/* Accordion */
.accordion-button {
    background-color: #f8f9fa;
    color: #14081c;
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #461871;
    color: white;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23461871'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background-color: white;
    padding: 25px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 20px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.testimonial-text {
    color: #14081c;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border: 2px solid #461871;
}

.author-info h4 {
    margin: 0;
    color: #461871;
    font-size: 16px;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 14px;
}

/* Process Steps */
.process-step {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.process-icon {
    color: #461871;
}

/* Footer */
footer {
    background-color: #14081c;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
}

.footer-description {
    color: #c3c3c3;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #c3c3c3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #8dffc8;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

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

.social-links a {
    color: white;
    font-size: 20px;
}

.footer-contact {
    color: #c3c3c3;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #c3c3c3;
    font-size: 14px;
}

/* Simulator Section */
.simulator-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.simulator-title {
    color: #2a0e44;
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}

.simulator-description {
    color: #6c757d;
    font-size: 16px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.simulator-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        padding: 20px 0;
    }

    .price-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
        margin-right: 15px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
            
    .testimonial-text {
        font-size: 14px;
    }
    
    footer {
        text-align: center;
        padding: 40px 0 20px;
    }

    .footer-section {
        margin-bottom: 40px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .footer-bottom {
        margin-top: 20px;
    }
} 