/* Quick Software – site.css */
/* =========================================
   Base
   ========================================= */
body {
    font-family: 'Inter', sans-serif;
}

/* =========================================
   Navigation
   ========================================= */
.sticky-nav {
    position: sticky;
    top: 0;
    z-index: 50;
}

/* =========================================
   Video Embeds (16:9 ratio)
   ========================================= */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* =========================================
   Team Card Hover
   ========================================= */
.hover-card-effect:hover {
    transform: translateY(-8px);
}

/* =========================================
   Screenshot Slider
   ========================================= */
.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide {
    min-width: 100%;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* =========================================
   Password Modal
   ========================================= */
.password-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.password-modal {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    max-width: 28rem;
    width: 100%;
    margin: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    border: 1px solid #e2e8f0;
}

/* =========================================
   Floating WhatsApp Button
   ========================================= */
.whatsapp-fab {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 9999px;
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
}

.whatsapp-fab:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 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); }
}

.whatsapp-fab {
    animation: whatsapp-pulse 2s infinite;
}

/* =========================================
   Downloads – locked / unlocked states
   ========================================= */
#downloadContent {
    display: none;
}

#downloadContent.unlocked {
    display: block !important;
}

/* =========================================
   Laptop Mockup - Premium MacBook Style
   ========================================= */
.laptop-mockup {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    filter: drop-shadow(0 60px 80px rgba(15, 23, 42, 0.22)) drop-shadow(0 20px 40px rgba(15, 23, 42, 0.12));
    perspective: 1200px;
}

/* Screen lid */
.laptop-screen {
    position: relative;
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    border-radius: 14px 14px 2px 2px;
    padding: 2.5% 2% 1.2% 2%;
    border: 1.5px solid rgba(255,255,255,0.08);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.07),
        inset 0 -1px 0 rgba(0,0,0,0.4);
    z-index: 2;
    transform-style: preserve-3d;
}

/* Camera notch */
.laptop-screen::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #334155;
    box-shadow: 0 0 0 1.5px #1e293b;
}

/* Screen display area */
.laptop-display {
    position: relative;
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    aspect-ratio: 16/10;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}

.laptop-display img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* Base / keyboard deck */
.laptop-base {
    position: relative;
    width: 112%;
    margin-left: -6%;
    height: 14px;
    background: linear-gradient(180deg, #dee4ee 0%, #c8d0dd 50%, #bbc4d0 100%);
    border-radius: 2px 2px 14px 14px;
    z-index: 1;
    margin-top: -2px;
    box-shadow: 
        0 4px 6px -1px rgba(0,0,0,0.15),
        0 10px 20px -5px rgba(0,0,0,0.12);
}

/* Trackpad cut-out indentation */
.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 6px;
    background: linear-gradient(to bottom, #c0cad6, #bbc4d0);
    border-radius: 0 0 8px 8px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}
