/* ============================================
   PIMI DIGITAL - Main Stylesheet V4
   Clean, Modern, Eye-Catching, Responsive
   ============================================ */

:root {
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #E6F0FF;
    --secondary: #00D4FF;
    --accent: #FF6600;
    --dark: #0A0E1A;
    --light: #F7F9FC;
    --white: #FFFFFF;
    --gray: #64748B;
    --success: #25D366;
    
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.18);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: #1E293B;
    background: var(--white);
    overflow-x: hidden;
    padding-top: 70px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* ============ PRELOADER ============ */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--white);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader {
    width: 40px; height: 40px;
    border: 3px solid var(--primary-light);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ============ NAVBAR ============ */
.main-nav {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.main-nav.scrolled {
    padding: 6px 0;
    box-shadow: 0 5px 30px rgba(0,0,0,0.12);
}

.nav-logo {
    height: 35px;
    width: auto;
}

.navbar-nav { gap: 3px; }

.nav-link {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1E293B !important;
    padding: 8px 12px !important;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
    background: var(--primary-light);
}

.dropdown-menu {
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 8px;
    margin-top: 8px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 9px 14px;
    font-size: 13px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.dropdown-item i { color: var(--primary); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-lang {
    background: var(--primary-light);
    color: var(--primary);
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.btn-lang:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-whatsapp-nav {
    background: var(--success);
    color: var(--white);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-nav:hover {
    background: #1FB855;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

/* ============ HERO ============ */
.hero-section {
    background: linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(21,27,46,0.92) 50%, rgba(26,35,64,0.95) 100%),
                url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80') center/cover no-repeat;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0,102,255,0.25) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(0,212,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.3);
    color: #00D4FF;
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-badge .dot {
    width: 7px; height: 7px;
    background: #00D4FF;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0,102,255,0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-hero:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,102,255,0.6);
}

.btn-secondary-hero {
    background: transparent;
    color: var(--white);
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 2px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-secondary-hero:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-floating-card .icon {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.hero-floating-card .text {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
}

.hero-floating-card .subtext {
    font-size: 10px;
    color: var(--gray);
}

/* ============ STATS ============ */
.stats-section {
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    padding: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 15px;
}

.stat-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    font-family: var(--font-heading);
}

.stat-number .suffix {
    font-size: 24px;
    vertical-align: super;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gray);
    max-width: 550px;
    margin: 0 auto;
}

.bg-light { background: var(--light) !important; }

/* ============ SERVICE CARDS ============ */
.service-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

.service-icon-overlay {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(0,102,255,0.4);
    z-index: 2;
}

.service-card-content {
    padding: 30px 20px 20px;
    position: relative;
}

.service-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-text {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 15px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--primary-light);
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateX(3px);
}

/* ============ FEATURE CARDS ============ */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    margin: 0 auto 15px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(8deg) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,102,255,0.4);
}

.feature-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-text {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 0;
}

/* ============ TESTIMONIALS ============ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 25px;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
    position: relative;
    margin-top: 20px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.testimonial-text {
    font-size: 13px;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    border-top: 1px solid #E2E8F0;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}

.testimonial-role {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 0;
}

.stars {
    color: #FFD700;
    font-size: 13px;
    margin-bottom: 8px;
}

/* ============ BLOG CARDS ============ */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #0066FF, #00D4FF);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 18px;
}

.blog-meta {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 8px;
}

.blog-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark);
}

.blog-title a:hover {
    color: var(--primary);
}

.btn-blog {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-blog:hover {
    color: var(--primary-dark);
}

/* ============ CTA SECTION ============ */
.cta-section {
    background: linear-gradient(135deg, rgba(10,14,26,0.95) 0%, rgba(0,102,255,0.85) 100%),
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1920&q=80') center/cover no-repeat;
    padding: 70px 0;
    position: relative;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--white);
    font-size: 30px;
    margin-bottom: 12px;
}

.cta-text {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto 25px;
}

/* ============ FAQ ============ */
.accordion-item {
    border: 1px solid #E2E8F0;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 700;
    font-size: 14px;
    padding: 16px 20px;
    background: var(--white);
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.accordion-body {
    font-size: 13px;
    color: var(--gray);
    padding: 16px 20px;
    line-height: 1.8;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 18px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.footer-title {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #00D4FF;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
}

.footer-contact i {
    color: #00D4FF;
    font-size: 14px;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
}

.footer-contact a:hover {
    color: #00D4FF;
}

.footer-bottom {
    background: rgba(0,0,0,0.3);
    padding: 15px 0;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
}

.footer-bottom a:hover {
    color: #00D4FF;
}

/* ============ FLOATING WHATSAPP - FIXED ============ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #FFFFFF !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float i {
    color: #FFFFFF;
    font-size: 28px;
    line-height: 1;
}

.whatsapp-float:hover {
    color: #FFFFFF !important;
    background: #1FB855;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover i {
    color: #FFFFFF;
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #1E293B;
    color: #FFFFFF;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 5px solid #1E293B;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

/* ============ BACK TO TOP ============ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 27px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 5px 15px rgba(0,102,255,0.4);
    transition: var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============ ANIMATIONS ============ */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
    body { padding-top: 60px; }
    
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius-sm);
        box-shadow: var(--shadow-lg);
        margin-top: 10px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .nav-actions {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #E2E8F0;
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-whatsapp-nav {
        width: 100%;
        justify-content: center;
    }
    
    .btn-lang {
        text-align: center;
    }
    
    .hero-title { font-size: 32px; }
    .hero-image img { height: 280px; }
    .hero-floating-card { left: 10px; }
    .section-title { font-size: 26px; }
}

@media (max-width: 768px) {
    .section { padding: 50px 0; }
    .hero-section { padding: 50px 0; }
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 13px; }
    .stat-number { font-size: 30px; }
    .stat-number .suffix { font-size: 18px; }
    .stat-label { font-size: 10px; }
    .cta-title { font-size: 24px; }
    .footer { padding: 40px 0 0; }
    .footer-bottom { text-align: center; }
    .footer-bottom .text-md-end { text-align: center !important; margin-top: 8px; }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
    
    .back-to-top {
        bottom: 78px;
        right: 22px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .hero-title { font-size: 22px; }
    .hero-buttons { flex-direction: column; }
    .btn-primary-hero, .btn-secondary-hero { width: 100%; justify-content: center; }
    .section-title { font-size: 22px; }
    .hero-image img { height: 220px; }
    .stat-number { font-size: 24px; }
    .stat-number .suffix { font-size: 14px; }
    .stat-label { font-size: 9px; }
    
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
    
    .back-to-top {
        bottom: 68px;
        right: 17px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}