/* Busybhai Landing Page Styles */

/* Base styles */
body {
    font-family: 'Barlow', sans-serif;
    color: #333;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Header styles */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #542087;
}

nav a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #542087;
}

/* Mobile menu styles */
#mobileMenu {
    background-color: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#mobileMenu a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

#mobileMenu a:last-child {
    border-bottom: none;
}

/* Hero section styles */
#hero {
    background-color: #f7fafc;
    padding: 4rem 0;
}

#hero h1 {
    color: #542087;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

#hero p {
    color: #4a5568;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #542087;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4a1d7a;
}

/* About section styles */
#about {
    padding: 4rem 0;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

.feature-card i {
    color: #542087;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Services section styles */
#services {
    background-color: #f7fafc;
    padding: 4rem 0;
}

.service-slider {
    position: relative;
    overflow: hidden;
}

.service-slide {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin: 0 1rem;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background-color: #f7fafc;
}

.slider-nav.prev {
    left: 1rem;
}

.slider-nav.next {
    right: 1rem;
}

.slide-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.slide-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: #cbd5e0;
    margin: 0 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slide-indicator.active {
    background-color: #542087;
}

/* Pricing section styles */
#pricing {
    padding: 4rem 0;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
}

.pricing-card h3 {
    color: #542087;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-card li {
    margin-bottom: 0.5rem;
}

.pricing-card li i {
    margin-right: 0.5rem;
}

/* FAQ section styles */
#faq {
    background-color: #f7fafc;
    padding: 4rem 0;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    background-color: #ffffff;
    border-radius: 0.375rem;
    padding: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #edf2f7;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background-color: #ffffff;
    border-radius: 0 0 0.375rem 0.375rem;
    padding: 1rem;
    margin-top: -0.375rem;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Contact section styles */
#contact {
    padding: 4rem 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #cbd5e0;
    border-radius: 0.375rem;
}

.contact-form button {
    background-color: #542087;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #4a1d7a;
}

/* Footer styles */
footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

footer h5 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

footer ul {
    list-style-type: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1rem;
    }

    .feature-card,
    .pricing-card {
        margin-bottom: 2rem;
    }

    .slider-nav {
        display: none;
    }

    footer .col {
        margin-bottom: 2rem;
    }

    .main-content {
        flex-direction: column;
    }

    .contact-form, .contact-info {
        width: 100%;
    }

    h1 {
        font-size: 2rem;
    }
}

/* Utility classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

:root {
    --primary-color: #542087;
    --primary-light: #7c3ac7;
    --primary-dark: #3e1863;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--primary-light);
}

.back-link {
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-light);
}

.back-link svg {
    margin-right: 0.5rem;
    width: 20px;
    height: 20px;
}

.main-content {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.contact-form {
    flex: 1 1 600px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info {
    flex: 1 1 300px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1, h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-info h2 {
    color: var(--white);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

h1::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--primary-color);
    margin-top: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(84, 32, 135, 0.2);
}

button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
    width: 100%;
}

button:hover {
    background-color: var(--primary-light);
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--white);
}

.contact-method {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-method svg {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
    color: var(--white);
}

.back-button {
    display: inline-block;
    background-color: #542087;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

.back-button:hover {
    background-color: #3e1863;
}