/* ================= DESIGN SYSTEM ================= */

:root {
    --orange: #D6882A;
    --blue: #1f4fff;
    --ink: #1f1f3b;
    --muted: #313030;
    --dark: #0b0b0b;
    --white: #ffffff;
    --font: 'Inter', system-ui, sans-serif;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

/* ================= BODY ================= */

body {
    background: var(--orange);
    font-family: var(--font);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}


/* ================= CONTAINER ================= */

.container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* ================= IMAGES ================= */

img {
    max-width: 100%;
    display: block;
}


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

a {
    text-decoration: none;
    color: inherit;
}


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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
    cursor: pointer;
}


/* PRIMARY BUTTON */

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: #b46f1e;
}


/* OUTLINE BUTTON */

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
}


/* ================= BADGE ================= */

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 30px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
    margin-bottom: 18px;
}


/* remove default paragraph margin */

.badge p {
    margin: 0;
}


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

section {
    position: relative;
}


/* ================= HEADINGS ================= */

h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
}


/* ================= RESPONSIVE ================= */

@media(max-width:900px) {
    .container {
        width: 92%;
    }
}

/* ================= STICKY WHATSAPP BUTTON ================= */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.3s;
    animation: whatsapp-wobble 4s ease-in-out infinite;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25d366;
    opacity: 0.4;
    animation: whatsapp-ring 2s infinite;
    z-index: -1;
}

@keyframes whatsapp-wobble {
    0%, 90%, 100% {
        transform: scale(1) rotate(0);
    }
    92% {
        transform: scale(1.05) rotate(-8deg);
    }
    94% {
        transform: scale(1.05) rotate(8deg);
    }
    96% {
        transform: scale(1.05) rotate(-6deg);
    }
    98% {
        transform: scale(1.05) rotate(6deg);
    }
}

@keyframes whatsapp-ring {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Ensure mobile layout doesn't overlap screen content too much */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 26px;
    }
}
