
    /* Only additional styles - NO body selector to avoid conflict with index */
    
    .bg-ornament {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
    }
    
    .mandala {
      position: fixed;
      top: 20%;
      right: -150px;
      width: 500px;
      height: 500px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="none" stroke="rgba(210,150,75,0.08)" stroke-width="0.8" d="M50 5 L95 50 L50 95 L5 50 Z M50 20 L80 50 L50 80 L20 50 Z M50 35 L65 50 L50 65 L35 50 Z" /><circle cx="50" cy="50" r="12" stroke="rgba(210,150,75,0.06)" fill="none"/></svg>') repeat;
      background-size: 120px;
      opacity: 0.3;
      pointer-events: none;
      z-index: 0;
    }
    .mandala-2 {
      top: auto;
      bottom: 0;
      left: -200px;
      transform: rotate(45deg);
    }

    .floating-diya {
      position: fixed;
      bottom: -40px;
      pointer-events: none;
      z-index: 0;
      animation: floatUp linear infinite;
      filter: blur(0.3px);
    }
    
    @keyframes floatUp {
      0% { transform: translateY(0) rotate(0deg); opacity: 0; }
      10% { opacity: 0.5; }
      90% { opacity: 0.4; }
      100% { transform: translateY(-110vh) rotate(25deg); opacity: 0; }
    }

    .hero-modern {
      min-height: 95vh;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      padding: 4rem 2rem 3rem;
      border-bottom: 1px solid rgba(227, 184, 124, 0.2);
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
    }
    
    .hero-content {
      flex: 1.2;
    }
    
    .hero-badge {
      font-size: 0.85rem;
      letter-spacing: 2px;
      font-weight: 500;
      color: #e3b87c;
      background: rgba(227, 184, 124, 0.12);
      display: inline-block;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      backdrop-filter: blur(2px);
      margin-bottom: 1.5rem;
    }
    
    .hero-modern h1 {
      font-size: clamp(2.4rem, 8vw, 5.2rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.4rem;
      font-family: 'Tiro', serif;
    }
    
    .hero-gradient-text {
      background: linear-gradient(135deg, #f7d98c, #cb8e42);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    
    .hero-desc {
      font-size: 1.18rem;
      line-height: 1.5;
      max-width: 550px;
      color: #cfc5b2;
      margin-bottom: 2rem;
    }
    
    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin: 2rem 0 2rem;
    }
    
    .stat .stat-number {
      font-size: 1.9rem;
      font-weight: 800;
      color: #e3b87c;
      letter-spacing: -0.02em;
    }
    
    .hero-buttons_up {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 1rem;
    }
    
    .btn-book, .btn-call, .btn-price {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      padding: 0.9rem 1.7rem;
      border-radius: 60px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.25s ease;
      backdrop-filter: blur(4px);
    }
    
    .btn-book {
      background: #e3b87c;
      color: #1e1913;
      border: none;
      box-shadow: 0 8px 20px rgba(227,184,124,0.25);
    }
    
    .btn-book:hover {
      background: #f7cf92;
      transform: translateY(-4px);
      box-shadow: 0 12px 24px rgba(227,184,124,0.3);
    }
    
    .btn-call {
      background: rgba(30, 25, 19, 0.7);
      border: 1px solid #e3b87c;
      color: #e3b87c;
    }
    
    .btn-call:hover {
      background: #e3b87c;
      color: #0f0c0a;
      border-color: #e3b87c;
    }
    
    .btn-price {
      background: #1f3b2c;
      color: #e6d8c2;
      border: 1px solid #8faa7b;
    }
    
    .btn-price:hover {
      background: #2e5940;
      border-color: #e3b87c;
    }
    
    .hero-visual {
      flex: 0.8;
      position: relative;
      min-height: 320px;
    }
    
    .floating-card {
      background: rgba(25, 20, 16, 0.75);
      backdrop-filter: blur(12px);
      border-radius: 2rem;
      padding: 1rem 1.8rem;
      font-weight: 500;
      border: 1px solid rgba(227, 184, 124, 0.4);
      box-shadow: 0 20px 35px -15px rgba(0,0,0,0.4);
      position: absolute;
      animation: floatSlow 6s infinite ease-in-out;
    }
    
    .card-1 { top: 10%; left: 5%; }
    .card-2 { bottom: 20%; right: 0; animation-delay: 1s; }
    .card-3 { top: 50%; left: 40%; animation-delay: 2s; }
    
    @keyframes floatSlow {
      0% { transform: translateY(0px);}
      50% { transform: translateY(-12px);}
      100% { transform: translateY(0px);}
    }
    
    .floating-card i { margin-right: 8px; color: #e3b87c; }
    
    .route-signature {
      display: flex;
      justify-content: flex-end;
      margin: 3rem 2rem 4rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }
    
    .route-signature-card {
      background: linear-gradient(125deg, #1F1A14 0%, #16120E 100%);
      border-left: 3px solid #e3b87c;
      padding: 2rem 2rem 2rem 2.5rem;
      max-width: 650px;
      border-radius: 28px 12px 28px 12px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }
    
    .route-kicker {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 2px;
      color: #e3b87c;
      margin-bottom: 0.75rem;
    }
    
    .route-signature-card p {
      margin-bottom: 1rem;
      line-height: 1.5;
      color: #ddd2c0;
    }
    
    .route-pills span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(227, 184, 124, 0.1);
      padding: 0.4rem 1rem;
      border-radius: 40px;
      font-size: 0.8rem;
      margin-right: 0.8rem;
      margin-top: 0.8rem;
    }
    
    .journey-section {
      margin: 5rem 2rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    
    .section-sub {
      font-size: 0.75rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: #e3b87c;
    }
    
    .section-header h2 {
      font-size: 2.6rem;
      font-family: 'Tiro', serif;
      font-weight: 500;
    }
    
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    
    .timeline-item {
      background: rgba(20, 16, 12, 0.6);
      backdrop-filter: blur(2px);
      border-radius: 36px;
      transition: 0.25s;
      cursor: pointer;
      border: 1px solid rgba(227, 184, 124, 0.2);
      overflow: hidden;
    }
    
    .timeline-item.active {
      background: rgba(35, 27, 20, 0.85);
      border-left: 5px solid var(--day-accent, #e3b87c);
      box-shadow: 0 12px 24px -8px rgba(0,0,0,0.5);
    }
    
    .timeline-content {
      padding: 1.4rem 2rem 1.4rem 2rem;
      position: relative;
    }
    
    .day-topline {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 10px;
    }
    
    .day-number {
      font-weight: 700;
      font-size: 0.9rem;
      background: rgba(227, 184, 124, 0.2);
      padding: 0.2rem 0.9rem;
      border-radius: 30px;
    }
    
    .day-mood {
      font-size: 0.85rem;
      font-style: italic;
      color: #e3b87c;
    }
    
    .timeline-content h3 {
      font-size: 1.55rem;
      font-weight: 600;
      font-family: 'Tiro', serif;
      margin: 0.5rem 0 0.75rem;
      color: #f2e4d2;
    }
    
    .day-lines p {
      margin-bottom: 0.6rem;
      color: #cec2ae;
      font-size: 0.95rem;
      line-height: 1.4;
    }
    
    .day-details {
      margin-top: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    }
    
    .timeline-item.active .day-details {
      max-height: 300px;
      margin-top: 1rem;
    }
    
    .day-details ul {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      list-style: none;
      padding-left: 0;
    }
    
    .day-details li {
      background: rgba(0,0,0,0.4);
      padding: 0.3rem 1rem;
      border-radius: 40px;
      font-size: 0.8rem;
      border: 0.5px solid rgba(227,184,124,0.35);
    }
    
    .sacred-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 2rem;
      margin: 4rem 2rem;
      max-width: 1400px;
      margin-left: auto;
      margin-right: auto;
      position: relative;
      z-index: 2;
    }
    
    .sacred-card {
      background: rgba(22, 18, 14, 0.7);
      backdrop-filter: blur(8px);
      border-radius: 32px;
      overflow: hidden;
      transition: all 0.4s;
      border: 1px solid #2f261e;
    }
    
    .sacred-card:hover {
      transform: translateY(-10px);
      border-color: #e3b87c;
      box-shadow: 0 20px 28px -12px black;
    }
    
    .card-bg {
      height: 210px;
      background-size: cover;
      background-position: center;
      filter: grayscale(0.2) brightness(0.7);
      transition: 0.3s;
    }
    
    .sacred-card:hover .card-bg {
      filter: grayscale(0) brightness(0.85);
    }
    
    .sacred-card h3 {
      font-size: 1.7rem;
      margin: 1rem 1.2rem 0.3rem;
      font-family: 'Tiro', serif;
    }
    
    .sacred-card p {
      margin: 0 1.2rem 1.5rem;
      font-size: 0.9rem;
      color: #cbbca4;
    }
    
    .cursor {
      width: 12px;
      height: 12px;
      background: #e3b87c;
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      mix-blend-mode: difference;
      transition: transform 0.08s ease;
    }
    
    .cursor-follower {
      width: 32px;
      height: 32px;
      border: 1.5px solid rgba(227, 184, 124, 0.6);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 9998;
      transition: transform 0.12s ease, width 0.2s, height 0.2s;
    }
    
    @media (max-width: 860px) {
      .hero-modern { flex-direction: column; text-align: center; padding: 2rem 1rem; }
      .hero-stats { justify-content: center; }
      .hero-buttons_up { justify-content: center; }
      .route-signature { justify-content: center; margin: 2rem 1rem; }
      .timeline-content { padding: 1.2rem; }
      .journey-section { margin: 3rem 1rem; }
      .sacred-grid { margin: 3rem 1rem; }
      .floating-card { position: relative; display: inline-block; margin: 0.5rem; }
      .hero-visual { display: flex; flex-wrap: wrap; justify-content: center; min-height: auto; gap: 10px; }
      .card-1, .card-2, .card-3 { position: relative; top: auto; left: auto; right: auto; bottom: auto; animation: none; }
    }
