@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

:root {
    --bg-dark: #000000;
    --blue-gradient: linear-gradient(135deg, #001f3f 0%, #004080 50%, #0074D9 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    background-color: var(--bg-dark);
    color: #fff;
    font-family: 'Inter', sans-serif;
    text-align: center;
    overflow-x: hidden;
}

/* --- LOGO SECTION --- */
.logo-container { 
    padding: 8rem 0 2rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.logo { 
    height: 60px !important; 
    width: 60px !important;
    border-radius: 50% !important; 
    border: 1.5px solid #d4af37;
    object-fit: cover; 
    background: #000;
}

.container { width: 100%; padding: 0 5%; }

.title { 
    font-size: 1.8rem; 
    letter-spacing: 6px; 
    margin: 2rem 0 1rem;
    font-weight: 300;
    text-transform: uppercase;
}

.description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ccc;
    max-width: 500px;
    margin: 0 auto 2rem;
}

/* --- ANIMATION (FIXED FOR SLIDERS) --- */
.hidden {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.95); /* Scale works better than Translate for sliders */
    transition: all 1s ease-out;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

/* --- VIDEO SECTION --- */
.video-section { 
    width: 100%; 
    max-width: 600px; 
    margin: 0 auto 2rem; 
    border-radius: 8px; 
    overflow: hidden; 
}
.vault-video { width: 100%; display: block; aspect-ratio: 1/1; object-fit: cover; }

/* --- SLIDER (THE FIX) --- */
.slider-wrapper { 
    width: 100%; 
    max-width: 600px;
    margin: 2rem auto; 
    overflow: hidden;
}

.slider { 
    display: flex; 
    overflow-x: auto; 
    scroll-snap-type: x mandatory; 
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.slider::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.slide { 
    flex: 0 0 100%; 
    scroll-snap-align: center; 
    padding: 0 5px;
}

.slide img { 
    width: 100%; 
    aspect-ratio: 1/1; 
    object-fit: cover; 
    border-radius: 12px;
}

.slider-dots { 
    margin-top: 1rem; 
    display: flex; 
    justify-content: center; 
    gap: 10px; 
}

.slider-dots span { 
    width: 6px; 
    height: 6px; 
    background: #333; 
    border-radius: 50%; 
    transition: 0.3s;
}

.slider-dots span.active { background: #fff; width: 12px; border-radius: 10px; }

/* --- BUTTONS & FOOTER --- */
.action { padding: 3rem 0; }
.blue-grad { background: var(--blue-gradient); color: #fff; text-decoration: none; }
.main-button { 
    padding: 1.2rem 3.5rem; 
    font-weight: 700; 
    border-radius: 50px; 
    font-size: 0.8rem; 
    letter-spacing: 2px;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

.footer { 
    padding: 4rem 0; 
    border-top: 1px solid #111; 
    margin-top: 2rem;
}

.social-box { font-size: 1.5rem; margin-bottom: 2rem; }
.social-box a { color: #fff; }

.copyright { 
    font-size: 0.6rem; 
    color: #555; 
    letter-spacing: 2px; 
    line-height: 2; 
    text-transform: uppercase; 
}

.designer { 
    font-weight: 700; 
    color: #888; 
    margin-top: 15px; 
    display: block;
}
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
}

/* Tooltip that shows on hover for Desktop */
.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    white-space: nowrap;
}

.whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    visibility: visible;
}

/* Subtle Pulse Effect */
.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(12, 143, 60, 0.774); }
    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 {
    animation: pulse 2s infinite;
}