  /* Top small header */
  .top-header {
     background: transparent;
     color: #fff;
     padding: 5px 20px;
     display: flex;
     justify-content: flex-end;
     align-items: center;
     position: relative;
     z-index: 10;
     padding-top: 10px;
     padding-bottom: 10px;
     border-bottom: 2px solid #fff;
  }

  /* Social icons */
  .top-header .social-icons {
     display: flex;
     gap: 10px;
     padding-right: 162px;
  }

  .top-header .social-icons a {
     color: #fff;
     text-decoration: none;
     font-size: 19px;
     transition: color 0.3s;
  }

  .top-header .social-icons a:hover {
     color: #00BFFF;
  }

  /* Main header */
  .main-header {
     background: transparent;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 180px;
     position: relative;
     z-index: 10;
     padding-top: 20px;
     padding-bottom: 10px;
  }

  /* Logo */
  .logo img {
     max-height: 50px;
     width: auto;
  }

  /* Menu */
  .menu {
     display: flex;
     gap: 25px;
     flex: 1;
     justify-content: center;
     position: relative;
  }

  .menu a {
     text-decoration: none;
     color: #fff;
     font-weight: 500;
     font-size: 18px;
     padding: 5px 0;
     transition: color 0.3s;
  }

  .menu a:hover {
     color: #E65464;
  }

  /* Dropdown */
  .dropdown {
     position: relative;
  }

  .drop-btn {
     display: flex;
     align-items: center;
     gap: 5px;
  }

  .dropdown-content {
     position: absolute;
     top: 90%;
     left: 0;
     background: rgba(0, 0, 0, 0.75);
     backdrop-filter: blur(10px);
     min-width: 220px;
     border-radius: 8px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
     display: none;
     flex-direction: column;
     overflow: hidden;
     animation: fadeIn 0.3s ease;
  }

  .dropdown-content a {
     color: #fff;
     padding: 10px 15px;
     text-decoration: none;
     font-size: 16px;
     transition: 0.3s ease;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-content a:hover {
     background: rgba(230, 84, 100, 0.8);
  }

  .dropdown:hover .dropdown-content {
     display: flex;
  }

  /* Button */
  .menu-btn {
     padding: 8px 18px;
     background: linear-gradient(135deg, rgba(89, 62, 123, 0.8) 0%, rgba(230, 84, 100, 0.8) 100%);
     color: #fff;
     border-radius: 5px;
     text-decoration: none;
     font-weight: 500;
     transition: background-color 0.3s, transform 0.2s;
  }

  .menu-btn:hover {
     transform: scale(1.05);
     background: linear-gradient(135deg, rgba(230, 84, 100, 0.9), rgba(89, 62, 123, 0.9));
  }

  /* Dropdown animation */
  @keyframes fadeIn {
     from {
        opacity: 0;
        transform: translateY(-10px);
     }

     to {
        opacity: 1;
        transform: translateY(0);
     }
  }

  /* Responsive */
  @media (max-width: 768px) {
     .main-header {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px;
     }

     .menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
     }

     .dropdown-content {
        position: static;
        background: rgba(0, 0, 0, 0.85);
        width: 100%;
        border-radius: 0;
        box-shadow: none;
     }

     .dropdown:hover .dropdown-content {
        display: block;
     }
  }


  .main-header {
     display: flex;
  }

  /* Mobile Nav Hidden on Desktop */
  .mobile-nav {
     display: none;
  }

  /* Mobile Navigation */
  @media (max-width: 768px) {

     .main-header,
     .top-header {
        display: none;
     }

     .mobile-nav {
        display: block;
        background: rgba(0, 0, 0, 0.8);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        color: #fff;
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
     }

     .mobile-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
     }

     .mobile-logo img {
        max-height: 40px;
     }

     .hamburger {
        font-size: 24px;
        cursor: pointer;
        transition: transform 0.3s ease;
     }

     .hamburger.active {
        transform: rotate(90deg);
     }

     .mobile-menu {
        display: none;
        flex-direction: column;
        background: rgba(20, 20, 30, 0.95);
        padding: 15px 20px;
        animation: slideDown 0.4s ease;
     }

     .mobile-menu.active {
        display: flex;
     }

     .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        width: 100%;
     }

     .mobile-menu li {
        margin-bottom: 12px;
     }

     .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 1.05rem;
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: color 0.3s ease;
     }

     .mobile-menu a:hover {
        color: #E65464;
     }

     .has-submenu .submenu {
        display: none;
        flex-direction: column;
        margin-top: 8px;
        margin-left: 10px;
        padding-left: 10px;
        border-left: 2px solid #E65464;
     }

     .has-submenu.active .submenu {
        display: flex;
        animation: fadeIn 0.3s ease;
     }

     .submenu a {
        font-size: 0.95rem;
        opacity: 0.9;
        padding: 6px 0;
        border: none;
     }

     .mobile-cta {
        display: inline-block;
        text-align: center;
        background: linear-gradient(135deg, #593E7B, #E65464);
        color: #fff;
        border-radius: 8px;
        padding: 12px;
        margin-top: 10px;
        font-weight: 600;
        text-transform: uppercase;
        transition: 0.3s ease;
     }

     .mobile-cta:hover {
        background: linear-gradient(135deg, #E65464, #593E7B);
        transform: translateY(-2px);
     }

     @keyframes slideDown {
        from {
           opacity: 0;
           transform: translateY(-20px);
        }

        to {
           opacity: 1;
           transform: translateY(0);
        }
     }

     @keyframes fadeIn {
        from {
           opacity: 0;
        }

        to {
           opacity: 1;
        }
     }
  }



  /* Main Footer */
  .footer {
     background: linear-gradient(135deg, #593E7B, #2D223F);
     color: #fff;
     padding: 50px 0 20px;
     position: relative;
     overflow: hidden;
  }

  .footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 3px;
     background: linear-gradient(90deg, #E65464, #FF8F9A);
     animation: shimmer 2s infinite linear;
  }

  @keyframes shimmer {
     0% {
        transform: translateX(-100%);
     }

     100% {
        transform: translateX(100%);
     }
  }








  /* Footer Grid */
  /* ===========================
   MAIN FOOTER WRAPPER
=========================== */
  .footer {
     background: #2b203c;
     color: #fff;
     padding: 60px 0 0px;
     font-family: "Poppins", sans-serif;
  }

  /* ===========================
   FOOTER GRID CONTENT
=========================== */
  .footer-content {
     max-width: 1200px;
     margin: auto;
     padding: 0 20px;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-bottom: 40px;
  }

  /* ===========================
   COMPANY LOGO
=========================== */
  .footer-logo {
     width: 240px;
     margin-bottom: 20px;
  }

  /* ===========================
   SECTION TITLES
=========================== */
  .footer-section h3 {
     color: #fff;
     margin-bottom: 20px;
     font-size: 1.3rem;
     position: relative;
     padding-bottom: 10px;
  }

  .footer-section h3::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 3px;
     background: #FFF;
     transition: width 0.3s;
  }

  .footer-section:hover h3::after {
     width: 100px;
  }

  /* ===========================
   GENERAL PARAGRAPH
=========================== */
  .footer-section p,
  .contact-info span {
     color: #d0c9dd;
     line-height: 1.6;
  }

  /* ===========================
   QUICK LINKS
=========================== */
  .footer-links li {
     margin-bottom: 12px;
  }

  .footer-links a {
     color: #d0c9dd;
     text-decoration: none;
     transition: all 0.3s;
  }

  .footer-links a:hover {
     color: #E65464;
     padding-left: 5px;
  }

  /* ===========================
   CONTACT INFO
=========================== */
  .contact-info {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
  }

  .contact-info i {
     margin-right: 10px;
     color: #E65464;
  }

  /* ===========================
   NEWSLETTER FORM
=========================== */
  .newsletter-form {
     display: flex;
     gap: 10px;
     margin-top: 15px;
  }

  .newsletter-form input {
     flex: 1;
     padding: 10px;
     border: none;
     border-radius: 5px;
     background: #3e3158;
     color: #fff;
  }

  .newsletter-form button {
     padding: 10px 20px;
     background: #E65464;
     border: none;
     border-radius: 5px;
     color: #fff;
     cursor: pointer;
     transition: transform 0.3s;
  }

  .newsletter-form button:hover {
     transform: translateY(-2px);
  }

  /* ===========================
   SOCIAL LINKS (MAIN)
=========================== */
  .social-links {
     display: flex;
     gap: 10px;
     margin-top: 20px;
  }

  .social-links a {
     width: 38px;
     height: 38px;
     border-radius: 50%;
     background: #E65464;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background 0.3s, transform 0.3s;
  }

  .social-links a:hover {
     background: #E65464;
     transform: translateY(-3px);
  }

  /* ===========================
   PAYMENT + SOCIAL BOTTOM BAR
=========================== */
  .footer-extra {
     background: #1f1830;
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 30px auto 0;
     border-radius: 5px;
  }

  p:last-child {
     margin-bottom: 0;
  }

  /* Payment Icons */
  .footer-bottom-left i {
     font-size: 40px;
     /* Size of the icons */
     opacity: 0.85;
     margin-right: 15px;
     margin-bottom: 20px;
     transition: opacity 0.6s;
  }

  .footer-bottom-left i:hover {
     opacity: 1;
  }

  /* Bottom Socials */
  .bottom-socials a {
     font-size: 28px;
     color: #fff;
     margin-right: 15px;
     transition: color 0.3s;
  }

  .bottom-socials a:hover {
     color: #E65464;
  }

  .fa-brands .fa-cc-visa {
     width: 80px;
  }

  /* ===========================
   DISCLAIMER BAR
=========================== */
  .footer-disclaimer {
     background: #1D1629;
     text-align: center;
     padding: 12px 0;
     color: #bfb5d3;
     font-size: 0.9rem;
  }

  /* ===========================
   COPYRIGHT
=========================== */
  .footer-bottom {
     background: #140f1d;
     text-align: center;
     padding: 15px 0;
     color: #a69ab8;
     font-size: 0.9rem;
  }

  /* ===========================
   RESPONSIVENESS
=========================== */
  @media (max-width: 768px) {
     .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
     }

     .footer-extra {
        flex-direction: column;
        gap: 15px;
        text-align: center;
     }

     .payment-methods,
     .bottom-socials {
        justify-content: center;
        display: flex;
     }
  }