/* =========================
   Global Styles
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Links & Buttons */
a {
  text-decoration: none;
  color: inherit;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0073e6;
  color: #fff;
  border-radius: 5px;
  margin: 5px;
  transition: background 0.3s;
}

.btn:hover {
  background: #005bb5;
}

.btn-alt {
  background: #444;
}

.btn-alt:hover {
  background: #222;
}

/* =========================
   Header & Navigation
========================= */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #4B2E19;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  height: 50px;
  max-width: 100%;
}

nav {
  position: relative;
}

#menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li a {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #0073e6;
}

/* Mobile Menu */
@media (max-width: 768px) {
  #menu-toggle {
    display: block;
  }
  .nav-menu {
    display: none;
    flex-direction: column;
    background: #4B2E19;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 15px;
  }
  .nav-menu.active {
    display: flex;
  }
}

/* =========================
   Hero Slider
========================= */
.slider {
  position: relative;
  overflow: hidden;
  max-height: 500px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 500px;
  object-fit: cover;
}

/* Navigation Arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
}

.prev { left: 20px; }
.next { right: 20px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}

/* Dots */
.dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
}

.dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
}

.dots span.active {
  background: #0073e6;
}

/* =========================
   Call to Action
========================= */
.cta {
  text-align: center;
  padding: 60px 20px;
  background: #f5f5f5;
}

.cta h1 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* =========================
   Features Section
========================= */
.features {
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  background: #ad6c3d;
  flex-wrap: wrap;
}

.feature {
  flex: 1 1 250px;
  margin: 15px;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
  background: #f9f9f9;
  transition: transform 0.3s;
}

.feature:hover {
  transform: translateY(-5px);
}

/* =========================
   What's New Section (Expo)
========================= */
.whats-new-section {
  background: rgba(75, 46, 25, 0.05);
  padding: 80px 20px;
  margin: 60px 0;
}

.whats-new-section h2 {
  color: #C48A55;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}

.whats-new-section .section-subtitle {
  text-align: center;
  color: #333;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.expo-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.expo-slider {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.expo-slides {
  display: flex;
  transition: transform 0.5s ease;
}

.expo-slide {
  min-width: 100%;
  height: 400px;
}

.expo-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expo-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.expo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.expo-dot.active {
  background: white;
  width: 25px;
  border-radius: 5px;
}

.expo-content {
  padding: 0 20px;
}

.expo-content h3 {
  color: #C48A55;
  font-size: 2rem;
  margin-bottom: 20px;
}

.expo-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.expo-highlights li {
  color: #333;
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  line-height: 1.6;
}

.expo-highlights li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C48A55;
  font-weight: bold;
  font-size: 1.2rem;
}

.btn-expo {
  display: inline-block;
  background: linear-gradient(45deg, #A97142, #C48A55);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-expo:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(196, 138, 85, 0.4);
}

/* =========================
   Smart Security Section
========================= */
.smart-security-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1810 100%);
  padding: 80px 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.smart-security-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="sec-grid" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(196,138,85,0.1)"/></pattern></defs><rect width="200" height="200" fill="url(%23sec-grid)"/></svg>');
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

.security-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.coming-soon-badge {
  display: inline-block;
  background: linear-gradient(45deg, #C48A55, #A97142);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 0.9rem;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(196, 138, 85, 0.5); }
  50% { box-shadow: 0 0 20px rgba(196, 138, 85, 0.8); }
}

.security-content h2 {
  color: #C48A55;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.security-content p {
  color: #FFFFFF;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.security-feature {
  background: rgba(75, 46, 25, 0.3);
  padding: 30px;
  border-radius: 12px;
  border: 2px solid rgba(196, 138, 85, 0.2);
  transition: all 0.3s ease;
}

.security-feature:hover {
  border-color: rgba(196, 138, 85, 0.5);
  transform: translateY(-5px);
}

.security-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.security-feature h3 {
  color: #C48A55;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.security-feature p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
}

.btn-security {
  display: inline-block;
  background: white;
  color: #4B2E19;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-security:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* =========================
   Social Media Section
========================= */
/* Social Media Card Styles */ 
.social-media { 
  background: #f8f9fa; 
  padding: 50px 20px; 
  text-align: center; 
  margin: 0; 
  border-radius: 20px; 
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08); 
} 

.social-container { 
  max-width: 600px; 
  margin: 0 auto; 
} 

.social-container h3 { 
  font-size: 2rem; 
  color: #333; 
  margin-bottom: 10px; 
  font-weight: 700; 
  font-family: 'Roboto', sans-serif; 
} 

.social-container p { 
  font-size: 1rem; 
  color: #666; 
  margin-bottom: 30px; 
  line-height: 1.5; 
  font-family: 'Roboto', sans-serif; 
} 

.social-links {
   display: flex; 
   justify-content: center; 
   gap: 15px; flex-wrap: wrap; 
  } 
  
  .social-link { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 55px; 
    height: 55px; 
    border-radius: 15px; 
    transition: all 0.3s ease; 
    text-decoration: none; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    backdrop-filter: blur(10px); 
  } 
  
  .social-link svg { 
    width: 24px; height: 24px; 
    transition: transform 0.3s ease; 
  } 
  
  .social-link:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  } 
  
  .social-link:hover svg { transform: scale(1.1); 
  } 
  
  .social-link.youtube { 
    background: rgba(255, 0, 0, 0.9); 
    color: white; 
  } 
  
  .social-link.youtube:hover { 
    background: rgba(255, 0, 0, 1); 
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3); 
  } 
  
  .social-link.instagram { 
    background: linear-gradient(45deg, rgba(64, 93, 230, 0.9), rgba(88, 81, 219, 0.9), rgba(131, 58, 180, 0.9), rgba(193, 53, 132, 0.9), rgba(225, 48, 108, 0.9)); 
    color: white; 
  } 

  .social-link.instagram:hover { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c); 
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.3); 
  }

  .social-link.tiktok { 
    background: rgba(0, 0, 0, 0.9); color: white; 
  } 
  
  .social-link.tiktok:hover { 
    background: rgba(0, 0, 0, 1); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); 
  } 
  
  .social-link.facebook { 
    background: rgba(24, 119, 242, 0.9); color: white; 
  } 
  
  .social-link.facebook:hover {
     background: rgba(24, 119, 242, 1); 
     box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3); 
    } 
    
    @media (max-width: 768px) { 
      .social-media { 
        padding: 40px 15px; border-radius: 15px; 
        margin: 0 10px; 
      } 
      
      .social-container h3 { 
        font-size: 1.7rem; 
      } 
        
      .social-container p { 
        font-size: 0.9rem; 
      } 
        
      .social-links { 
        gap: 12px; 
      } 
      
      .social-link { 
        width: 50px; 
        height: 50px; 
        border-radius: 12px; 
      } 
      
      .social-link svg { 
        width: 22px; 
        height: 22px; 
      } 
    }

/* =========================
   Footer
========================= */
footer {
  text-align: center;
  background: #4B2E19;
  color: #fff;
  padding: 20px 10px;
  font-size: 0.9rem;
}

footer a {
  color: #0073e6;
}

footer a:hover {
  text-decoration: underline;
}

/* =========================
   WhatsApp Floating Button
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* =========================
   Mobile Responsive for New Sections
========================= */
@media (max-width: 768px) {
  .expo-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .expo-slide {
    height: 300px;
  }

  .expo-content h3,
  .security-content h2,
  .whats-new-section h2 {
    font-size: 1.8rem;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .whats-new-section,
  .smart-security-section {
    padding: 60px 20px;
  }
}