﻿/* ================================
   GENTEXT MIDDLE SECTION (STRIPE STYLE)
   ================================ */

h3 {
    margin: 0 0 6px 0 !important;
    padding: 0 !important;
}

.gtx-middle {
    background: #FFFFFF;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px 20px;
}

/* Section spacing */
.gtx-block {
    margin-bottom: 40px;
}

/* Main headers (Stripe gray) */
.gtx-h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -0.4px;
    color: darkgray;
    text-transform: lowercase;
    margin-bottom: 20px;
    text-align: left;
}


.gtx-h2-blue {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -0.4px;
    color: dodgerblue;
    text-transform: lowercase;
    margin-bottom: 20px;
    text-align: left;
}
.gtx-h2-black {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 42px;
    letter-spacing: -0.4px;
    color: black;
    text-transform: lowercase;
    margin-bottom: 20px;
    text-align: left;
}


.gtx-h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -0.4px;
    color: forestgreen;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.gtx-h3-proper {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 32px;
    letter-spacing: -0.4px;
    color: forestgreen;
    margin-bottom: 10px;
}

.gtx-h3-proper-alt {
    font-family: 'Inter', sans-serif !important;
    font-weight: 900 !important;
    font-size: 32px !important;
    letter-spacing: -0.4px !important;
    color: lightgreen !important; /* or whatever color you want */
    text-transform: none !important;
}

.gtx-bubble.gtx-block-out h3 {
    color: black !important;
}

.gtx-h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 26px;
    letter-spacing: -0.4px;
    color: dodgerblue;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.phone {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: -0.4px;
    color: dodgerblue;
    text-transform: lowercase;
    margin-bottom: 20px;
    text-align: left;
}

/* Subheader */
.gtx-sub {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #5A5F6D;
    margin-bottom: 25px;
}

/* Body text */
.gtx-body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.55;
    color: #1A1A1A;
    margin-bottom: 10px;
}

/* Bold emphasis */
.gtx-strong {
    font-weight: 700;
    color: #3A3F4B;
}

/* Feature blocks */
.gtx-feature {
    margin-bottom: 40px;
}

    .gtx-feature h3 {
        font-family: 'Outfit', sans-serif;
        font-size: 26px;
        font-weight: 700;
        color: #3A3F4B;
        margin-bottom: 10px;
    }

    .gtx-feature p {
        font-family: 'Inter', sans-serif;
        font-size: 18px;
        line-height: 1.55;
        color: #1A1A1A;
    }

/* Quote block */
.gtx-quote {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 26px;
    color: #3A3F4B;
    border-left: 4px solid #3A3F4B;
    padding-left: 18px;
    margin-top: 40px;
    line-height: 1.4;
}

.footer-contact {
    padding: 40px 0;
    font-family: "Inter", "Helvetica Neue", sans-serif;
    color: #1a3d7c;
}

    .footer-contact h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        color: #1a3d7c;
        font-weight: 600;
    }

    .footer-contact a {
        color: #1a3d7c;
        text-decoration: none;
        font-weight: 500;
    }

    .footer-contact .phone {
        color: #1a3d7c;
        opacity: 0.85;
    }

.contact-line {
    margin-bottom: 0px;
}

/* CHAT CONTAINER */
.gtx-chat {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 0 20px;
   }

/* BASE BUBBLE */
.gtx-bubble {
    padding: 22px 26px;
    border-radius: 20px;
    max-width: 75%;
    position: relative;
    box-shadow: 0 2px 5px gray;
    background: transparent;
}

    /* LEFT (INCOMING) — bottom tail */
    .gtx-bubble.gtx-block-in {
        align-self: flex-start;
        background: lightgray;
        color: black;
        border-radius: 20px;
        /* PHONE LEFT ALIGNMENT */
        margin-left: 0;
        margin-right: auto;
    }

        .gtx-bubble.gtx-block-in::after {
            content: "";
            position: absolute;
            bottom: -12px;
            left: 40px;
            width: 22px;
            height: 22px;
            background: lightgray;
            transform: rotate(45deg);
            border-bottom-left-radius: 6px;
        }

    /* RIGHT (OUTGOING) — bottom tail */
    .gtx-bubble.gtx-block-out {
        align-self: flex-end;
        background: dodgerblue;
        color: white;
        border-radius: 20px;
        /* PHONE RIGHT ALIGNMENT */
        margin-right: 0;
        margin-left: auto;
    }

        .gtx-bubble.gtx-block-out::after {
            content: "";
            position: absolute;
            bottom: -12px;
            right: 40px;
            width: 22px;
            height: 22px;
            background: dodgerblue;
            transform: rotate(45deg);
            border-bottom-right-radius: 6px;
        }

    /* RIGHT (OUTGOING) — bottom tail */
    .gtx-bubble.gtx-block-center {
        align-self: flex-end;
        background: white;
        color: white;
        border-radius: 20px;
        
    }

        .gtx-bubble.gtx-block-center::after {
            content: "";
            position: absolute;
            bottom: -12px;
            right: 40px;
            width: 22px;
            height: 22px;
            background: white;
            transform: rotate(45deg);
            border-bottom-right-radius: 6px;
        }


    /* Typography inside bubbles */
    .gtx-bubble h2,
    .gtx-bubble h3,
    .gtx-bubble p,
    .gtx-bubble blockquote {
        margin: 0 0 14px 0;
        color: inherit;
    }

    .gtx-bubble blockquote {
        font-style: italic;
        opacity: 0.9;
    }


/* FIXED LEFT BOX */
.gtx-left-box {
    position: fixed;
    top: 160px; /* sits below your top bar */
    left: 20px; /* slight inset from edge */
    width: 240px; /* perfect width for your layout */
    background: #FFFFFF;
    border: 1px solid #E0E4EA;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: 'Inter', sans-serif;
    z-index: 9997; /* below top bar, above content */
}

/* Title */
.gtx-left-title {
    font-size: 20px;
    font-weight: 900;
    color: #0A2540;
    margin-bottom: 12px;
    text-transform: lowercase;
}

/* List */
.gtx-left-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .gtx-left-list li:hover {
        background: #F3F7FF;
        padding-left: 6px;
        transition: all 0.15s ease;
        cursor: default;
    }

    .gtx-left-list li {
        font-size: 16px;
        color: #3A3F4B;
        padding: 6px 0;
        border-bottom: 1px solid #F0F2F5;
    }

        .gtx-left-list li:last-child {
            border-bottom: none;
        }

/* MOBILE: hide the box so it doesn't crowd the screen */
@media (max-width: 900px) {
    .gtx-left-box {
        display: none;
    }
}


/* FIXED RIGHT TINCAN IMAGE */
.gtx-right-tincan {
    position: fixed;
    top: 160px; /* sits below your top bar */
    right: 20px; /* slight inset from the edge */
    z-index: 9997; /* below top bar, above content */
}

    .gtx-right-tincan img {
        height: 300px; /* adjust size as needed */
        width: auto;
        opacity: 0.95; /* slight polish */
        pointer-events: none; /* prevents blocking clicks */
    }

/* Hide on mobile so it doesn't crowd the screen */
@media (max-width: 900px) {
    .gtx-right-tincan {
        display: none;
    }
}


/* FIXED RIGHT CONTACT BUBBLE */
.gtx-right-contact {
    position: fixed;
    top: 480px; /* adjust to sit under your vertical tin can */
    right: 20px;
    z-index: 9997;
}

.gtx-right-contact-inner {
    background: white;
    padding: 18px 22px;
    width: 240px; /* smaller, tighter */
    border-radius: 18px; /* bubble shape */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    font-family: 'Inter', sans-serif;
}

    /* tighten spacing */
    .gtx-right-contact-inner .contact-line {
        margin: 6px 0;
    }

/* hide on mobile */
@media (max-width: 900px) {
    .gtx-right-contact {
        display: none;
    }
}
