 :root {
            --primary-blue: #2563eb;
            --dark-blue: #154B88;
            --soft-bg: #f8fafc;
            --light-blue: #25A6D9;
            --green: #5CAC36;
            --orange:#E25524;//#D94929;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: #1e293b;
            scroll-behavior: smooth;
        }

        /* Navbar Customization */
        .navbar {
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.9);
        }

        .navbar-brand span.brand-main { color: var(--light-blue); font-weight: 800; }
        .navbar-brand span.brand-sub { color: #64748b; font-weight: 300; }

        /* Hero Section */
        .hero-section {
            padding: 160px 0 100px;
            background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
        }

        .hero-image-container {
            position: relative;
        }

        .hero-image {
            border-radius: 2rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

        .floating-badge {
            position: absolute;
            top: 20px;
            left: -20px;
            background: white;
            padding: 15px 25px;
            border-radius: 1rem;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        /* Card Customization */
        .feature-card, .price-card {
            border: 1px solid #e2e8f0;
            border-radius: 1.5rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background: white;
            padding: 2.5rem;
        }

        .feature-card:hover, .price-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
        }

.price-card.popular {
    border-color: var(--primary-blue);
    background: #f0f7ff;
}

.info-tone-card {
    height: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    background: #ffffff;
    box-shadow: 0 20px 25px -18px rgba(15, 23, 42, 0.18);
    overflow: hidden;
}

.info-tone-card .card-body {
    position: relative;
}

.info-tone-card-head {
    margin-bottom: 1.1rem;
}

.info-tone-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 1.15rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.info-tone-card .card-title {
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

.info-tone-card ul {
    margin: 0;
    padding-left: 1.25rem;
    color: #475569;
}

.info-tone-card li + li {
    margin-top: 0.8rem;
}

.info-tone-list {
    list-style: none;
    padding-left: 0;
}

.info-tone-list li {
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.7;
}

.info-tone-list li::before {
    content: "";
    position: absolute;
    top: 0.7rem;
    left: 0;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
}

.info-tone-card-warning {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 100%);
    border-color: #fde7b0;
}

.info-tone-card-warning .card-body::before,
.info-tone-card-info .card-body::before {
    content: "";
    display: block;
    width: 72px;
    height: 6px;
    border-radius: 999px;
    margin-bottom: 1.1rem;
}

.info-tone-card-warning .card-body::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.info-tone-card-warning .info-tone-card-icon {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #b45309;
}

.info-tone-card-warning .info-tone-list li::before {
    background: #f59e0b;
    box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.12);
}

.info-tone-card-info {
    background: linear-gradient(180deg, #f4faff 0%, #ffffff 100%);
    border-color: #bfdbfe;
}

.info-tone-card-info .card-body::before {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.info-tone-card-info .info-tone-card-icon {
    background: linear-gradient(135deg, #dbeafe, #bae6fd);
    color: #1d4ed8;
}

.info-tone-card-info .info-tone-list li::before {
    background: #2563eb;
    box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.12);
}

        /* SaaS Section */
        .saas-container {
            position: relative;
            background:
                radial-gradient(circle at top right, rgba(56, 189, 248, 0.18), transparent 30%),
                radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.22), transparent 32%),
                linear-gradient(135deg, #0f172a 0%, #12203f 48%, #0b1227 100%);
            border-radius: 3rem;
            color: white;
            padding: 4rem;
            overflow: hidden;
            box-shadow: 0 32px 70px -30px rgba(15, 23, 42, 0.55);
        }

        .saas-container::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
            pointer-events: none;
        }

        /* FAQ Accordion */
        .accordion-item {
            border-radius: 1rem !important;
            margin-bottom: 1rem;
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        .accordion-button:not(.collapsed) {
            background-color: #f1f5f9;
            color: var(--primary-blue);
        }

        /* Contact Form */
        .contact-form input, .contact-form textarea, .contact-form select {
            border-radius: 0.75rem;
            padding: 0.75rem 1rem;
            border: 1px solid #e2e8f0;
        }

        /* WhatsApp Floating Button */
        .wa-floating {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .wa-floating:hover {
            transform: scale(1.1);
            color: white;
        }

        .wa-tooltip {
            position: absolute;
            right: 75px;
            background: white;
            color: #1e293b;
            padding: 8px 15px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            white-space: nowrap;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .wa-floating:hover .wa-tooltip {
            opacity: 1;
        }

        /* Utilities */
        .btn-primary {
            background-color: var(--primary-blue);
            border-color: var(--primary-blue);
            padding: 0.8rem 2rem;
            border-radius: 0.75rem;
            font-weight: 600;
        }

        .btn-primary:hover {
            background-color: var(--dark-blue);
            border-color: var(--dark-blue);
        }
.dashboard-card{
    background:linear-gradient(180deg, rgb(35 93 220), rgb(3 86 176)), #225bd8;
    color: #f2f7f8;
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(3, 86, 176, 0.08);
}
.dashboard-card .badge {
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(217, 239, 233, 0.12);
    color: #cdece7;
    font-size: 0.88rem;
}
.metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 24px 0;
}
.dashboard-header, .feature-strip, .metric-grid {
    display: grid;
    gap: 14px;
}

.dashboard-visual-stack {
    display: grid;
    gap: 1.5rem;
}

.supporting-image-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -15px rgba(15, 23, 42, 0.18);
}

.supporting-image,
.booking-preview-image {
    width: 100%;
    display: block;
    object-fit: cover;
}

.supporting-image {
    height: 280px;
}

.supporting-image-caption,
.booking-preview-copy {
    padding: 1.25rem 1.5rem;
}

.caption-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-blue);
}

.supporting-image-caption h5 {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.5;
    color: #0f172a;
}

.booking-preview-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #dbeafe;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -25px rgba(37, 99, 235, 0.25);
}

.booking-preview-image {
    height: 100%;
    min-height: 280px;
}

.booking-preview-copy h4 {
    color: #0f172a;
    line-height: 1.35;
}

.start-now {
    position: relative;
}

.start-now-card {
    border: 1px solid #dbeafe;
    border-radius: 2.4rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(96, 165, 250, 0.18), transparent 28%),
        linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    box-shadow: 0 30px 60px -35px rgba(37, 99, 235, 0.28);
}

.start-now-body {
    padding: 3rem;
}

.start-now-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

.start-now-title i {
    color: var(--primary-blue);
    margin-right: 0.45rem;
}

.start-now-subtitle {
    max-width: 680px;
    margin: 0 auto 2rem;
    font-size: 1.02rem;
    line-height: 1.8;
}

.start-now-feature-card {
    border-color: #dbeafe;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 30px -22px rgba(30, 64, 175, 0.32);
}

.start-now-feature-card:hover {
    box-shadow: 0 26px 34px -24px rgba(30, 64, 175, 0.34);
}

.start-now-feature-icon {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 14px 25px -20px rgba(37, 99, 235, 0.45);
}

.saas-plan-card {
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

.saas-plan-card h3,
.saas-plan-card h5 {
    color: #ffffff;
}

.saas-plan-card ul li + li {
    margin-top: 0.6rem;
}

.saas-plan-card p {
    margin-bottom: 0;
    color: rgba(191, 219, 254, 0.86) !important;
}

.saas-cta-panel {
    border-radius: 2rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.saas-cta-icon {
    color: #93c5fd;
}

.saas-cta-button {
    border: 0;
    color: #0f172a;
    box-shadow: 0 18px 30px -22px rgba(255, 255, 255, 0.65);
}

@media (max-width: 991.98px) {
    .booking-preview-image {
        min-height: 240px;
    }

    .start-now-body,
    .saas-container {
        padding: 2rem;
    }
}
.metric-grid article {
    padding: 18px;
}
.metric-grid article, .feature-strip span {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
}
.metric-grid strong {
    display: block;
    font-size: 1.65rem;
    margin-bottom: 4px;
}
.metric-grid span {
    color: rgba(242, 247, 248, 0.78);
    line-height: 1.5;
}
.feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.feature-strip span {
    padding: 14px 16px;
    text-align: center;
    font-size: 0.92rem;
}
.dashboard-header, .feature-strip, .metric-grid {
    display: grid;
    gap: 14px;
}

