/* General reset */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Segoe UI',Tahoma, Geneva, Verdana, sans-serif;background:#000;color:#fff;line-height:1.6;overflow-x:hidden}

/* Navbar */
.navbar{position:fixed;top:0;left:0;right:0;background-color:transparent;padding:0 1.5rem;display:flex;justify-content:space-between;align-items:center;z-index:1000;transition:background-color .3s}
.navbar.scrolled{background-color:rgb(0, 0, 0);border-bottom:1px solid rgba(255, 255, 255, 0.2)}

/* Container */
.container{max-width:900px;margin:0 auto;padding:0 1rem}

/* Main menu (left-side) */
.main-menu{position:fixed;top:0;left:0;height:100vh;width:300px;background-color:rgb(255, 255, 255);transform:translateX(-100%);transition:transform .32s ease;display:flex;flex-direction:column;gap:1rem;padding:2rem 1.5rem;z-index:9999;border-right:1px solid rgba(0, 0, 0, 0.4)}
.main-menu.active{transform:translateX(0)}
.main-menu a{color:#000000;text-decoration:none;font-size:1.05rem;padding:.75rem 0;border-bottom:1px solid rgba(255,255,255,.03)}
.main-menu a:hover{background:rgba(255,255,255,.02)}
.main-menu .close-btn{align-self:center;background:transparent;border:none;color:#000000;font-size:1.25rem;padding:.25rem;cursor:pointer;margin-bottom:.25rem}

/* Social menu (right-side) */
.social-menu{position:fixed;top:0;right:0;height:100vh;width:300px;background-color:rgb(255, 255, 255);transform:translateX(100%);transition:transform .32s ease;display:flex;flex-direction:column;gap:1rem;padding:2rem 1.5rem;z-index:9999;border-left:1px solid rgba(0, 0, 0, 0.4)}
.social-menu.active{transform:translateX(0)}
.social-menu a{color:#000000;text-decoration:none;font-size:1.05rem;padding:.75rem 0;border-bottom:1px solid rgba(255,255,255,.03)}
.social-menu a:hover{background:rgba(255,255,255,.02)}
.social-menu .close-btn{align-self:center;background:transparent;border:none;color:#000000;font-size:1.25rem;padding:.25rem;cursor:pointer;margin-bottom:.25rem}

/* Carousel container and inner (used by JS) */
.carousel-container{position:relative;width:100%;height:100%}
.carousel-inner{display:flex;height:100%;transition:transform .4s ease}
.slide-item{flex:0 0 100%;height:100vh}

/* About section */
.about{background:#fff;color:#000000;padding:3rem 1rem}

/* FAQ item classes (used by JS) */
.faq-item{background:rgba(255,255,255,.02);border:1px solid rgba(255,255,255,.2);border-radius:6px;padding:0 1.5rem;margin-bottom:.75rem;transition:background .25s,border-color .25s}
.faq-question{width:100%;background:transparent;border:0;color:#fff;font-size:1.1rem;padding:1.25rem 0;text-align:left;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:color .2s;font-weight:500}
.faq-question:hover{color:#ccc}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .3s ease;padding-bottom:0}
.faq-answer.active{max-height:500px;padding-bottom:1rem}
.faq-answer p{color:#bbb;line-height:1.7;font-size:1rem}

/* Footer section */
.footer{background:#fff;color:#000000;padding:0rem 0rem}

/* WhatsApp floating */
.whatsapp-float{position:fixed;bottom:20px;right:20px;z-index:999;width:48px;height:48px;background:#eeeeee;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 8px rgba(0,0,0,.5);cursor:pointer;transition:transform .2s}
.whatsapp-float:hover{transform:scale(1.08)}
.whatsapp-float svg{width:24px;height:24px;fill:#000}

/* Responsive tweaks */
@media (max-width:768px){.main-menu{top:0px;width:280px}.social-menu{width:280px}}