@import url("header.css");
@import url("footer.css");
@import url("homepage.css");
@import url("about.css");
@import url("services.css");
@import url("how-it-works.css");
@import url("faq.css");
@import url("pricing.css");
@import url("portfolio.css");
@import url("blog.css");
@import url("contact.css");
@import url("responsive.css");
@import url("virtual-assistance.css");
@import url("website-management.css");
@import url("video-services.css");
@import url("graphic-design.css");
/* ==========================================================
   MARIO FRAMEWORK v1.0
   Joomla Child Template Framework

   Project: Janzco Virtual Services Solutions
========================================================== */


/* ==========================================================
   GLOBAL VARIABLES
========================================================== */

:root {
    --jz-navy: #071a33;
    --jz-blue: #0d2f55;
    --jz-accent: #36d6a5;
    --jz-accent-dark: #1eaa80;
    --jz-white: #ffffff;
    --jz-dark: #182230;
    --jz-gray: #64748b;
}

/* ==========================================================
   GLOBAL BUTTON FRAMEWORK
========================================================== */

.jz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;
    padding: 14px 30px;

    border: 2px solid transparent;
    border-radius: 8px;

    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;

    text-align: center;
    text-decoration: none !important;

    cursor: pointer;

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


/* ==========================================================
   PRIMARY / LIME BUTTON
========================================================== */

.jz-btn-primary,
.jz-btn-lime {
    background: #C8F230;
    border-color: #C8F230;

    color: #081F3D !important;
}

.jz-btn-primary:hover,
.jz-btn-lime:hover {
    background: #A8DE1E;
    border-color: #A8DE1E;

    color: #081F3D !important;

    transform: translateY(-3px);
}


/* ==========================================================
   LIGHT OUTLINE BUTTON
   For dark backgrounds / hero / CTA sections
========================================================== */

.jz-btn-outline,
.jz-btn-outline-light,
.jz-btn-outline-dark {
    background: transparent;

    border: 2px solid rgba(255,255,255,.85);

    color: #ffffff !important;
}

.jz-btn-outline:hover,
.jz-btn-outline-light:hover,
.jz-btn-outline-dark:hover {
    background: #ffffff;

    border-color: #ffffff;

    color: #081F3D !important;

    transform: translateY(-3px);
}


/* ==========================================================
   BUTTON GROUP
========================================================== */

.jz-hero-buttons,
.jz-cta-buttons,
.jz-pricing-buttons,
.jz-contact-buttons,
.jz-portfolio-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 18px;
}


/* ==========================================================
   MOBILE BUTTONS
========================================================== */

@media (max-width: 575px) {

    .jz-hero-buttons,
    .jz-cta-buttons,
    .jz-pricing-buttons,
    .jz-contact-buttons,
    .jz-portfolio-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .jz-hero-buttons .jz-btn,
    .jz-cta-buttons .jz-btn,
    .jz-pricing-buttons .jz-btn,
    .jz-contact-buttons .jz-btn,
    .jz-portfolio-buttons .jz-btn {
        width: 100%;
    }

}

/* =====================================================
   JANZCO LEGAL PAGES
   Privacy Policy + Terms of Service
   ===================================================== */

.jz-legal-page {
    background: #f6f9fc;
    color: #182230;
}


/* =====================================================
   HERO
   ===================================================== */

.jz-legal-hero {
    position: relative;
    overflow: hidden;
    padding: 115px 30px 125px;
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(54, 214, 165, 0.14),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #071a33 0%,
            #0d2f55 100%
        );
}

.jz-legal-hero::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 50%;
    top: -160px;
    right: -80px;
}

.jz-legal-hero::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(54,214,165,.15);
    border-radius: 50%;
    bottom: -120px;
    left: 8%;
}

.jz-legal-hero-inner {
    position: relative;
    z-index: 2;
    width: min(900px, 100%);
    margin: 0 auto;
    text-align: center;
}

.jz-legal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #36d6a5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.jz-legal-eyebrow::before,
.jz-legal-eyebrow::after {
    content: "";
    width: 30px;
    height: 1px;
    background: #36d6a5;
}

.jz-legal-hero h1 {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.jz-legal-hero p {
    max-width: 730px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    font-size: 18px;
    line-height: 1.75;
}


/* =====================================================
   CONTENT WRAPPER
   ===================================================== */

.jz-legal-content-section {
    padding: 0 30px 100px;
}

.jz-legal-container {
    width: min(1000px, 100%);
    margin: 0 auto;
}


/* =====================================================
   MAIN LEGAL CARD
   ===================================================== */

.jz-legal-card {
    position: relative;
    z-index: 5;
    margin-top: -55px;
    padding: 65px 75px;
    background: #ffffff;
    border: 1px solid #e2eaf1;
    border-radius: 24px;
    box-shadow:
        0 20px 60px rgba(7, 26, 51, 0.08);
}


/* =====================================================
   UPDATED DATE
   ===================================================== */

.jz-legal-meta {
    display: inline-block;
    margin-bottom: 30px;
    padding: 8px 14px;
    background: rgba(54,214,165,.10);
    border: 1px solid rgba(54,214,165,.22);
    border-radius: 50px;
    color: #1e8c6c;
    font-size: 13px;
    font-weight: 700;
}


/* =====================================================
   INTRO
   ===================================================== */

.jz-legal-intro {
    color: #334155;
    font-size: 18px !important;
    line-height: 1.8 !important;
}


/* =====================================================
   SECTIONS
   ===================================================== */

.jz-legal-section {
    padding-top: 38px;
    margin-top: 38px;
    border-top: 1px solid #e8edf3;
}

.jz-legal-section h2 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 18px;
    color: #071a33;
    font-size: 25px;
    line-height: 1.3;
    font-weight: 800;
}

.jz-legal-section h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 4px;
    height: calc(100% - 8px);
    min-height: 24px;
    background: #36d6a5;
    border-radius: 20px;
}

.jz-legal-card p {
    margin: 0 0 18px;
    color: #526173;
    font-size: 16px;
    line-height: 1.85;
}

.jz-legal-card strong {
    color: #071a33;
}


/* =====================================================
   LISTS
   ===================================================== */

.jz-legal-card ul {
    margin: 20px 0 25px;
    padding: 0;
    list-style: none;
}

.jz-legal-card li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
    color: #526173;
    font-size: 16px;
    line-height: 1.7;
}

.jz-legal-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #1eaa80;
    font-weight: 900;
}


/* =====================================================
   LINKS
   ===================================================== */

.jz-legal-card a {
    color: #1eaa80;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.jz-legal-card a:hover {
    color: #0d2f55;
    text-decoration: underline;
}


/* =====================================================
   IMPORTANT NOTE / HIGHLIGHT
   ===================================================== */

.jz-legal-highlight {
    margin: 26px 0;
    padding: 20px 24px;
    background: #f1fcf8;
    border-left: 4px solid #36d6a5;
    border-radius: 0 12px 12px 0;
    color: #173c34;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 650;
}


/* =====================================================
   CONTACT SECTION
   ===================================================== */

.jz-legal-contact {
    margin-top: 45px;
    padding: 32px;
    background: #f7fafc;
    border: 1px solid #e2eaf1;
    border-radius: 18px;
}

.jz-legal-contact h2 {
    margin-top: 0;
}


/* =====================================================
   TABLET
   ===================================================== */

@media (max-width: 900px) {

    .jz-legal-hero {
        padding: 95px 25px 105px;
    }

    .jz-legal-card {
        padding: 55px 45px;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 600px) {

    .jz-legal-hero {
        padding: 75px 20px 90px;
    }

    .jz-legal-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .jz-legal-hero p {
        font-size: 16px;
        line-height: 1.65;
    }

    .jz-legal-eyebrow {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .jz-legal-content-section {
        padding: 0 16px 70px;
    }

    .jz-legal-card {
        margin-top: -38px;
        padding: 38px 24px;
        border-radius: 18px;
    }

    .jz-legal-intro {
        font-size: 17px !important;
    }

    .jz-legal-section {
        padding-top: 30px;
        margin-top: 30px;
    }

    .jz-legal-section h2 {
        font-size: 21px;
    }

    .jz-legal-card p,
    .jz-legal-card li {
        font-size: 15px;
    }

    .jz-legal-contact {
        padding: 24px 20px;
    }

}