﻿/* Reset and Base Styles */
.book-your-demo-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.book-your-demo-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

    /* Hero Section */
    .book-your-demo-page .hero-section {
        background: #00234c;
        position: relative;
        overflow: hidden;
        padding: 80px 60px;
    }

    .book-your-demo-page .hero-background-pattern {
        position: absolute;
        bottom: -210px;
        left: 50%;
        transform: translateX(-50%);
        height: 60%;
        pointer-events: none;
    }

    .book-your-demo-page .hero-container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        position: relative;
        z-index: 1;
    }

    /* Hero Content (Left Side) */
    .book-your-demo-page .hero-content {
        color: white;
        padding-top: 40px;
    }

    .book-your-demo-page .hero-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 30px;
        letter-spacing: -1px;
    }
     .book-your-demo-page .hero-title br{
         display:none;
     }

    .book-your-demo-page .highlight-text {
        color: #fff;
    }

    .book-your-demo-page .hero-description {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
        color: rgba(255, 255, 255, 0.95);
        max-width: 540px;
    }

    .book-your-demo-page .hero-subtitle {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 20px;
        color: white;
    }

    .book-your-demo-page .features-list {
        list-style: none;
        margin-bottom: 50px;
    }

    .book-your-demo-page .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 16px;
        font-size: 14px;
        color: white;
    }

    .book-your-demo-page .checkmark {
        width: 18px;
        height: 18px;
        background-color: #7fb842;
        border-radius: 50%;
        margin-right: 15px;
        position: relative;
        flex-shrink: 0;
    }

        .book-your-demo-page .checkmark::after {
            content: '✓';
            position: absolute;
            color: white;
            font-size: 14px;
            font-weight: bold;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

    /* Trust Section */
    .book-your-demo-page .trust-section {
        margin-top: 60px;
    }

    .book-your-demo-page .trust-text {
        font-size: 16px;
        font-weight: 600;
        color: white;
        margin-bottom: 20px;
    }

    .book-your-demo-page .logo-container {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .book-your-demo-page .company-logo {
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
        font-weight: 600;
        padding: 10px 20px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 4px;
    }

    /* Form Section (Right Side) */
    .book-your-demo-page .form-container {
        display: flex;
        justify-content: center;
        align-items: start;
    }

    .book-your-demo-page .form-card {
        background: #f5f3ec;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        width: 100%;
        max-width: 500px;
    }

    .book-your-demo-page .form-title {
        font-size: 24px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 30px;
        line-height: 1.3;
    }

    .book-your-demo-page .demo-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .book-your-demo-page .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .book-your-demo-page .form-group {
        display: flex;
        flex-direction: column;
    }

    .book-your-demo-page .form-label {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
    }

    .book-your-demo-page .form-input {
        padding-inline: 15px;
        height:40px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        background: white;
        transition: border-color 0.3s;
    }
.error-message{
    display:none;
}
.book-your-demo-page .form-input:focus {
    outline: none;
    border-color: #7fb842;
}

    .book-your-demo-page .form-textarea {
        resize: vertical;
        min-height: 100px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .book-your-demo-page .form-date-input {
        cursor: pointer;
    }

    .book-your-demo-page .phone-input-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .book-your-demo-page .phone-country-select {
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        background: white;
        cursor: pointer;
        width: 100%;
    }

    .book-your-demo-page .phone-input {
        padding: 12px 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 14px;
        background: white;
    }

    .book-your-demo-page .checkbox-label {
        display: flex;
        align-items: start;
        gap: 10px;
        cursor: pointer;
    }

    .book-your-demo-page .form-checkbox {
        margin-top: 4px;
        width: 16px;
        height: 16px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .book-your-demo-page .checkbox-text {
        font-size: 13px;
        color: #444;
        line-height: 1.5;
    }

    .book-your-demo-page .form-terms {
        font-size: 13px;
        color: #444;
        line-height: 1.5;
    }

    .book-your-demo-page .terms-link {
        color: #7f6c3f;
        text-decoration: underline;
    }

    .book-your-demo-page .submit-button {
        color: #fff;
        padding: 16px 32px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        background: #fff;
        color: #00234c;
        border: 1px solid #00234c;
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        margin-top: 10px;
    }

        .book-your-demo-page .submit-button:hover {
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
        }

    /* Testimonials Section */
    .book-your-demo-page .testimonials-section {
        background: white;
        padding: 100px 60px;
        text-align: center;
    }

    .book-your-demo-page .testimonials-title {
        font-size: 56px;
        font-weight: 700;
        color: #1a3c4a;
        line-height: 1.2;
        margin-bottom: 60px;
    }

    .book-your-demo-page .highlight-text-dark {
        background: #00234c;
        color: #fff;
        padding: 0 12px;
        display: inline-block;
    }

    .book-your-demo-page .testimonials-container {
        max-width: 1400px;
        margin: 0 auto 50px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .book-your-demo-page .testimonial-card {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 40px 30px;
        text-align: left;
        background: white;
        transition: box-shadow 0.3s;
    }

        .book-your-demo-page .testimonial-card.task-management {
            border: 2px solid oklch(90.1% .076 70.697);
            background: oklch(98% .016 73.684);
        }

            .book-your-demo-page .testimonial-card.task-management .icon svg {
                color: oklch(64.6% .222 41.116);
            }

        .book-your-demo-page .testimonial-card.sales-funnel {
            border: 2px solid oklch(89.9% .061 343.231);
            background: oklch(97.1% .014 343.198);
        }

            .book-your-demo-page .testimonial-card.sales-funnel .icon svg {
                color: oklch(59.2% .249 .584);
            }

        .book-your-demo-page .testimonial-card.team-management {
            border: 2px solid oklch(92.5% .084 155.995);
            background: oklch(98.2% .018 155.826);
        }

            .book-your-demo-page .testimonial-card.team-management .icon svg {
                color: oklch(59.2% .249 .584);
            }

        .book-your-demo-page .testimonial-card:hover {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

    .book-your-demo-page .testimonial-logo {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .book-your-demo-page .testimonial-logo .icon {
            height: 56px;
            width: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #fff;
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
        }

            .book-your-demo-page .testimonial-logo .icon svg {
                width: 32px;
                height: 32px;
            }

    .book-your-demo-page .logo-placeholder {
        font-size: 24px;
        font-weight: 700;
        color: oklch(21% .034 264.665);
        line-height: 1;
        margin-bottom: 0;
    }

    .book-your-demo-page .testimonial-text {
        font-size: 15px;
        color: oklch(37.3% .034 259.733);
        line-height: 1.7;
        margin-bottom: 25px;
        min-height: 140px;
        font-weight: 500;
    }

    .book-your-demo-page .testimonial-author {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .book-your-demo-page .author-name {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
        margin-bottom: 4px;
    }

    .book-your-demo-page .author-title {
        font-size: 13px;
        color: #666;
        line-height: 1.4;
    }

    .book-your-demo-page .case-studies-button {
        background: #00234c;
        color: #fff;
        padding: 16px 48px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: background 0.3s;
        border: 1px solid transparent;
        display: inline-block;
        text-decoration: none;
    }

        .book-your-demo-page .case-studies-button:hover {
            background: #fff;
            color: #00234c;
            border: 1px solid #00234c;
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

/* Responsive Design */
@media (max-width: 1200px) {
    .book-your-demo-page .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .book-your-demo-page .testimonials-container {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .book-your-demo-page .hero-title {
        font-size: 48px;
    }

    .book-your-demo-page .testimonials-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .book-your-demo-page .hero-content{
        padding-top:0;
    }
    .book-your-demo-page .hero-section {
        padding: 40px 20px;
    }

    .book-your-demo-page .testimonials-section {
        padding: 60px 20px;
    }

    .book-your-demo-page .form-row {
        grid-template-columns: 1fr !important;
    }

    .demo-form .grid_row {
        grid-template-columns: 1fr !important;
    }
    .book-your-demo-page .hero-title {
        font-size: 26px;
    }
    .demo-form .grid_row{
        grid-template-columns:1fr;
    }
    .book-your-demo-page .testimonials-title{
        font-size:24px;
        margin-bottom:16px;
    }
    .book-your-demo-page .testimonial-card{
        padding:20px;
    }
    .book-your-demo-page .logo-placeholder {
        font-size: 20px;
    }
    .book-your-demo-page .testimonial-logo .icon{
        width:44px;
        height:44px;
    }
        .book-your-demo-page .testimonial-logo .icon svg{
            width:24px;
        }
    .book-your-demo-page .case-studies-button {
        font-size: 14px;
        padding: 10px 32px;
    }
}
