.title-pop-animation {
  animation: pop-in 0.7s ease forwards;
}

@keyframes pop-in {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

    body.custom {
      background:
        radial-gradient(1400px 700px at 0% 0%, rgba(230, 183, 116, .12), transparent 70%),
        radial-gradient(1400px 700px at 100% 100%, rgba(216, 162, 79, .12), transparent 70%),
        radial-gradient(800px 400px at 50% 50%, rgba(230, 183, 116, .05), transparent),
        #fafafa;
      color: var(--main-black);
      min-height: 100vh;
      overflow-x: hidden;
    }

    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 140px 20px 80px;
      display: grid;
      gap: 100px;
    }

    /* ===== HERO SECTION ===== */
    .hero {
      text-align: center;
      padding: 80px 20px 40px;
      position: relative;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 4.5rem);
      font-weight: 700;
      background: linear-gradient(135deg, var(--main-black) 0%, var(--main-gold) 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-top: 90px;
      margin-bottom: 20px;
      line-height: 1.1;
      animation: fadeInUp 0.8s ease;
    }

    .hero p {
      font-size: clamp(1.1rem, 2vw, 1.3rem);
      color: var(--main-gray);
      max-width: 700px;
      margin: 0 auto;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    .hero-accent {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.2;
      z-index: -1;
      animation: float 8s ease-in-out infinite;
    }

    .accent-1 {
      background: var(--main-gold);
      top: -100px;
      left: 10%;
    }

    .accent-2 {
      background: var(--secondary-gold);
      top: -50px;
      right: 10%;
      animation-delay: 2s;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-30px); }
    }

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

    /* ===== SECTION HEADERS ===== */
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-header h2 {
      font-size: clamp(2rem, 4vw, 3.75rem);
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--main-black);
    }

    .section-header p {
      color: var(--main-gray);
      font-size: 1.25rem;
      max-width: 600px;
      margin: 0 auto;
    }

    /* ===== CAROUSEL WITH GLASSMORPHISM ===== */
    .carousel {
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(20px);
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: var(--shadow-lg), 0 0 0 1px rgba(230, 183, 116, .15);
      padding: 20px;
      position: relative;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .carousel:hover {
      transform: translateY(-8px);
      box-shadow: 0 30px 60px rgba(0,0,0,.2);
    }

    .slides {
      position: relative;
      overflow: hidden;
      border-radius: 18px;
      aspect-ratio: 16 / 9;
      background: linear-gradient(135deg, #f6f7fb 0%, #ececec 100%);
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: translateX(8%);
      transition: opacity .6s ease, transform .6s ease;
      display: grid;
      place-items: center;
    }

    .slide.is-active { 
      opacity: 1; 
      transform: none; 
    }
    
    .slide img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
    }

    .c-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 24px rgba(0,0,0,.15);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      cursor: pointer;
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      color: var(--main-gold);
      font-weight: 700;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .c-btn:hover {
      background: var(--main-gold);
      color: var(--main-black);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 12px 32px rgba(230, 183, 116, .4);
    }

    .c-prev { left: 16px; }
    .c-next { right: 16px; }

    .cap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-top: 16px;
    }

    .dots { 
      display: flex; 
      gap: 10px; 
    }
    
    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #d4d4d4;
      border: 0;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .dot:hover {
      background: var(--secondary-gold);
      transform: scale(1.2);
    }
    
    .dot[aria-current="true"] { 
      background: var(--main-gold);
      width: 28px;
      border-radius: 5px;
    }
    
    .cap p { 
      margin: 0; 
      color: var(--main-gray);
      font-size: 0.95rem;
      font-weight: 500;
    }

    /* ===== PROJECT DESCRIPTION ===== */
    .project-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      margin-top: 60px;
    }

    .project-info h3 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--main-black);
    }

    .project-info p {
      color: var(--main-gray);
      line-height: 1.7;
      margin-bottom: 24px;
      font-size: 1.25rem;
    }

    .project-features {
      background: linear-gradient(135deg, rgba(230, 183, 116, .08), rgba(216, 162, 79, .08));
      border-radius: 16px;
      padding: 30px;
      border: 1px solid rgba(230, 183, 116, .2);
      backdrop-filter: blur(10px);
    }

    .project-features h4 {
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--main-black);
    }

    .feature-list {
      display: grid;
      gap: 12px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--main-gray);
      font-size: 1rem;
    }

    .feature-icon {
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, var(--main-gold), var(--secondary-gold));
      border-radius: 6px;
      display: grid;
      place-items: center;
      color: var(--main-black);
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .btn {
      background: linear-gradient(135deg, var(--main-gold) 0%, var(--secondary-gold) 100%);
      color: var(--main-black);
      text-decoration: none;
      padding: 16px 32px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 1rem;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(230, 183, 116, .3);
      position: relative;
      overflow: hidden;
      border: none;
      cursor: pointer;
    }

    .btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--main-gold) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .btn:hover {
      color: var(--main-black);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 30px rgba(230, 183, 116, .4);
    }

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

    .btn span {
      position: relative;
      z-index: 1;
    }

    /* ===== COMING SOON CARD ===== */
    .coming-card {
      background: linear-gradient(135deg, rgba(230, 183, 116, .1), rgba(216, 162, 79, .1));
      backdrop-filter: blur(10px);
      border: 2px dashed rgba(230, 183, 116, .4);
      padding: 60px 40px;
      border-radius: var(--radius);
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .coming-card::before {
      content: '🚀';
      position: absolute;
      font-size: 150px;
      opacity: 0.05;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .coming-card:hover {
      transform: translateY(-5px);
      border-color: rgba(230, 183, 116, .6);
      background: linear-gradient(135deg, rgba(230, 183, 116, .15), rgba(216, 162, 79, .15));
    }

    .coming-card h3 { 
      color: var(--main-black);
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .coming-card p {
      color: var(--main-gray);
      font-size: 1.25rem;
      line-height: 1.6;
      position: relative;
      z-index: 1;
    }

    /* ===== CTA SECTION ===== */
    .cta {
      background: linear-gradient(135deg, rgba(230, 183, 116, .12), rgba(216, 162, 79, .18));
      backdrop-filter: blur(10px);
      padding: 80px 40px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      text-align: center;
      border: 1px solid rgba(255,255,255,.5);
      position: relative;
      overflow: hidden;
    }

    .cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
      animation: shine 3s infinite;
    }

    .cta h2 {
      font-size: clamp(1.75rem, 4vw, 3.75rem);
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--main-black);
      position: relative;
      z-index: 1;
    }

    .cta > p {
      font-size: 1.25rem;
      margin-bottom: 32px;
      position: relative;
      z-index: 1;
    }

    .cta-group {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .cta-primary {
      background: var(--main-gold);
      color: var(--main-black);
      padding: 16px 32px;
      border-radius: 100px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--main-gold);
      position: relative;
      overflow: hidden;
    }

    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(230, 183, 116, 0.4);
      color: var(--main-black);
    }

    .cta-secondary {
      background: transparent;
      color: var(--main-black);
      padding: 16px 32px;
      border-radius: 100px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s ease;
      border: 2px solid var(--main-gold);
    }

    .cta-secondary:hover {
      background: var(--main-gold);
      transform: translateY(-2px);
      color: var(--main-black);
    }

    .cta p:last-child {
      margin-top: 16px;
      font-size: 1rem;
      position: relative;
      z-index: 1;
    }

    .cta a:not(.cta-primary):not(.cta-secondary) {
      color: var(--main-black);
      text-decoration: underline;
      font-weight: 600;
    }

    .cta a:not(.cta-primary):not(.cta-secondary):hover {
      color: var(--secondary-gold);
    }

    @keyframes shine {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    .cta-section p { 
      margin-bottom: 20px; 
      font-size: 1.25rem;
      color: var(--main-black);
      font-weight: 600;
      position: relative;
      z-index: 1;
    }

    /* ===== FADE IN ANIMATION ===== */
    .fade { 
      opacity: 0; 
      transform: translateY(30px); 
    }
    
    .fade.in { 
      opacity: 1; 
      transform: none; 
      transition: opacity .8s ease, transform .8s ease; 
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .wrap {
        padding-top: 100px;
      }

      .project-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .project-info h3 {
        font-size: 1.75rem;
      }

      .project-info p {
        font-size: 1rem;
      }

      .project-features h4 {
        font-size: 1.25rem;
      }

      .coming-card h3 {
        font-size: 1.75rem;
      }

      .coming-card p {
        font-size: 1rem;
      }

      .cap { 
        flex-direction: column; 
        align-items: flex-start; 
      }

      .c-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
      }

      .wrap {
        gap: 60px;
      }

      .hero {
        padding: 40px 20px 20px;
      }
    }

    @media (max-width: 450px) {
      .section-header p {
        font-size: 1rem;
      }

      .cta-section p {
        font-size: 1rem;
      }
    }

  
