/* ========== Reset & Base Styles ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

/* ========== CURSOR ========== */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(201, 168, 76, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease;
}

/* ========== SCROLL PROGRESS ========== */
#scroll-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    z-index: 9997;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========== SIDE FLOATERS ========== */
.side-callback {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: top left;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    padding: 8px 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 997;
    cursor: pointer;
    border-radius: 0 0 8px 8px;
    white-space: nowrap;
    box-shadow: 4px 0 20px rgba(201, 168, 76, 0.3);
}

.side-phone {
    position: fixed;
    left: 0;
    top: 58%;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 10px 10px 0;
    z-index: 997;
    cursor: pointer;
    font-size: 18px;
    box-shadow: 4px 0 20px rgba(201, 168, 76, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 24px;
    width: 54px;
    height: 54px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 997;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.6);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(201, 168, 76, 0);
    }
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}