/* Modern SaaS Theme Styles - MarkaClick Clone (Updated) */
:root {
    --primary-color: #6032ff;
    --secondary-color: #64748b;
    --dark-color: #000000;
    --light-color: #ffffff;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
    background: #ffffff;

}

a {
    color: #000;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    transition: all 0.3s ease;
    margin-bottom: 0 !important;
}

main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.cms-homepage-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.cms-block-hero-full-width:first-child,
.container:first-child>.cms-block-hero,
.container:first-child>.cms-block-zigzag {
    margin-top: 0 !important;
}

.site-header.scrolled {
    border-bottom: 1px solid #e2e8f0;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-logo {
    font-weight: 800;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 25px;
    text-align: left;
}

.header-nav .nav-link {
    color: #000;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0;
}

.header-nav .nav-link:hover {
    color: #000;
}

.header-nav .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.header-nav .dropdown-menu {
    border-radius: 12px;
    padding: 10px;
    min-width: 200px;
    margin-top: 10px !important;
}

.header-nav .dropdown-item {
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
}

.header-nav .dropdown-item:hover {
    background-color: #f3f4f6;
    color: #000;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: auto;
}

.btn-login {
    border: 1.5px solid #c2c2c2;
    color: #000;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-login:hover {
    background: #000;
    color: #fff;
}

.btn-start {
    background: #000;
    color: #fff;
    padding: 8px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: 1.5px solid #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-start:hover {
    background: transparent;
    color: #000;
    border: 1.5px solid #c2c2c2;
}

/* Hero Section */
.hero-wrapper {
    margin-top: 5px;
    padding-bottom: 50px;
}

.hero-slide-content {
    /* Blue gradient from image */
    background: radial-gradient(circle at 75% 50%, #6032ff 0%, #020617 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    color: white;
    height: 700px;
    /* Reduced from 600px */
    display: flex;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding: 80px;
    z-index: 2;
    max-width: 50%;
}

.hero-text h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.hero-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    height: 90%;
    width: auto;
    object-fit: contain;
    /* You might need a placeholder image here initially */
}

/* Features Text Section */
.features-intro {
    text-align: center;
    padding: 40px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.features-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.features-intro p {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 15px;
}

.btn-black {
    background: #000;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: opacity 0.2s;
}

.btn-black:hover {
    opacity: 0.9;
    color: #fff;
}

/* Buttons */
.btn {
    font-weight: 500;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-size: 14px
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #4e22e6;
    border-color: #4e22e6;
    color: #fff;
}

/* Sections */
.theme-section {
    position: relative;
    padding-bottom: var(--spacing-section);
}

.theme-section:first-of-type {
    /* Main Slider Section */
    padding-bottom: 0;
}

.pagestitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.lead {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

/* CMS Page Builder Blocks */
.cms-block-hero-full-width {
    width: 100vw !important;
    position: relative !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    box-sizing: border-box !important;
    overflow: hidden;
}


.cms-block-zigzag .pagestitle {

    letter-spacing: -0.02em;
    line-height: 1.3;
}

.cms-block-zigzag .lead {

    color: #64748b;
    line-height: 1.5;
}

.cms-block-cards {
    padding: 4rem 0;
}

.cms-block-cards .card {
    border-radius: 20px;

    background: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cms-block-cards .card:hover {
    transform: translateY(-8px);

    border-color: var(--primary-color);
}

.cms-block-cards .card-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.cms-block-cards .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

.cms-block-quote {
    font-size: 1.5rem;
    font-style: italic;
    border-left: 5px solid var(--primary-color);
    padding: 1rem 0 1rem 2rem;
    color: #475569;
    margin: 3rem 0;
    font-family: var(--font-heading);
}

.cms-block-paragraph {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #475569;
    margin-bottom: 1.5rem;
}

.cms-block-header {
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f172a;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .cms-block-zigzag {
        padding: 2.5rem 0;
    }

    .cms-block-zigzag .pagestitle {
        font-size: 2rem;
    }

    .cms-block-zigzag .lead {
        font-size: 1rem;
    }

    .cms-block-cards {
        padding: 2.5rem 0;
    }
}

/* Feature Icons */
.icon-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    font-size: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(13, 110, 253, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Swiper Slider Customization */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Pricing Table Override */
.pricing-header h1 {
    font-weight: 800;
    margin-bottom: 1rem;
}

.card {
    border: none;
    border-radius: 12px;
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.card-title {
    font-weight: 700;
}

/* Footer */
footer {
    background: #f9fafb;

    margin-top: 5rem;
    padding-top: 4rem;
    padding-bottom: 2rem;
}

footer h5 {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #111827;
}

footer a {
    color: #4b5563;
    transition: color 0.2s;
}

footer a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   TB MULTI SLIDER SECTION (ThemeBuilder Component)
   ========================================================================== */
.tb-multi-slider-section {
    position: relative;
    overflow: hidden;
    margin-top: var(--tms-margin-top, 0);
    margin-bottom: var(--tms-margin-bottom, 40px);
    padding: var(--tms-padding, 0);
    background-color: var(--tms-bg-color, transparent);
    border: var(--tms-border-width, 0) solid var(--tms-border-color, #e5e7eb);
}

.tb-multi-slider-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
    overflow: visible;
}

.tb-multi-slider-section .swiper,
.tb-multi-swiper {
    overflow: visible;
}

.tb-multi-slider-section .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.tb-multi-slider-section .swiper-slide {
    flex-shrink: 0;
    width: 95%;
    min-width: 600px;
    max-width: 1600px;
    transition: all 0.4s ease;
    opacity: 0.5;
}

.tb-multi-slider-section .swiper-slide-active {
    opacity: 1;
}

.tb-multi-slider-section .swiper-slide-prev,
.tb-multi-slider-section .swiper-slide-next {
    opacity: 0.6;
}

.tb-multi-slide-card {
    position: relative;
    width: 100%;
    height: var(--tms-card-height, 715px);
    overflow: hidden;
    border-radius: var(--tms-card-radius, 10px);
}

.tb-multi-slide-card.align-left .tb-multi-slide-content {
    text-align: left;
}

.tb-multi-slide-card.align-center .tb-multi-slide-content {
    text-align: center;
    left: 50%;
    transform: translate(-50%, -50%);
}

.tb-multi-slide-card.align-right .tb-multi-slide-content {
    text-align: right;
    right: 40px;
    left: auto;
}

.tb-multi-slide-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.tb-multi-slide-overlay {
    display: none !important;
}

.tb-multi-slide-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 45%;
    z-index: 2;
}

.tb-multi-slide-title {
    font-size: 45px;
    font-weight: 700;
    color: var(--tms-title-color, #ffffff);
    margin: 0 0 16px;
    line-height: 1.2;
}

.tb-multi-slide-subtitle {
    font-size: 21px;
    color: var(--tms-subtitle-color, rgba(255, 255, 255, 0.8));
    margin: 0 0 24px;
    line-height: 1.6;
}

.tb-multi-slide-btn {
    display: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid var(--tms-btn-border, rgba(255, 255, 255, 0.8));
    background: var(--tms-btn-bg, transparent);
    color: var(--tms-btn-color, #fff);
}

.tb-multi-slide-btn:hover {
    background: #fff;
    color: #1e3a5f;
}

/* TB Multi Slider Pager */
.tb-multi-slider-pager {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.tb-multi-nav-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
}

.tb-multi-nav-btn:hover {
    border-color: #374151;
    color: #374151;
}

.tb-multi-pager-nums {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.tb-multi-pager-current {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.tb-multi-pager-separator,
.tb-multi-pager-total {
    font-size: 14px;
    color: #9ca3af;
}

/* TB Multi Slider Responsive */
@media (max-width: 1200px) {
    .tb-multi-slider-section .swiper-slide {
        width: 100% !important;
        min-width: unset !important;
    }
}

@media (max-width: 992px) {
    .tb-multi-slider-section .swiper-slide {
        width: 100% !important;
        min-width: unset !important;
    }

    .tb-multi-slide-content {
        max-width: 55%;
    }

    .tb-multi-slide-title {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .tb-multi-slider-container {
        padding: 0 10px;
    }

    .tb-multi-slider-section .swiper-slide {
        width: 100% !important;
        min-width: unset !important;
        max-width: 100% !important;
        opacity: 1 !important;
    }

    .tb-multi-slide-card {
        height: 280px;
        border-radius: 16px;
    }

    .tb-multi-slide-content {
        max-width: 80%;
        left: 20px !important;
    }

    .tb-multi-slide-title {
        font-size: 20px;
    }

    .tb-multi-slide-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .tb-multi-slide-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .tb-multi-slider-pager {
        margin-top: 20px;
    }

    .tb-multi-nav-btn {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .tb-multi-slider-container {
        padding: 0 8px;
    }

    .tb-multi-slide-card {
        height: 240px;
        border-radius: 12px;
    }

    .tb-multi-slide-content {
        max-width: 85%;
        left: 16px !important;
    }

    .tb-multi-slide-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .tb-multi-slide-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .tb-multi-slide-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
}

.tb-multi-pager-current {
    font-size: 16px;
}


/* Complex Footer Styles */
.footer-complex {
    background-color: #fff;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-transform: capitalize
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 5px;
}

.footer-list li a {
    color: #4b5563;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 450;
    transition: color 0.2s ease;
}

.footer-list li a:hover {
    color: #000;
}

.footer-bottom {
    border-color: #f3f4f6 !important;
}

.footer-social a {
    transition: transform 0.2s ease, color 0.2s ease;
    display: inline-block;
}

.footer-social a:hover {
    color: #000 !important;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .footer-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .hero-slide-content {
        height: 400px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text {
        padding: 30px;
    }
}

/* Custom Slider Controls - Precision Centering at Bottom */
.slider-controls-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* Tight gap as requested */
    margin-top: 50px;
}

.slider-prev-btn,
.slider-next-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #fff;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 10px;
}

.slider-prev-btn:hover,
.slider-next-btn:hover {
    border-color: #000;
    color: #000;
}

.slider-fraction {
    font-weight: 700;
    font-size: 14px;
    color: #000;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    /* Space for "1 - 3" */
    text-align: center;
}

/* Pricing Table CSS */
.pricing-section {
    padding: 80px 0;
}

.pricing-table-container {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px;
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:not(:last-child) {
    border-right: none;
}

.pricing-card.featured {
    border: 2px solid #4262ff !important;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(66, 98, 255, 0.08);
    border-radius: 8px;
    margin: -1px;
}

.pricing-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #4262ff;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px 6px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-title {
    font-size: 28px;
    font-weight: 800;
    color: #050038;
    margin-bottom: 12px;
}

.pricing-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 30px;
    min-height: 48px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
    margin-right: 4px;
}

.pricing-amount {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
}

.pricing-cycle {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 35px;
}

.pricing-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 40px;
    display: block;
}

.pricing-btn-outline {
    border: 1px solid #4262ff;
    color: #4262ff;
}

.pricing-btn-outline:hover {
    background: #f0f3ff;
}

.pricing-btn-solid {
    background: #4262ff;
    color: #fff;
    border: none;
}

.pricing-btn-solid:hover {
    background: #3652e0;
}

.pricing-features-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    color: #050038;
}

.pricing-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14.5px;
    color: #4b5563;
    line-height: 1.5;
}

.pricing-features-list li i {
    color: #4262ff;
    font-size: 18px;
    flex-shrink: 0;
}

.pricing-footer {
    margin-top: 40px;
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4b5563;
}

@media (max-width: 992px) {
    .pricing-card {
        border-right: 1px solid #e2e8f0 !important;
        margin-bottom: 20px;
        min-height: auto;
    }
}

/* Comparison Table Styling */
.comparison-container {
    margin-top: 30px;
}

.comp-header-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 0px;
}

@media (min-width: 993px) {
    .comp-header-row {
        position: sticky;
        top: 10px;
        /* Adjust according to site header height */
        z-index: 100;
        transition: all 0.3s ease;
        padding: 10px 0;
    }

    /* Background when sticky (handled via CSS as most sites have it) */
    .comp-header-row.pc-only {

        /*backdrop-filter: blur(10px);*/
        background: #fff;

    }
}

.comp-feature-desc-col {
    flex: 2;
    /* Wider description area */
    padding: 15px 20px;
}

.comp-pkg-card-col {
    flex: 0.8;
    /* Narrower package columns */
    padding: 0px !important;
    /* Zero side/bottom gaps */
}

.comp-pkg-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    /* Tighter internal padding */
    border-radius: 4px;
    /* Slightly sharper edges for seamless look */
    height: 100%;
    position: relative;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    margin: 0 !important;
    /* Zero margin */
}

.comp-pkg-card.featured {
    border: 2px solid #ff3d58;
    box-shadow: 0 10px 30px rgba(93, 95, 239, 0.1);
}

.comp-pkg-card .comp-badge {
    position: absolute;
    top: -12px;
    right: 15px;
    background: linear-gradient(90deg, #ff5e3a 0%, #ff2a68 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 15px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(255, 42, 104, 0.3);
    z-index: 5;
}

.comp-pkg-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #111;
}

.comp-pkg-card .price {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 2px;
    color: #000;
}

.comp-pkg-card .price .period {
    font-size: 14px;
    color: #666;
    font-weight: 400;
}

.comp-pkg-card .monthly-equiv {
    margin-bottom: 8px !important;
}

.comp-pkg-card .vat-info {
    font-size: 10px;
    color: #aaa;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comp-btn-start {
    background: #000;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    margin-top: auto;
    transition: transform 0.2s;
}

.comp-btn-start:hover {
    background: #111;
    color: #fff;
    transform: translateY(-2px);
}

/* Feature Rows */
.comp-feature-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    align-items: center;
    min-height: 80px;
}

.comp-feature-info {
    flex: 2;
    padding: 15px 20px;
}

.comp-feature-info h5 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
}

.comp-feature-info p {
    font-size: 13px;
    color: #999;
    margin: 0;
    line-height: 1.4;
}

.comp-val-col {
    flex: 0.8;
    text-align: center;
    padding: 12px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.comp-val-col i.bi-check-lg {
    color: #7c4dff;
    font-size: 24px;
}

@media (max-width: 992px) {

    .comp-header-row,
    .comp-feature-row {
        flex-direction: column;
        align-items: stretch;
    }

    .comp-feature-info {
        text-align: center;
        background: #fbfbfb;
        padding: 15px;
    }

    .comp-feature-desc-col {
        display: none;
    }

    .comp-pkg-card-col {
        width: 100%;
    }

    .comp-val-col {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 20px;
        border-bottom: 1px solid #f9f9f9;
        text-align: right;
    }

    .comp-val-col .mobile-label {
        font-weight: 700;
        color: #666;
        font-size: 13px;
    }
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    padding: 0;
    color: #4b5563;
    z-index: 1001;
    transition: transform 0.2s ease;
}

.mobile-nav-toggle:hover {
    color: #000;
    transform: scale(1.1);
}

/* Mobile Sidebar (Off-canvas) */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: #fff;
    z-index: 1050;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-sidebar-logo {
    font-weight: 800;
    font-size: 22px;
    color: #000;
    text-decoration: none;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #4b5563;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    display: block;
}

.mobile-nav-list li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.mobile-sidebar.active .mobile-nav-list li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-sidebar.active .mobile-nav-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-sidebar.active .mobile-nav-list li:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-sidebar.active .mobile-nav-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-sidebar.active .mobile-nav-list li:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-sidebar.active .mobile-nav-list li:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-sidebar.active .mobile-nav-list li:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-sidebar-actions {
    margin-top: auto;
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    transition: all 0.5s ease 0.4s;
}

.mobile-sidebar.active .mobile-sidebar-actions {
    opacity: 1;
}

.mobile-sidebar-actions .btn-login {
    text-align: center;
    font-weight: 600;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
}

.mobile-sidebar-actions .btn-start {
    text-align: center;
    background: #000;
    color: #fff;
    font-weight: 600;
    padding: 14px;
    border-radius: 10px;
    text-decoration: none;
}

/* Submenu in Mobile */
.mobile-nav-list .mobile-dropdown-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    padding: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
}

.mobile-submenu {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li a {
    display: block;
    padding: 8px 0;
    font-size: 16px;
    color: #6b7280;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 1199px) {

    .header-nav,
    .header-actions {
        display: none !important;
    }

    .mobile-nav-toggle {
        display: block;
        margin-left: auto;
    }

    .mobile-sidebar {
        left: auto !important;
        right: -100% !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .mobile-sidebar.active {
        right: 0 !important;
    }
}

/* WhatsApp Floating Button & Popup */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none !important;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.whatsapp-popup {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 300px;
    margin-bottom: 20px;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-popup.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.whatsapp-popup-header {
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-popup-header i {
    font-size: 24px;
}

.whatsapp-popup-header .name {
    font-weight: 600;
    font-size: 15px;
}

.whatsapp-popup-header .status {
    font-size: 11px;
    opacity: 0.9;
}

.whatsapp-popup-body {
    padding: 20px;
    background: #f0f2f5;
}

.whatsapp-msg-bubble {
    background: #fff;
    padding: 10px 15px;
    border-radius: 0 15px 15px 15px;
    font-size: 14px;
    color: #333;
    max-width: 90%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.whatsapp-popup-footer {
    padding: 15px 20px;
    background: #fff;
}

.whatsapp-send-btn {
    display: block;
    background: #25d366;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.whatsapp-send-btn:hover {
    opacity: 0.9;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

/* Core Swiper CSS */
@font-face {
    font-family: swiper-icons;
    src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
    font-weight: 400;
    font-style: normal
}

:root {
    --swiper-theme-color: #007aff
}

:host {
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    z-index: 1
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translate3d(0px, 0, 0)
}

.swiper-horizontal {
    touch-action: pan-y
}

.swiper-vertical {
    touch-action: pan-x
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}

.swiper-slide-invisible-blank {
    visibility: hidden
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}

.swiper-3d {
    perspective: 1200px
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
    transform-style: preserve-3d
}

.swiper-css-mode>.swiper-wrapper {
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none
}

.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar {
    display: none
}

.swiper-css-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: start start
}

.swiper-css-mode.swiper-horizontal>.swiper-wrapper {
    scroll-snap-type: x mandatory
}

.swiper-css-mode.swiper-vertical>.swiper-wrapper {
    scroll-snap-type: y mandatory
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper {
    scroll-snap-type: none
}

.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: none
}

.swiper-css-mode.swiper-centered>.swiper-wrapper::before {
    content: '';
    flex-shrink: 0;
    order: 9999
}

.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide {
    scroll-snap-align: center center;
    scroll-snap-stop: always
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child {
    margin-inline-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before {
    height: 100%;
    min-height: 1px;
    width: var(--swiper-centered-offset-after)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child {
    margin-block-start: var(--swiper-centered-offset-before)
}

.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before {
    width: 100%;
    min-width: 1px;
    height: var(--swiper-centered-offset-after)
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10
}

.swiper-3d .swiper-slide-shadow {
    background: rgba(0, 0, 0, .15)
}

.swiper-3d .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-3d .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0))
}

.swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    transform-origin: 50%;
    box-sizing: border-box;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top-color: transparent
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0)
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
    height: 1px;
    width: var(--swiper-virtual-size)
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
    width: 1px;
    height: var(--swiper-virtual-size)
}

:root {
    --swiper-navigation-size: 44px
}

.swiper-button-next,
.swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color))
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    opacity: .35;
    cursor: auto;
    pointer-events: none
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
    display: none !important
}

.swiper-button-next svg,
.swiper-button-prev svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
    transform: rotate(180deg)
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-lock {
    display: none
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    content: 'prev'
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'next'
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10
}

.swiper-pagination.swiper-pagination-hidden {
    opacity: 0
}

.swiper-pagination-disabled>.swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%
}

.swiper-pagination-bullets-dynamic {
    overflow: hidden;
    font-size: 0
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transform: scale(.33);
    position: relative
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
    transform: scale(1)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(.33)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(.66)
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(.33)
}

.swiper-pagination-bullet {
    width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
    height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
    display: inline-block;
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .2)
}

button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer
}

.swiper-pagination-bullet:only-child {
    display: none !important
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1);
    background: var(--swiper-pagination-color, var(--swiper-theme-color))
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    right: var(--swiper-pagination-right, 8px);
    left: var(--swiper-pagination-left, auto);
    top: 50%;
    transform: translate3d(0px, -50%, 0)
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    display: inline-block;
    transition: .2s transform, .2s top
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px)
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap
}

.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s left
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: .2s transform, .2s right
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit)
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, .25));
    position: absolute
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    transform-origin: right top
}

.swiper-horizontal>.swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0
}

.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical>.swiper-pagination-progressbar {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0
}

.swiper-pagination-lock {
    display: none
}

.swiper-scrollbar {
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, .1))
}

.swiper-scrollbar-disabled>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
    display: none !important
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical>.swiper-scrollbar {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%))
}

.swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, .5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    left: 0;
    top: 0
}

.swiper-scrollbar-cursor-drag {
    cursor: move
}

.swiper-scrollbar-lock {
    display: none
}

.swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center
}

.swiper-zoom-container>canvas,
.swiper-zoom-container>img,
.swiper-zoom-container>svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none
}

.swiper .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000
}

.swiper-free-mode>.swiper-wrapper {
    transition-timing-function: ease-out;
    margin: 0 auto
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap
}

.swiper-grid-column>.swiper-wrapper {
    flex-wrap: wrap;
    flex-direction: column
}

.swiper-fade.swiper-free-mode .swiper-slide {
    transition-timing-function: ease-out
}

.swiper-fade .swiper-slide {
    pointer-events: none;
    transition-property: opacity
}

.swiper-fade .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-fade .swiper-slide-active {
    pointer-events: auto
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper.swiper-cube {
    overflow: visible
}

.swiper-cube .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%
}

.swiper-cube .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-cube.swiper-rtl .swiper-slide {
    transform-origin: 100% 0
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 100%;
    opacity: .6;
    z-index: 0
}

.swiper-cube .swiper-cube-shadow:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    filter: blur(50px)
}

.swiper-cube .swiper-slide-next+.swiper-slide {
    pointer-events: auto;
    visibility: visible
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1
}

.swiper-flip .swiper-slide .swiper-slide {
    pointer-events: none
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.swiper-creative .swiper-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden;
    transition-property: transform, opacity, height
}

.swiper.swiper-cards {
    overflow: visible
}

.swiper-cards .swiper-slide {
    transform-origin: center bottom;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: hidden
}

/* Utilities */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Header Top */
.header-top {
    font-size: 0.85rem;
}

.header-embedded-slider {
    margin-top: -80px;
    /* Example adjustment if needed */
}

/* Footer Styles */
.site-footer {
    background: #fff;
    padding: 80px 0 40px;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 80px;
}

.footer-brand-side {
    max-width: 320px;
}

.footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 24px;
    display: block;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #000;
    margin-bottom: 24px;
    display: block;
    text-decoration: none;
}

.footer-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
    font-weight: 400;
}

.footer-social-links {
    display: flex;
    gap: 20px;
}

.footer-social-links a {
    color: #1a1a1a;
    font-size: 20px;
    transition: opacity 0.2s;
}

.footer-social-links a:hover {
    opacity: 0.6;
}

.footer-col-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #000;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 6px;
}

.footer-nav-list a {
    color: #666;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
    font-weight: 400;
}

.footer-nav-list a:hover {
    color: #000;
}

.footer-bottom-bar {
    padding-top: 40px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #000;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Mega Menu Styles */
.mega-menu-wrapper {
    position: static;
    display: inline-block;
    width: fit-content;
}

.mega-menu-toggle {
    display: flex !important;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.mega-menu-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #f4f8fa;
    border-top: 1px solid #f1f5f9;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    display: none !important;
    z-index: 1000;
    padding: 15px 0 35px 0px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mega-menu-wrapper.active .mega-menu-dropdown {
    display: block !important;
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

@keyframes megaFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 260px 1fr 300px;
    gap: 30px;
    align-items: start;
}

/* Left Column */
.mega-menu-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 6px;
    color: #475569;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s;
    background: transparent;
}

.mega-menu-link:hover {
    background: #f8fafc;
    color: #2563eb;
    transform: translateX(5px);
}


.mega-menu-link i.bi-chevron-right {
    font-size: 12px;
    opacity: 0.5;
}

/* Middle Column */
.mega-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 20px;
}

.mega-detail-item {
    display: flex;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s;
}

.mega-detail-item:hover {
    background: #fff;
}


/* Middle Column Panes */
.mega-pane-item {
    display: none !important;
}

.mega-pane-default {
    display: grid;
}

/* Interaction: Show pane on link hover */
.mega-menu-link.active-pane {
    background: #fff;
    color: #2563eb;
    transform: translateX(5px);
}


.mega-detail-grid {
    animation: megaPaneFade 0.3s ease;
}

@keyframes megaPaneFade {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.detail-text .detail-title {
    font-weight: 600;
    font-size: 15px;
    color: #1e293b;
    margin-bottom: 2px;
}

.detail-text .detail-desc {
    font-size: 12px;
    color: #64748b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 2.8em;
}

/* Right Column */
.mega-banner-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.mega-banner-img {
    height: 160px;
    overflow: hidden;
}

.mega-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.mega-banner-card:hover .mega-banner-img img {
    transform: scale(1.05);
}

.mega-banner-body {
    padding: 20px;
}

.mega-banner-body h6 {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
    color: #0f172a;
}

.mega-banner-body p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.5;
}

.banner-cta {
    font-weight: 600;
    font-size: 14px;
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.banner-cta:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .mega-menu-dropdown {
        display: none !important;
    }
}

/* ==========================================================================
   MARKACLICK PREMIUM COMPONENTS (Gallery & Order Flow)
   ========================================================================== */

/* 1. Premium Product Gallery (Component 10) */
.zigzag-container-v2 {
    position: relative;
    width: 100%;
    height: 500px;
    background: #fff;
    overflow: hidden;
}

.zigzag-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, #fff, transparent);
    z-index: 2;
    pointer-events: none;
}

.zigzag-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #fff, transparent);
    z-index: 2;
    pointer-events: none;
}

.zigzag-v2-skewed {
    position: relative;
    height: 100%;
    display: flex;
    transform: skewY(0deg);
    margin-top: -50px;
    gap: 10px !important;
}

.zigzag-column {
    flex: 1;
    padding: 0 5px;
}

.zigzag-column-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    will-change: transform;
}

.zigzag-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid #f1f5f9;
    padding: 5px;
    transition: transform 0.3s ease;
}

.zigzag-card img {
    width: 100%;
    height: auto;
    display: block;
    filter: saturate(1.2);
    border-radius: 8px;
}

.zigzag-col-1 {
    animation: zigzagScroll 40s linear infinite;
}

.zigzag-col-2 {
    animation: zigzagScroll 35s linear infinite reverse;
}

.zigzag-col-3 {
    animation: zigzagScroll 45s linear infinite;
}

@keyframes zigzagScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* 2. Premium Order Flow (Component 11) */
.order-flow-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2000px;
    overflow: visible;
    margin: 0 auto;
}

.order-product-list {
    position: relative;
    width: 330px;
    background: #fafafa;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: orderListSlideUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    border: 1px solid #e7e7e7;
}

@keyframes orderListSlideUp {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.order-product-list h4 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    margin-top: 0;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #e5e7eb;
    opacity: 0;
    animation: itemPopIn 0.5s ease forwards;
}

@keyframes itemPopIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.order-item:nth-child(2) {
    animation-delay: 0.8s;
}

.order-item:nth-child(3) {
    animation-delay: 1.1s;
}

.order-item:nth-child(4) {
    animation-delay: 1.4s;
}

.order-item-img {
    width: 65px;
    height: 65px;
    background: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.order-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.order-item-info {
    flex: 1;
    text-align: left;
}

.order-item-info h5 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 600;
    color: #576881;
    line-height: 1.2;
}

.order-item-info span {
    font-size: 1rem;
    font-weight: 600;
    color: #000;
}

.order-total {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px dashed #cfd5dc;
    margin-top: 10px;
}

.order-total span:first-child {
    color: #576881;
    font-weight: 700;
    font-size: 1.1rem;
}

.order-total span:last-child {
    font-weight: 600;
    font-size: 1.4rem;
    color: #000;
}

.order-credit-card {
    position: absolute;
    top: 120px;
    right: -20px;
    width: 330px;
    height: 200px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    padding: 30px;
    z-index: 5;
    opacity: 0;
    animation: cardAppear 1s cubic-bezier(0.165, 0.84, 0.44, 1) 2s forwards;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #f8fafc;
}

@keyframes cardAppear {
    0% {
        transform: translateX(-40px) scale(0.9);
        opacity: 0;
    }

    100% {
        transform: translateX(0) scale(1);
        opacity: 1;
    }
}

.order-card-lock {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 50px;
    height: 55px;
    background: #2d2d44;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 6;
}

.order-credit-card .chip {
    width: 45px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.order-credit-card .number {
    font-size: 1.3rem;
    color: #1e293b;
    letter-spacing: 2px;
    font-weight: 600;
    text-align: right;
    padding-right: 20px;
}

.order-notification {
    position: absolute;
    top: 50px;
    left: -10px;
    width: 350px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    padding: 15px 22px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    opacity: 0;
    animation: notifSlideDown 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 4s forwards;
}

@keyframes notifSlideDown {
    0% {
        transform: translateY(-30px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.notif-icon {
    width: 55px;
    height: 55px;
    background: #000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 800;
}

.notif-text {
    text-align: left;
}

.notif-text h6 {
    font-size: 1rem;
    margin: 0;
    font-weight: 700;
    color: #000;
}

.notif-text p {
    font-size: 0.85rem;
    margin: 0;
    color: #64748b;
}