  /*!
 * ============================================================
 *  AJANS LEO @ 2025
 *  NEW DESIGN AND DEVELOPMENT INFRASTRUCTURE
 * ------------------------------------------------------------
 *  Code & Architecture : AJANS LEO Development Team
 * ------------------------------------------------------------
 *  Project  : AJANS LEO
 *  Version  : 1.0.0
 *  Release  : December 2025
 * ------------------------------------------------------------
 *  @ 2025 AJANS LEO AG - All Rights Reserved.
 * ============================================================ */

  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }

  :root {
      --primary-color: #E8724D;
      --secondary-color: #2C4A73;
      --dark-color: #1a1a1a;
      --light-color: #f8f9fa;
      --white: #ffffff;
      --text-color: #333333;
      --gray: #666666;
      --transition: all 0.3s ease;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.6;
      color: var(--text-color);
      overflow-x: hidden;
  }

  /* Header & Navigation */
  header {
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      background: var(--white);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
  }

  nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      max-width: 1400px;
      margin: 0 auto;
  }

  .logo {
      height: 60px;
      transition: var(--transition);
  }

  .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
  }

  .nav-links a {
      text-decoration: none;
      color: var(--text-color);
      font-weight: 500;
      transition: var(--transition);
      position: relative;
  }

  .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary-color);
      transition: var(--transition);
  }

  .nav-links a:hover::after {
      width: 100%;
  }

  .nav-links a:hover {
      color: var(--primary-color);
  }

  .cta-button {
      background: var(--primary-color);
      color: var(--white) !important;
      padding: 0.8rem 1.5rem;
      border-radius: 50px;
      font-weight: 600;
      transition: var(--transition);
  }

  .cta-button:hover {
      background: var(--secondary-color);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(232, 114, 77, 0.3);
  }

  .cta-button::after {
      display: none;
  }

  .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 5px;
  }

  .mobile-menu-toggle span {
      width: 25px;
      height: 3px;
      background: var(--secondary-color);
      transition: var(--transition);
  }

  /* Hero Section */
  .hero {
      margin-top: 0;
      height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .hero-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      z-index: 0;
  }

  .hero-slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .hero-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .hero-slide::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(2, 2, 2, 0.6);
      z-index: 1;
  }

  .hero-slide.active {
      opacity: 1;
  }

  .slider-dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 4;
  }

  .dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.5);
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .dot.active {
      background: var(--primary-color);
      width: 30px;
      border-radius: 6px;
  }

  .dot:hover {
      background: rgba(255, 255, 255, 0.8);
  }

  .hero::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 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
      background-size: 50px 50px;
      animation: float 20s linear infinite;
      z-index: 2;
  }

  @keyframes float {
      to {
          transform: translateY(-100px);
      }
  }

  .hero-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 2rem 5%;
      position: relative;
      z-index: 3;
      width: 100%;
      text-align: center;
  }

  .hero-text {
      max-width: 600px;
      color: var(--white);
      animation: fadeInLeft 1s ease;
      margin: 0 auto;
  }

  @keyframes fadeInLeft {
      from {
          opacity: 0;
          transform: translateX(-50px);
      }

      to {
          opacity: 1;
          transform: translateX(0);
      }
  }

  .hero-text h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3.5rem;
      margin-bottom: 1rem;
      line-height: 1.2;
  }

  .hero-text .highlight {
      color: var(--primary-color);
  }

  .hero-text p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.95;
  }

  .hero-buttons {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
  }

  .btn {
      padding: 1rem 2rem;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
  }

  .btn-primary {
      background: var(--primary-color);
      color: var(--white);
  }

  .btn-primary:hover {
      background: var(--white);
      color: var(--primary-color);
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(232, 114, 77, 0.3);
  }

  .btn-secondary {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
  }

  .btn-secondary:hover {
      background: var(--white);
      color: var(--secondary-color);
  }

  /* Section Styles */
  section {
      padding: 5rem 5%;
      max-width: 1400px;
      margin: 0 auto;
  }

  section.hero {
      padding: 0;
      max-width: 100%;
      margin: 0;
      width: 100%;
  }

  .section-header {
      text-align: center;
      margin-bottom: 3rem;
  }

  .section-header h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
  }

  .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: var(--primary-color);
  }

  .section-header p {
      color: var(--gray);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 1.5rem auto 0;
  }

  /* About Section */
  .about {
      background: var(--light-color);
  }

  .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
  }

  .about-text h3 {
      font-size: 2rem;
      color: var(--secondary-color);
      margin-bottom: 1rem;
  }

  .about-text p {
      margin-bottom: 1.5rem;
      line-height: 1.8;
  }

  .about-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 2rem;
  }

  .feature-item {
      display: flex;
      align-items: center;
      gap: 1rem;
  }

  .feature-icon {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.5rem;
      flex-shrink: 0;
  }

  .about-image {
      position: relative;
      height: 500px;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  }

  .about-image::before {
      content: '';
      position: absolute;
      top: 20px;
      right: 20px;
      bottom: 20px;
      left: 20px;
      border: 3px solid var(--primary-color);
      border-radius: 20px;
      z-index: 1;
  }

  .about-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  /* Menu Section */
  .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
  }

  .menu-card {
      background: var(--white);
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      cursor: pointer;
  }

  .menu-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }

  .menu-card-image {
      height: 250px;
      background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
  }

  .menu-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
  }

  .menu-card:hover .menu-card-image img {
      transform: scale(1.05);
  }

  .menu-card-image i {
      font-size: 5rem;
      color: rgba(255, 255, 255, 0.3);
  }

  .menu-card-content {
      padding: 1.5rem;
  }

  .menu-card-content h3 {
      font-size: 1.5rem;
      color: var(--secondary-color);
      margin-bottom: 0.5rem;
  }

  .menu-card-content p {
      color: var(--gray);
      margin-bottom: 1rem;
  }

  .menu-badge {
      display: inline-block;
      background: var(--primary-color);
      color: var(--white);
      padding: 0.3rem 1rem;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
  }

  /* Platforms Section */
  .platforms {
      background: var(--light-color);
  }

  .platforms-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
  }

  .platform-card {
      background: var(--white);
      padding: 2rem;
      border-radius: 15px;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  }

  .platform-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .platform-logo {
      height: 60px;
      margin-bottom: 1rem;
      object-fit: contain;
  }

  .platform-card h4 {
      color: var(--secondary-color);
      margin-bottom: 0.5rem;
  }

  .qr-section {
      text-align: center;
      background: var(--white);
      padding: 3rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .qr-section h3 {
      color: var(--secondary-color);
      margin-bottom: 1.5rem;
      font-size: 1.8rem;
  }

  .qr-code {
      max-width: 200px;
      margin: 0 auto;
      padding: 1rem;
      background: var(--white);
      border-radius: 10px;
  }

  .qr-code img {
      width: 100%;
      height: auto;
  }

  /* Contact Section */
  .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
  }

  .contact-info {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
  }

  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--light-color);
      border-radius: 10px;
      transition: var(--transition);
  }

  .contact-item:hover {
      background: var(--white);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }

  .contact-icon {
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 1.3rem;
      flex-shrink: 0;
  }

  .contact-details h4 {
      color: var(--secondary-color);
      margin-bottom: 0.5rem;
  }

  .contact-details a {
      color: var(--text-color);
      text-decoration: none;
      transition: var(--transition);
  }

  .contact-details a:hover {
      color: var(--primary-color);
  }

  .map-container {
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      height: 400px;
  }

  .map-container iframe {
      width: 100%;
      height: 100%;
      border: none;
  }

  /* Footer */
  footer {
      background: var(--secondary-color);
      color: var(--white);
      padding: 3rem 5% 1rem;
  }

  .footer-content {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 2rem;
  }

  .footer-logo {
      height: 60px;
      margin-bottom: 1rem;
  }

  .footer-about p {
      margin-bottom: 1rem;
      opacity: 0.9;
  }

  .social-links {
      display: flex;
      gap: 1rem;
  }

  .social-links a {
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: var(--transition);
  }

  .social-links a:hover {
      background: var(--primary-color);
      transform: translateY(-3px);
  }

  .footer-links h4 {
      margin-bottom: 1rem;
      color: var(--primary-color);
  }

  .footer-links ul {
      list-style: none;
  }

  .footer-links ul li {
      margin-bottom: 0.5rem;
  }

  .footer-links ul li a {
      color: var(--white);
      text-decoration: none;
      opacity: 0.9;
      transition: var(--transition);
  }

  .footer-links ul li a:hover {
      opacity: 1;
      padding-left: 5px;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 2rem;
      text-align: center;
      opacity: 0.8;
  }

  /* Scroll to Top Button */
  .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary-color);
      color: var(--white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      transition: var(--transition);
      z-index: 999;
      box-shadow: 0 5px 15px rgba(232, 114, 77, 0.3);
  }

  .scroll-top:hover {
      background: var(--secondary-color);
      transform: translateY(-5px);
  }

  .scroll-top.active {
      display: flex;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
      .hero-text h1 {
          font-size: 3rem;
      }

      .about-content,
      .contact-grid {
          grid-template-columns: 1fr;
      }

      .footer-content {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      nav {
          padding: 1rem 3%;
      }

      .logo {
          height: 50px;
      }

      .nav-links {
          position: fixed;
          top: 80px;
          left: -100%;
          width: 100%;
          height: calc(100vh - 80px);
          background: var(--white);
          flex-direction: column;
          justify-content: center;
          transition: var(--transition);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      }

      .nav-links.active {
          left: 0;
      }

      .mobile-menu-toggle {
          display: flex;
      }

      .mobile-menu-toggle.active span:nth-child(1) {
          transform: rotate(45deg) translate(8px, 8px);
      }

      .mobile-menu-toggle.active span:nth-child(2) {
          opacity: 0;
      }

      .mobile-menu-toggle.active span:nth-child(3) {
          transform: rotate(-45deg) translate(8px, -8px);
      }

      .hero {
          margin-top: 70px;
      }

      .hero-text h1 {
          font-size: 2.5rem;
      }

      .hero-text p {
          font-size: 1rem;
      }

      section {
          padding: 3rem 5%;
      }

      .section-header h2 {
          font-size: 2rem;
      }

      .about-features {
          grid-template-columns: 1fr;
      }

      .about-image {
          height: 300px;
      }

      .menu-grid {
          grid-template-columns: 1fr;
      }

      .footer-content {
          grid-template-columns: 1fr;
          gap: 2rem;
      }

      .hero-buttons {
          flex-direction: column;
      }

      .btn {
          width: 100%;
          justify-content: center;
      }
  }

  @media (max-width: 480px) {
      .hero-text h1 {
          font-size: 2rem;
      }

      .section-header h2 {
          font-size: 1.8rem;
      }

      .platforms-grid {
          grid-template-columns: 1fr;
      }
  }

  /* Animations */
  @keyframes fadeInUp {
      from {
          opacity: 0;
          transform: translateY(30px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .fade-in-up {
      animation: fadeInUp 0.6s ease forwards;
  }

  /* Loading Animation */
  .loading {
      opacity: 0;
  }

  .loaded {
      animation: fadeInUp 0.6s ease forwards;
  }