:root {
    --rs-ff-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --rs-ff-title: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --rs-ff-p: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 20px;
    background-color: #255cd3;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 1.5s infinite;
    cursor: pointer;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
}

.social-menu {
    position: fixed;
    bottom: 110px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.social-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    transform: scale(0.75);
    transition: transform 0.3s ease;
}

.social-menu.is-open .social-icon {
    transform: scale(1);
}

.social-icon.instagram {
    background-color: #E1306C;
}

.social-icon.telegram {
    background-color: #0088cc;
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.twitter {
    background-color: #1DA1F2;
}

#pre-load {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-container {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 10px;
}

.rs-header-area.rs-header-one {
    padding-top: 0;
    padding-bottom: 0;
    min-height: unset;
    background-size: contain;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.rs-header-area.rs-header-one.hide-header {
    top: -100px;
}

.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btn {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.rs-banner-item-wrapper,
.rs-banner-bg-thumb {
    height: 700px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(10, 109, 223, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
