    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: #0a0a0a;
      font-family: 'Plus Jakarta Sans', sans-serif;
      scroll-behavior: smooth;
      color: #e0e0e0;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: radial-gradient(circle at 20% 30%, #0f0c1f, #000000);
      z-index: -2;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: repeating-linear-gradient(
        45deg,
        rgba(0, 243, 255, 0.03) 0px,
        rgba(0, 243, 255, 0.03) 2px,
        transparent 2px,
        transparent 8px
      );
      pointer-events: none;
      z-index: -1;
    }

    :root {
      --neon-cyan:   #00f3ff;
      --neon-purple: #b400ff;
      --neon-pink:   #ff2d75;
      --neon-green:  #00ff88;
      --dark-bg:     #05050a;
      --card-glass:  rgba(5, 5, 15, 0.75);
      --border-glow: rgba(0, 243, 255, 0.5);
      --shadow-neon: 0 0 20px rgba(0, 243, 255, 0.3),
                     0 0 40px rgba(180, 0, 255, 0.2);
    }

    /* TOP BAR */
    .top-bar {
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(12px);
      color: #ccc;
      font-size: 0.8rem;
      padding: 0.7rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      border-bottom: 1px solid var(--neon-cyan);
      box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    }

    .top-right i {
      margin-left: 20px;
      transition: all 0.3s;
      cursor: pointer;
      color: var(--neon-cyan);
    }

    .top-right i:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 10px var(--neon-pink);
      transform: scale(1.2);
    }

    /* HEADER / NAV */
    .header {
      background: rgba(0, 0, 0, 0.85);
      backdrop-filter: blur(20px);
      padding: 1rem 5%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      position: sticky;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid var(--neon-purple);
    }

    .nav {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .nav a {
      text-decoration: none;
      font-weight: 600;
      color: #ddd;
      transition: 0.3s;
      position: relative;
    }

    .nav a::before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
      transition: 0.3s;
    }

    .nav a:hover {
      color: var(--neon-cyan);
      text-shadow: 0 0 8px var(--neon-cyan);
    }

    .nav a:hover::before { width: 100%; }

    .right-section {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .lang {
      display: flex;
      gap: 12px;
      align-items: center;
    }

  

    .lang img:hover {
      transform: scale(1.08);
      filter: brightness(1.2);
      border-color: var(--neon-pink);
    }

    .btn-neon {
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      border: none;
      padding: 10px 28px;
      border-radius: 40px;
      font-weight: 700;
      color: #000;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 0 15px rgba(0, 243, 255, 0.5);
    }

    .btn-neon:hover {
      transform: scale(1.05);
      box-shadow: 0 0 30px rgba(180, 0, 255, 0.7);
    }

    /* LOGO */
    .logo {
      display: flex;
      justify-content: center;
      margin: 30px 0;
    }

    .logo img {
      width: 180px;
      height: 250px;
      border-radius: 10%;
      object-fit: cover;
      border: 3px solid var(--neon-cyan);
      box-shadow: 0 0 40px rgba(0, 243, 255, 0.5);
      animation: pulse-border 3s infinite;
    }

    @keyframes pulse-border {
      0%   { border-color: var(--neon-cyan);   box-shadow: 0 0 20px var(--neon-cyan); }
      50%  { border-color: var(--neon-purple); box-shadow: 0 0 40px var(--neon-purple); }
      100% { border-color: var(--neon-cyan);   box-shadow: 0 0 20px var(--neon-cyan); }
    }

    /* PROFILE SECTION */
    .profile-section { padding: 50px 5%; }

    .profile-card {
      display: flex;
      gap: 50px;
      background: var(--card-glass);
      backdrop-filter: blur(16px);
      border-radius: 32px;
      padding: 2rem;
      max-width: 1280px;
      margin: 0 auto;
      border: 1px solid var(--neon-cyan);
      box-shadow: var(--shadow-neon);
      transition: 0.4s;
    }

    .profile-card:hover {
      border-color: var(--neon-pink);
      box-shadow: 0 0 40px rgba(255, 45, 117, 0.3);
    }

    .profile-left {
      width: 300px;
      text-align: center;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 24px;
      padding: 2rem;
    }

    .profile-left img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 3px solid var(--neon-pink);
    }

    .profile-left h2 { font-size: 1.8rem; color: gold; }

    .tag {
      background: rgba(0, 243, 255, 0.2);
      color: var(--neon-cyan);
      padding: 0.3rem 1rem;
      border-radius: 40px;
      display: inline-block;
    }

    .profile-right h3 { font-size: 1.8rem; color: var(--neon-cyan); }

    .divider {
      height: 2px;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), transparent);
      margin: 1rem 0;
    }

    .tags span {
      background: rgba(180, 0, 255, 0.2);
      border: 1px solid var(--neon-purple);
      padding: 0.3rem 1rem;
      border-radius: 40px;
      display: inline-block;
    }

    .profile-quote {
      font-family: 'Space Grotesk', monospace;
      border-left: 4px solid var(--neon-pink);
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      padding: 1.2rem 2rem;
      border-radius: 60px;
      margin: 2rem auto 0;
      max-width: 880px;
      text-align: center;
    }

    /* MEDIA SECTION */
    .media-section {
      padding: 10px 5% !important;
      background: #05080f;
    }

    .container { max-width: 1280px; margin: 0 auto; }

    .media-section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
    }

    .tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    .tab-btn {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid var(--neon-cyan);
      padding: 0.8rem 2rem;
      border-radius: 40px;
      font-weight: 600;
      color: #ddd;
      cursor: pointer;
      transition: 0.3s;
    }

    .tab-btn.active,
    .tab-btn:hover {
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      color: #000;
      box-shadow: 0 0 20px var(--neon-cyan);
    }

    .tab-content { display: none; animation: fadeUp 0.4s ease; }
    .tab-content.active { display: block; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(15px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .main-video { display: flex; justify-content: center; margin-bottom: 2rem; }

    .main-video iframe {
      width: 70%;
      height: 380px;
      border-radius: 28px;
      border: 1px solid var(--neon-cyan);
      box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    }

    .section-sub {
      font-size: 1.5rem;
      margin: 2rem 0 1.5rem;
      border-left: 4px solid var(--neon-cyan);
      padding-left: 1rem;
    }

    .video-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .video-card {
      border-radius: 20px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid var(--neon-purple);
      transition: 0.3s;
    }

    .video-card iframe { width: 100%; height: 200px; border: none; }

    .video-card:hover {
      transform: translateY(-10px);
      border-color: var(--neon-cyan);
      box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
    }

    .gallery-certificates {
      background: rgba(0, 0, 0, 0.6);
      border-radius: 2rem;
      padding: 2rem;
      border: 1px solid var(--neon-cyan);
    }

    .gallery-title { text-align: center; font-size: 1.5rem; margin-bottom: 2rem; }

    .cert-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 1.5rem;
    }

    .cert-card {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid var(--neon-cyan);
      border-radius: 16px;
      overflow: hidden;
      transition: 0.3s;
      cursor: pointer;
    }

    .cert-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

    .cert-card:hover {
      border-color: var(--neon-pink);
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(255, 45, 117, 0.3);
    }

    .perfil-premium {
      background: rgba(0, 0, 0, 0.7);
      border-radius: 2rem;
      padding: 2rem;
      border: 1px solid var(--neon-purple);
    }

    .link-strip {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      margin-top: 1.5rem;
    }

    .link-badge-icon {
      background: rgba(0, 0, 0, 0.6);
      padding: 0.5rem 1.2rem;
      border-radius: 40px;
      border: 1px solid var(--neon-cyan);
      transition: 0.3s;
      cursor: pointer;
    }

    .link-badge-icon:hover {
      background: var(--neon-cyan);
      color: #000;
      transform: translateY(-2px);
    }

    /* BOOKS SECTION */
    .nq-books-section {
      padding: 80px 5%;
      background: radial-gradient(circle at 30% 20%, rgba(0, 20, 40, 0.8), #000);
      text-align: center;
    }

    .nq-books-title {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .nq-books-sub { color: #aaa; margin-bottom: 30px; }

    .nq-books-video {
      max-width: 850px;
      margin: 0 auto 40px;
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid var(--neon-cyan);
      box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
    }

    .nq-books-video iframe { width: 100%; height: 420px; border: none; }

    .nq-books-carousel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
    }

    .nq-books-carousel {
      display: flex;
      gap: 25px;
      overflow-x: auto;
      scroll-behavior: smooth;
      padding: 20px;
      scrollbar-width: thin;
      scrollbar-color: var(--neon-cyan) #1e2a3a;
    }

    .nq-books-carousel::-webkit-scrollbar        { height: 6px; }
    .nq-books-carousel::-webkit-scrollbar-track  { background: #1e2a3a; border-radius: 10px; }
    .nq-books-carousel::-webkit-scrollbar-thumb  { background: var(--neon-cyan); border-radius: 10px; }

    .nq-books-card {
      min-width: 220px;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(12px);
      border-radius: 24px;
      padding: 15px;
      border: 1px solid var(--neon-cyan);
      transition: 0.3s;
    }

    .nq-books-card img { width: 100%; border-radius: 16px; margin-bottom: 10px; }

    .nq-books-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: var(--neon-pink);
      box-shadow: 0 0 40px rgba(180, 0, 255, 0.4);
    }

    .nq-books-stars { color: #f5b50a; }

    .nq-books-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.8);
      border: 1px solid var(--neon-cyan);
      width: 45px;
      height: 45px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      color: var(--neon-cyan);
      transition: 0.3s;
      z-index: 2;
    }

    .nq-books-nav:hover {
      background: var(--neon-cyan);
      color: #000;
      transform: translateY(-50%) scale(1.05);
    }

    .nq-books-prev { left: -10px; }
    .nq-books-next { right: -10px; }

    /* SESSION SECTION */
    .nq-session-section {
      padding: 80px 5%;
      background: radial-gradient(circle at 20% 20%, rgba(0, 20, 40, 0.6), #05050a);
    }

    .nq-session-container { max-width: 1100px; margin: 0 auto; }

    .nq-session-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .nq-session-card {
      display: flex;
      gap: 40px;
      align-items: center;
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(16px);
      border-radius: 32px;
      padding: 2rem;
      border: 1px solid var(--neon-purple);
      transition: 0.3s;
    }

    .nq-session-card:hover {
      border-color: var(--neon-cyan);
      box-shadow: 0 0 50px rgba(0, 243, 255, 0.2);
    }

    .nq-session-image img { width: 100%; max-width: 400px; border-radius: 24px; }
    .nq-session-content { text-align: left; }
    .nq-session-content h3 { color: var(--neon-cyan); margin-bottom: 15px; }
    .nq-session-content ul { list-style: none; padding: 0; }

    .nq-session-content li {
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
    }

    .nq-session-content li::before {
      content: "⚡";
      position: absolute;
      left: 0;
      color: var(--neon-pink);
    }

    .nq-session-btn {
      margin-top: 20px;
      padding: 12px 30px;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      border: none;
      border-radius: 40px;
      font-weight: 700;
      color: #000;
      cursor: pointer;
      transition: 0.3s;
    }

    .nq-session-btn:hover {
      transform: scale(1.02);
      box-shadow: 0 0 20px var(--neon-cyan);
    }

    /* TIPOS DE INTERVENÇÃO */
    .ti-section {
      padding: 60px 20px;
      background: radial-gradient(circle at top, #0a0a1a, #000);
      text-align: center;
    }

    .ti-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .ti-cards { display: flex; gap: 25px; justify-content: center; flex-wrap: wrap; }

    .ti-card {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(10px);
      border: 1px solid var(--neon-cyan);
      border-radius: 20px;
      padding: 25px;
      width: 300px;
      text-align: left;
      transition: 0.3s;
    }

    .ti-card:hover {
      border-color: var(--neon-pink);
      transform: translateY(-8px);
      box-shadow: 0 0 30px rgba(255, 45, 117, 0.3);
    }

    .ti-card-title { color: var(--neon-cyan); margin-bottom: 15px; }
    .ti-list { list-style: none; padding: 0; }

    .ti-list li {
      margin-bottom: 12px;
      padding-left: 20px;
      position: relative;
    }

    .ti-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: var(--neon-pink);
    }

    /* LUXQ TABS */
    .luxq-section {
      background: radial-gradient(circle at top, #020617, #000);
      padding: 80px 20px;
    }

    .luxq-tabs {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .luxq-tab {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid var(--neon-cyan);
      border-radius: 40px;
      padding: 10px 24px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      color: #ddd;
    }

    .luxq-tab.active,
    .luxq-tab:hover {
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      color: #000;
      box-shadow: 0 0 20px var(--neon-cyan);
    }

    .luxq-content { display: none; max-width: 1100px; margin: auto; animation: fadeUp 0.4s ease;  }
    .luxq-content.active { display: block; justify-items: center !important; }

    .luxq-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
      justify-content: center !important;
      margin-bottom: 30px;
    }

    .luxq-card {
      width: 320px;
      border-radius: 20px;
      overflow: hidden;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid var(--neon-purple);
      transition: 0.3s;
    }

    .luxq-card iframe,
    .luxq-card img { width: 100%; height: 200px; object-fit: cover; }

    .luxq-card:hover { transform: translateY(-6px); border-color: var(--neon-cyan); }

    .luxq-content p {
      max-width: 900px;
      margin: 20px auto;
      line-height: 1.8;
      color: #cbd5f5;
      text-align: center;
    }

    .luxq-content h3 {
      margin-top: 40px;
      text-align: center;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .luxq-testimonial {
      background: rgba(0, 0, 0, 0.5);
      border-left: 4px solid var(--neon-pink);
      border-radius: 20px;
      padding: 20px;
      margin: 20px auto;
      max-width: 800px;
    }

    .luxq-testimonial h5 { color: var(--neon-cyan); margin-bottom: 10px; }

    /* TI LUX SECTION */
    .ti-lux-section {
      padding: 80px 20px;
      background: radial-gradient(circle at top, #020617, #000);
      text-align: center;
    }

    .ti-lux-icon img {
      height: 200px;
      width: auto;
      margin-bottom: 20px;
      filter: drop-shadow(0 0 15px var(--neon-cyan));
    }

    .ti-lux-title span {
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .ti-lux-video {
      max-width: 999px;
      margin: 20px auto;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid var(--neon-cyan);
      display: flex;
      gap: 23px;
    }

    .ti-lux-video iframe { width: 100%; height: 280px; border: none; }
    .ti-lux-text { max-width: 800px; margin: 20px auto; color: #cbd5f5; }

    .ti-lux-btn {
      display: inline-block;
      padding: 12px 28px;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      border-radius: 40px;
      text-decoration: none;
      color: #000;
      font-weight: 700;
      margin-top: 20px;
    }

    .ti-lux-box {
      max-width: 850px;
      margin: 40px auto 0;
      padding: 25px;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 20px;
      border: 1px solid var(--neon-cyan);
    }

    /* PREMIUM TABS */
    .premium-tabs-section {
      padding: 80px 5%;
      background: radial-gradient(circle at 20% 30%, #0b1120, #03060c);
    }

    .section-header h2 {
      text-align: center;
      font-size: 2rem;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .premium-tabs-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
      margin: 2rem 0;
    }

    .premium-tab-btn {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid var(--neon-cyan);
      padding: 0.8rem 2rem;
      border-radius: 40px;
      font-weight: 600;
      color: #ddd;
      cursor: pointer;
      transition: 0.3s;
    }

    .premium-tab-btn.active,
    .premium-tab-btn:hover {
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      color: #000;
      box-shadow: 0 0 20px var(--neon-cyan);
    }

    .premium-tab-content { display: none; animation: fadeUp 0.3s; }
    .premium-tab-content.active { display: block; }

    .premium-card {
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(16px);
      border-radius: 28px;
      padding: 2rem;
      border: 1px solid var(--neon-purple);
    }

    .premium-title {
      font-size: 1.6rem;
      background: linear-gradient(120deg, var(--neon-cyan), var(--neon-pink));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .premium-text { color: #cbd5f5; line-height: 1.6; margin-bottom: 1rem; }

    .premium-images { display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 1.5rem 0; }

    .premium-images img {
      max-width: 260px;
      border-radius: 20px;
      border: 1px solid var(--neon-cyan);
      transition: 0.3s;
      height: 140px;
    }

    .premium-images img:hover {
      transform: scale(1.02);
      border-color: var(--neon-pink);
    }

    .premium-list { list-style: none; margin-top: 1rem; }

    .premium-list li {
      padding-left: 1.8rem;
      position: relative;
      margin-bottom: 0.8rem;
      color: #cbd5f5;
    }

    .premium-list li::before { content: "✦"; position: absolute; left: 0; color: var(--neon-cyan); }

    /* =====================
       COURSES SECTION
    ===================== */
    .courses-section {
      padding: 80px 5%;
      background: radial-gradient(circle at 60% 20%, rgba(0, 20, 50, 0.8), #000);
    }

    .courses-section .section-main-title {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green), var(--neon-purple));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.5rem;
    }

    .courses-section .section-subtitle {
      text-align: center;
      color: #aaa;
      margin-bottom: 2rem;
      font-size: 1.1rem;
    }

    .courses-section .contact-info {
      text-align: center;
      margin-bottom: 2rem;
    }

    .courses-section .contact-info h4 {
      margin-bottom: 0.4rem;
      color: #ccc;
    }

    .courses-section .contact-info a {
      color: var(--neon-cyan);
      text-decoration: none;
      transition: 0.3s;
    }

    .courses-section .contact-info a:hover {
      color: var(--neon-pink);
      text-shadow: 0 0 8px var(--neon-pink);
    }

    .courses-hero-img {
      width: 100%;
      max-height: 340px;
      object-fit: cover;
      border-radius: 20px;
      border: 1px solid var(--neon-cyan);
      box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
      margin-bottom: 2.5rem;
    }

    .courses-feature-img {
      display: block;
      width: 350px;
      height: 254px;
      object-fit: cover;
      border-radius: 15px;
      border: 1px solid var(--neon-purple);
      box-shadow: 0 0 20px rgba(180, 0, 255, 0.25);
      margin: 0 auto 2.5rem;
    }

    /* Modern Accordion */
    .modern-accordion { display: flex; flex-direction: column; gap: 1rem; }

    .accordion-item {
      background: rgba(0, 0, 0, 0.6);
      border: 1px solid var(--neon-cyan);
      border-radius: 20px;
      overflow: hidden;
      transition: 0.3s;
    }

    .accordion-item:hover { border-color: var(--neon-purple); }

    .accordion-header { margin: 0; }

    .accordion-button {
      width: 100%;
      text-align: left;
      background: rgba(0, 243, 255, 0.05);
      border: none;
      padding: 1.2rem 1.5rem;
      font-size: 1rem;
      font-weight: 700;
      color: var(--neon-cyan);
      font-family: 'Plus Jakarta Sans', sans-serif;
      cursor: pointer;
      transition: 0.3s;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-button::after {
      content: '▼';
      font-size: 0.8rem;
      transition: 0.3s;
      color: var(--neon-pink);
    }

    .accordion-button.collapsed::after { transform: rotate(-90deg); }

    .accordion-button:hover {
      background: rgba(0, 243, 255, 0.12);
      color: #fff;
    }

    .accordion-collapse { overflow: hidden; max-height: 2000px; transition: max-height 0.5s ease; }
    .accordion-collapse.collapse:not(.show) { max-height: 0; }

    .accordion-body {
      padding: 1.5rem;
      color: #cbd5f5;
      line-height: 1.7;
    }

    .accordion-body h3 {
      color: var(--neon-cyan);
      margin-bottom: 0.8rem;
      font-size: 1.2rem;
    }

    .accordion-body h4 {
      color: var(--neon-pink);
      margin: 1.2rem 0 0.5rem;
      font-size: 1rem;
    }

    .accordion-body .highlight { color: var(--neon-cyan); font-weight: 600; }

    .video-wrapper-modern {
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid var(--neon-cyan);
      height: 280px;
      margin: 1rem 0;
    }

    .modern-list { list-style: none; padding: 0; margin-top: 0.8rem; }
    .modern-list li { padding-left: 1.6rem; position: relative; margin-bottom: 0.6rem; }
    .modern-list li::before { content: "◆"; position: absolute; left: 0; color: var(--neon-cyan); font-size: 0.7rem; top: 4px; }

    .external-link {
      color: var(--neon-cyan);
      text-decoration: none;
      border-bottom: 1px dashed var(--neon-cyan);
      transition: 0.3s;
    }

    .external-link:hover { color: var(--neon-pink); border-color: var(--neon-pink); }

    /* =====================
       ART SECTION
    ===================== */
    .art-section {
      padding: 80px 5%;
      background: radial-gradient(circle at 80% 50%, rgba(20, 0, 40, 0.8), #000);
    }

    .art-section .section-main-title {
      text-align: center;
      font-size: 2.4rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple), var(--neon-cyan));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 2rem;
    }

    .art-layout { display: flex; gap: 30px; max-width: 1280px; margin: 0 auto; }

    .art-nav-col { width: 240px; flex-shrink: 0; }

    .modern-vertical-nav {
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .modern-vertical-nav .nav-link {
      display: block;
      padding: 0.9rem 1.4rem;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(0, 243, 255, 0.3);
      border-radius: 14px;
      color: #aaa;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
      text-decoration: none;
      font-size: 0.9rem;
    }

    .modern-vertical-nav .nav-link:hover,
    .modern-vertical-nav .nav-link.active {
      background: linear-gradient(135deg, rgba(0, 243, 255, 0.15), rgba(180, 0, 255, 0.15));
      border-color: var(--neon-cyan);
      color: var(--neon-cyan);
      box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
    }

    .art-content-col { flex: 1; }

    .modern-tab-content { position: relative; }

    .art-tab-pane { display: none; animation: fadeUp 0.4s ease; }
    .art-tab-pane.active { display: block; }

    .art-tab-pane h3 {
      font-size: 1.4rem;
      color: var(--neon-cyan);
      margin-bottom: 1.2rem;
    }

    .art-tab-pane h3 a { color: inherit; text-decoration: none; transition: 0.3s; }
    .art-tab-pane h3 a:hover { color: var(--neon-pink); }

    .art-tab-pane img {
      width: auto;
    height: 200px;
    object-fit: cover;
      border-radius: 20px;
      border: 1px solid var(--neon-purple);
      box-shadow: 0 0 25px rgba(180, 0, 255, 0.2);
      margin-bottom: 1.2rem;
      transition: 0.3s;
    }

    .art-tab-pane img:hover { border-color: var(--neon-cyan); box-shadow: 0 0 30px rgba(0, 243, 255, 0.3); }

    .art-tab-pane p { color: #cbd5f5; line-height: 1.8; margin-bottom: 1rem; }

    /* =====================
       UNIVERSITY SECTION
    ===================== */
    .university-section {
      padding: 80px 5%;
      background: radial-gradient(circle at 10% 80%, rgba(0, 10, 30, 0.9), #000);
    }

    .university-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .university-header h1 {
      font-size: 2.6rem;
      font-weight: 800;
      color: #fff;
      margin-bottom: 0.8rem;
    }

    .university-header h1 span {
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-tagline {
      color: #aaa;
      font-size: 1rem;
      margin-bottom: 0.6rem;
      letter-spacing: 0.04em;
    }

    .lang-badge {
      display: inline-block;
      background: rgba(0, 243, 255, 0.1);
      border: 1px solid var(--neon-cyan);
      padding: 0.4rem 1.2rem;
      border-radius: 40px;
      color: var(--neon-cyan);
      font-size: 0.85rem;
    }

    .university-intro {
      max-width: 900px;
      margin: 0 auto 3rem;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(0, 243, 255, 0.2);
      border-radius: 20px;
      padding: 1.5rem 2rem;
      color: #cbd5f5;
      line-height: 1.8;
      text-align: center;
    }

    .university-intro strong { color: var(--neon-cyan); }

    .course-category {
      margin-bottom: 3rem;
      background: rgba(0, 0, 0, 0.4);
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(0, 243, 255, 0.15);
    }

    .category-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 1rem 1.5rem;
      background: linear-gradient(90deg, rgba(0, 243, 255, 0.1), rgba(180, 0, 255, 0.1));
      border-bottom: 1px solid rgba(0, 243, 255, 0.2);
    }

    .category-header i { color: var(--neon-cyan); font-size: 1.2rem; }

    .category-header span {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--neon-cyan);
    }

    .courses-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.2rem;
      padding: 1.5rem;
    }

    .course-card {
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(0, 243, 255, 0.2);
      border-radius: 16px;
      overflow: hidden;
      transition: 0.3s;
    }

    .course-card:hover {
      border-color: var(--neon-cyan);
      transform: translateY(-4px);
      box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
    }

    .course-header {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 0.9rem 1.2rem;
      background: rgba(0, 243, 255, 0.05);
      border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    }

    .course-code {
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      color: #000;
      font-weight: 800;
      font-size: 0.75rem;
      padding: 0.3rem 0.7rem;
      border-radius: 8px;
      flex-shrink: 0;
    }

    .course-title { font-size: 0.95rem; font-weight: 700; color: #e0e0e0; margin: 0; }

    .course-description {
      padding: 0.9rem 1.2rem;
      color: #aaa;
      font-size: 0.88rem;
      line-height: 1.6;
    }

    .course-description p { margin: 0; }

    .university-footer {
      text-align: center;
      margin-top: 3rem;
      padding: 1.5rem 2rem;
      background: rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(0, 243, 255, 0.2);
      border-radius: 20px;
      color: #aaa;
      line-height: 1.8;
    }

    .university-footer i { color: var(--neon-cyan); }
    .university-footer .small { font-size: 0.85rem; color: #666; margin-top: 0.5rem; }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      .profile-card,
      .nq-session-card  { flex-direction: column; text-align: center; }
      .profile-left     { width: 100%; }
      .main-video iframe { width: 100%; height: 250px; }
      .nq-books-nav     { display: none; }
      .header           { flex-direction: column; }
      .ti-lux-video     { flex-direction: column; }
      #subimgside       { height: 287px; width: auto !important; }
      .art-layout       { flex-direction: column; }
      .art-nav-col      { width: 100%; }
      .modern-vertical-nav { flex-direction: row; flex-wrap: wrap; }
      .university-header h1 { font-size: 1.8rem; }
    }

    #subimgside { height: 287px; width: 100%; }

 /* ══════════════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════════════ */
    .contact-section {
      padding: 80px 5% 100px;
      max-width: 820px;
      margin: 0 auto;
    }
 
    /* ══════════════════════════════════════
       HEADING
    ══════════════════════════════════════ */
    .contact-heading {
      text-align: center;
      margin-bottom: 48px;
    }
 
    .contact-heading .eyebrow {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--neon-cyan);
      display: block;
      margin-bottom: 12px;
    }
 
    .contact-heading h1 {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 800;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      line-height: 1.15;
      margin-bottom: 14px;
    }
 
    .contact-heading p {
      color: #aaa;
      font-size: 1rem;
      max-width: 500px;
      margin: 0 auto;
      line-height: 1.6;
    }
 
    /* Decorative divider */
    .neon-divider {
      width: 80px;
      height: 2px;
      background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
      margin: 18px auto 0;
      border-radius: 2px;
      box-shadow: 0 0 10px var(--neon-cyan);
    }
 
    /* ══════════════════════════════════════
       CARD / GLASS PANEL
    ══════════════════════════════════════ */
    .contact-card {
      background: var(--card-glass);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid var(--border-glow);
      border-radius: 32px;
      padding: 48px 52px;
      box-shadow: var(--shadow-neon);
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, box-shadow 0.4s;
    }
 
    /* Corner accent */
    .contact-card::before {
      content: '';
      position: absolute;
      top: 0; right: 0;
      width: 200px; height: 200px;
      background: radial-gradient(circle at top right, rgba(180,0,255,0.12), transparent 70%);
      pointer-events: none;
    }
    .contact-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 160px; height: 160px;
      background: radial-gradient(circle at bottom left, rgba(0,243,255,0.08), transparent 70%);
      pointer-events: none;
    }
 
    .contact-card:hover {
      border-color: rgba(180, 0, 255, 0.5);
      box-shadow: 0 0 40px rgba(180, 0, 255, 0.25), 0 0 80px rgba(0, 243, 255, 0.12);
    }
 
    /* ══════════════════════════════════════
       FORM GRID
    ══════════════════════════════════════ */
    .cf7-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }
 
    .cf7-form .field-full { grid-column: 1 / -1; }
 
    /* ══════════════════════════════════════
       FIELD GROUP
    ══════════════════════════════════════ */
    .field-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
 
    .field-group label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--neon-cyan);
      display: flex;
      align-items: center;
      gap: 7px;
    }
 
    .field-group label i {
      font-size: 0.75rem;
      opacity: 0.8;
    }
 
    /* ══════════════════════════════════════
       INPUTS & TEXTAREA
    ══════════════════════════════════════ */
    .field-group input,
    .field-group textarea,
    .field-group select {
      width: 100%;
      background: rgba(0, 0, 0, 0.55);
      border: 1px solid rgba(0, 243, 255, 0.25);
      border-radius: 14px;
      padding: 14px 18px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 0.95rem;
      color: #e0e0e0;
      outline: none;
      transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
      -webkit-appearance: none;
    }
 
    .field-group input::placeholder,
    .field-group textarea::placeholder {
      color: rgba(255,255,255,0.22);
    }
 
    .field-group input:focus,
    .field-group textarea:focus,
    .field-group select:focus {
      border-color: var(--neon-cyan);
      background: rgba(0, 243, 255, 0.04);
      box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.12), 0 0 18px rgba(0, 243, 255, 0.15);
    }
 
    .field-group textarea {
      min-height: 140px;
      resize: vertical;
    }
 
    /* Select arrow */
    .field-group select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f3ff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 16px center;
      padding-right: 44px;
      cursor: pointer;
    }
 
    .field-group select option {
      background: #0a0a1a;
      color: #e0e0e0;
    }
 
    /* ══════════════════════════════════════
       SUBMIT BUTTON
    ══════════════════════════════════════ */
    .cf7-submit-wrap {
      grid-column: 1 / -1;
      display: flex;
      justify-content: center;
      margin-top: 8px;
    }
 
    .btn-submit {
      position: relative;
      background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
      border: none;
      padding: 15px 52px;
      border-radius: 50px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: #000;
      cursor: pointer;
      letter-spacing: 0.05em;
      transition: transform 0.25s, box-shadow 0.25s;
      box-shadow: 0 0 20px rgba(0, 243, 255, 0.45), 0 0 40px rgba(180,0,255,0.25);
      overflow: hidden;
    }
 
    .btn-submit::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
      opacity: 0;
      transition: opacity 0.25s;
    }
 
    .btn-submit:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 0 35px rgba(0, 243, 255, 0.65), 0 0 70px rgba(180,0,255,0.45);
    }
 
    .btn-submit:hover::before { opacity: 1; }
 
    .btn-submit:active { transform: translateY(0) scale(0.99); }
 
    .btn-submit i { margin-right: 8px; }
 
    /* ══════════════════════════════════════
       CONTACT INFO STRIP
    ══════════════════════════════════════ */
    .contact-strip {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 36px;
    }
 
    .contact-chip {
      display: flex;
      align-items: center;
      gap: 9px;
      background: rgba(0,0,0,0.5);
      border: 1px solid rgba(0,243,255,0.2);
      border-radius: 40px;
      padding: 9px 18px;
      font-size: 0.85rem;
      color: #bbb;
      text-decoration: none;
      transition: 0.3s;
    }
 
    .contact-chip i { color: var(--neon-cyan); font-size: 0.9rem; }
 
    .contact-chip:hover {
      border-color: var(--neon-cyan);
      color: var(--neon-cyan);
      box-shadow: 0 0 14px rgba(0,243,255,0.2);
      transform: translateY(-2px);
    }
 
    /* ══════════════════════════════════════
       CF7 SUCCESS / ERROR STATES
       (matches Contact Form 7 output classes)
    ══════════════════════════════════════ */
    .wpcf7-response-output {
      margin-top: 20px;
      padding: 14px 20px;
      border-radius: 12px;
      font-size: 0.9rem;
      font-weight: 600;
      text-align: center;
    }
 
    /* CF7 success */
    .wpcf7-mail-sent-ok,
    .wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
      background: rgba(0, 255, 136, 0.1);
      border: 1px solid var(--neon-green);
      color: var(--neon-green);
    }
 
    /* CF7 error */
    .wpcf7-validation-errors,
    .wpcf7-spam-blocked,
    .wpcf7-mail-sent-ng,
    .wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
      background: rgba(255, 45, 117, 0.1);
      border: 1px solid var(--neon-pink);
      color: var(--neon-pink);
    }
 
    /* CF7 field error highlight */
    .wpcf7-not-valid {
      border-color: var(--neon-pink) !important;
      box-shadow: 0 0 0 3px rgba(255,45,117,0.15) !important;
    }
 
    .wpcf7-not-valid-tip {
      font-size: 0.75rem;
      color: var(--neon-pink);
      margin-top: 4px;
      display: block;
    }
 
    /* CF7 spinner */
    .wpcf7-spinner {
      display: inline-block;
      margin-left: 12px;
      width: 18px;
      height: 18px;
      border: 2px solid rgba(0,0,0,0.3);
      border-top-color: #000;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      vertical-align: middle;
    }
 
    @keyframes spin { to { transform: rotate(360deg); } }
 
    /* ══════════════════════════════════════
       REQUIRED STAR
    ══════════════════════════════════════ */
    .req { color: var(--neon-pink); margin-left: 2px; }
 
    /* ══════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════ */
    @media (max-width: 620px) {
      .cf7-form { grid-template-columns: 1fr; }
      .cf7-form .field-full { grid-column: 1; }
      .contact-card { padding: 32px 24px; }
    }

/* ========================================
   1. RESET & BASE
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, #0f0c1f, #000000);
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        45deg,
        rgba(0, 243, 255, 0.02) 0px,
        rgba(0, 243, 255, 0.02) 2px,
        transparent 2px,
        transparent 8px
    );
    pointer-events: none;
    z-index: -1;
}

:root {
    --neon-cyan: #00f3ff;
    --neon-purple: #b400ff;
    --neon-pink: #ff2d75;
    --neon-green: #00ff88;
    --card-glass: rgba(5, 5, 15, 0.75);
    --border-glow: rgba(0, 243, 255, 0.5);
    --shadow-neon: 0 0 20px rgba(0, 243, 255, 0.3), 0 0 40px rgba(180, 0, 255, 0.2);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: 0.3s ease;
}

a:hover {
    color: var(--neon-pink);
}

/* ========================================
   2. UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.section-padding {
    padding: 60px 20px;
}

/* ========================================
   3. TAB CONTENT
   ======================================== */
.tab-content {
    display: none;
    text-align: left;
}

.tab-content.active {
    display: block;
}

/* ========================================
   4. ACCORDION
   ======================================== */
.accordion-collapse {
    display: none;
}

.accordion-collapse.show {
    display: block;
}

.accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

.accordion-button::after {
    content: '▼';
    font-size: 0.8rem;
    transition: 0.3s ease;
    color: var(--neon-pink);
}

/* ========================================
   5. ART TAB
   ======================================== */
.art-tab-pane {
    display: none;
    text-align: left;
}

.art-tab-pane.active {
    display: block;
}

/* ========================================
   6. PREMIUM TAB
   ======================================== */
.premium-tab-content {
    display: none;
    text-align: left;
}

.premium-tab-content.active {
    display: block;
}

/* ========================================
   7. LUXQ TAB
   ======================================== */
.luxq-content {
    display: none;
    text-align: center !important;
	justify-items: center !important;
}

.luxq-content.active {
    display: block;
}

/* ========================================
   8. CAROUSEL
   ======================================== */
.nq-books-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 10px;
    scrollbar-width: thin;
    cursor: grab;
    justify-content: flex-start;
}

.nq-books-carousel:active {
    cursor: grabbing;
}

.nq-books-carousel::-webkit-scrollbar {
    height: 6px;
}

.nq-books-carousel::-webkit-scrollbar-track {
    background: #1e2a3a;
    border-radius: 10px;
}

.nq-books-carousel::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 10px;
}

.nq-books-card {
    flex: 0 0 220px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 15px;
    border: 1px solid var(--neon-cyan);
    text-align: center;
    transition: 0.3s ease;
    cursor: pointer;
    scroll-snap-align: start;
}

.nq-books-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(180, 0, 255, 0.4);
}

.nq-books-card img {
    width: 100%;
    aspect-ratio: 2 / 2.3;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin: 0 auto 10px;
}

.nq-books-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e0e0e0;
    margin: 8px 0 6px;
    line-height: 1.3;
    min-height: 2.5rem;
    text-align: center;
}

.nq-books-stars {
    font-size: 1rem;
    letter-spacing: 2px;
    color: #f5b342;
    text-align: center;
}

/* ========================================
   9. MODAL
   ======================================== */
.book-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1a1a2e;
    max-width: 550px;
    width: 92%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    overflow: hidden;
    animation: modalFadeIn 0.25s ease;
    text-align: left;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    background: rgba(0, 0, 0, 0.6);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--neon-cyan);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--neon-cyan);
    text-align: left;
}

.close-modal {
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #aaa;
    transition: 0.3s ease;
}

.close-modal:hover {
    color: var(--neon-pink);
}

.modal-body {
    padding: 24px;
    text-align: left;
}

.modal-book-cover {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.modal-book-cover img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.modal-title-meta {
    flex: 1;
    text-align: left;
}

.modal-title-meta h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: #e0e0e0;
    text-align: left;
}

.modal-stars {
    color: #f5b342;
    text-align: left;
}

.summary-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #cbd5f5;
    padding: 16px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--neon-cyan);
    text-align: left;
}

/* ========================================
   10. CAROUSEL NAVIGATION
   ======================================== */
.nq-books-carousel-wrapper {
    position: relative;
    padding: 0 40px;
}

.nq-books-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid var(--neon-cyan);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--neon-cyan);
    transition: 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nq-books-nav:hover {
    background: var(--neon-cyan);
    color: #000;
}

.nq-books-prev {
    left: 0;
}

.nq-books-next {
    right: 0;
}

/* ========================================
   11. TAGS
   ======================================== */
.tags {
    margin-top: 20px !important;
    margin-left: 0 !important;
    text-align: left;
}

.taged {
    margin-left: 20px !important;
}

/* ========================================
   12. COURSES HERO
   ======================================== */
.courses-hero-img-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

/* ========================================
   13. PROFILE SECTION
   ======================================== */
.profile-section {
    padding: 40px 20px;
}

.profile-card {
    display: flex;
    gap: 40px;
    background: var(--card-glass);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 1280px;
    margin: 0 auto;
    border: 1px solid var(--neon-cyan);
    box-shadow: var(--shadow-neon);
    transition: 0.4s ease;
    text-align: left;
}

.profile-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 40px rgba(255, 45, 117, 0.3);
}

.profile-left {
    width: 280px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    flex-shrink: 0;
}

.profile-left img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--neon-pink);
    margin: 0 auto 16px;
}

.profile-left h2 {
    font-size: 1.6rem;
    color: gold;
    margin-bottom: 4px;
    text-align: center;
}

.profile-left p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 12px;
    text-align: center;
}

.tag {
    background: rgba(0, 243, 255, 0.15);
    color: var(--neon-cyan);
    padding: 4px 16px;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.85rem;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.profile-right {
    flex: 1;
    text-align: left;
}

.profile-right h3 {
    font-size: 1.6rem;
    color: var(--neon-cyan);
    margin-bottom: 4px;
    text-align: left;
}

.profile-right .sub {
    color: #aaa;
    font-size: 0.95rem;
    text-align: left;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple), transparent);
    margin: 16px 0;
}

.profile-right h4 {
    color: var(--neon-pink);
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: left;
}

.profile-right ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.profile-right ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    color: #cbd5f5;
    font-size: 0.92rem;
    text-align: left;
}

.profile-right ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

.tags span {
    background: rgba(180, 0, 255, 0.15);
    border: 1px solid var(--neon-purple);
    padding: 4px 14px;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.8rem;
    color: #ddd;
    margin: 4px 4px 4px 0;
}

.profile-quote {
    font-family: 'Space Grotesk', monospace;
    border-left: 4px solid var(--neon-pink);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    padding: 16px 28px;
    border-radius: 60px;
    margin: 24px auto 0;
    max-width: 880px;
    text-align: center;
    color: #cbd5f5;
    font-size: 0.95rem;
}

/* ========================================
   14. MEDIA SECTION
   ======================================== */
.media-section {
    padding: 10px 20px !important;
    background: #05080f;
}

.media-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 28px;
    color: #e0e0e0;
}

.media-section .container {
    text-align: left;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.tab-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-cyan);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.logo {
    display: flex;
    justify-content: center;
    margin: 20px 0 30px;
}

.logo img {
    width: 180px;
    height: 250px;
    border-radius: 10%;
    object-fit: cover;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 0 40px rgba(0, 243, 255, 0.5);
    animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
    0%   { border-color: var(--neon-cyan);   box-shadow: 0 0 20px var(--neon-cyan); }
    50%  { border-color: var(--neon-purple); box-shadow: 0 0 40px var(--neon-purple); }
    100% { border-color: var(--neon-cyan);   box-shadow: 0 0 20px var(--neon-cyan); }
}

.main-video {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.main-video iframe {
    width: 70%;
    height: 380px;
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    text-align: left;
}

.video-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-purple);
    transition: 0.3s ease;
}

.video-card iframe {
    width: 100%;
    height: 180px;
    border: none;
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

/* ========================================
   15. GALLERY CERTIFICATES
   ======================================== */
.gallery-certificates {
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--neon-cyan);
    text-align: left;
}

.gallery-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    color: #e0e0e0;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.cert-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: 0.3s ease;
    cursor: pointer;
}

.cert-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.cert-card:hover {
    border-color: var(--neon-pink);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 45, 117, 0.2);
}

/* ========================================
   16. PERFIL PREMIUM
   ======================================== */
.perfil-premium {
    background: rgba(0, 0, 0, 0.7);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid var(--neon-purple);
    text-align: left;
}

.perfil-premium p {
    color: #cbd5f5;
    margin-bottom: 12px;
    line-height: 1.7;
    text-align: left;
}

.link-strip {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.link-badge-icon {
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 40px;
    border: 1px solid var(--neon-cyan);
    transition: 0.3s ease;
    color: #ddd;
    font-size: 0.9rem;
}

.link-badge-icon:hover {
    background: var(--neon-cyan);
    color: #000;
    transform: translateY(-2px);
}

/* ========================================
   17. BOOKS SECTION
   ======================================== */
.nq-books-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at 30% 20%, rgba(0, 20, 40, 0.8), #000);
    text-align: center;
}

.nq-books-container {
    max-width: 1280px;
    margin: 0 auto;
}

.nq-books-title {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 8px;
    text-align: center;
}

.nq-books-sub {
    color: #aaa;
    margin-bottom: 28px;
    font-size: 1rem;
    text-align: center;
}

.nq-books-video {
    max-width: 850px;
    margin: 0 auto 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.nq-books-video iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ========================================
   18. SESSION SECTION
   ======================================== */
.nq-session-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at 20% 20%, rgba(0, 20, 40, 0.6), #05050a);
}

.nq-session-container {
    max-width: 1100px;
    margin: 0 auto;
}

.nq-session-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.nq-session-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--neon-purple);
    transition: 0.3s ease;
    text-align: left;
}

.nq-session-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 50px rgba(0, 243, 255, 0.15);
}

.nq-session-image {
    flex: 0 0 40%;
}

.nq-session-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-md);
    margin: 0 auto;
}

.nq-session-content {
    flex: 1;
    text-align: left;
}

.nq-session-content h3 {
    color: var(--neon-cyan);
    margin-bottom: 16px;
    font-size: 1.3rem;
    text-align: left;
}

.nq-session-content ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.nq-session-content li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #cbd5f5;
    text-align: left;
}

.nq-session-content li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
}

.nq-session-btn {
    margin-top: 20px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    border-radius: 40px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 0.95rem;
}

.nq-session-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 243, 255, 0.4);
}

/* ========================================
   19. TIPOS DE INTERVENÇÃO
   ======================================== */
.ti-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at top, #0a0a1a, #000);
    text-align: center;
}

.ti-title {
    font-size: 2rem;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center;
}

.ti-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.ti-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    padding: 24px;
    width: 300px;
    text-align: left;
    transition: 0.3s ease;
}

.ti-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(255, 45, 117, 0.2);
}

.ti-card-title {
    color: var(--neon-cyan);
    margin-bottom: 12px;
    font-size: 1.05rem;
    text-align: left;
}

.ti-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.ti-list li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    color: #cbd5f5;
    font-size: 0.92rem;
    text-align: left;
}

.ti-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
}

/* ========================================
   20. LUXQ TABS
   ======================================== */
.luxq-section {
    background: radial-gradient(circle at top, #020617, #000);
    padding: 10px 20px !important;
}

.luxq-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.luxq-tab {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-cyan);
    border-radius: 40px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    color: #ddd;
    font-size: 0.9rem;
}

.luxq-tab.active,
.luxq-tab:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.luxq-content {
    display: none;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
	justify-items: center !important;
	justify-content: center !important;
}

.luxq-content.active {
    display: block;
	justify-items:center !important;
}

.luxq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    margin-bottom: 24px;
}

.luxq-card {
    width: 320px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--neon-purple);
    transition: 0.3s ease;
}

.luxq-card iframe,
.luxq-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.luxq-card:hover {
    transform: translateY(-4px);
    border-color: var(--neon-cyan);
}

.luxq-content p {
    max-width: 900px;
    margin: 16px 0;
    line-height: 1.8;
    color: #cbd5f5;
    text-align: center;
}

.luxq-content h3 {
    margin-top: 32px;
    text-align: center;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1.3rem;
}

.luxq-testimonial {
    background: rgba(0, 0, 0, 0.5);
    border-left: 4px solid var(--neon-pink);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    margin: 16px 0;
    max-width: 800px;
    text-align: left;
}

.luxq-testimonial h5 {
    color: var(--neon-cyan);
    margin-bottom: 6px;
    font-size: 0.95rem;
    text-align: left;
}

.luxq-testimonial p {
    margin: 0 0 4px;
    text-align: left;
}

.luxq-testimonial strong {
    color: var(--neon-pink);
}

/* ========================================
   21. TI LUX SECTION
   ======================================== */
.ti-lux-section {
    padding: 10px 20px !important0;
    background: radial-gradient(circle at top, #020617, #000);
    text-align: center;
}

.ti-lux-icon img {
    height: 160px;
    width: auto;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 15px var(--neon-cyan));
}

.ti-lux-title {
    font-size: 1.8rem;
    color: #e0e0e0;
    margin-bottom: 16px;
    text-align: center;
}

.ti-lux-title span {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.ti-lux-video {
    max-width: 850px;
    margin: 20px auto;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--neon-cyan);
}

.ti-lux-video iframe {
    width: 100%;
    height: 380px;
    border: none;
}

.ti-lux-subtitle {
    color: var(--neon-cyan);
    margin: 20px 0 8px;
    font-size: 1.1rem;
    text-align: center;
}

.ti-lux-text {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #cbd5f5;
    line-height: 1.7;
    text-align: center;
}

.ti-lux-btn {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 40px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    transition: 0.3s ease;
}

.ti-lux-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.4);
    color: #000;
}

.ti-lux-box {
    max-width: 850px;
    margin: 32px auto 0;
    padding: 24px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-cyan);
    text-align: left;
}

.ti-lux-box h4 {
    color: var(--neon-cyan);
    margin-bottom: 8px;
    text-align: left;
}

.ti-lux-box p {
    color: #cbd5f5;
    line-height: 1.7;
    text-align: left;
}

/* ========================================
   22. PREMIUM TABS
   ======================================== */
.premium-tabs-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at 20% 30%, #0b1120, #03060c);
}

.section-header h2 {
    text-align: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-header p {
    text-align: center;
    color: #aaa;
    margin-top: 4px;
}

.premium-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0 28px;
}

.premium-tab-btn {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-cyan);
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s ease;
    font-size: 0.9rem;
}

.premium-tab-btn.active,
.premium-tab-btn:hover {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #000;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.premium-tab-content {
    display: none;
    text-align: left;
}

.premium-tab-content.active {
    display: block;
}

.premium-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--neon-purple);
    text-align: center;
	justify-items:center !important;
}

.premium-title {
    font-size: 1.4rem;
    background: linear-gradient(120deg, var(--neon-cyan), var(--neon-pink));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 12px;
    text-align: center;
}

.premium-text {
    color: #cbd5f5;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
}

.premium-images {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 16px 0;
    justify-content: flex-start;
}

.premium-images img {
    max-width: 240px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--neon-cyan);
    transition: 0.3s ease;
    height: 140px;
    object-fit: cover;
}

.premium-images img:hover {
    border-color: var(--neon-pink);
    transform: scale(1.02);
}

.premium-list {
    list-style: none;
    margin-top: 12px;
    text-align: left;
}

.premium-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
    color: #cbd5f5;
    text-align: left;
}

.premium-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
}

/* ========================================
   23. COURSES SECTION
   ======================================== */
.courses-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at 60% 20%, rgba(0, 20, 50, 0.8), #000);
}

.section-main-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.section-subtitle {
    text-align: center;
    color: #aaa;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.contact-info {
    text-align: center;
    margin-bottom: 24px;
}

.contact-info h4 {
    margin-bottom: 4px;
    color: #ccc;
    font-size: 1rem;
    text-align: center;
}

.contact-info a {
    color: var(--neon-cyan);
    transition: 0.3s ease;
}

.contact-info a:hover {
    color: var(--neon-pink);
}

.courses-hero-img-container {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
    margin-bottom: 24px;
}

.courses-hero-img {
    width: 45%;
    max-height: 300px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.15);
}

.modern-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--neon-cyan);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: 0.3s ease;
    text-align: left;
}

.accordion-item:hover {
    border-color: var(--neon-purple);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    width: 100%;
    text-align: left;
    background: rgba(0, 243, 255, 0.05);
    border: none;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--neon-cyan);
    cursor: pointer;
    transition: 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.accordion-button:hover {
    background: rgba(0, 243, 255, 0.1);
    color: #fff;
}

.accordion-button.collapsed::after {
    transform: rotate(-90deg);
}

.accordion-button::after {
    content: '▼';
    font-size: 0.75rem;
    transition: 0.3s ease;
    color: var(--neon-pink);
}

.accordion-collapse {
    overflow: hidden;
    max-height: 2000px;
    transition: max-height 0.5s ease;
}

.accordion-collapse.collapse:not(.show) {
    max-height: 0;
}

.accordion-body {
    padding: 20px 24px;
    color: #cbd5f5;
    line-height: 1.7;
    text-align: left;
}

.accordion-body h3 {
    color: var(--neon-cyan);
    margin-bottom: 8px;
    font-size: 1.1rem;
    text-align: left;
}

.accordion-body h4 {
    color: var(--neon-pink);
    margin: 16px 0 6px;
    font-size: 1rem;
    text-align: left;
}

.accordion-body .highlight {
    color: var(--neon-cyan);
    font-weight: 600;
}

.video-wrapper-modern {
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--neon-cyan);
    height: 260px;
    margin: 12px 0;
}

.video-wrapper-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modern-list {
    list-style: none;
    padding: 0;
    margin: 8px 0;
    text-align: left;
}

.modern-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
    text-align: left;
}

.modern-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-size: 0.7rem;
    top: 2px;
}

.external-link {
    color: var(--neon-cyan);
    border-bottom: 1px dashed var(--neon-cyan);
    transition: 0.3s ease;
}

.external-link:hover {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
}

/* ========================================
   24. UNIVERSITY SECTION
   ======================================== */
.university-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at 10% 80%, rgba(0, 10, 30, 0.9), #000);
}

.university-header {
    text-align: center;
    margin-bottom: 32px;
}

.university-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-align: center;
}

.university-header h1 span {
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-tagline {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 6px;
    text-align: center;
}

.lang-badge {
    display: inline-block;
    background: rgba(0, 243, 255, 0.1);
    border: 1px solid var(--neon-cyan);
    padding: 4px 16px;
    border-radius: 40px;
    color: var(--neon-cyan);
    font-size: 0.8rem;
}

.university-intro {
    max-width: 900px;
    margin: 0 auto 28px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 20px 28px;
    color: #cbd5f5;
    line-height: 1.8;
    text-align: left;
}

.university-intro strong {
    color: var(--neon-cyan);
}

.university-formats {
    max-width: 800px;
    margin: 0 auto 28px;
    padding: 16px 24px;
    background: rgba(0, 243, 255, 0.04);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: var(--radius-sm);
    text-align: left;
}

.university-formats p {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #cbd5f5;
    text-align: left;
}

.university-formats ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.university-formats li {
    color: #cbd5f5;
    font-size: 0.92rem;
    text-align: left;
}

.university-formats li span {
    color: var(--neon-cyan);
    margin-right: 6px;
}

.course-category {
    margin-bottom: 32px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(0, 243, 255, 0.1);
    text-align: left;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(90deg, rgba(0, 243, 255, 0.08), rgba(180, 0, 255, 0.08));
    border-bottom: 1px solid rgba(0, 243, 255, 0.15);
}

.category-header i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

.category-header span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-cyan);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    padding: 16px 20px;
}

.course-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: 0.3s ease;
    text-align: left;
}

.course-card:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.12);
}

.course-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 243, 255, 0.04);
    border-bottom: 1px solid rgba(0, 243, 255, 0.08);
}

.course-code {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    color: #000;
    font-weight: 800;
    font-size: 0.7rem;
    padding: 2px 10px;
    border-radius: 6px;
    flex-shrink: 0;
}

.course-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #e0e0e0;
    margin: 0;
}

.course-description {
    padding: 10px 14px;
    color: #aaa;
    font-size: 0.85rem;
    line-height: 1.6;
}

.course-description p {
    margin: 0;
    text-align: left;
}

.university-footer {
    text-align: center;
    margin-top: 32px;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: var(--radius-md);
    color: #aaa;
    line-height: 1.8;
}

.university-footer i {
    color: var(--neon-cyan);
}

.university-footer .small {
    font-size: 0.8rem;
    color: #666;
    margin-top: 4px;
}

/* ========================================
   25. ART SECTION
   ======================================== */
.art-section {
    padding: 10px 20px !important;
    background: radial-gradient(circle at 80% 50%, rgba(20, 0, 40, 0.8), #000);
}

.art-layout {
    display: flex;
    gap: 30px;
    max-width: 1280px;
    margin: 0 auto;
    text-align: left;
}

.art-nav-col {
    width: 220px;
    flex-shrink: 0;
}

.modern-vertical-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.modern-vertical-nav .nav-link {
    display: block;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--radius-sm);
    color: #aaa;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: left;
}

.modern-vertical-nav .nav-link:hover,
.modern-vertical-nav .nav-link.active {
    background: linear-gradient(135deg, rgba(0, 243, 255, 0.12), rgba(180, 0, 255, 0.12));
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.art-content-col {
    flex: 1;
}

.art-tab-pane {
    display: none;
    text-align: left;
}

.art-tab-pane.active {
    display: block;
}

.art-tab-pane h3 {
    font-size: 1.3rem;
    color: var(--neon-cyan);
    margin-bottom: 12px;
    text-align: left;
}

.art-tab-pane h3 a {
    color: inherit;
}

.art-tab-pane h3 a:hover {
    color: var(--neon-pink);
}

.art-tab-pane img {
    width: auto;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid var(--neon-purple);
    box-shadow: 0 0 25px rgba(180, 0, 255, 0.15);
    margin: 0 0 12px;
    transition: 0.3s ease;
}

.art-tab-pane img:hover {
    border-color: var(--neon-cyan);
    box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
}

.art-tab-pane p {
    color: #cbd5f5;
    line-height: 1.8;
    margin-bottom: 12px;
    text-align: left;
}

/* ========================================
   26. CONTACT SECTION
   ======================================== */
.contact-section {
    padding: 60px 20px 80px;
    max-width: 820px;
    margin: 0 auto;
}

.contact-heading {
    text-align: center;
    margin-bottom: 40px;
}

.contact-heading .eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    display: block;
    margin-bottom: 8px;
}

.contact-heading h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--neon-purple));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.15;
    margin-bottom: 10px;
    text-align: center;
}

.contact-heading p {
    color: #aaa;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.neon-divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    margin: 14px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.contact-card {
    background: var(--card-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glow);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-neon);
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s, box-shadow 0.4s;
    text-align: left;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top right, rgba(180, 0, 255, 0.1), transparent 70%);
    pointer-events: none;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle at bottom left, rgba(0, 243, 255, 0.06), transparent 70%);
    pointer-events: none;
}

.contact-card:hover {
    border-color: rgba(180, 0, 255, 0.4);
    box-shadow: 0 0 40px rgba(180, 0, 255, 0.2), 0 0 80px rgba(0, 243, 255, 0.08);
}

.cf7-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
}

.cf7-form .field-full {
    grid-column: 1 / -1;
}

.field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.field-group label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    display: flex;
    align-items: center;
    gap: 6px;
    text-align: left;
}

.field-group label i {
    font-size: 0.7rem;
    opacity: 0.7;
}

.req {
    color: var(--neon-pink);
    margin-left: 2px;
}

.field-group input,
.field-group textarea,
.field-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: inherit;
    font-size: 0.92rem;
    color: #e0e0e0;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    text-align: left;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
    border-color: var(--neon-cyan);
    background: rgba(0, 243, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 243, 255, 0.08), 0 0 15px rgba(0, 243, 255, 0.1);
}

.field-group textarea {
    min-height: 120px;
    resize: vertical;
}

.field-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2300f3ff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
    appearance: none;
}

.field-group select option {
    background: #0a0a1a;
    color: #e0e0e0;
}

.cf7-submit-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.btn-submit {
    position: relative;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    border: none;
    padding: 14px 48px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 800;
    color: #000;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4), 0 0 40px rgba(180, 0, 255, 0.2);
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-submit:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.55), 0 0 60px rgba(180, 0, 255, 0.35);
}

.btn-submit:hover::before {
    opacity: 1;
}

.btn-submit:active {
    transform: translateY(0) scale(0.99);
}

.btn-submit i {
    margin-right: 8px;
}

.contact-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
}

.contact-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 243, 255, 0.15);
    border-radius: 40px;
    padding: 8px 18px;
    font-size: 0.82rem;
    color: #bbb;
    transition: 0.3s ease;
}

.contact-chip i {
    color: var(--neon-cyan);
    font-size: 0.85rem;
}

.contact-chip:hover {
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
    box-shadow: 0 0 14px rgba(0, 243, 255, 0.15);
    transform: translateY(-2px);
}

/* ========================================
   27. CF7 RESPONSE
   ======================================== */
.wpcf7-response-output {
    margin-top: 16px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
}

.wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-response-output.wpcf7-mail-sent-ok {
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.wpcf7-validation-errors,
.wpcf7-spam-blocked,
.wpcf7-mail-sent-ng,
.wpcf7 .wpcf7-response-output.wpcf7-validation-errors {
    background: rgba(255, 45, 117, 0.08);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
}

.wpcf7-not-valid {
    border-color: var(--neon-pink) !important;
    box-shadow: 0 0 0 3px rgba(255, 45, 117, 0.1) !important;
}

.wpcf7-not-valid-tip {
    font-size: 0.72rem;
    color: var(--neon-pink);
    margin-top: 4px;
    display: block;
}

.wpcf7-spinner {
    display: inline-block;
    margin-left: 12px;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   28. RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .profile-card {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }

    .profile-left {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .profile-right {
        text-align: center;
    }

    .profile-right h3,
    .profile-right .sub,
    .profile-right h4,
    .profile-right ul,
    .profile-right ul li,
    .tags,
    .tags span {
        text-align: center !important;
    }

    .profile-right ul li {
        padding-left: 0;
    }

    .profile-right ul li::before {
        display: none;
    }

    .nq-session-card {
        flex-direction: column;
        text-align: center;
    }

    .nq-session-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .nq-session-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    .nq-session-content {
        text-align: center;
    }

    .nq-session-content h3,
    .nq-session-content ul,
    .nq-session-content li {
        text-align: center !important;
    }

    .nq-session-content li {
        padding-left: 0;
    }

    .nq-session-content li::before {
        display: none;
    }

    .art-layout {
        flex-direction: column;
    }

    .art-nav-col {
        width: 100%;
    }

    .modern-vertical-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .modern-vertical-nav .nav-link {
        flex: 1;
        min-width: 140px;
        text-align: center;
    }

    .ti-lux-video iframe {
        height: 280px;
    }

    .nq-books-nav {
        display: none;
    }

    .nq-books-carousel-wrapper {
        padding: 0;
    }

    .courses-hero-img {
        width: 100%;
        max-height: 240px;
    }

    .courses-hero-img-container {
        width: 100% !important;
        flex-direction: column !important;
        align-items: center;
    }

    .main-video iframe {
        width: 100%;
        height: 280px;
    }

    .university-header h1 {
        font-size: 2rem;
    }

    .cert-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .luxq-grid {
        justify-content: center;
    }

    .premium-images {
        justify-content: center;
    }

    .premium-images img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
	.nav {
		    justify-content: center;
	}
	.top-bar {
		justify-content:center;
	}
    .section-padding {
        padding: 40px 16px;
    }

    .profile-section {
        padding: 30px 16px;
    }

    .profile-card {
        padding: 20px;
        gap: 24px;
    }

    .profile-left {
        padding: 20px 16px;
    }

    .profile-left img {
        width: 120px;
        height: 120px;
    }

    .profile-left h2 {
        font-size: 1.4rem;
    }

    .profile-right h3 {
        font-size: 1.3rem;
    }

    .profile-quote {
        padding: 14px 20px;
        font-size: 0.85rem;
        border-radius: 30px;
        margin: 16px 0 0;
    }

    .media-section {
        padding: 40px 16px;
    }

    .media-section h2 {
        font-size: 1.6rem;
    }

    .tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .main-video iframe {
        height: 200px;
    }

    .video-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .video-card iframe {
        height: 150px;
    }

    .cert-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }

    .gallery-certificates {
        padding: 20px 16px;
    }

    .nq-books-section {
        padding: 40px 16px;
    }

    .nq-books-title {
        font-size: 1.6rem;
    }

    .nq-books-video iframe {
        height: 220px;
    }

    .nq-books-card {
        flex: 0 0 170px;
        padding: 12px;
    }

    .nq-books-card h4 {
        font-size: 0.85rem;
        min-height: 2.2rem;
    }

    .nq-session-section {
        padding: 40px 16px;
    }

    .nq-session-title {
        font-size: 1.5rem;
    }

    .nq-session-card {
        padding: 20px;
    }

    .ti-section {
        padding: 40px 16px;
    }

    .ti-title {
        font-size: 1.5rem;
    }

    .ti-card {
        width: 100%;
        max-width: 360px;
    }

    .luxq-section {
        padding: 40px 16px;
    }

    .luxq-tabs {
        gap: 8px;
    }

    .luxq-tab {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .luxq-card {
        width: 100%;
        max-width: 340px;
    }

    .luxq-card iframe,
    .luxq-card img {
        height: 180px;
    }

    .ti-lux-section {
        padding: 40px 16px;
    }

    .ti-lux-title {
        font-size: 1.4rem;
    }

    .ti-lux-video iframe {
        height: 200px;
    }

    .premium-tabs-section {
        padding: 40px 16px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .premium-tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .premium-card {
        padding: 20px;
    }

    .premium-title {
        font-size: 1.2rem;
    }

    .premium-images img {
        max-width: 100%;
        height: auto;
        max-height: 160px;
    }

    .courses-section {
        padding: 40px 16px;
    }

    .section-main-title {
        font-size: 1.6rem;
    }

    .accordion-button {
        font-size: 0.85rem;
        padding: 14px 16px;
    }

    .accordion-body {
        padding: 16px;
    }

    .video-wrapper-modern {
        height: 200px;
    }

    .university-section {
        padding: 40px 16px;
    }

    .university-header h1 {
        font-size: 1.6rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
        padding: 12px 16px;
    }

    .art-section {
        padding: 40px 16px;
    }

    .art-tab-pane img {
        height: 160px;
        width: 100%;
    }

    .contact-section {
        padding: 40px 16px 60px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .cf7-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cf7-form .field-full {
        grid-column: 1;
    }

    .btn-submit {
        padding: 12px 32px;
        font-size: 0.9rem;
    }

    .contact-strip {
        gap: 10px;
    }

    .contact-chip {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .luxq-content p {
        text-align: left;
    }

    .university-intro {
        text-align: left;
    }

    .university-formats {
        text-align: left;
    }

    .university-formats p,
    .university-formats li {
        text-align: left !important;
    }
}

@media (max-width: 480px) {
    .profile-left img {
        width: 100px;
        height: 100px;
    }

    .profile-left h2 {
        font-size: 1.2rem;
    }

    .profile-left p {
        font-size: 0.8rem;
    }

    .profile-right ul li {
        font-size: 0.85rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card iframe {
        height: 200px;
    }

    .cert-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nq-books-card {
        flex: 0 0 150px;
        padding: 10px;
    }

    .nq-books-card h4 {
        font-size: 0.75rem;
        min-height: 2rem;
    }

    .nq-books-stars {
        font-size: 0.8rem;
    }

    .nq-books-video iframe {
        height: 180px;
    }

    .nq-session-content h3 {
        font-size: 1.1rem;
    }

    .nq-session-content li {
        font-size: 0.88rem;
    }

    .nq-session-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .ti-card-title {
        font-size: 0.95rem;
    }

    .ti-list li {
        font-size: 0.85rem;
    }

    .modern-vertical-nav .nav-link {
        font-size: 0.8rem;
        padding: 10px 12px;
        min-width: 100%;
        text-align: center;
    }

    .contact-heading h1 {
        font-size: 1.6rem;
    }

    .contact-chip {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        width: 96%;
        border-radius: var(--radius-md);
    }

    .modal-body {
        padding: 16px;
    }

    .modal-book-cover {
        flex-direction: column;
        text-align: center;
    }

    .modal-book-cover img {
        width: 100px;
        height: 130px;
        margin: 0 auto;
    }

    .modal-title-meta {
        text-align: center;
    }

    .modal-title-meta h4 {
        text-align: center;
    }

    .modal-stars {
        text-align: center;
    }

    .summary-text {
        font-size: 0.88rem;
        padding: 12px;
        text-align: left;
    }
}

 /* ============================================================
           MODERN FOOTER - Header Matching Design
           ============================================================ */
        .modern-footer {
            background: #0a0a0a;
            color: #d4cbc4;
            padding: 3.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid #00f3ff;
            position: relative;
            overflow: hidden;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* Brand Column */
        .brand-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-logo {
            max-height: 50px;
            width: auto;
            object-fit: contain;
            filter: brightness(0.9) saturate(0.8);
            transition: filter 0.3s;
        }

        .footer-logo:hover {
            filter: brightness(1) saturate(1);
        }

        .footer-tagline {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin: 0;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
        }

        .footer-locations {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            font-size: 0.85rem;
            color: #fff;
        }

        .footer-locations span i {
            color: #00f3ff;
            margin-right: 0.4rem;
        }

        .footer-social h6 {
            font-size: 0.8rem;
            color: #fff;
            margin: 0 0 0.6rem 0;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .social-icons-group {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            color: #d4cbc4;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .social-link:hover {
            background: #00f3ff;
            color: #0d0a08;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 243, 255, 0.3);
            border-color: #00f3ff;
        }

        /* Footer Columns - Header Style */
        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.3rem 0;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 0.6rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background: #00f3ff;
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links li a {
            color: #fff;
            text-decoration: none;
            font-size: 0.88rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-links li a i {
            font-size: 0.5rem;
            color: #fff;
            transition: transform 0.3s ease;
        }

        .footer-links li a:hover {
            color: #00f3ff;
            transform: translateX(4px);
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
        }

        .footer-links li a:hover i {
            transform: translateX(3px);
        }

        /* Contact Column */
        .contact-desc {
            font-size: 0.85rem;
            color: #fff;
            margin: 0 0 0.3rem 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 0.85rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-contact li i {
            color: #fff;
            width: 18px;
            text-align: center;
            margin-top: 2px;
            flex-shrink: 0;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
        }

        .footer-contact li div {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .footer-contact .contact-label {
            font-size: 0.65rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .footer-contact li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact li a:hover {
            color: #00f3ff;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 1.5rem;
            margin-top: 0.5rem;
        }

        .footer-bottom-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.8rem;
            color: #00f3ff;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-bottom-content p {
            margin: 0;
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            color:#fff;
        }

        .footer-legal a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.75rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-legal a:hover {
            color: #fff;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
        }

        .footer-legal .separator {
            color: #fff;
        }

        .credits a {
            color: #00f3ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .credits a:hover {
            color: #fff;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
        }

        /* ============================================================
           STICKY BOTTOM BAR (Mobile - Header Style)
           ============================================================ */
        .sticky-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(13, 10, 8, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0.4rem 0.8rem;
            z-index: 9999;
            border-top: 1px solid rgba(0, 243, 255, 0.12);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
        }

        .bottom-bar-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .bottom-contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.15rem;
            color: #fff;
            text-decoration: none;
            font-size: 0.55rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .bottom-contact-item i {
            font-size: 1.1rem;
            color: #00f3ff;
            transition: all 0.3s ease;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .bottom-contact-item:hover {
            color: #f0e8e0;
        }

        .bottom-contact-item:hover i {
            color: #00f3ff;
            transform: scale(1.15);
            text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
        }

        .bottom-contact-item span {
            font-size: 0.5rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .contact-btn-bottom {
            background: linear-gradient(135deg, #00f3ff, #0099a8);
            color: #0d0a08 !important;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.55rem;
        }

        .contact-btn-bottom i {
            color: #0d0a08 !important;
            text-shadow: none !important;
        }

        .contact-btn-bottom:hover {
            background: linear-gradient(135deg, #33f5ff, #00b3c4);
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
        }

        /* ============================================================
           WHATSAPP FLOAT BUTTON
           ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 90px;
            right: 25px;
            z-index: 9998;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 4px 25px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
        }

        /* ============================================================
           SCROLL TO TOP BUTTON - Neon Style
           ============================================================ */
        .scroll-top-btn {
            position: fixed;
            bottom: 90px;
            right: 90px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00f3ff, #0099a8);
            color: #0d0a08;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 243, 255, 0.25);
            z-index: 9997;
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 35px rgba(0, 243, 255, 0.4);
        }

        /* ============================================================
           RESPONSIVE BREAKPOINTS
           ============================================================ */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
                padding-bottom: 1.8rem;
            }

            .brand-column {
                text-align: center;
                align-items: center;
            }

            .footer-logos {
                justify-content: center;
            }

            .footer-locations {
                justify-content: center;
            }

            .social-icons-group {
                justify-content: center;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links {
                align-items: center;
                text-align: center;
            }

            .footer-contact {
                align-items: center;
            }

            .footer-contact li {
                align-items: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            /* Show sticky bottom bar on mobile */
            .sticky-bottom-bar {
                display: block;
            }

            .whatsapp-float {
                bottom: 80px;
                right: 15px;
            }

            .whatsapp-float a {
                width: 48px;
                height: 48px;
                font-size: 1.6rem;
            }

            .scroll-top-btn {
                bottom: 80px;
                right: 70px;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .modern-footer {
                padding: 2rem 0 1rem;
            }

            .footer-logo {
                max-height: 40px;
            }

            .footer-legal {
                flex-wrap: wrap;
                gap: 0.3rem;
            }

            .footer-legal a {
                font-size: 0.6rem;
            }

            .footer-legal .separator {
                font-size: 0.45rem;
            }

            .bottom-contact-item {
                padding: 0.2rem 0.4rem;
            }

            .bottom-contact-item i {
                font-size: 0.9rem;
            }

            .contact-btn-bottom {
                padding: 0.2rem 0.6rem;
                font-size: 0.45rem;
            }

            .footer-contact li {
                font-size: 0.75rem;
            }
        }

        /* ============================================================
           CONTAINER UTILITY
           ============================================================ */
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

.taged {
background: rgba(180, 0, 255, 0.15) !important;
    border: 1px solid var(--neon-purple) !important;
    padding: 4px 14px !important;
    border-radius: 40px !important;
    display: inline-block !important;
    font-size: 0.8rem !important;
    color: #ddd !important;
    margin: 4px 4px 4px 0 !important;
}

.taged:hover {
    background: #ffb347;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 179, 71, 0.3);
}

.tags {
   background: rgba(180, 0, 255, 0.15);
    border: 1px solid var(--neon-purple);
    padding: 4px 14px;
    border-radius: 40px;
    display: inline-block;
    font-size: 0.8rem;
    color: #ddd;
    margin: 4px 4px 4px 0;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
}

.menu-item-has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}

.sub-menu li a:hover {
    background: #f5f5f5;
}

/* ========== RESET & BASE ========== */
	* {
		margin: 0;
		padding: 0;
		box-sizing: border-box;
	}
	
	body {
		font-family: 'Plus Jakarta Sans', 'Space Grotesk', sans-serif;
		background: #0a0e17;
		color: #e8edf5;
	}
	
	/* ========== TOP BAR - DARK ========== */
	.top-bar {
		background: #0d1520;
		color: #94a3b8;
		padding: 8px 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		font-size: 0.75rem;
		flex-wrap: wrap;
		gap: 8px;
		border-bottom: 1px solid rgba(255, 179, 71, 0.08);
		max-width: 100%;
		overflow: hidden;
	}
	
	.top-left {
		display: flex;
		align-items: center;
		gap: 12px;
		flex-wrap: wrap;
	}
	
	.top-left i {
		color: #ffb347;
		margin-right: 4px;
		font-size: 0.7rem;
	}
	
	.top-left a {
		color: #94a3b8;
		text-decoration: none;
		transition: color 0.3s;
		font-size: 0.75rem;
	}
	
	.top-left a:hover {
		color: #ffb347;
	}
	
	.top-left .separator {
		opacity: 0.2;
		margin: 0 4px;
	}
	
	.top-right {
		display: flex;
		align-items: center;
		gap: 12px;
	}
	
	.top-right a {
		color: #94a3b8;
		text-decoration: none;
		transition: all 0.3s;
		font-size: 0.8rem;
	}
	
	.top-right a:hover {
		color: #ffb347;
		transform: translateY(-2px);
	}
	
	/* ========== HEADER / NAVBAR - DARK ========== */
	.header {
		background: #0f1a2b;
		padding: 0 20px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		position: sticky;
		top: 0;
		z-index: 1000;
		box-shadow: 0 2px 30px rgba(0,0,0,0.3);
		height: 64px;
		border-bottom: 1px solid rgba(255, 179, 71, 0.06);
		max-width: 100%;
		overflow: visible;
	}
	
	/* Logo / Brand - Left Side */
	.brand {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-shrink: 0;
	}
	
	.brand-logo {
		width: 38px;
		height: 38px;
		border-radius: 50%;
		object-fit: cover;
		border: 2px solid #ffb347;
		box-shadow: 0 0 20px rgba(255, 179, 71, 0.12);
		flex-shrink: 0;
	}
	
	.brand-text {
		display: flex;
		flex-direction: column;
		line-height: 1.1;
	}
	
	.brand-name {
		font-size: 0.95rem;
		font-weight: 700;
		color: #e8edf5;
	}
	
	.brand-name span {
		color: #ffb347;
	}
	
	.brand-title {
		font-size: 0.5rem;
		color: #6b7f8f;
		text-transform: uppercase;
		letter-spacing: 0.3px;
	}
	
	/* ========== NAVIGATION - DARK (Desktop) ========== */
	.nav {
		display: flex;
		align-items: center;
		gap: 0.3rem;
	}
	
	.nav > a {
		text-decoration: none;
		color: #c8d6e5;
		font-weight: 500;
		font-size: 0.78rem;
		transition: all 0.3s ease;
		padding: 6px 12px;
		border-radius: 6px;
		white-space: nowrap;
	}
	
	.nav > a:hover {
		color: #ffb347;
		background: rgba(255, 179, 71, 0.08);
	}
	
	/* ========== DROPDOWN - DARK ========== */
	.dropdown {
		position: relative;
		display: inline-block;
	}
	
	.dropdown-toggle {
		text-decoration: none;
		color: #c8d6e5;
		font-weight: 500;
		font-size: 0.78rem;
		padding: 6px 12px;
		border-radius: 6px;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 4px;
		background: none;
		border: none;
		font-family: inherit;
		transition: all 0.3s ease;
		white-space: nowrap;
	}
	
	.dropdown-toggle:hover {
		color: #ffb347;
		background: rgba(255, 179, 71, 0.08);
	}
	
	.dropdown-toggle i {
		font-size: 9px;
		transition: transform 0.3s ease;
	}
	
	.dropdown:hover .dropdown-toggle i {
		transform: rotate(180deg);
	}
	
	.dropdown-menu {
		display: none;
		position: absolute;
		top: calc(100% + 4px);
		left: 0;
		min-width: 140px;
		background: #162231;
		border-radius: 10px;
		box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
		padding: 4px 0;
		z-index: 9999;
		border: 1px solid rgba(255, 179, 71, 0.08);
	}
	
	.dropdown:hover .dropdown-menu,
	.dropdown.active .dropdown-menu {
		display: block;
	}
	
	.dropdown-menu a {
		display: block;
		padding: 8px 18px;
		text-decoration: none;
		color: #c8d6e5;
		font-weight: 400;
		font-size: 0.78rem;
		transition: all 0.2s ease;
		white-space: nowrap;
	}
	
	.dropdown-menu a:hover {
		background: rgba(255, 179, 71, 0.08);
		color: #ffb347;
	}
	
	/* ========== RIGHT SECTION - DARK ========== */
	.right-section {
		display: flex;
		align-items: center;
		gap: 10px;
		flex-shrink: 0;
	}
	
	.lang {
		display: flex;
		gap: 4px;
		
	}
	
	.lang img {
		width: 30px !important;
		height: 30px !important;
		border-radius: 50% !important;
		cursor: pointer !important;
		transition: all 0.3s ease !important;
		border: 2px solid transparent !important;
		opacity: 0.6 !important;
	}
	
	.lang img:hover {
		transform: scale(1.1);
		border-color: #ffb347;
		opacity: 1;
		width: 30px !important;
		height: 30px !important;
	}
	
	.btn-neon {
		background: linear-gradient(135deg, #ffb347, #f09000);
		border: none;
		color: #0a0e17;
		padding: 6px 16px;
		border-radius: 50px;
		font-weight: 600;
		font-size: 0.7rem;
		cursor: pointer;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		gap: 6px;
		font-family: inherit;
		text-decoration: none;
		white-space: nowrap;
	}
	
	.btn-neon:hover {
		transform: translateY(-2px);
		box-shadow: 0 8px 30px rgba(255, 179, 71, 0.25);
	}
	
	.btn-neon i {
		font-size: 0.75rem;
	}
	
	/* ========== MOBILE TOGGLE - RIGHT SIDE ========== */
	.mobile-toggle {
		display: none;
		font-size: 22px;
		background: none;
		border: none;
		cursor: pointer;
		color: #c8d6e5;
		padding: 8px 10px;
		transition: color 0.3s;
		margin-left: 5px;
		line-height: 1;
	}
	
	.mobile-toggle:hover {
		color: #ffb347;
	}
	
	.mobile-toggle:focus {
		outline: none;
	}
	
	/* ========== RESPONSIVE - FIXED ========== */
	
	/* Tablet */
	@media (max-width: 1024px) {
		.nav > a {
			padding: 6px 10px;
			font-size: 0.72rem;
		}
		
		.dropdown-toggle {
			padding: 6px 10px;
			font-size: 0.72rem;
		}
		
		.brand-name {
			font-size: 0.85rem;
		}
	}
	
	/* Mobile */
	@media (max-width: 992px) {
		/* Hide desktop nav, show mobile toggle on right */
		.nav {
			display: none !important;
			flex-direction: column;
			align-items: stretch;
			width: 100%;
			gap: 0;
			background: #0f1a2b;
			padding: 16px 20px;
			position: absolute;
			top: 100%;
			left: 0;
			right: 0;
			box-shadow: 0 20px 40px rgba(0,0,0,0.5);
			border-top: 1px solid rgba(255, 179, 71, 0.06);
			max-height: 80vh;
			overflow-y: auto;
		}
		
		.nav.open {
			display: flex !important;
		}
		
		.mobile-toggle {
			display: block !important;
		}
		
		.nav > a {
			padding: 10px 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.04);
			width: 100%;
			border-radius: 0;
			font-size: 0.85rem;
		}
		
		.nav > a:last-child {
			border-bottom: none;
		}
		
		.dropdown {
			width: 100%;
		}
		
		.dropdown-toggle {
			padding: 10px 0;
			border-bottom: 1px solid rgba(255, 255, 255, 0.04);
			width: 100%;
			justify-content: space-between;
			border-radius: 0;
			font-size: 0.85rem;
		}
		
		.dropdown-menu {
			position: static;
			box-shadow: none;
			border: none;
			padding-left: 16px;
			background: rgba(255, 255, 255, 0.03);
			border-radius: 6px;
			margin-top: 2px;
			width: 100%;
			display: none;
		}
		
		.dropdown.active .dropdown-menu {
			display: block;
		}
		
		.dropdown-menu a {
			padding: 8px 16px;
			border-bottom: 1px solid rgba(255, 255, 255, 0.03);
			font-size: 0.82rem;
			white-space: normal;
		}
		
		.dropdown-menu a:last-child {
			border-bottom: none;
		}
		
		.dropdown:hover .dropdown-menu {
			display: none;
		}
		
		.dropdown.active .dropdown-menu {
			display: block;
		}
		
		/* Right section adjustments */
		.right-section {
			gap: 8px;
		}
		
		.lang img {
			width: 18px;
		}
		
		.btn-neon {
			padding: 5px 12px;
			font-size: 0.65rem;
		}
		
		.btn-neon i {
			font-size: 0.65rem;
		}
		
		.brand-name {
			font-size: 0.85rem;
		}
		
		.brand-title {
			font-size: 0.45rem;
		}
		
		.brand-logo {
			width: 40px;
			height: 40px;
		}
	}
	
	/* Small Mobile */
	@media (max-width: 600px) {
		.top-bar {
			padding: 5px 12px;
			font-size: 0.6rem;
			gap: 4px;
		}
		
		.top-left {
			gap: 6px;
		}
		
		.top-left a {
			font-size: 0.6rem;
		}
		
		.top-left i {
			font-size: 0.6rem;
		}
		
		.top-right {
			gap: 8px;
		}
		
		.top-right a {
			font-size: 0.65rem;
		}
		
		.header {
			padding: 0 12px;
			height: 56px;
		}
		
		.brand-logo {
			width: 40px;
			height: 40px;
			border-width: 1.5px;
		}
		
		.brand-name {
			font-size: 0.75rem;
		}
		
		.brand-title {
			font-size: 0.4rem;
		}
		
		.right-section {
			gap: 6px;
		}
		
		.lang img {
			width: 16px;
		}
		
		.btn-neon {
			padding: 4px 10px;
			font-size: 0.55rem;
		}
		
		.btn-neon i {
			font-size: 0.55rem;
		}
		
		.mobile-toggle {
			font-size: 18px;
			padding: 6px 8px;
		}
		
		.nav {
			padding: 12px 16px;
		}
		
		.nav > a {
			font-size: 0.78rem;
			padding: 8px 0;
		}
		
		.dropdown-toggle {
			font-size: 0.78rem;
			padding: 8px 0;
		}
		
		.dropdown-menu a {
			font-size: 0.75rem;
			padding: 6px 14px;
		}
	}
	
	/* Extra Small Mobile */
	@media (max-width: 400px) {
		.top-bar {
			padding: 4px 8px;
			font-size: 0.5rem;
		}
		
		.top-left {
			gap: 4px;
		}
		
		.top-left a {
			font-size: 0.5rem;
		}
		
		.top-left i {
			font-size: 0.5rem;
		}
		
		.top-right {
			gap: 5px;
		}
		
		.top-right a {
			font-size: 0.55rem;
		}
		
		.header {
			padding: 5px 8px;
			height: 50px;
		}
		
		.brand-logo {
			width: 40px;
			height: 40px;
		}
		
		.brand-name {
			font-size: 0.65rem;
		}
		
		.brand-title {
			font-size: 0.35rem;
		}
		
		.right-section {
			gap: 4px;
		}
		
		.lang img {
			width: 20px;
		}
		.lang  {
			height: 40px;
		}
		
		.btn-neon {
			padding: 3px 8px;
			font-size: 0.5rem;
		}
		
		.btn-neon i {
			font-size: 0.5rem;
		}
		
		.mobile-toggle {
			font-size: 16px;
			padding: 4px 6px;
		}
	}

 /* ============================================================
           MODERN FOOTER - Header Matching Design
           ============================================================ */
        .modern-footer {
            background: #0a0a0a;
            color: #d4cbc4;
            padding: 3.5rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 1px solid #00f3ff;
            position: relative;
            overflow: hidden;
        }

        .modern-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 30% 20%, rgba(0, 243, 255, 0.03) 0%, transparent 70%);
            pointer-events: none;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2.5rem;
            padding-bottom: 2.5rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        /* Brand Column */
        .brand-column {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .footer-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .footer-logo {
            max-height: 50px;
            width: auto;
            object-fit: contain;
            filter: brightness(0.9) saturate(0.8);
            transition: filter 0.3s;
        }

        .footer-logo:hover {
            filter: brightness(1) saturate(1);
        }

        .footer-tagline {
            font-size: 0.95rem;
            color: #fff;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin: 0;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
        }

        .footer-locations {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem 1.5rem;
            font-size: 0.85rem;
            color: #fff;
        }

        .footer-locations span i {
            color: #00f3ff;
            margin-right: 0.4rem;
        }

        .footer-social h6 {
            font-size: 0.8rem;
            color: #fff;
            margin: 0 0 0.6rem 0;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
        }

        .social-icons-group {
            display: flex;
            gap: 0.6rem;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            color: #d4cbc4;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .social-link:hover {
            background: #00f3ff;
            color: #0d0a08;
            transform: translateY(-3px);
            box-shadow: 0 6px 25px rgba(0, 243, 255, 0.3);
            border-color: #00f3ff;
        }

        /* Footer Columns - Header Style */
        .footer-column {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            color: #fff;
            margin: 0 0 0.3rem 0;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 0.6rem;
            font-family: 'Space Grotesk', sans-serif;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 35px;
            height: 2px;
            background: #00f3ff;
            border-radius: 2px;
            box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .footer-links li a {
            color: #fff;
            text-decoration: none;
            font-size: 0.88rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-links li a i {
            font-size: 0.5rem;
            color: #fff;
            transition: transform 0.3s ease;
        }

        .footer-links li a:hover {
            color: #00f3ff;
            transform: translateX(4px);
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
        }

        .footer-links li a:hover i {
            transform: translateX(3px);
        }

        /* Contact Column */
        .contact-desc {
            font-size: 0.85rem;
            color: #fff;
            margin: 0 0 0.3rem 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.7rem;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 0.8rem;
            font-size: 0.85rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-contact li i {
            color: #fff;
            width: 18px;
            text-align: center;
            margin-top: 2px;
            flex-shrink: 0;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
        }

        .footer-contact li div {
            display: flex;
            flex-direction: column;
            gap: 0.1rem;
        }

        .footer-contact .contact-label {
            font-size: 0.65rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }

        .footer-contact li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact li a:hover {
            color: #00f3ff;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.15);
        }

        /* Footer Bottom */
        .footer-bottom {
            padding-top: 1.5rem;
            margin-top: 0.5rem;
        }

        .footer-bottom-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 0.8rem;
            font-size: 0.8rem;
            color: #00f3ff;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-bottom-content p {
            margin: 0;
        }

        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.5rem;
            color:#fff;
        }

        .footer-legal a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.75rem;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .footer-legal a:hover {
            color: #fff;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
        }

        .footer-legal .separator {
            color: #fff;
        }

        .credits a {
            color: #00f3ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .credits a:hover {
            color: #fff;
            text-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
        }

        /* ============================================================
           STICKY BOTTOM BAR (Mobile - Header Style)
           ============================================================ */
        .sticky-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(13, 10, 8, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 0.4rem 0.8rem;
            z-index: 9999;
            border-top: 1px solid rgba(0, 243, 255, 0.12);
            box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
        }

        .bottom-bar-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            max-width: 500px;
            margin: 0 auto;
        }

        .bottom-contact-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.15rem;
            color: #fff;
            text-decoration: none;
            font-size: 0.55rem;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.3rem 0.8rem;
            border-radius: 8px;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        .bottom-contact-item i {
            font-size: 1.1rem;
            color: #00f3ff;
            transition: all 0.3s ease;
            text-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
        }

        .bottom-contact-item:hover {
            color: #f0e8e0;
        }

        .bottom-contact-item:hover i {
            color: #00f3ff;
            transform: scale(1.15);
            text-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
        }

        .bottom-contact-item span {
            font-size: 0.5rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .contact-btn-bottom {
            background: linear-gradient(135deg, #00f3ff, #0099a8);
            color: #0d0a08 !important;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.55rem;
        }

        .contact-btn-bottom i {
            color: #0d0a08 !important;
            text-shadow: none !important;
        }

        .contact-btn-bottom:hover {
            background: linear-gradient(135deg, #33f5ff, #00b3c4);
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(0, 243, 255, 0.2);
        }

        /* ============================================================
           WHATSAPP FLOAT BUTTON
           ============================================================ */
        .whatsapp-float {
            position: fixed;
            bottom: 90px;
            right: 25px;
            z-index: 9998;
        }

        .whatsapp-float a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            font-size: 2rem;
            text-decoration: none;
            box-shadow: 0 4px 25px rgba(37, 211, 102, 0.35);
            transition: all 0.3s ease;
        }

        .whatsapp-float a:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 35px rgba(37, 211, 102, 0.5);
        }

        /* ============================================================
           SCROLL TO TOP BUTTON - Neon Style
           ============================================================ */
        .scroll-top-btn {
            position: fixed;
            bottom: 90px;
            right: 90px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: linear-gradient(135deg, #00f3ff, #0099a8);
            color: #0d0a08;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 243, 255, 0.25);
            z-index: 9997;
        }

        .scroll-top-btn.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top-btn:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 35px rgba(0, 243, 255, 0.4);
        }

        /* ============================================================
           RESPONSIVE BREAKPOINTS
           ============================================================ */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.8rem;
                padding-bottom: 1.8rem;
            }

            .brand-column {
                text-align: center;
                align-items: center;
            }

            .footer-logos {
                justify-content: center;
            }

            .footer-locations {
                justify-content: center;
            }

            .social-icons-group {
                justify-content: center;
            }

            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-links {
                align-items: center;
                text-align: center;
            }

            .footer-contact {
                align-items: center;
            }

            .footer-contact li {
                align-items: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }

            /* Show sticky bottom bar on mobile */
            .sticky-bottom-bar {
                display: block;
            }

            .whatsapp-float {
                bottom: 80px;
                right: 15px;
            }

            .whatsapp-float a {
                width: 48px;
                height: 48px;
                font-size: 1.6rem;
            }

            .scroll-top-btn {
                bottom: 80px;
                right: 70px;
                width: 38px;
                height: 38px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .modern-footer {
                padding: 2rem 0 1rem;
            }

            .footer-logo {
                max-height: 40px;
            }

            .footer-legal {
                flex-wrap: wrap;
                gap: 0.3rem;
            }

            .footer-legal a {
                font-size: 0.6rem;
            }

            .footer-legal .separator {
                font-size: 0.45rem;
            }

            .bottom-contact-item {
                padding: 0.2rem 0.4rem;
            }

            .bottom-contact-item i {
                font-size: 0.9rem;
            }

            .contact-btn-bottom {
                padding: 0.2rem 0.6rem;
                font-size: 0.45rem;
            }

            .footer-contact li {
                font-size: 0.75rem;
            }
        }

        /* ============================================================
           CONTAINER UTILITY
           ============================================================ */
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

@media (max-width: 768px) {
    .brand-logo {
        width: 40px !important;
        height: 40px !important;
        border-radius: 5px !important;
    }
}