* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* =========================
    SECTION 1: HERO
========================= */

/* =========================
    SECTION 1: HERO
========================= */

.hero {
    width: 100%;
    min-height: 100vh;

    background:
        linear-gradient(rgba(124, 107, 9, 0.158), rgba(0, 0, 0, 0.2)),
        /* MODIFIED: path updated after moving landing to site root */
        url('assets/images/Landingimg1.png') no-repeat;

    background-size: cover;

    background-position: center 20%;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    color: white;
}

.legal-links {
    position: absolute;
    top: 20px;
    right: 30px;
}

.legal-links a {
    color: #FFC300;
    margin-left: 20px;
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFC300;
    font-size: 1.6rem;
    cursor: pointer;
}

.legal-menu {
    display: flex;
}

@media (max-width: 768px) {

.legal-toggle {
        display: block;
    }

.legal-menu {
        display: none;
        flex-direction: column;
        background: rgba(0,0,0,0.75);
        padding: 1rem 1.4rem;
        border-radius: 10px;
        position: absolute;
        top: 35px;
        right: 0;
        min-width: 140px;
    }

.legal-menu.show {
        display: flex;
    }

.legal-menu a {
        margin: 8px 0;
        font-size: 1rem;  
    }
}

.overlay h1 {
    font-size: 3rem;
    color: #FFC300;

    margin-top: 12.8rem;
}

.overlay p {
    max-width: 420px;
}

button {
    margin-top: 2rem;
    background: #FFC300;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    color: #1A1A1A;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

button:hover {
    transform: scale(1.06);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}


/* =========================
    SECTION 2
========================= */

.steps {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.25)),
        /* MODIFIED: path updated after moving landing to site root */
        url('assets/images/Landingimg2.png') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    text-align: center;
}

.steps h2 {
    color: white;
    margin-bottom: 2rem;
}


/* =========================
    CONVERSATIONAL UX
========================= */

.chat-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.chat-bubble {
    width: min(620px, 85vw);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.9s ease;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,.35)) brightness(.96);
    border-radius: 16px;
    position: absolute;
}

.chat-bubble::after {
    content:"";
    position:absolute;
    inset:0;
    border-radius:16px;
    background:linear-gradient(180deg,rgba(255,255,255,.15),rgba(0,0,0,.05));
    pointer-events:none;
}

.chat-bubble[data-side="left"] {
    left:0;
}

.chat-bubble[data-side="right"] {
    right:0;
}

.chat-bubble.active {
    opacity:1;
    transform: translateY(var(--drop)) translateX(0);
}

.chat-final {
    position: absolute;
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.9s ease, transform 0.9s ease;
    color: #FFC300;
    font-size: 1.9rem;        
    font-weight: 600;
    letter-spacing: 0.6px;
    text-align: center;
    max-width: 600px;
    text-shadow: 0 4px 14px rgba(0,0,0,0.45);
}

.chat-final.show {
    opacity:1;
    transform:scale(1);
}


/* CTA */

.social-cta {
    margin-top: 2.2rem;
    margin-bottom: 1rem;
    max-width: 820px;
    color: #ffffff;
    font-size: 1.05rem;      
    font-weight: 400;       
    letter-spacing: 0.2px;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.social-buttons a {
    margin:0 14px;
    color:white;
    font-size:2.8rem;
}

.social-buttons {
    margin-top: 2.8rem; 
}

.social-buttons a:hover {
    color:#FFC300;
    transform:scale(1.12);
}

/* FOOTER */

footer {
    background:#000;
    color:#aaa;
    text-align:center;
    padding:1rem;
}

footer a:visited {
    color: #FFC300;
}

footer a:hover {
    color: #ffffff;
}

/* =========================
    CHAT TABLE (RECTANGULAR)
========================= */

.chat-container {
    position: relative;
    z-index: 1;
}

.chat-container::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(880px, 130vw);
    height: min(530px, 95vw);
    background: rgba(50, 51, 51, 0.376);
    transform: translate(-50%, calc(-50% + 18px));
    border-radius: 24px;
    z-index: 0;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.35),
        inset 0 0 40px rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
}

/* =========================
    TEXT ABOVE CHAT MANTEL
========================= */

.steps h2,
.social-cta {
    position: relative;
    z-index: 2;
}

/* =========================
    BRAND EMBLEM (HERO)
========================= */

.brand-emblem {
    width: 180px;
    height: auto;                
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 1.4rem;                  
    left: 5%;                     
    overflow: visible;            
}

.brand-img {
    max-width: 180px;
    height: auto;
    display: block;
}



