:root {
            --primary-orange: #ff7b29;
            --brand-green: #2d5a27;
            --brand-navy: #1a252f;
            --brand-gold: #d4af37;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --white: #ffffff;
            --bg-light: #f8fafc;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            color: var(--text-dark);
            line-height: 1.7;
            background: var(--white);
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--brand-navy);
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 14px;
            text-align: center;
        }

        .btn-primary {
            background: var(--primary-orange);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 123, 41, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 123, 41, 0.4);
            background: #e0631b;
        }

        /* --- HEADER STYLES --- */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 9999;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .header-lower {
            padding: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .main-header.scrolled .header-lower {
            border-bottom: none;
        }

        .outer-box {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .logo img {
            width: 100%;
            height: auto;
            max-height: 100%;
            object-fit: contain;
            display: block;
        }

        /* Navigation */
        .main-menu .navigation {
            display: flex;
            gap: 5px;
        }

        .main-menu .navigation>li {
            position: relative;
            padding: 10px 15px;
        }

        .main-menu .navigation>li>a {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            transition: all 0.3s ease;
            letter-spacing: 0.5px;
        }

        .main-header.scrolled .main-menu .navigation>li>a {
            color: var(--brand-navy);
        }

        .main-menu .navigation>li:hover>a {
            color: var(--primary-orange);
        }

        /* Dropdowns */
        .main-menu .navigation>li>ul {
            position: absolute;
            top: 100%;
            left: 0;
            width: 230px;
            background: #fff;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 12px 12px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
            transition: all 0.3s ease;
            padding: 10px 0;
            z-index: 100;
            border-top: 3px solid var(--primary-orange);
        }

        .main-menu .navigation>li:hover>ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .main-menu .navigation>li>ul>li>a {
            display: block;
            padding: 10px 25px;
            font-size: 14px;
            font-weight: 600;
            color: var(--brand-navy);
            transition: all 0.3s ease;
        }

        .main-menu .navigation>li>ul>li>a:hover {
            color: var(--primary-orange);
            background: #f8fafc;
            padding-left: 30px;
        }

        /* Support Box */
        .menu-right-content {
            display: flex;
            align-items: center;
        }

        .support-box {
            display: flex;
            flex-direction: column;
            text-align: right;
            border-left: 1px solid rgba(255, 255, 255, 0.2);
            padding-left: 25px;
            margin-left: 25px;
        }

        .main-header.scrolled .support-box {
            border-left-color: #eee;
        }

        .support-box a {
            font-size: 15px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
        }

        .main-header.scrolled .support-box a {
            color: var(--brand-navy);
        }

        /* Header Ticker Line */
        .header-line-hideaway {
            background: #fff;
            display: flex;
            justify-content: center;
            overflow-x: auto;
            white-space: nowrap;
            padding: 5px 0;
            border-bottom: 1px solid #eee;
            scrollbar-width: none;
        }

        .header-line-hideaway::-webkit-scrollbar {
            display: none;
        }

        .keyword-box-hideaway {
            padding: 0 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            color: #333 !important;
            border-right: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .keyword-box-hideaway:last-child {
            border-right: none;
        }

        .keyword-box-hideaway:hover {
            color: var(--primary-orange) !important;
        }

        /* Mobile Menu */
        .mobile-nav-toggler {
            display: none;
            cursor: pointer;
            padding: 10px;
        }

        .mobile-nav-toggler .icon-bar {
            width: 30px;
            height: 3px;
            background: #fff;
            margin: 5px 0;
            display: block;
            transition: all 0.3s ease;
        }

        .main-header.scrolled .mobile-nav-toggler .icon-bar {
            background: var(--brand-navy);
        }

        .mobile-menu {
            position: fixed;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            z-index: 10000;
            transition: all 0.6s ease;
        }

        .mobile-menu.active {
            left: 0;
        }

        .menu-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.85);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-menu.active .menu-backdrop {
            opacity: 1;
            visibility: visible;
        }

        .menu-box {
            position: absolute;
            top: 0;
            left: -320px;
            width: 320px;
            height: 100%;
            background: #fff;
            transition: all 0.4s ease;
            padding: 30px;
            overflow-y: auto;
        }

        .mobile-menu.active .menu-box {
            left: 0;
        }

        .close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 24px;
            color: var(--brand-navy);
            cursor: pointer;
            z-index: 10;
        }

        .nav-logo {
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
        }

        .nav-logo a {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            padding: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .nav-logo img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .mobile-menu .navigation li {
            border-bottom: 1px solid #eee;
        }

        .mobile-menu .navigation li a {
            display: block;
            padding: 15px 0;
            font-size: 16px;
            font-weight: 700;
            color: var(--brand-navy);
        }

        .mobile-menu .navigation li.dropdown>a::after {
            content: '▾';
            float: right;
        }

        .mobile-menu .navigation li ul {
            display: none;
            padding-left: 20px;
            background: #f8fafc;
        }

        @media (max-width: 1024px) {
            .main-menu .navigation {
                display: none;
            }

            .mobile-nav-toggler {
                display: block;
            }

            .support-box {
                display: none;
            }
        }

        /* --- HERO --- */
        .landing-hero {
            height: 70vh;
            min-height: 500px;
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('destination-wedding-photoshoot-in-rishikesh-property.jpg') center/cover no-repeat fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding-top: 100px;
        }

        .landing-hero h1 {
            color: #fff;
            font-size: clamp(2rem, 4vw, 3.5rem);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .landing-hero h1 span {
            color: var(--primary-orange);
        }

        .landing-hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* --- RIVERSIDE VALUE PROPOSITION --- */
        .eco-section {
            background: #fff;
        }

        .grid-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 50px;
        }

        @media (max-width: 992px) {
            .grid-layout {
                grid-template-columns: 1fr;
            }
        }

        .main-text {
            color: #334155;
            font-size: 1.05rem;
            line-height: 1.8;
        }

        .main-text h2 {
            font-size: 1.8rem;
            margin: 35px 0 15px;
            color: var(--brand-navy);
            border-left: 4px solid var(--primary-orange);
            padding-left: 15px;
        }

        .main-text p {
            margin-bottom: 20px;
        }

        .checklist {
            margin: 20px 0;
            padding-left: 20px;
        }

        .checklist li {
            position: relative;
            margin-bottom: 12px;
            padding-left: 30px;
        }

        .checklist li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--brand-green);
        }

        /* Sidebar widget */
        .sidebar {
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .booking-widget {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        }

        .booking-widget h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            text-align: center;
        }

        .widget-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--brand-navy);
        }

        .widget-feature i {
            color: var(--primary-orange);
            font-size: 1.1rem;
        }

        .btn-widget {
            width: 100%;
            margin-top: 15px;
        }

        /* --- VISUAL SHOWCASE --- */
        .visual-showcase {
            background: #f1f5f9;
        }

        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .showcase-card {
            border-radius: 15px;
            overflow: hidden;
            position: relative;
            height: 280px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .showcase-card video, .showcase-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .showcase-card:hover video, .showcase-card:hover img {
            transform: scale(1.05);
        }

        .showcase-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
            color: #fff;
        }

        .showcase-overlay h4 {
            color: #fff;
            font-size: 1.25rem;
            margin-bottom: 5px;
        }

        .showcase-overlay p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }

        /* --- FAQ SECTION --- */
        .faq-section {
            background: #f8fafc;
        }

        .faq-list {
            max-width: 850px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-header {
            padding: 20px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--brand-navy);
            user-select: none;
        }

        .faq-header i {
            transition: var(--transition);
            color: var(--primary-orange);
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: #fafcfd;
        }

        .faq-body-inner {
            padding: 0 25px 25px;
            font-size: 0.95rem;
            color: #475569;
        }

        .faq-item.active {
            border-color: var(--primary-orange);
            box-shadow: 0 5px 15px rgba(255, 123, 41, 0.05);
        }

        .faq-item.active .faq-header i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-body {
            max-height: 500px;
        }

        /* --- FOOTER STYLES --- */
        footer {
            background: var(--brand-navy);
            color: rgba(255,255,255,0.7);
            padding: 80px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        @media (max-width: 992px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 576px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }

        .footer-logo h2 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 20px;
            font-family: 'Montserrat', sans-serif;
        }

        .footer-logo h2 span {
            color: var(--primary-orange);
        }

        .footer-logo p {
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .footer-logo .social-links {
            display: flex;
            gap: 15px;
        }

        .footer-logo .social-links a {
            width: 35px;
            height: 35px;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: var(--transition);
            color: #fff;
        }

        .footer-logo .social-links a:hover {
            background: var(--primary-orange);
        }

        .footer-col h4 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            font-size: 0.95rem;
            transition: var(--transition);
        }

        .footer-col ul li a:hover {
            color: var(--primary-orange);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
            font-size: 0.9rem;
        }

        .floating-ctas {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 999;
        }

        .float-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: var(--transition);
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .float-wa {
            background: #25d366;
        }

        .float-call {
            background: var(--primary-orange);
        }

        .section-title {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
        }

        .section-title h2 {
            font-size: 2.2rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3px;
            background: var(--primary-orange);
        }

        .section-title p {
            color: var(--text-light);
            font-size: 1.05rem;
        }

        /* --- REVIEWS SECTION STYLES --- */
        .reviews {
            background: #f4f6f8;
            padding: 80px 0;
            color: #111;
            overflow: hidden;
        }
        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 50px;
            flex-wrap: wrap;
            gap: 30px;
        }
        .reviews-title-area .badge {
            display: inline-block;
            background: rgba(255, 123, 41, 0.1);
            color: var(--primary-orange);
            font-size: 0.8rem;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 20px;
            margin-bottom: 15px;
            text-transform: uppercase;
        }
        .reviews-title-area h2 {
            font-size: 2rem;
            letter-spacing: -1px;
            margin: 0;
            line-height: 1.2;
        }
        .trust-widgets {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .rating-card {
            background: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }
        .rating-card img {
            height: 30px;
            width: auto;
        }
        .rating-card .rating-info strong {
            font-size: 1.2rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }
        .rating-card .stars {
            color: #fbbc05;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-top: 5px;
        }
        .reviews-masonry-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }
        @media (min-width: 1200px) {
            .reviews-masonry-container {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .reviews-masonry-container {
                grid-template-columns: 1fr;
            }
        }
        .platform-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid #eaeaea;
            display: flex;
            flex-direction: column;
            gap: 15px;
            break-inside: avoid;
            margin-bottom: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .platform-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .platform-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .platform-user {
            display: flex;
            gap: 15px;
            align-items: center;
        }
        .platform-user img {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            object-fit: cover;
        }
        .platform-user-info h4 {
            margin: 0 0 3px 0;
            font-size: 1rem;
            font-weight: 700;
            color: #202124;
        }
        .platform-user-info span {
            font-size: 0.8rem;
            color: #70757a;
            display: block;
        }
        .platform-logo img {
            width: 24px;
            height: 24px;
        }
        .platform-stars {
            display: flex;
            align-items: center;
            color: #fbbc04;
            font-size: 1.1rem;
            line-height: 1;
        }
        .tripadvisor-stars {
            color: #34e0a1;
            display: flex;
            align-items: center;
            line-height: 1;
            font-size: 1.1rem;
        }
        .platform-content {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #3c4043;
        }
        .platform-content strong {
            color: #202124;
            font-weight: 700;
        }
        .ta-title {
            font-weight: 700;
            font-size: 1.05rem;
            margin-bottom: 8px;
            color: #000;
        }
        .ta-date {
            font-size: 0.8rem;
            color: #666;
            margin-top: 15px;
            font-weight: 500;
        }
        .reviews-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }
        .tab-btn {
            padding: 12px 30px;
            border-radius: 50px;
            border: 1px solid #ddd;
            background: #fff;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-light);
        }
        .tab-btn img {
            width: 20px;
            height: 20px;
        }
        .tab-btn.active {
            background: var(--brand-navy);
            color: #fff;
            border-color: var(--brand-navy);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .reviews-content-pane {
            display: none;
        }
        .reviews-content-pane.active {
            display: block;
        }
        @media (max-width: 768px) {
            .reviews-tabs {
                gap: 10px;
            }
            .tab-btn {
                padding: 10px 15px;
                font-size: 0.85rem;
            }
        }
        .platform-highlight-cta {
            margin-top: 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .p-cta-card {
            background: #fff;
            border-radius: 16px;
            padding: 25px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #eaeaea;
            transition: var(--transition);
            text-decoration: none;
            color: inherit;
        }
        .p-cta-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
            border-color: var(--primary-orange);
        }
        .p-cta-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .p-cta-left img {
            width: 50px;
            height: 50px;
        }
        .p-cta-text h4 {
            font-size: 1.1rem;
            margin-bottom: 3px;
            color: var(--brand-navy);
        }
        .p-cta-text p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }
        .p-cta-btn {
            width: 40px;
            height: 40px;
            background: rgba(0,0,0,0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-navy);
            transition: var(--transition);
        }
        .p-cta-card:hover .p-cta-btn {
            background: var(--primary-orange);
            color: #fff;
        }
        @media (max-width: 768px) {
            .platform-highlight-cta {
                grid-template-columns: 1fr;
                gap: 15px;
                margin-top: 30px;
            }
            .p-cta-card {
                padding: 20px;
            }
        }