* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-purple: #4a235a;
            --secondary-gold: #d4a574;
            --accent-brown: #8b5a3c;
            --light-bg: #f8f7f5;
            --white: #ffffff;
            --dark-bg: #2a1535;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Navbar */
        .navbar {
            background: var(--white);
            padding: 1.2rem 0;
            box-shadow: 0 2px 15px rgba(74, 35, 90, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-purple) !important;
            transition: transform 0.3s ease;
        }

        .navbar .navbar-brand:hover {
            transform: scale(1.05);
        }

        .navbar-brand img {
            height: 60px;
            width: auto;
        }

        .nav-item a {
            font-size: 20px;
        }

        .navbar-nav .nav-link {
            color: #333 !important;
            margin: 0 15px;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
        }

        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary-gold), var(--accent-brown));
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover:after {
            width: 100%;
        }

        .btn-book {
            background: linear-gradient(135deg, var(--primary-purple), #5a3370);
            color: var(--white) !important;
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-book:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(74, 35, 90, 0.3);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f7f5 0%, #fff 50%, #f0ebe5 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-content h1 {
            color: var(--primary-purple);
            font-size: 3.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            color: #666;
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 50px;
            margin-top: 40px;
        }

        .stat {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-gold);
        }

        .stat-label {
            color: #666;
            font-size: 0.95rem;
            margin-top: 5px;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--secondary-gold) 0%, #c9945f 100%);
            color: var(--primary-purple);
            border: none;
            padding: 15px 40px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
            display: inline-block;
            text-decoration: none;
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(212, 165, 116, 0.5);
        }

        .btn-secondary-custom {
            background: transparent;
            color: var(--primary-purple);
            border: 2px solid var(--primary-purple);
            padding: 12px 35px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-secondary-custom:hover {
            background: var(--primary-purple);
            color: var(--white);
        }

        .hero-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(74, 35, 90, 0.2);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            color: var(--primary-purple);
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
        }

        .accent-underline {
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--secondary-gold), var(--accent-brown));
            margin: 15px auto;
            border-radius: 3px;
        }

        /* Journey Section */
        .journey {
            padding: 100px 0;
            background: var(--white);
        }

        .journey-item {
            text-align: center;
            margin-bottom: 50px;
        }

        .journey-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-purple), #5a3370);
            color: var(--secondary-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 800;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }

        .journey-item:hover .journey-number {
            transform: scale(1.1);
            box-shadow: 0 10px 30px rgba(74, 35, 90, 0.3);
        }

        .journey-item h3 {
            color: var(--primary-purple);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .journey-item p {
            color: #666;
            line-height: 1.8;
        }

        /* Circular Timeline */
        .circular-timeline {
            position: relative;
            width: 400px;
            height: 400px;
            margin: 0 auto;
        }

        .circle-item {
            position: absolute;
            width: 120px;
            text-align: center;
        }

        .circle-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--secondary-gold), #c9945f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 1.8rem;
            color: var(--primary-purple);
            transition: all 0.3s ease;
        }

        .circle-item:hover .circle-icon {
            transform: scale(1.15);
            box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
        }

        .center-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--primary-purple), #5a3370);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            text-align: center;
            font-weight: 700;
            z-index: 1;
        }

        .circular-timeline,
        .circle-item,
        .center-circle {
        pointer-events: none;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .service-card {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 5px 15px rgba(74, 35, 90, 0.1);
            border-top: 4px solid var(--secondary-gold);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, rgba(212, 165, 116, 0.1), transparent);
            transition: left 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(74, 35, 90, 0.2);
            border-top-color: var(--accent-brown);
        }

        .service-icon {
            font-size: 3.5rem;
            color: var(--primary-purple);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            color: var(--secondary-gold);
            transform: rotate(10deg) scale(1.1);
        }

        .service-card h3 {
            color: var(--primary-purple);
            font-weight: 700;
            margin-bottom: 15px;
        }

        .service-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Pricing Section */
        .pricing {
            padding: 100px 0;
            background: var(--white);
        }

        .pricing-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            border: 2px solid transparent;
        }

        .pricing-card.featured {
            background: linear-gradient(135deg, var(--primary-purple), #5a3370);
            color: var(--white);
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(74, 35, 90, 0.3);
        }

        .pricing-card:hover {
            border-color: var(--secondary-gold);
            transform: translateY(-10px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.08) translateY(-10px);
        }

        .price {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-gold);
            margin: 20px 0;
        }

        .pricing-card.featured .price {
            color: var(--secondary-gold);
        }

        .pricing-features {
            list-style: none;
            margin: 30px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.1);
            color: #666;
        }

        .pricing-card.featured .pricing-features li {
            color: rgba(255,255,255,0.9);
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }

        .pricing-features li:before {
            content: '✓ ';
            color: var(--secondary-gold);
            font-weight: 700;
            margin-right: 10px;
        }

        /* Team Section */
        .team {
            padding: 100px 0;
            background: var(--light-bg);
        }

        .team-slider {
            margin-top: 60px;
        }

        .team-card {
            text-align: center;
            padding: 20px;
        }

        .team-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            box-shadow: 0 10px 30px rgba(74, 35, 90, 0.2);
            transition: all 0.3s ease;
        }

        .team-card:hover .team-image {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(74, 35, 90, 0.3);
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-name {
            color: var(--primary-purple);
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .team-title {
            color: var(--secondary-gold);
            font-size: 0.95rem;
            margin-bottom: 10px;
        }

        .team-bio {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            padding: 100px 0;
            background: var(--white);
        }

        .testimonial-card {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            border-left: 5px solid var(--secondary-gold);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(74, 35, 90, 0.15);
        }

        .testimonial-text {
            color: #666;
            font-size: 1.05rem;
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-name {
            color: var(--primary-purple);
            font-weight: 700;
        }

        .testimonial-role {
            color: var(--secondary-gold);
            font-size: 0.9rem;
        }

        .stars {
            color: var(--secondary-gold);
            margin-bottom: 10px;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary-purple) 0%, #5a3370 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Footer */
        .footer {
            background: var(--dark-bg);
            color: var(--white);
            padding: 50px 0 20px;
        }

        .footer-content {
            margin-bottom: 40px;
        }

        .footer-content h5 {
            color: var(--secondary-gold);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-content p, .footer-content li {
            color: #ccc;
            line-height: 1.8;
        }

        .footer-content ul {
            list-style: none;
            padding: 0;
        }

        .footer-content a {
            color: var(--secondary-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-content a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(212, 165, 116, 0.3);
            padding-top: 20px;
            text-align: center;
            color: #aaa;
        }

        /* Image Slider */
        .carousel-inner {
            border-radius: 15px;
            overflow: hidden;
            /* box-shadow: 0 10px 30px rgba(74, 35, 90, 0.2); */
        }

        .carousel-item img {
            height: 400px;
            object-fit: cover;
        }

        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(74, 35, 90, 0.5);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            transition: all 0.3s ease;
        }

        .carousel-control-prev:hover, .carousel-control-next:hover {
            background: var(--primary-purple);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .hero-stats {
                flex-direction: row;
                gap: 20px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .pricing-card.featured:hover {
                transform: translateY(-10px);
            }

            .stat-number {
                font-size: 2rem;
            }

            .circular-timeline {
                width: 100%;
                height: auto;
            }

            .circle-item {
                position: static;
                margin-bottom: 30px;
                margin: 0 auto;
                transform: unset !important;
            }

            .center-circle {
                position: static;
                transform: none;
                margin: 30px auto;
            }

            .cta h2 {
                font-size: 1.8rem;
            }
        }
        @media(max-width: 396px){
            body nav.navbar.navbar-expand-lg.navbar-light .container-lg {
                justify-content: center !important;
                gap: 20px !important;
            }

            .navbar {
                position: unset;
            }
        }