
    :root {
      --brand-red: #E11D48;
      --brand-red-glow: rgba(225, 29, 72, 0.4);
      --dark-base: #030305;
      --dark-surface: #0A0A10;
      --dark-card: #12121A;
      --dark-border: rgba(255, 255, 255, 0.08);
      --text-main: #FFFFFF;
      --text-muted: #A1A1AA;
      
      --font-display: 'Outfit', sans-serif;
      --font-body: 'Inter', sans-serif;
    }
    
    * { margin: 0; padding: 0; box-sizing: border-box; }
    
    body {
      background-color: var(--dark-base);
      color: var(--text-main);
      font-family: var(--font-body);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    /* Ambient Glow Background */
    .ambient-bg {
      position: fixed;
      top: 0; left: 0; width: 100vw; height: 100vh;
      z-index: -1;
      overflow: hidden;
      pointer-events: none;
    }
    .ambient-blob {
      position: absolute;
      filter: blur(120px);
      opacity: 0.5;
      border-radius: 50%;
    }
    .ambient-blob.red {
      top: -10%; right: -5%;
      width: 50vw; height: 50vw;
      background: radial-gradient(circle, rgba(225,29,72,0.4) 0%, rgba(0,0,0,0) 70%);
      animation: float 20s ease-in-out infinite alternate;
    }
    .ambient-blob.dark {
      bottom: -20%; left: -10%;
      width: 60vw; height: 60vw;
      background: radial-gradient(circle, rgba(30,30,50,0.4) 0%, rgba(0,0,0,0) 70%);
      animation: float 25s ease-in-out infinite alternate-reverse;
    }
    
    @keyframes float {
      0% { transform: translate(0, 0) scale(1); }
      100% { transform: translate(-50px, 50px) scale(1.1); }
    }

    /* Glass Header */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      padding: 20px 6%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
    }
    
    .nav-brand img {
      height: 44px;
    }

    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      color: #111827;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      font-family: var(--font-display);
      transition: color 0.3s ease;
      position: relative;
    }
    
    .nav-links a:not(.btn-glass)::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--brand-red);
      transition: width 0.3s ease;
    }
    .nav-links a:not(.btn-glass):hover::after {
      width: 100%;
    }

    .btn-glass {
      background: var(--brand-red);
      border: 1px solid var(--brand-red);
      padding: 10px 24px;
      border-radius: 30px;
      color: white !important;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    .btn-glass:hover {
      background: #BE123C;
      border-color: #BE123C;
      box-shadow: 0 4px 12px rgba(225, 29, 72, 0.3);
      transform: translateY(-2px);
    }

    /* Minimalist Footer */
    .public-footer {
      border-top: 1px solid var(--dark-border);
      padding: 80px 6% 40px;
      background: var(--dark-surface);
      margin-top: 100px;
      position: relative;
    }
    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }
    .footer-brand img {
      height: 48px;
      margin-bottom: 20px;
      filter: invert(1) hue-rotate(180deg) brightness(1.2);
    }
    .footer-brand p {
      color: var(--text-muted);
      font-size: 0.95rem;
      max-width: 300px;
    }
    .footer-links h4 {
      font-family: var(--font-display);
      font-size: 1.1rem;
      margin-bottom: 24px;
      font-weight: 600;
      color: white;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 12px;
    }
    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-links a:hover {
      color: var(--brand-red);
    }
    .footer-bottom {
      margin-top: 60px;
      padding-top: 24px;
      border-top: 1px solid var(--dark-border);
      display: flex;
      justify-content: space-between;
      color: var(--text-muted);
      font-size: 0.85rem;
    }

    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: #111827;
      cursor: pointer;
    }

    .mobile-nav-menu {
      display: none;
      position: fixed;
      top: 85px; left: 0; right: 0;
      background: var(--dark-surface);
      border-bottom: 1px solid var(--dark-border);
      padding: 20px;
      z-index: 999;
      flex-direction: column;
      gap: 20px;
    }

    .mobile-nav-menu.active {
      display: flex;
    }

    .mobile-nav-menu a {
      color: white;
      text-decoration: none;
      font-family: var(--font-display);
      font-size: 1.1rem;
      padding: 10px;
      border-radius: 8px;
      transition: background 0.3s;
    }

    .mobile-nav-menu a:hover {
      background: rgba(255,255,255,0.05);
    }

    @media (max-width: 900px) {
      .nav-links .hide-mobile { display: none; }
      .mobile-menu-btn { display: block; }
      .footer-content { grid-template-columns: 1fr; gap: 40px; }
    }
  

/* --- landing.html --- */


  /* Spectacular Hero */
  .hero-section {
    padding: 180px 6% 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 100vh;
  }

  .hero-badge {
    background: rgba(225, 29, 72, 0.1);
    color: var(--brand-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(225, 29, 72, 0.3);
    margin-bottom: 24px;
    animation: fadeInDown 1s ease-out;
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out;
  }

  .hero-title span {
    background: linear-gradient(to right, #FFFFFF, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-title .highlight {
    background: linear-gradient(135deg, var(--brand-red), #FF4B72);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
  }

  .hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out 0.2s both;
  }

  /* Booking Glass Panel */
  .booking-panel {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 12px;
    width: 100%;
    max-width: 900px;
    display: flex;
    gap: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 0 0 1px rgba(255,255,255,0.05);
    animation: fadeInUp 1s ease-out 0.4s both;
  }

  .booking-input-group {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: background 0.3s;
  }
  .booking-input-group:hover {
    background: rgba(255,255,255,0.02);
  }

  .booking-input-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .booking-input-group select, .booking-input-group input {
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    appearance: none;
  }
  
  .booking-input-group select option {
    background: var(--dark-card);
    color: white;
  }

  .btn-primary-mega {
    background: linear-gradient(135deg, var(--brand-red), #FF4B72);
    color: white;
    border: none;
    border-radius: 16px;
    padding: 0 40px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px var(--brand-red-glow);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .btn-primary-mega:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(225, 29, 72, 0.6);
  }

  /* Marquee Clients */
  .trusted-by {
    margin-top: 80px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  .trusted-by p {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
  }
  .client-logos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(100%);
  }
  .client-logos h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
  }

  /* Unique Categories Section */
  .section-pad {
    padding: 120px 6%;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 80px;
  }
  .section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
  }
  .section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .bento-item {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .bento-item:hover {
    border-color: var(--brand-red);
    transform: translateY(-5px);
  }
  
  .bento-item::before {
    content: '';
    position: absolute;
    top: 0; right: 0; width: 150px; height: 150px;
    background: radial-gradient(circle, var(--brand-red-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 50%;
    transform: translate(50%, -50%);
  }
  .bento-item:hover::before {
    opacity: 1;
  }

  /* Grid specific sizing */
  .bento-matrimonial { grid-column: span 2; }
  .bento-property { grid-column: span 1; grid-row: span 2; }

  .bento-icon {
    width: 56px; height: 56px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-red);
    margin-bottom: auto;
  }
  
  .bento-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
  }
  .bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
  }

  /* Process Steps */
  .process-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  .process-container::before {
    content: '';
    position: absolute;
    top: 50px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand-red), transparent);
    opacity: 0.3;
    z-index: 0;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
  }

  .step {
    text-align: center;
  }

  .step-node {
    width: 100px; height: 100px;
    background: var(--dark-surface);
    border: 1px solid var(--dark-border);
    border-radius: 50%;
    margin: 0 auto 32px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    position: relative;
    transition: all 0.3s;
  }
  .step:hover .step-node {
    border-color: var(--brand-red);
    color: var(--brand-red);
    box-shadow: 0 0 30px var(--brand-red-glow);
    transform: scale(1.05);
  }
  
  .step h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
  }
  .step p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  /* Animations */
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 900px) {
    .booking-panel { flex-direction: column; padding: 20px; }
    .btn-primary-mega { padding: 20px; justify-content: center; }
    .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .bento-matrimonial, .bento-property { grid-column: span 1; grid-row: auto; min-height: 250px;}
    .process-container::before { display: none; }
    .process-steps { grid-template-columns: 1fr; gap: 60px; }
  }
