/* WOCPrint Landing Page - Premium Styling */

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: rgba(37, 99, 235, 0.1);
    --navy: #002774;
    --light-blue: #e0f2fe;
    --light-blue-bg: #f0f9ff;
    --light-red: #fef2f2;
    --light-grey: #f8fafc;
    --yellow: #facc15;
    --border-color: #e2e8f0;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--navy);
    background-color: #fcfdfe;
    overflow-x: hidden;
}

a{
    text-decoration: none;
    color: inherit;
}

/* Header & Navbar Styling */
.logo-w {
    background-color: var(--primary);
    color: white;
    font-weight: 800;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 20px;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.logo-text {
    font-weight: 700;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.hero-section {
    background: radial-gradient(circle at 80% 20%, #f0f7ff 0%, #ffffff 80%);
    position: relative;
    overflow: hidden;
}

.hero-image-desktop-absolute {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0%;
    width: 53%;
    max-width: 1200px;
    z-index: 2;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 1) 35%);
}

.hero-mockup-img-absolute {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.text-navy {
    color: var(--navy);
}

.fw-extrabold {
    font-weight: 800;
}

.lead-text {
    line-height: 1.7;
}



/* Custom Grids and Cards styling */
.transition-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transition-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(15, 30, 54, 0.08) !important;
}

/* Problems Grid Layout styling */
.row-cols-lg-7>* {
    flex: 0 0 auto;
    width: 14.2857%;
}

@media (max-width: 992px) {
    .row-cols-lg-7>* {
        width: 25%;
    }
}

@media (max-width: 576px) {
    .row-cols-lg-7>* {
        width: 50%;
    }
}

.problem-card {
    border-radius: 12px;
    background-color: var(--light-grey);
    border: 1px solid var(--border-color) !important;
}

.problem-icon {
    transition: transform 0.3s ease;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1);
}

.bg-light-red {
    background-color: var(--light-red);
}

.small-heading {
    font-size: 14px;
    line-height: 1.3;
}

.super-small {
    font-size: 11px;
    line-height: 1.4;
}

/* Solutions Cards */
.border-top-primary {
    border-top: 3px solid var(--primary) !important;
}

.solution-card {
    border-radius: 12px;
}

/* Before and After VS Layout */
.comparison-card {
    border-radius: 16px;
}

.grayscale-img {
    filter: grayscale(1);
}

.vs-badge {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 4px solid white;
}

.metrics-card {
    border-radius: 16px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 100%);
}

.text-yellow {
    color: var(--yellow);
}

/* Workflow Section */
.workflow-steps-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

@media (min-width: 992px) {
    .workflow-steps-row {
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: stretch;
    }

    .step-card-wrapper {
        flex: 1;
        max-width: 220px;
        padding-top: 15px;
    }

    .workflow-arrow {
        flex: 0 0 auto;
        align-self: center;
    }
}

@media (max-width: 991px) {
    .step-card-wrapper {
        flex: 0 0 calc(33.333% - 15px);
        margin-bottom: 15px;
        padding-top: 15px;
    }

    .workflow-arrow {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .step-card-wrapper {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .step-card-wrapper {
        font-size: 12px;
    }

    .step-card-wrapper h6 {
        font-size: 14px !important;
    }

}

.step-badge-number {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid white;
    z-index: 3;
    font-size: 14px;
}

.workflow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Pricing Table Styling */
.pricing-comparison-table th,
.pricing-comparison-table td {
    vertical-align: middle;
    transition: background-color 0.2s ease, border 0.2s ease;
}

.bg-navy {
    background-color: var(--navy);
}

.border-primary {
    border-color: var(--primary) !important;
}

.bg-yellow {
    background-color: var(--yellow);
}



.btn-white {
    background-color: white;
    color: var(--primary);
    border: 1px solid white;
}

.btn-white:hover {
    background-color: #f1f5f9;
    color: var(--primary-hover);
}

/* Border top decoration for consultation card */
.border-top-primary-heavy {
    border-top: 6px solid var(--primary) !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Fix table-responsive overflow clipping of floating badges and support mobile scroll */
.pricing-comparison-table {
    margin-top: 24px !important;
}

.pricing-section .table-responsive {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    padding-top: 25px;
    /* Space for floating badges */
    padding-bottom: 12px;
}

@media (min-width: 992px) {
    .pricing-section .table-responsive {
        overflow: visible !important;
        padding-top: 25px;
    }
}

/* Custom scrollbar for table-responsive */
.pricing-section .table-responsive::-webkit-scrollbar {
    height: 6px;
}

.pricing-section .table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.pricing-section .table-responsive::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.pricing-section .table-responsive::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Template Card Hover Styles */
.template-card {
    border: 1px solid var(--border-color) !important;
    border-radius: 12px;
}

.template-hover-overlay {
    transition: all 0.3s ease;
}

.template-card:hover .template-hover-overlay {
    opacity: 1 !important;
    background-color: #0f1e36b8;
}

.transition-all {
    transition: all 0.3s ease !important;
}

/* Why Choose Us Layout dividers */
@media (min-width: 768px) {
    .border-end-divider {
        border-right: 1px solid #e2e8f0;
    }
}

@media (max-width: 767px) {
    .border-end-divider {
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }
}

.why-features-container-card {
    border: 1px solid var(--border-color) !important;
}

.logo {
    height: 96px;
}

/* Mobile Pricing Table Optimization (No horizontal scroll) */
@media (max-width: 767px) {
    .logo {
        height: 70px;
    }

    .pricing-section .table-responsive {
        overflow-x: visible !important;
        padding-top: 15px;
    }

    .pricing-comparison-table {
        margin-top: 10px !important;
        font-size: 8.5px !important;
        width: 100% !important;
        table-layout: fixed;
    }

    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 6px 1px !important;
        min-width: auto !important;
    }

    /* Fixed widths for columns on mobile to total 100% */
    .pricing-comparison-table th:first-child,
    .pricing-comparison-table td:first-child {
        width: 32% !important;
        text-align: left !important;
        padding-left: 4px !important;
        font-size: 10px !important;
    }

    .pricing-comparison-table th:not(:first-child),
    .pricing-comparison-table td:not(:first-child) {
        width: 17% !important;
    }

    /* Hide extra details to save horizontal space */
    .pricing-comparison-table td p.super-small,
    .pricing-comparison-table th .super-small {
        font-size: 8px !important;
    }

    .pricing-comparison-table td i:not(.icon) {
        margin-right: 2px !important;
    }

    /* Downscale price sizes */
    .pricing-comparison-table .display-6 {
        font-size: 11px !important;
        font-weight: 700 !important;
    }

    .pricing-comparison-table th .badge {
        font-size: 5.5px !important;
        padding: 1px 3px !important;
        border-radius: 4px !important;
    }

    .pricing-comparison-table th div.py-2 {
        font-size: 6.5px !important;
        padding: 3px 0 !important;
    }

    .pricing-comparison-table th div.py-5 {
        padding: 20px 2px !important;
        font-size: 8.5px !important;
    }

    .pricing-comparison-table td i.fs-5 {
        font-size: 10px !important;
    }

    .pricing-comparison-table td div.text-muted.small {
        font-size: 7px !important;
        line-height: 1.1;
    }

    /* Hide the bracketed details on SMS row */
    .pricing-comparison-table td div.text-muted.small span.super-small {
        display: none !important;
    }

    /* Hide text icons inside cells and only show standard checked/xmark */
    .pricing-comparison-table td i.text-danger {
        font-size: 10px !important;
    }

    .pricing-comparison-table tfoot .gap-4 {
        gap: 6px 1.5rem !important;
    }
}

.pricing-section .table-responsive {
    padding-bottom: 0 !important;
}

@media (min-width: 1600px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1420px;
    }
}

/* Website Template Tabs Styling */
#websiteTemplate {
    padding: 80px 0;
}

#websiteTemplate .title {
    color: #ffffff;
}

#websiteTemplate p {
    color: rgba(255, 255, 255, 0.75);
}

#nav-pills-tabWebsiteTemplate {
    background-color: #ffffff;
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    box-shadow: 0 10px 30px rgba(0, 39, 116, 0.05);
    border: 1px solid #e2e8f0;
    gap: 4px;
}

#nav-pills-tabWebsiteTemplate .nav-item {
    margin: 0;
}

#nav-pills-tabWebsiteTemplate .nav-link {
    font-weight: 600;
    font-size: 15px;
    color: #64748b !important;
    padding: 10px 28px !important;
    border: none !important;
    background: transparent !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border-radius: 50px !important;
    margin: 0 !important;
}

#nav-pills-tabWebsiteTemplate .nav-link:hover {
    color: var(--primary) !important;
}

#nav-pills-tabWebsiteTemplate .nav-link.active {
    background-color: var(--primary) !important;
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
    transform: translateY(-1px);
}

.badge-new {
    position: absolute;
    background-color: red;
    color: white;
    padding: 5px 25px;
    border-radius: 0 5px 5px 0;
    margin-top: 20px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
    font-weight: bold;
}


.contact-hero-section {
    background: linear-gradient(rgba(240, 249, 255, 0.98), rgba(255, 255, 255, 0.95)), url('./images/contact_hero.png') no-repeat center center;
    background-size: cover;
    position: relative;
    padding: 80px 0;
    border-bottom: 1px solid #e2e8f0;
}

.contact-card-info {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
}

.contact-card-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.1);
    border-color: var(--primary);
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #f1f5f9;
    color: #475569;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 18px;
}

.social-btn:hover {
    background-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.faq-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--navy);
    background-color: white;
    padding: 18px 24px;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    background-image: none;
    content: "\f067";
    font-family: "Font Awesome 7 Pro";
    font-weight: 900;
    font-size: 14px;
    color: var(--primary);
    transform: none;
    transition: transform 0.2s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    padding: 20px 24px;
    color: #64748b;
    line-height: 1.6;
}

.old-price{
    font-size:22px;
    color:rgba(255,255,255,.65);
    text-decoration:line-through;
    margin-bottom:8px;
}
