/* --------- BASE --------- */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body{
    background: #bfbfbf; /* GREY BACKGROUND */
    color: #111;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  /* DARK MODE */
  body.dark{
    background: #111;
    color: #fff;
  }
  
  /* --------- HEADER --------- */
  .header{
    background: #111;
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo{
    font-size: 24px;
    font-weight: bold;
    color: #ffcc00;
  }
  
  .nav{
    display: flex;
    align-items: center;
  }
  
  .nav a{
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
  }
  
  .nav a:hover{
    color: #ffcc00;
  }
  
  /* DARK MODE NAV LINKS */
  body.dark .header{
    background: #222;
  }
  body.dark .nav a{
    color: #fff;
  }
  body.dark .nav a:hover{
    color: #ffcc00;
  }
  
  /* DARK MODE TOGGLE */
  .dark-mode{
    margin-left: 20px;
    cursor: pointer;
  }
  
  /* MOBILE MENU ICON */
  .menu-toggle{
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  /* --------- CONTACT SECTION --------- */
  .contact-section{
    padding: 50px 20px;
  }
  
  .contact-container{
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  /* --------- LEFT SIDE --------- */
  .contact-info h2{
    font-size: 36px;
    color: #e7e40b;
    margin-bottom: 10px;
  }
  
  .contact-info p{
    color: #eee4e4;
    margin-bottom: 30px;
  }
  
  .info-card{
    background: #1a1a1a;
    border: 1px solid #ffcc00;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }
  
  .info-card:hover{
    transform: translateY(-5px);
  }
  
  .icon{
    background: #ffcc00;
    color: #111;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 20px;
    animation: iconAnim 2s infinite;
  }
  
  .icon1 { animation-delay: 0s; }
  .icon2 { animation-delay: 0.3s; }
  .icon3 { animation-delay: 0.6s; }
  
  @keyframes iconAnim{
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  
  .info-card h3{
    margin-bottom: 5px;
    color: #ffcc00;
  }
  
  .map-card{
    margin-top: 20px;
    border: 1px solid #ffcc00;
    border-radius: 10px;
    overflow: hidden;
  }
  
  /* DARK MODE INFO CARDS */
  body.dark .info-card{
    background: #222;
  }
  
  /* --------- WHATSAPP BUTTON --------- */
  .whatsapp{
    position: fixed;
    bottom: 90px;
    right: 30px;
    background: #25d366;
    color: #fff;
    padding: 12px 15px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .whatsapp:hover{
    transform: translateY(-5px);
  }
  
  .whatsapp-icon{
    width: 30px;
    height: 30px;
    background: #fff;
    color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  
  
  /* DARK MODE SOCIAL ICONS */
  body.dark .social-icons a{
    background: #222;
  }
  
  /* --------- SCROLL TO TOP BUTTON --------- */
  .scrollTop{
    display: none;
    position: fixed;
    bottom: 150px;
    right: 30px;
    background: #ffcc00;
    color: #111;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
  }
  
  .scrollTop:hover{
    transform: translateY(-5px);
  }
  
  /* --------- FOOTER --------- */
  .footer{
    background: #111;
    color: #fff;
    padding: 20px;
    margin-top: 50px;
  }
  
  .footer-container{
    max-width: 1100px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-right a{
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
  }
  
  .footer-right a:hover{
    color: #ffcc00;
  }
  
  /* --------- RESPONSIVE --------- */
  @media (max-width: 900px){
    .menu-toggle{
      display: block;
    }
  
    .nav{
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100%;
      background: #111;
      flex-direction: column;
      padding-top: 80px;
      transition: right 0.3s ease;
    }
  
    .nav.active{
      right: 0;
    }
  
    .nav a{
      margin: 20px 0;
      font-size: 18px;
    }
  }
  