/* ==================== BOOK A DEMO PAGE ==================== */

/* Body Styling */
body {
    background: linear-gradient(180deg, #ffffff 0%, #f8f7fc 30%, #f3f0ff 70%, #ebe4ff 100%);
}

/* ==================== HERO SECTION ==================== */
.hero {
    min-height: 100vh;
    padding: 140px 48px 80px;
    position: relative;
    overflow: hidden;
}

/* Animated Background Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
    pointer-events: none;
}

.bg-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(129, 103, 234, 0.25) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: -150px;
    animation-delay: -7s;
}

.bg-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 70%);
    top: 30%;
    right: 10%;
    animation-delay: -14s;
}

.bg-orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
    bottom: 20%;
    left: 20%;
    animation-delay: -5s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

/* ==================== FORM SIDE ==================== */
.form-side {
    position: relative;
    display: flex;
}

.form-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 48px;
    box-shadow:
        0 32px 64px rgba(129, 103, 234, 0.12),
        0 16px 32px rgba(0, 0, 0, 0.06),
        inset 0 1px 1px rgba(255, 255, 255, 1);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--violet), var(--accent-pink), var(--accent-orange));
    border-radius: 32px 32px 0 0;
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(129, 103, 234, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--violet);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    border: 1px solid rgba(129, 103, 234, 0.15);
}

.form-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--violet);
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.form-subtitle {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(129, 103, 234, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: var(--light-muted);
}

.form-input:hover {
    border-color: rgba(129, 103, 234, 0.3);
    background: white;
}

.form-input:focus {
    border-color: var(--violet);
    background: white;
    box-shadow:
        0 0 0 4px rgba(129, 103, 234, 0.1),
        0 4px 16px rgba(129, 103, 234, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(129, 103, 234, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%238167ea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 18px;
}

.form-select:hover {
    border-color: rgba(129, 103, 234, 0.3);
    background-color: white;
}

.form-select:focus {
    border-color: var(--violet);
    background-color: white;
    box-shadow:
        0 0 0 4px rgba(129, 103, 234, 0.1),
        0 4px 16px rgba(129, 103, 234, 0.1);
}

/* Checkbox Group Styles */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.checkbox-item {
    position: relative;
}

.checkbox-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(129, 103, 234, 0.12);
    border-radius: 12px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--dark-text);
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(129, 103, 234, 0.25);
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
    background: linear-gradient(135deg, rgba(129, 103, 234, 0.1) 0%, rgba(168, 85, 247, 0.08) 100%);
    border-color: var(--violet);
    color: var(--navy);
}

.checkbox-box {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(129, 103, 234, 0.3);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label .checkbox-box {
    background: var(--violet);
    border-color: var(--violet);
}

.checkbox-box svg {
    width: 12px;
    height: 12px;
    stroke: white;
    stroke-width: 3;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.2s ease;
}

.checkbox-item input[type="checkbox"]:checked + .checkbox-label .checkbox-box svg {
    opacity: 1;
    transform: scale(1);
}

.form-textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    font-family: inherit;
    color: var(--dark-text);
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(129, 103, 234, 0.15);
    border-radius: 14px;
    transition: all 0.3s ease;
    outline: none;
    resize: vertical;
    min-height: 80px;
}

.form-textarea::placeholder {
    color: var(--light-muted);
}

.form-textarea:hover {
    border-color: rgba(129, 103, 234, 0.3);
    background: white;
}

.form-textarea:focus {
    border-color: var(--violet);
    background: white;
    box-shadow:
        0 0 0 4px rgba(129, 103, 234, 0.1),
        0 4px 16px rgba(129, 103, 234, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    font-family: inherit;
    color: white;
    background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 50%, #9333ea 100%);
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    box-shadow:
        0 8px 24px rgba(139, 92, 246, 0.4),
        0 0 48px rgba(139, 92, 246, 0.2);
    animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4), 0 0 48px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 12px 32px rgba(139, 92, 246, 0.6), 0 0 64px rgba(139, 92, 246, 0.3);
    }
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 32px rgba(139, 92, 246, 0.5),
        0 0 64px rgba(139, 92, 246, 0.3);
}

.btn-submit svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(129, 103, 234, 0.1);
}

.form-footer-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}

.form-footer-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-green);
}

/* ==================== VALUE SIDE ==================== */
.value-side {
    padding: 40px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
}

.value-header {
    margin-bottom: 40px;
}

.value-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(129, 103, 234, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(129, 103, 234, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--violet);
    margin-bottom: 24px;
}

.value-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.value-title .serif-italic {
    background: linear-gradient(135deg, #7c5cfc 0%, #a855f7 33%, #ec4899 66%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-description {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 480px;
}

/* What You'll Learn Section */
.learn-section {
    margin-bottom: 48px;
}

.learn-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.learn-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(129, 103, 234, 0.3), transparent);
}

.learn-grid {
    display: grid;
    gap: 16px;
}

.learn-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.learn-item:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(129, 103, 234, 0.1);
}

.learn-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(129, 103, 234, 0.15) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.learn-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--violet);
}

.learn-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.learn-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(129, 103, 234, 0.12);
}

.stat-value {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--violet) 0%, var(--accent-purple) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* Trust Logos Section */
.trust-section {
    padding: 24px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    overflow: hidden;
}

.trust-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-align: center;
}

.trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px 32px;
}

.trust-logo-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    opacity: 0.6;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.trust-logo-item:hover {
    opacity: 1;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials {
    padding: 100px 48px;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, rgba(129, 103, 234, 0.03) 50%, transparent 100%);
    overflow: hidden;
}

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

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(129, 103, 234, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(129, 103, 234, 0.15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--violet);
    margin-bottom: 24px;
}

.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.testimonials-subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, black 0%, black 75%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 0%, black 75%, transparent 100%);
}

.testimonials-carousel {
    display: flex;
    gap: 24px;
    animation: scrollToRight 45s linear infinite;
}

.testimonials-carousel:hover {
    animation-play-state: paused;
}

@keyframes scrollToRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-33.33% - 12px));
    }
}

.testimonial-card {
    width: 380px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 36px;
    box-shadow:
        0 20px 40px rgba(129, 103, 234, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 24px 48px rgba(129, 103, 234, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-orange);
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(129, 103, 234, 0.15);
}

.testimonial-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--muted);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
    padding: 100px 48px;
    max-width: 900px;
    margin: 0 auto;
}

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

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 18px;
    color: var(--muted);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(129, 103, 234, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(129, 103, 234, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    flex: 1;
    padding-right: 24px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--violet);
    stroke-width: 2;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 32px 28px 32px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .value-title {
        font-size: 38px;
    }

}

@media (max-width: 768px) {
    .hero {
        padding: 120px 24px 60px;
    }

    .form-card {
        padding: 32px;
    }

    .value-side {
        padding: 32px;
    }

    .form-row,
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .value-title {
        font-size: 32px;
    }

    .testimonials {
        padding: 80px 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .faq-section {
        padding: 80px 24px;
    }

    .form-footer {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 26px;
    }

    .value-title {
        font-size: 28px;
    }

    .faq-title {
        font-size: 32px;
    }
}
