:root {
    --primary-color: var(--bs-primary);
    --secondary-color: var(--bs-secondary);
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --light-purple: #f3f4f6;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --border-light: #e5e7eb;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(45deg, var(--white) 50%, var(--primary-color) 50%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-content-left {
    background: var(--white);
    padding: 60px;
    border-radius: 0 100px 0 0;
    box-shadow: 20px 0 40px rgba(139, 92, 246, 0.1);
    position: relative;
    z-index: 2;
}

.hero-content-right {
    background: var(--primary-color);
    color: white;
    padding: 60px;
    border-radius: 100px 0 0 0;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero-title-right {
    color: white;
    font-size: 2.5rem;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(1) {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 40px;
    height: 40px;
    background: var(--success-color);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--light-purple);
    position: relative;
}

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

.service-card {
    background: var(--white);
    border-radius: 25px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.service-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: white;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Counter Section */
.counter-section {
    padding: 100px 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.counter-item {
    text-align: center;
    color: white;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
}

.counter-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: white;
}

.counter-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    display: block;
    margin-bottom: 10px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

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

.process-step {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-purple);
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.process-step:hover {
    transform: translateY(-10px);
    background: var(--primary-color);
    color: white;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

.process-step:hover .step-number {
    background: white;
    color: var(--primary-color);
}

.step-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-description {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.process-step:hover .step-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-purple) 0%, #e0e7ff 100%);
    position: relative;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h6 {
    margin: 0;
    font-weight: 700;
    color: var(--text-dark);
}

.author-info small {
    color: var(--text-gray);
}

/* Pricing Section */
.pricing-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
}

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

.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    border: 3px solid var(--border-light);
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.2);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.pricing-card.featured .pricing-icon {
    background: var(--white);
    color: var(--primary-color);
}

.pricing-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
    gap: 10px;
}

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

.pricing-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 700;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pricing-card.featured .pricing-btn {
    background: var(--white);
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: var(--light-purple);
    position: relative;
}

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

.faq-item {
    background: var(--white);
    margin-bottom: 20px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
}

.faq-question {
    padding: 25px 30px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 30px 25px;
    color: var(--text-gray);
    line-height: 1.7;
    display: none;
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--success-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        background: var(--primary-color);
        flex-direction: column;
    }

    .hero-content-left,
    .hero-content-right {
        border-radius: 0;
        padding: 40px 20px;
    }

    .hero-content-left {
        background: var(--white);
        color: var(--text-dark);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .pricing-card.featured {
        transform: none;
        margin-top: 20px;
    }
}

.form-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-title {
    text-align: center;
    color: #8b5cf6;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

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

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.required::after {
    content: "";
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.form-control.is-invalid {
    border-color: #dc3545;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

.checkbox-wrapper {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin: 25px 0;
    border: 1px solid #e9ecef;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    margin-top: 4px;
}

.form-check-label {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
}

.privacy-link {
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    background: #8b5cf6;
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background: #7c3aed;
}

.btn-submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
}

.loading-spinner {
    display: none;
    margin-left: 8px;
}

.success-alert {
    display: none;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.success-alert.show {
    display: block;
}

.success-alert h4 {
    margin-bottom: 10px;
    color: #065f46;
}

.row {
    display: flex;
    gap: 15px;
}

.col {
    flex: 1;
}

@media (max-width: 576px) {
    .form-wrapper {
        margin: 0 15px;
        padding: 30px 20px;
    }

    .row {
        flex-direction: column;
        gap: 0;
    }

    .form-title {
        font-size: 1.5rem;
    }
}