/* ==========================================================================
   marketing.css
   Home/marketing sections (hero, cards, lists, tenant links).
   Edit here for home page visual design and layout.
   ========================================================================== */

.marketing-container {
    width: 100%;
    padding: 0.75rem 1.5rem 1rem;
    box-sizing: border-box;
}

.section {
    max-width: var(--platform-content-width);
    margin: 0 auto 2.7rem auto;
    padding: 2.6rem 1.5rem 2.6rem 1.5rem;
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 10px 48px 0 rgba(0,112,185,0.08), 0 1.5px 3px 0 rgba(0,0,0,0.03);
    position: relative;
    box-sizing: border-box;
}

    .section.alt {
        background: linear-gradient(115deg, #f7fafb 70%, #e5f4e9 100%);
        box-shadow: 0 10px 48px 0 rgba(86,192,69,0.06), 0 1.5px 3px 0 rgba(0,0,0,0.03);
    }

    .section h2 {
        font-size: 2rem;
        margin-bottom: 1.4rem;
        color: var(--primary-blue);
        font-weight: 500;
        letter-spacing: -0.7px;
    }

    /* Heading font overrides only */
    .section h2,
    #hero h1,
    .hero-highlight,
    .package-card h3 {
        font-family: var(--font-heading);
    }

/* === HERO CARD SECTION === */
#hero, .hero-card {
    position: relative;
    background: linear-gradient(111deg, #f3f8fc 0%, #f8fcf3 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 0 4rem 0;
    border-radius: 32px;
    margin: 1.5rem auto 2rem auto;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 40px 0 rgba(0,112,185,0.10), 0 2px 8px 0 rgba(0,0,0,0.04);
    overflow: hidden;
    z-index: 1;
    max-width: var(--platform-content-width);
    width: 100%;
}

    #hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url('/images/index-hero2.jpg') center center/cover no-repeat;
        opacity: 0.32;
        border-radius: 32px;
        z-index: 0;
        transition: opacity 0.4s;
    }

    #hero .marketing-container {
        position: relative;
        z-index: 1;
        background: none;
        box-shadow: none;
        padding-left: 2rem;
        padding-right: 2rem;
    }

    #hero h1 {
        font-size: 2.5rem;
        font-weight: 500;
        margin-bottom: 1.1rem;
        letter-spacing: -1px;
        color: var(--primary-blue);
        text-align: center;
        text-shadow: 0 0 12px rgba(255,255,255,0.95), 0 0 28px rgba(255,255,255,0.6), 0 2px 4px rgba(0,0,0,0.08);
    }

.hero-highlight {
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: -0.4px;
    text-shadow: 0 0 14px rgba(255,255,255,0.95), 0 0 32px rgba(255,255,255,0.65), 0 2px 4px rgba(0,0,0,0.08);
}

#hero .subtitle {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--primary-green);
    font-weight: 500;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 0 0 8px rgba(255,255,255,1), 0 0 20px rgba(255,255,255,0.85), 0 0 40px rgba(255,255,255,0.45), 0 2px 4px rgba(0,0,0,0.10);
}

#hero .cta-button {
    margin-top: 1rem;
    box-shadow: 0 4px 16px 0 rgba(0,112,185,0.09);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    65% {
        opacity: 1;
        transform: translateY(-6px);
    }

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

#hero h1,
#hero .subtitle,
#hero .cta-button {
    opacity: 0;
    animation: fadeUp 1.05s cubic-bezier(.18,.65,.41,1.02) forwards;
}

#hero h1 {
    animation-delay: 0.15s;
}

#hero .subtitle {
    animation-delay: 0.35s;
}

#hero .cta-button {
    animation-delay: 0.60s;
}

/* CTA Button */
.cta-button {
    background: var(--primary-blue);
    color: #fff;
    padding: 1em 2.6em;
    font-size: 1.09rem;
    border: none;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1px;
    box-shadow: 0 4px 28px 0 rgba(0,112,185,0.11);
    transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.16s;
    display: inline-block;
    margin-top: 18px;
    cursor: pointer;
}

    .cta-button:hover,
    .cta-button:focus {
        background: var(--primary-green);
        color: #fff;
        transform: scale(1.03);
        box-shadow: 0 6px 36px 0 rgba(86, 192, 69, 0.13);
    }

/* === PACKAGE CARDS === */
.package-card {
    background: #f7fafb;
    margin: 1.5rem 0;
    padding: 2.2rem 2rem 1.8rem 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 24px 0 rgba(0,112,185,0.07), 0 0.7px 2.5px 0 rgba(0,0,0,0.03);
    text-align: left;
    border-left: 7px solid var(--primary-blue);
    transition: box-shadow 0.13s, border-color 0.18s;
}

    .package-card h3 {
        color: var(--primary-blue);
        font-weight: 500;
        font-size: 1.13rem;
        letter-spacing: -0.2px;
        margin-bottom: 0.5rem;
    }

    .package-card .package-price {
        font-size: 1.05rem;
        color: var(--primary-green);
        font-weight: 600;
        margin-bottom: 0.7rem;
    }

    .package-card:hover {
        box-shadow: 0 7px 32px 0 rgba(0,112,185,0.15);
        border-color: var(--primary-green);
    }

/* Premium Add-Ons Button */
#premium-add-ons a {
    background: var(--primary-blue);
    color: white;
    padding: 1em 2.4em;
    font-size: 1.04rem;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 4px 20px 0 rgba(0, 112, 185, 0.08);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    display: inline-block;
    margin-top: 20px;
    cursor: pointer;
}

    #premium-add-ons a:hover {
        background: var(--primary-green);
        color: white;
        box-shadow: 0 4px 24px 0 rgba(86, 192, 69, 0.15);
    }

/* Remove default bullets, keep only our accent dots */
#why-choose-us ul,
#how-it-works ol {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

    #why-choose-us ul li {
        font-size: 1.09rem;
        margin-bottom: 1.05rem;
        padding-left: 2.3rem;
        position: relative;
    }

        #why-choose-us ul li:before {
            content: '';
            position: absolute;
            left: 0.4rem;
            top: 0.43em;
            width: 1.35em;
            height: 1.35em;
            background: url('/Images/Icons/blue-check.png') center center/contain no-repeat;
            display: inline-block;
            opacity: 0.96;
            border-radius: 0.2em;
            box-shadow: 0 1.5px 7px rgba(0,112,185,0.07);
        }

#how-it-works ol {
    counter-reset: li;
}

    #how-it-works ol li {
        padding-left: 2.1rem;
        position: relative;
        font-size: 1.09rem;
        margin-bottom: 1.05rem;
    }

        #how-it-works ol li:before {
            content: counter(li, decimal-leading-zero) " ";
            counter-increment: li;
            position: absolute;
            left: 0;
            top: 0.3em;
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 1.02em;
        }

/* Premium colored, refined emphasized text */
.section strong {
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.1px;
    transition: color 0.15s;
}

/* Testimonial style */
#testimonials blockquote {
    font-size: 1.10rem;
    color: #2b4a33;
    background: linear-gradient(88deg, #e8f6ec 80%, #f7fafb 100%);
    border-left: 4px solid var(--primary-green);
    margin: 1.1rem 0;
    padding: 1.2rem 1.7rem;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 2px 12px 0 rgba(86,192,69,0.06);
}

/* Links for Development and Production Tenants */
.dev-links h2,
.prod-links h2 {
    color: var(--primary-blue);
}

.dev-links,
.prod-links {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

    .dev-links h2 {
        color: var(--primary-blue);
    }

    .prod-links h2 {
        color: var(--primary-green);
    }

.tenant-links {
    opacity: 0.9;
    font-size: 0.9em;
    position: relative;
    width: 100%;
    margin-top: 6rem;
    pointer-events: none;
    user-select: none;
    text-align: center;
}

    .tenant-links h2 {
        font-size: 1.1em;
        margin-bottom: 0.5em;
        color: #bbb;
    }

    .tenant-links ul {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .tenant-links li {
        display: inline-block;
        margin: 0 0.7em;
    }

    .tenant-links a {
        color: #bbb;
        text-decoration: underline;
        pointer-events: all;
    }

/* ---------- Status / Error / Site Unavailable ---------- */

.status-page-title {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: -0.7px;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.status-page-detail {
    color: var(--light-text);
    font-size: 0.93rem;
    margin-top: 0.5rem;
}

.status-page-detail code {
    background: #f0f4f8;
    padding: 0.15em 0.45em;
    border-radius: 4px;
    font-size: 0.92em;
}

.status-page-actions {
    margin-top: 1rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.status-page-help {
    margin-top: 1rem;
    font-size: 0.93rem;
    color: var(--light-text);
}

.status-page-help summary {
    cursor: pointer;
    font-weight: 500;
    color: var(--blue-600);
}

.status-page-help div {
    margin-top: 0.4rem;
}

.cta-button-secondary {
    background: transparent;
    color: var(--primary-blue);
    padding: 1em 2.6em;
    font-size: 1.09rem;
    border: 1.5px solid var(--primary-blue);
    border-radius: 32px;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.1px;
    transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.16s;
    display: inline-block;
    cursor: pointer;
}

    .cta-button-secondary:hover,
    .cta-button-secondary:focus {
        background: var(--primary-blue);
        color: #fff;
        transform: scale(1.03);
        box-shadow: 0 4px 28px 0 rgba(0,112,185,0.11);
    }

/* ---------- Contact Us ---------- */

.contact-page-title {
    font-size: 2rem;
    color: var(--primary-blue);
    font-weight: 500;
    letter-spacing: -0.7px;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.contact-page-subtitle {
    color: var(--light-text);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-page-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: var(--blue-600);
    font-size: 0.97rem;
}

.contact-page-required {
    color: var(--red-600);
}

.contact-page-field input,
.contact-page-field textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1.5px solid var(--light-border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.contact-page-field input:focus,
.contact-page-field textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2.5px rgba(0,112,185,0.10);
    outline: none;
}

.contact-page-field textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-page-success {
    background: linear-gradient(88deg, #e8f6ec 80%, #f7fafb 100%);
    border-left: 4px solid var(--primary-green);
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    color: #2b4a33;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.contact-page-error {
    background: #fef2f2;
    border-left: 4px solid var(--red-600);
    padding: 1rem 1.3rem;
    border-radius: 0 12px 12px 0;
    color: #991b1b;
    font-size: 0.97rem;
    margin-top: 1rem;
}

@media (max-width: 800px) {
    .section,
    .section.alt {
        padding: 1.5rem 0.8rem 1.8rem 0.8rem;
        max-width: 100vw;
    }

    #hero,
    .hero-card {
        padding: 2.2rem 0 2.2rem 0;
        min-height: 210px;
    }

        #hero h1 {
            font-size: 1.35rem;
        }

    .package-card {
        padding: 1.2rem 0.8rem 1rem 0.8rem;
    }

    .contact-page-field input,
    .contact-page-field textarea {
        font-size: 0.97rem;
        padding: 0.55rem 0.7rem;
    }
}
