    /* Custom Homepage Styles */

    /* Global Fix for Horizontal Overflow (White Space on Right) */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100% !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    :root {
        --primary-saffron: #FF9933;
        --primary-saffron-dark: #cc7a29;
        --soft-saffron: #fff5eb;
    }

    /* Hover Effects */
    .hover-lift {
        transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .hover-lift:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 45px rgba(255, 180, 50, 0.15) !important;
    }

    .hover-scale {
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .hover-scale:hover {
        transform: scale(1.05);
    }

    .transition-transform {
        transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .tour-item:hover .transition-transform {
        transform: scale(1.08);
    }

    /* Shadow Utilities */
    .shadow-2xl {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    /* Buttons */
    .btn-premium-cta {
        background: linear-gradient(135deg, var(--primary-saffron) 0%, #ff7700 100%) !important;
        color: white !important;
        border: none !important;
        padding: 12px 35px !important;
        border-radius: 50px !important;
        font-weight: 700 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        transition: all 0.3s ease !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        box-shadow: 0 4px 15px rgba(255, 153, 51, 0.3) !important;
        text-decoration: none !important;
    }

    .btn-premium-cta:hover {
        background: linear-gradient(135deg, #ff7700 0%, var(--primary-saffron) 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 153, 51, 0.4);
    }

    .btn-premium-sm {
        background: var(--primary-saffron);
        color: white;
        border: none;
        padding: 8px 18px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.85rem;
        transition: all 0.2s ease;
    }

    .btn-premium-sm:hover {
        background: var(--primary-saffron-dark);
        color: white;
        transform: scale(1.05);
    }

    .btn-outline-primary-saffron {
        color: var(--primary-saffron);
        border: 2px solid var(--primary-saffron);
        background: transparent;
        transition: all 0.3s ease;
    }

    .btn-outline-primary-saffron:hover {
        background: var(--primary-saffron);
        color: white;
    }

    /* Animations */
    @keyframes pulse {
        0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.4); }
        70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
        100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
    }

    .pulse-animation {
        animation: pulse 2s infinite;
    }

    /* Crystal & Golden Premium Utilities */
    .crystal-panel {
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(25px) saturate(200%) !important;
        -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
        border: 1px solid rgba(255, 215, 0, 0.25) !important;
        box-shadow: 0 15px 35px rgba(255, 180, 50, 0.08), inset 0 0 20px rgba(255, 255, 255, 0.5) !important;
        position: relative;
        overflow: hidden;
    }

    .crystal-panel::before {
        content: "";
        position: absolute;
        top: 0; left: -100%;
        width: 60%; height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.9), transparent);
        transform: skewX(-20deg);
        animation: crystalShine 6s infinite ease-in-out;
    }

    @keyframes crystalShine {
        0% { left: -100%; }
        20%, 100% { left: 200%; }
    }

    .bg-crystal-white {
        background: linear-gradient(120deg, #ffffff 0%, #fffdf8 50%, #ffffff 100%) !important;
        background-size: 200% auto !important;
        animation: crystalShimmerBg 15s ease infinite !important;
    }

    @keyframes crystalShimmerBg {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    .bg-premium-gold {
        background: linear-gradient(135deg, #FFDF80 0%, #FFB300 100%) !important;
    }

    .text-gold-gradient {
        background: linear-gradient(135deg, #D4AF37 0%, #FFAA00 100%);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        display: inline-block;
    }

    .reveal-up {
        opacity: 0;
        transform: translateY(40px);
        animation: revealUpAnim 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }

    @keyframes revealUpAnim {
        to { opacity: 1; transform: translateY(0); }
    }

    .stagger-1 { animation-delay: 0.1s; }
    .stagger-2 { animation-delay: 0.2s; }
    .stagger-3 { animation-delay: 0.3s; }
    .stagger-4 { animation-delay: 0.4s; }

    .modern-hover {
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .modern-hover:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 25px 50px rgba(255, 160, 0, 0.12) !important;
        border-color: rgba(255, 180, 0, 0.5) !important;
    }

    .dynamic-shadow {
        position: relative;
    }
    .dynamic-shadow::after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 5%;
        width: 90%;
        height: 25px;
        background: rgba(255, 160, 0, 0.2);
        filter: blur(20px);
        transform: scale(0.9);
        transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: -1;
    }
    .dynamic-shadow:hover::after {
        transform: scale(1);
        opacity: 1;
    }

    .float-element {
        animation: smoothFloat 6s ease-in-out infinite alternate;
    }
    @keyframes smoothFloat {
        0% { transform: translateY(0px); }
        100% { transform: translateY(-15px); }
    }

    /* Section Specifics */
    .bg-gray-gradient {
        background: linear-gradient(135deg, #ffffff 0%, #fffaf0 50%, #fffdf6 100%) !important;
        background-size: 200% 200% !important;
        animation: goldenBreezeBg 18s ease infinite !important;
    }

    @keyframes goldenBreezeBg {
        0% { background-position: 0% 0%; }
        50% { background-position: 100% 100%; }
        100% { background-position: 0% 0%; }
    }

    .bg-spiritual-light {
        background: linear-gradient(180deg, #fffefb 0%, #fffae8 50%, #fffefb 100%) !important;
        background-size: 100% 200% !important;
        animation: spiritualAuraBg 12s ease infinite !important;
    }

    @keyframes spiritualAuraBg {
        0% { background-position: 50% 0%; }
        50% { background-position: 50% 100%; }
        100% { background-position: 50% 0%; }
    }

    .overlay-spiritual {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, rgba(255,255,255,0.1), rgba(255,153,51,0.05));
        pointer-events: none;
    }

    /* Distinct Spiritual Story Sections */
    .aerial-darshan-section {
        background:
            radial-gradient(circle at 84% 22%, rgba(16, 54, 120, 0.15), transparent 48%),
            linear-gradient(130deg, #fff6e9 0%, #fffdf8 46%, #f4f9ff 100%) !important;
    }

    .spiritual-feature-card {
        border: 1px solid rgba(255, 153, 51, 0.28) !important;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 250, 241, 0.86) 100%) !important;
    }

    .sacred-pills {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .sacred-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        color: #8c4f00;
        background: rgba(255, 153, 51, 0.12);
        border: 1px solid rgba(255, 153, 51, 0.25);
    }

    .sacred-pill i {
        color: #ff8f1f;
    }

    .adi-kailash-section {
        background:
            radial-gradient(circle at 15% 85%, rgba(255, 183, 112, 0.16), transparent 52%),
            linear-gradient(180deg, #fffefb 0%, #fff8f0 100%) !important;
    }

    .sacred-copy-card {
        border-left: 4px solid rgba(255, 153, 51, 0.8);
        padding: 20px 24px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.84);
        backdrop-filter: blur(8px);
    }

    .sacred-image-card {
        border: 1px solid rgba(255, 153, 51, 0.22) !important;
    }

    .om-symbol-section {
        background:
            radial-gradient(circle at 72% 16%, rgba(43, 89, 167, 0.2), transparent 45%),
            linear-gradient(130deg, #f8fbff 0%, #fffefd 60%, #fff8ea 100%) !important;
    }

    .cosmic-image-card {
        border: 1px solid rgba(39, 83, 145, 0.25) !important;
    }

    .cosmic-copy-card {
        position: relative;
        border-radius: 20px;
        padding: 24px 24px 24px 26px;
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 248, 255, 0.8) 100%);
        border: 1px solid rgba(66, 118, 198, 0.2);
    }

    .cosmic-copy-card::before {
        content: "ॐ";
        position: absolute;
        top: -18px;
        right: 14px;
        font-size: 3.5rem;
        font-weight: 700;
        color: rgba(64, 109, 176, 0.2);
        pointer-events: none;
    }

    .sacred-location-section {
        background:
            radial-gradient(circle at 10% 30%, rgba(255, 180, 90, 0.16), transparent 52%),
            linear-gradient(140deg, #fffdf8 0%, #f8fcff 52%, #fffaf2 100%) !important;
    }

    .spiritual-atlas-card {
        border: 1px solid rgba(255, 153, 51, 0.2) !important;
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(252, 248, 240, 0.9)) !important;
    }

    .location-facts-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 14px;
    }

    .location-fact-card {
        border-radius: 16px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(255, 153, 51, 0.18);
        box-shadow: 0 8px 18px rgba(255, 153, 51, 0.08);
    }

    .location-fact-card strong {
        display: block;
        margin-top: 2px;
        color: #2a2a2a;
        font-size: 0.98rem;
    }

    .fact-label {
        display: block;
        color: #9a5c12;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        font-weight: 700;
        font-size: 0.72rem;
    }

    /* Heading Styling and Animated Decorative Lines */
    /* Animated Center Line - Vintage Spiritual Theme pb-3 */
    .block-title {
        position: relative;
        padding-bottom: 25px; /* Create space for the line */
    }

    .block-title .sub-title {
        font-size: 0.95rem;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        display: inline-block;
        margin-bottom: 8px;
    }

    .block-title .title {
        font-weight: 800;
        line-height: 1.3;
    }

    .block-title.text-center::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 320px;
        height: 24px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 30"><g fill="%23FF9933"><path d="M 10 15 Q 18 10 25 15 Q 18 20 10 15 Z"/><circle cx="32" cy="15" r="1.5"/><circle cx="38" cy="15" r="2"/><circle cx="44" cy="15" r="1.5"/><path d="M 180 13 Q 120 14.8 50 15 Q 120 15.2 180 17 Z"/><path d="M 200 15 Q 192 4 200 0 Q 208 4 200 15 Z"/><path d="M 200 15 Q 192 26 200 30 Q 208 26 200 15 Z"/><path d="M 200 15 Q 189 7 185 15 Q 189 23 200 15 Z"/><path d="M 200 15 Q 211 7 215 15 Q 211 23 200 15 Z"/><circle cx="193" cy="9" r="1.5"/><circle cx="207" cy="9" r="1.5"/><circle cx="193" cy="21" r="1.5"/><circle cx="207" cy="21" r="1.5"/><path d="M 220 13 Q 280 14.8 350 15 Q 280 15.2 220 17 Z"/><circle cx="356" cy="15" r="1.5"/><circle cx="362" cy="15" r="2"/><circle cx="368" cy="15" r="1.5"/><path d="M 390 15 Q 382 10 375 15 Q 382 20 390 15 Z"/></g></svg>');
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        z-index: 2;
        animation: fadePulse 4s ease-in-out infinite;
    }

    .block-title.text-center::before {
        display: none;
    }

    @keyframes centerLinePulse {
        0% { width: 100px; opacity: 0.5; }
        50% { width: 300px; opacity: 1; }
        100% { width: 100px; opacity: 0.5; }
    }

    @keyframes spiritualLinePulse {
        0% { width: 80px; opacity: 0.4; }
        50% { width: 180px; opacity: 1; }
        100% { width: 80px; opacity: 0.4; }
    }

    @keyframes spiritualBreathe {
        0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
        50% { transform: translateX(-50%) scale(1.15); opacity: 1; text-shadow: 0 0 15px rgba(255, 153, 51, 0.8); }
        100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    }

    @keyframes fadePulse {
        0% { opacity: 0.7; transform: translateX(-50%) scale(0.98); }
        50% { opacity: 1; transform: translateX(-50%) scale(1.02); }
        100% { opacity: 0.7; transform: translateX(-50%) scale(0.98); }
    }

    /* Animated Left Line - Vintage Spiritual Theme (Left Aligned) */
    .section-title-premium {
        position: relative;
        padding-bottom: 25px;
        margin-bottom: 20px;
    }

    .section-title-premium .sub-title {
        letter-spacing: 2px;
        display: block;
        margin-bottom: 10px;
    }

    .section-title-left::before,
    .block-title.text-start::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 320px;
        height: 24px;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 30"><g fill="%23FF9933"><path d="M 10 15 Q 18 10 25 15 Q 18 20 10 15 Z"/><circle cx="32" cy="15" r="1.5"/><circle cx="38" cy="15" r="2"/><circle cx="44" cy="15" r="1.5"/><path d="M 180 13 Q 120 14.8 50 15 Q 120 15.2 180 17 Z"/><path d="M 200 15 Q 192 4 200 0 Q 208 4 200 15 Z"/><path d="M 200 15 Q 192 26 200 30 Q 208 26 200 15 Z"/><path d="M 200 15 Q 189 7 185 15 Q 189 23 200 15 Z"/><path d="M 200 15 Q 211 7 215 15 Q 211 23 200 15 Z"/><circle cx="193" cy="9" r="1.5"/><circle cx="207" cy="9" r="1.5"/><circle cx="193" cy="21" r="1.5"/><circle cx="207" cy="21" r="1.5"/><path d="M 220 13 Q 280 14.8 350 15 Q 280 15.2 220 17 Z"/><circle cx="356" cy="15" r="1.5"/><circle cx="362" cy="15" r="2"/><circle cx="368" cy="15" r="1.5"/><path d="M 390 15 Q 382 10 375 15 Q 382 20 390 15 Z"/></g></svg>');
        background-repeat: no-repeat;
        background-position: left center;
        background-size: contain;
        z-index: 2;
        animation: fadePulseLeft 4s ease-in-out infinite;
    }

    .section-title-left::after,
    .block-title.text-start::before {
        display: none;
    }

    @keyframes fadePulseLeft {
        0% { opacity: 0.7; transform: scale(0.98); transform-origin: left center; }
        50% { opacity: 1; transform: scale(1.02); transform-origin: left center; }
        100% { opacity: 0.7; transform: scale(0.98); transform-origin: left center; }
    }

    .hover-lift:hover .card-icon i {
        transform: scale(1.1) translateY(-5px);
        transition: transform 0.3s ease;
    }

    /* Premium Category Cards (Original Grid) */
    .category-card-premium {
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.6) 100%);
    }

    /* === Full-Bleed Hero Category Cards === */
    .category-hero-card {
        display: block;
        height: 420px;
        background-size: cover;
        background-position: center;
        transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    }

    .category-hero-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.1) 40%,
            rgba(191,101,0,0.55) 85%,
            rgba(140,70,0,0.85) 100%
        );
        border-radius: inherit;
        transition: background 0.5s ease;
        z-index: 1;
    }

    .category-hero-card:hover {
        transform: translateY(-8px) scale(1.015);
        box-shadow: 0 25px 55px rgba(0,0,0,0.22);
    }

    .category-hero-card:hover::before {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.1) 30%,
            rgba(191,101,0,0.65) 80%,
            rgba(140,70,0,0.95) 100%
        );
    }

    .cat-hero-badge {
        z-index: 3;
    }

    .cat-hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 1.5rem 1.75rem 1.75rem;
        z-index: 2;
        transform: translateY(10px);
        transition: transform 0.4s ease;
    }

    .category-hero-card:hover .cat-hero-content {
        transform: translateY(0);
    }

    .cat-hero-title {
        font-size: 1.5rem;
        font-weight: 800;
        color: #fff;
        margin-bottom: 0.5rem;
        letter-spacing: -0.3px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .cat-hero-desc {
        color: rgba(255,255,255,0.88);
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .cat-hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(255,255,255,0.18);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.4);
        color: #fff;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 0.45rem 1.1rem;
        border-radius: 50px;
        transition: all 0.3s ease;
        letter-spacing: 0.3px;
    }

    .category-hero-card:hover .cat-hero-btn {
        background: rgba(255, 153, 51, 0.9);
        border-color: rgba(255, 153, 51, 1);
        color: #fff;
        box-shadow: 0 4px 15px rgba(255,153,51,0.4);
    }

    /* Yatra Choice Premium Animated Section */
    .yatra-choice-section {
        isolation: isolate;
        background:
            linear-gradient(170deg, #fffefb 0%, #fff9ef 52%, #f8fbff 100%) !important;
    }

    .yatra-choice-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
        overflow: hidden;
    }

    .gold-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(2px);
        opacity: 0.55;
        animation: orbFloat 14s ease-in-out infinite;
    }

    .orb-1 {
        width: 360px;
        height: 360px;
        top: -90px;
        left: -80px;
        background: radial-gradient(circle, rgba(255, 196, 121, 0.48), rgba(255, 196, 121, 0));
    }

    .orb-2 {
        width: 300px;
        height: 300px;
        right: -80px;
        top: 18%;
        background: radial-gradient(circle, rgba(255, 175, 76, 0.35), rgba(255, 175, 76, 0));
        animation-delay: -3s;
    }

    .orb-3 {
        width: 260px;
        height: 260px;
        left: 42%;
        bottom: -80px;
        background: radial-gradient(circle, rgba(176, 214, 255, 0.3), rgba(176, 214, 255, 0));
        animation-delay: -7s;
    }

    .wave-layer {
        position: absolute;
        width: 160%;
        height: 220px;
        left: -30%;
        border-radius: 44%;
        background: radial-gradient(ellipse at center, rgba(255, 215, 152, 0.36) 0%, rgba(255, 215, 152, 0) 68%);
        animation: waveDrift 20s linear infinite;
    }

    .wave-1 {
        bottom: -120px;
    }

    .wave-2 {
        bottom: -142px;
        opacity: 0.6;
        animation-duration: 28s;
        animation-direction: reverse;
    }

    .wave-3 {
        top: -150px;
        opacity: 0.45;
        animation-duration: 32s;
    }

    .shimmer-sweep {
        position: absolute;
        inset: -20% -20% auto -20%;
        height: 320px;
        background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.5) 46%, transparent 72%);
        transform: rotate(-6deg);
        animation: yatraShimmer 12s ease-in-out infinite;
    }

    .yatra-heading-shell {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
    }

    .yatra-heading-shell .title {
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

    .yatra-choice-grid .col-12 {
        position: relative;
        z-index: 1;
    }

    .spiritual-yatra-card {
        border: 1px solid rgba(255, 255, 255, 0.42);
        box-shadow: 0 16px 36px rgba(17, 24, 39, 0.16), 0 4px 14px rgba(255, 153, 51, 0.16);
        transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.45s ease, border-color 0.35s ease;
    }

    .spiritual-yatra-card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid transparent;
        transition: border-color 0.35s ease;
        z-index: 2;
        pointer-events: none;
    }

    .spiritual-yatra-card:hover {
        transform: translateY(-10px) scale(1.012);
        box-shadow: 0 24px 56px rgba(17, 24, 39, 0.2), 0 8px 24px rgba(255, 153, 51, 0.22);
        border-color: rgba(255, 229, 189, 0.75);
    }

    .spiritual-yatra-card:hover::after {
        border-color: rgba(255, 228, 176, 0.85);
    }

    .spiritual-yatra-card .cat-hero-title,
    .spiritual-yatra-card .cat-hero-desc {
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    @keyframes orbFloat {
        0%, 100% { transform: translate3d(0, 0, 0); }
        50% { transform: translate3d(0, -14px, 0); }
    }

    @keyframes waveDrift {
        from { transform: translateX(0) scale(1); }
        to { transform: translateX(8%) scale(1.05); }
    }

    @keyframes yatraShimmer {
        0%, 100% { transform: translateX(-12%) rotate(-6deg); opacity: 0.18; }
        50% { transform: translateX(12%) rotate(-6deg); opacity: 0.42; }
    }

    /* Premium Large Category Cards (2-Column Layout) */
    .category-card-large {
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .category-card-large:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    }

    .category-large-content {
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(255,253,245,0.95) 100%);
        position: relative;
        z-index: 2;
    }

    .category-large-image-wrap {
        overflow: hidden;
    }

    .category-large-image-wrap img {
        transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .category-card-large:hover .category-large-image-wrap img {
        transform: scale(1.08);
    }

    .min-h-250 {
        min-height: 250px;
    }

    .min-h-200 {
        min-height: 200px;
    }

    @media (min-width: 768px) {
        .min-h-250, .min-h-200 {
            min-height: auto;
        }
    }

    .line-clamp-3 {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;  
        overflow: hidden;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 153, 51, 0.1) !important;
        position: relative;
        overflow: hidden;
        z-index: 1;
        height: 100%; /* Ensure equal height in row */
        min-height: 250px;
    }

    .category-card-premium::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--soft-saffron) 0%, #ffffff 100%);
        z-index: -1;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .category-card-premium:hover {
        transform: translateY(-8px);
        border-color: var(--primary-saffron) !important;
        box-shadow: 0 20px 40px rgba(255, 153, 51, 0.1) !important;
    }

    .category-card-premium:hover::before {
        opacity: 1;
    }

    .category-card-premium .card-icon {
        width: 80px;
        height: 80px;
        background: var(--soft-saffron);
        border-radius: 50%;
        display: flex; /* Changed from inline-flex to flex for centering */
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.4s ease;
    }

    .category-card-premium:hover .card-icon {
        background: var(--primary-saffron);
    }

    .category-card-premium:hover .card-icon i {
        color: white !important;
    }

    /* Informational Section Styles */
    .location-info-section {
        position: relative;
        overflow: hidden;
    }

    .location-info-card {
        background: white;
        padding: 50px;
        border-radius: 30px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.05);
        border: 1px solid #f0f0f0;
    }

    .location-title {
        position: relative;
        padding-bottom: 20px;
        margin-bottom: 30px;
    }

    .location-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--primary-saffron);
        border-radius: 2px;
    }

    .location-content-text {
        line-height: 1.8;
        color: #555;
        text-align: justify;
    }

    .location-content-text p {
        margin-bottom: 1.5rem;
    }

    .location-info-section .bg-graphic {
        position: absolute;
        top: -10%;
        right: -5%;
        opacity: 0.03;
        z-index: 0;
        pointer-events: none;
    }

    /* Contact Info in About Section */
    .contact-info-block {
        background: var(--soft-saffron);
        border-radius: 15px;
        padding: 20px;
        border-left: 4px solid var(--primary-saffron);
    }

    .contact-item {
        font-size: 0.95rem;
        color: #333;
    }

    .contact-item i {
        color: var(--primary-saffron);
        width: 20px;
    }

    .hover-underline:hover {
        text-decoration: underline !important;
    }

    .hover-primary:hover {
        color: var(--primary-saffron) !important;
    }

    /* Contact Form Section */
    .contact-section-homepage {
        background-color: #fcfcfc;
        position: relative;
    }

    .contact-form-card {
        background: white;
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    }

    .form-label-premium {
        font-weight: 600;
        font-size: 0.9rem;
        color: #444;
        margin-bottom: 8px;
        display: block;
    }

    .form-control-premium {
        border: 1px solid #eee;
        padding: 12px 20px;
        border-radius: 10px;
        background: #fafafa;
        transition: all 0.3s ease;
    }

    .form-control-premium:focus {
        background: white;
        border-color: var(--primary-saffron);
        box-shadow: 0 0 0 4px rgba(255, 153, 51, 0.1);
        outline: none;
    }

    .contact-info-item {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-info-item .icon {
        width: 50px;
        height: 50px;
        background: var(--soft-saffron);
        color: var(--primary-saffron);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        flex-shrink: 0;
    }

    .contact-info-item .info h5 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 2px;
    }

    .contact-info-item .info p {
        font-size: 0.9rem;
        color: #777;
        margin: 0;
    }

    /* Places to Visit Section */
    .place-card-premium {
        position: relative;
        border-radius: 20px;
        height: 350px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .place-card-premium .card-img-wrap {
        width: 100%;
        height: 100%;
    }

    .place-card-premium img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .place-card-premium:hover img {
        transform: scale(1.1);
    }

    .place-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 30px;
        background: linear-gradient(transparent, rgba(0,0,0,0.85));
        transition: all 0.4s ease;
    }

    .place-name {
        color: white;
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .place-details {
        color: rgba(255,255,255,0.8);
        font-size: 0.9rem;
        transform: translateY(10px);
        opacity: 0;
        transition: all 0.4s ease 0.1s;
    }

    .place-card-premium:hover .place-details {
        transform: translateY(0);
        opacity: 1;
    }

    .place-icon {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: var(--primary-saffron);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        opacity: 0;
        transform: scale(0.5);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .place-card-premium:hover .place-icon {
        opacity: 1;
        transform: scale(1);
    }

    /* Hero Section Redesign */
    .hero-premium {
        position: relative !important;
        min-height: 86vh !important;
        background: #020814;
        overflow: hidden !important;
        display: flex !important;
        align-items: flex-start !important;
        padding: 34px 0 84px !important;
    }

    .hero-bg-media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 0 !important;
        transform: scale(1.05);
        filter: saturate(1.1) contrast(1.02);
        animation: heroImageZoom 20s infinite alternate;
    }

    @keyframes heroImageZoom {
        from { transform: scale(1.05); }
        to { transform: scale(1.15); }
    }

    /* Slideshow System */
    .hero-slideshow {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        opacity: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        animation: slideshowFade 20s infinite;
    }

    .hero-slide:nth-child(1) { animation-delay: -1s; }
    .hero-slide:nth-child(2) { animation-delay: 4s; }
    .hero-slide:nth-child(3) { animation-delay: 9s; }
    .hero-slide:nth-child(4) { animation-delay: 14s; }

    @keyframes slideshowFade {
        0% { opacity: 0; transform: scale(1.05); }
        5% { opacity: 1; transform: scale(1.06); }
        25% { opacity: 1; transform: scale(1.1); }
        30% { opacity: 0; transform: scale(1.11); }
        100% { opacity: 0; transform: scale(1.05); }
    }

    /* Spiritual Particles */
    .spiritual-particles {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        overflow: hidden;
        pointer-events: none;
    }

    .particle {
        position: absolute;
        bottom: -20px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 153, 51, 0) 70%);
        border-radius: 50%;
        opacity: 0;
        animation: floatUp var(--duration) infinite linear;
        width: var(--size);
        height: var(--size);
        left: var(--left);
    }

    @keyframes floatUp {
        0% { transform: translateY(0) scale(1); opacity: 0; }
        20% { opacity: 0.6; }
        80% { opacity: 0.4; }
        100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
    }

    /* Golden Shine Effect */
    .golden-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 200%;
        height: 100%;
        background: linear-gradient(
            120deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(255, 215, 0, 0.05) 38%,
            rgba(255, 215, 0, 0.15) 45%,
            rgba(255, 215, 0, 0.05) 52%,
            rgba(255, 255, 255, 0) 60%
        );
        z-index: 2;
        pointer-events: none;
        animation: shineSweep 8s infinite ease-in-out;
    }

    @keyframes shineSweep {
        0% { left: -100%; }
        20%, 100% { left: 100%; }
    }

    .hero-overlay {
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        background:
            linear-gradient(100deg, rgba(4, 12, 30, 0.84) 18%, rgba(6, 17, 44, 0.6) 48%, rgba(10, 26, 54, 0.32) 100%),
            radial-gradient(circle at 84% 18%, rgba(255, 151, 18, 0.22), transparent 40%);
    }

    .hero-content-wrap {
        position: relative !important;
        z-index: 3 !important;
        width: 100% !important;
        max-width: 1360px !important;
        margin: 43px auto !important;
        padding: 42px 20px 36px !important;
    }

    .hero-content-panel {
        max-width: 860px;
        text-align: left;
    }

    .hero-subtitle-premium {
        display: inline-flex !important;
        align-items: center;
        gap: 8px;
        padding: 8px 14px !important;
        margin-bottom: 16px !important;
        border-radius: 999px !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        background: rgba(255, 255, 255, 0.12) !important;
        backdrop-filter: blur(8px) !important;
        font-size: 0.78rem !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        font-weight: 700 !important;
        color: #ffe2b2 !important;
    }

    .hero-title-premium {
        font-size: clamp(1.9rem, 4.6vw, 4rem) !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 16px !important;
        color: #ffffff !important;
        text-shadow: 0 10px 34px rgba(0, 0, 0, 0.48) !important;
    }

    .hero-description-premium {
        max-width: 760px;
        color: rgba(255, 255, 255, 0.9);
        font-size: clamp(1rem, 1.75vw, 1.2rem);
        line-height: 1.65;
        margin-bottom: 26px;
    }

    .hero-action-premium {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 14px;
    }

    .btn-premium-cta {
        background: linear-gradient(135deg, #ffac33 0%, #ff7b00 100%) !important;
        color: #fff !important;
        border: none !important;
        padding: 14px 32px !important;
        border-radius: 999px !important;
        font-weight: 700 !important;
        font-size: 1rem !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        letter-spacing: 0.01em !important;
        transition: transform 0.25s ease, box-shadow 0.25s ease !important;
        box-shadow: 0 12px 28px rgba(255, 130, 6, 0.35) !important;
    }

    .btn-premium-cta:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 16px 34px rgba(255, 130, 6, 0.45) !important;
        color: #fff !important;
    }

    .btn-hero-secondary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 13px 22px;
        border-radius: 999px;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.95rem;
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.35);
        backdrop-filter: blur(8px);
        transition: all 0.25s ease;
    }

    .btn-hero-secondary:hover {
        color: #0c1f3f;
        background: #ffffff;
        border-color: #ffffff;
    }

    .hero-trust-strip {
        margin-top: 22px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-trust-item {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 12px;
        border-radius: 999px;
        color: #eaf2ff;
        font-size: 0.82rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-trust-item i {
        color: #ffc16a;
    }

    /* Vertical Spacing Utilities */
    .p-top-70 { padding-top: 70px; }
    .p-bottom-70 { padding-bottom: 70px; }
    .p-top-60 { padding-top: 60px; }
    .p-bottom-60 { padding-bottom: 60px; }

    /* Mobile Responsiveness & Adjustments */
    @media (max-width: 1199px) {
        .hero-title-premium { font-size: 3.5rem; }
    }

    @media (max-width: 991px) {
        .p-top-70, .p-bottom-70 { 
            padding-top: 50px !important; 
            padding-bottom: 50px !important; 
        }
        .hero-premium { min-height: 75vh !important; padding: 40px 0 58px !important; }
        .hero-content-wrap { padding: 34px 16px 28px !important; }
        .hero-content-panel { max-width: 100%; text-align: center; }
        .hero-title-premium { font-size: 3rem; }
        .hero-description-premium { margin-left: auto; margin-right: auto; }
        .hero-action-premium { justify-content: center; }
        .hero-trust-strip { justify-content: center; }
        .location-info-card { padding: 35px; }
    }

    @media (max-width: 767px) {
        .hero-premium { height: auto; min-height: 520px; padding: 20px 0 30px !important; }
        .hero-title-premium { font-size: 2rem; line-height: 1.15; margin-bottom: 12px !important; }
        
        .hero-subtitle-premium { 
            letter-spacing: 0.05em !important; 
            font-size: 0.65rem !important;
            padding: 6px 10px !important;
            margin-bottom: 10px !important;
        }

        .hero-content-wrap {
            padding: 20px 12px 15px !important;
            margin: 20px auto !important;
            width: 100% !important;
        }

        .hero-description-premium {
            font-size: 0.9rem;
            line-height: 1.45;
            margin-bottom: 15px;
        }

        .hero-action-premium {
            gap: 10px;
        }

        .btn-premium-cta,
        .btn-hero-secondary {
            width: 100%;
            justify-content: center;
            padding: 10px 20px !important;
            font-size: 0.9rem !important;
        }

        .hero-trust-strip {
            flex-direction: column;
            align-items: center;
            margin-top: 15px;
            gap: 6px;
        }

        .hero-trust-item {
            justify-content: center;
            padding: 6px 10px;
            font-size: 0.75rem;
            width: 100%;
            max-width: 280px;
        }
        
        .section-title-premium.section-title-left { text-align: center; }
        
        .info-content-box { 
            padding: 30px !important; 
            text-align: center; 
        }
        
        .location-info-card { padding: 25px; }
        .location-title h2 { font-size: 1.75rem; }
        .location-content-text { text-align: left; font-size: 0.95rem; }
        .sacred-copy-card,
        .cosmic-copy-card { padding: 18px; }
        .sacred-pills { gap: 8px; }
        .location-facts-grid { grid-template-columns: 1fr; gap: 10px; }
        
        .contact-form-card { padding: 25px; }
        
        /* Section specific mobile fixes */
        .info-split-section {
            flex-direction: column-reverse !important;
        }

        .sacred-pills { 
            justify-content: center; 
            gap: 6px; 
            margin-bottom: 20px !important;
        }

        .sacred-copy-card, 
        .cosmic-copy-card { 
            padding: 20px !important;
            text-align: center !important;
            border-radius: 20px !important;
        }

        .sacred-copy-card { border-left: none !important; border-top: 4px solid rgba(255, 153, 51, 0.8) !important; }
        
        .cosmic-copy-card::before {
            font-size: 2.5rem;
            top: -10px;
            right: 10px;
            opacity: 0.1;
        }

        .sacred-image-card, 
        .cosmic-image-card {
            margin-top: 15px !important;
            margin-bottom: 5px !important;
        }

        .section-title-premium {
            text-align: center !important;
            padding-bottom: 15px !important;
        }

        .section-title-left::before {
            left: 50% !important;
            transform: translateX(-50%) !important;
            background-position: center !important;
        }
        
        .place-card-premium { height: 280px; }
        .place-name { font-size: 1.25rem; }
        .yatra-choice-section {
            padding-top: 48px !important;
            padding-bottom: 46px !important;
        }
        .wave-layer {
            height: 180px;
        }
        .orb-1 {
            width: 280px;
            height: 280px;
            left: -120px;
        }
        .orb-2 {
            width: 220px;
            height: 220px;
            right: -90px;
        }
        .spiritual-yatra-card {
            box-shadow: 0 12px 28px rgba(17, 24, 39, 0.16), 0 4px 12px rgba(255, 153, 51, 0.16);
        }
    }

    @media (max-width: 575px) {
        .hero-title-premium { font-size: 1.85rem; }
        .p-top-70, .p-bottom-70 { 
            padding-top: 40px !important; 
            padding-bottom: 40px !important; 
        }
        .yatra-heading-shell .title {
            font-size: 1.65rem;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .gold-orb,
        .wave-layer,
        .shimmer-sweep,
        .spiritual-yatra-card {
            animation: none !important;
            transition: none !important;
        }
    }
