  :root {
      --primary-red: #C41E3A;
      --dark-red: #8B0000;
      --gold: #D4AF37;
      --gold-light: #E8C56A;
      --cream: #FFF8DC;
      --white: #FFFFFF;
      --light-bg: #f9f0e6;
      --dark: #2c2c2c;
      --shadow-sm: 0 4px 15px rgba(196, 30, 58, 0.1);
      --shadow-md: 0 10px 40px rgba(196, 30, 58, 0.15);
      --shadow-lg: 0 20px 60px rgba(196, 30, 58, 0.2);
      --radius: 20px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--light-bg);
      color: var(--dark);
      line-height: 1.7;
      overflow-x: hidden;
    }

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

    /* ===== HERO SECTION ===== */
    .hero {
      height: 100vh;
      background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 50%, var(--primary-red) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      color: white;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="120" height="120" viewBox="0 0 120 120"><path d="M60 15 L73 45 L110 45 L82 67 L92 100 L60 80 L28 100 L38 67 L10 45 L47 45 Z" fill="%23FFD700" opacity="0.12"/></svg>') repeat;
      animation: float 25s infinite linear;
      pointer-events: none;
    }

    @keyframes float {
      from { transform: translateY(0) rotate(0deg); }
      to { transform: translateY(-120px) rotate(360deg); }
    }

    .hero-content {
      text-align: center;
      z-index: 2;
      padding: 2rem;
      animation: fadeInUp 1.2s ease;
    }

    .hero h1 {
      font-family: 'Cinzel', serif;
      font-size: 4.8rem;
      color: var(--gold);
      text-shadow: 0 0 40px rgba(212, 175, 55, 0.6);
      margin-bottom: 1rem;
      letter-spacing: 1px;
    }

    .hero .subtitle {
      font-size: 1.6rem;
      color: var(--cream);
      margin-bottom: 2.5rem;
      font-weight: 300;
    }

    .cta-button {
      display: inline-block;
      padding: 1.1rem 3.2rem;
      background: linear-gradient(45deg, #b59c74, #f2f08fff);
      color: var(--dark);
      font-weight: 700;
      font-size: 1.2rem;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
      transition: left 0.6s;
    }

    .cta-button:hover::before { left: 100%; }
    .cta-button:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

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

    /* ===== MAIN CONTAINER ===== */
    .main-container {
      padding: 9rem 4% 5rem;
      max-width: 1600px;
      margin: 0 auto;
    }

    .container-wrapper {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
    }

 
    /* Content Area */
    .content-area {
      flex: 1;
    }

    .section-title {
      font-family: 'Cinzel', serif;
      font-size: 3.2rem;
      color: var(--primary-red);
      text-align: center;
      margin-bottom: 3.5rem;
      position: relative;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.9s ease;
    }

    .section-title.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .section-title::after {
      content: '';
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      display: block;
      margin: 1rem auto;
      border-radius: 2px;
    }

    .content-card {
      background: var(--white);
      border: 2px solid rgba(196, 30, 58, 0.15);
      border-radius: var(--radius);
      padding: 3rem;
      margin-bottom: 3rem;
      box-shadow: var(--shadow-sm);
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .content-card-cta{
        background: var(--white);
      border: 2px solid rgba(196, 30, 58, 0.15);
      border-radius: var(--radius);
      padding: 3rem;
      /* margin-bottom: 3rem; */
      box-shadow: var(--shadow-sm);
      
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .content-card.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .content-card h2 {
      font-family: 'Cinzel', serif;
      color: var(--primary-red);
      font-size: 2.1rem;
      margin-bottom: 1.4rem;
      position: relative;
    }

    .content-card p {
      font-size: 1.08rem;
      color: #444;
      margin-bottom: 1.2rem;
    }

    /* Image Gallery */

      /* Image Gallery - Jumbled Layout */
    .highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      grid-auto-rows: 200px;
      gap: 1.5rem;
      margin-top: 2.5rem;
    }

    .highlight-item {
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }

    .highlight-item:nth-child(1) {
      grid-column: span 1;
      grid-row: span 2;
    }

    .highlight-item:nth-child(2) {
      grid-column: span 1;
      grid-row: span 1;
    }

    .highlight-item:nth-child(3) {
      grid-column: span 1;
      grid-row: span 1;
    }

    .highlight-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    /* CTA in Content */
    .content-card .cta-button {
      margin: 2rem auto;
      display: block;
      width: fit-content;
    }

    .cta-button-book-now {
      margin: 2rem auto;
      display: block;
      width: fit-content;
      padding: 12px 32px;
      background-color: #e63946; /* Vibrant red */
      color: white;
      font-size: 1.1rem;
      font-weight: bold;
      text-align: center;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .cta-button-book-now:hover {
      background-color: #d00000;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
    }

    .cta-button-book-now:active {
      transform: translateY(1px);
    }


    /* Why Choose Section */
    .content-card ul {
      list-style: none;
      padding-left: 0.5rem;
    }

    .content-card li {
      position: relative;
      padding-left: 2rem;
      margin-bottom: 1rem;
      font-size: 1.05rem;
    }

    .content-card li::before {
      content: '✦';
      color: var(--gold);
      position: absolute;
      left: 0;
      font-weight: bold;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--primary-red);
      color: var(--cream);
      text-align: center;
      padding: 2.5rem 5%;
      font-size: 0.95rem;
    }

    footer a {
      color: var(--gold);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
        .container-wrapper {
            flex-direction: column;
        }

        .content-area {
            order: 1;
        }

    }

    @media (max-width: 600px) {
      .hero h1 { font-size: 2.5rem; }
      .hero .subtitle { font-size: 1.3rem; }
      .content-card { padding: 2rem; }
      .highlights { grid-template-columns: 1fr; }
    }

     .ayodhya-package {
    /* background: linear-gradient(135deg, #8b0000 0%, #ff4d4d 100%); */
    color: #fff;
    padding: 90px 20px;
    overflow: hidden;
        }

        .ayodhya-package-sections {
            /* background: linear-gradient(135deg, #8b0000 0%, #ff4d4d 100%); */
            color: #fff;
            padding: 28px 20px 50px;
            overflow: hidden;
        }

         .kerala-package-sections {
            /* background: linear-gradient(135deg, #8b0000 0%, #ff4d4d 100%); */
            color: #fff;
            padding: 1px 0px 50px;
            overflow: hidden;
        }

        .contact-form select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: 0.3s;
  background-color: #fff;
}

.contact-form select:focus {
  border-color: #c41e3a;
  outline: none;
  box-shadow: 0 0 6px rgba(196, 30, 58, 0.3);
}


        .package-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .section-subtitle {
            color: #000000ff;
            font-size: 1.2rem;
            margin-bottom: 50px;
        }

        .package-card {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            /* background: #fff; */
            color: #333;
            /* border-radius: 25px; */
            /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); */
            overflow: hidden;
            transition: transform 0.4s ease;
        }

        .package-card:hover {
            transform: translateY(-10px);
        }

        .package-text {
            flex: 1 1 50%;
            padding: 50px 40px;
            text-align: left;
        }

        .package-text h3 {
            font-size: 1.8rem;
            color: #b30000;
            margin-bottom: 20px;
        }

        .package-text p {
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #444;
        }

        .package-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }

        .package-list li {
            font-size: 1rem;
            padding: 6px 0;
            position: relative;
        }

        .package-list li::before {
            content: "•";
            color: #ff4d4d;
            font-weight: bold;
            margin-right: 8px;
        }

        .book-btn {
            display: inline-block;
            background: linear-gradient(90deg, #cc0000, #ff6666);
            color: #fff;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: background 0.4s ease, transform 0.2s ease;
        }

        .book-btn:hover {
            background: linear-gradient(90deg, #ff1a1a, #cc0000);
            transform: scale(1.05);
        }

        .package-image {
            flex: 1 1 50%;
            overflow: hidden;
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .package-card:hover .package-image img {
            transform: scale(1.1);
        }

        @media (max-width: 900px) {
            .package-card {
            flex-direction: column;
            }
            .package-text {
            text-align: center;
            }
        }

        .package-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 30px;
        }

        @media (max-width: 768px) {
        .package-features {
            grid-template-columns: 1fr;
        }
        }

        .feature {
        background: #ffffffff;
        border-radius: 20px;
        padding: 30px 20px;
        box-shadow: 0 6px 20px rgba(255, 77, 77, 0);
        transition: all 0.4s ease;
        text-align: center;
        }

        .feature:hover {
        background: #ffefef;
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(204, 0, 0, 0.25);
        }

        .icon-box {
        background: linear-gradient(135deg, #cc0000, #ff4d4d);
        color: #fff;
        width: 60px;
        height: 60px;
        margin: 0 auto 15px auto;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        box-shadow: 0 4px 12px rgba(204, 0, 0, 0.4);
        }

        .feature h4 {
        font-size: 1.2rem;
        color: #b30000;
        margin-bottom: 8px;
        font-weight: 700;
        }

        .feature p {
        font-size: 0.95rem;
        color: #555;
        line-height: 1.6;
        }
