/*==================================================
                GLOBAL STYLES
==================================================*/

:root {
    /* Colors */

    --primary-color: #C89B3C;
    --secondary-color: #08111F;
    --dark-color: #09111D;
    --light-color: #FFFFFF;
    --text-color: #4D5562;
    --gray-color: #777777;
    --section-bg: #F7F8FA;
    /* Layout */

    --container-width: 1320px;
    /* Radius */

    --border-radius: 24px;
    /* Shadow */

    --shadow: 0 20px 60px rgba(0,0,0,.08);
    /* Animation */

    --transition: .35s ease;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    font-family: "Riyadh",sans-serif;
    background: var(--light-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button,
input,
textarea {
    font-family: inherit;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
    color: var(--secondary-color);
}

p {
    margin: 0;
}

/*==================================================
                LAYOUT
==================================================*/

section:not(.hero) {
    position: relative;
    padding: 110px 0;
}

.container {
    width: min(var(--container-width), calc(100% - 48px));
    margin-inline: auto;
}

/*==================================================
            COMMON TRANSITIONS
==================================================*/

button,
a,
img {
    transition: var(--transition);

}

/*=========================================
            WHATSAPP FLOATING BUTTON
=========================================*/




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

.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 110px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #C89B3C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 10px 25px rgba(200,155,60,.35);
    transition: .35s ease;
    animation: whatsappPulse 3s infinite;
}

    .whatsapp-btn {
        font-size: 28px;
        position: fixed;
        left: 30px;
    }

/*=============================
        TOOLTIP
==============================*/

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    white-space: nowrap;
    background: #08111F;
    color: #fff;
    border: 1px solid rgba(200,155,60,.45);
    padding: 11px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-12px);
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/*=============================
        HOVER
==============================*/

.whatsapp-btn:hover {
    color: #fff;
    background: #D4AF37;
    transform: translateY(-4px);
}

/*=============================
        PULSE
==============================*/

@keyframes whatsappPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(200,155,60,.45), 0 10px 25px rgba(200,155,60,.35);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(200,155,60,0), 0 10px 25px rgba(200,155,60,.35);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(200,155,60,0), 0 10px 25px rgba(200,155,60,.35);
    }
}