        :root {
            --primary-color: #1a5276;
            --secondary-color: #a3e4d7;
            --accent-color: #f39c12;
            --light-color: #f8f9fa;
            --dark-color: white;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-weight: 400;
        }
        
        .navbar-brand {
            /*font-family: 'Playfair Display', serif;*/
            /*font-weight: 700;*/
            /*font-size: 1.8rem;*/
            /*color: var(--accent-color) !important;*/
        }
      
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/pexels-aidun-10792604.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        
            /* Animation setup */
            filter: grayscale(100%);
            animation: heroColorReveal 4s ease forwards;
        }
        
        /* Animation keyframes */
        @keyframes heroColorReveal {
            from {
                filter: grayscale(100%);
            }
            to {
                filter: grayscale(0%);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        
        .highlight {
            color: var(--accent-color);
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #154360;
            border-color: #154360;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-padding {
            margin-top: 0.44em;
            padding: 100px 0;
        }
        
        .card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .card:hover {
            transform: translateY(-10px);
        }
        
        .card-img-top {
            height: 200px;
            object-fit: cover;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--secondary-color);
        }
        
        .timeline-item {
            margin-bottom: 40px;
            position: relative;
            width: 50%;
            padding-right: 30px;
        }
        
        .timeline-item:nth-child(even) {
            margin-left: 50%;
            padding-left: 30px;
            padding-right: 0;
        }
        
        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--primary-color);
            border-radius: 50%;
            right: -10px;
            top: 10px;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
            right: auto;
        }
        
        .timeline-content {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .price-box {
            background: linear-gradient(135deg, var(--primary-color), #1a5276);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(26, 82, 118, 0.3);
        }
        
        .price-amount {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 20px 0;
        }
        
        .included-list, .excluded-list {
            list-style: none;
            padding-left: 0;
        }
        
        .included-list {
            list-style: none;
            padding-left: 0;
        }
        
        .included-list li {
            position: relative;
            padding-left: 26px;   
            line-height: 1.6;
        }
        
        .included-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            color: green;
            font-weight: bold;
        }

        .excluded-list {
            list-style: none;
            padding-left: 0;
        }
        
        .excluded-list li {
            position: relative;
            padding-left: 26px;     
            line-height: 1.6;
        }
        
        .excluded-list li::before {
            content: '✗';
            position: absolute;
            left: 0;
            top: 0;
            color: #e74c3c;
            font-weight: bold;
        }
        
        .contact-info {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 15px;
        }
        
        .footer {
            background-color: var(--dark-color);
            color: white;
            padding: 40px 0 20px;
        }
        
        /* Animation classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s, transform 0.8s;
        }
        
        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Fixed navbar on scroll */
        .navbar {
            transition: all 0.3s;
            padding: 20px 0;
        }
        
        .navbar.scrolled {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        
        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .timeline:before {
                left: 20px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 0;
            }
            
            .timeline-item:nth-child(even) {
                margin-left: 0;
                padding-left: 50px;
            }
            
            .timeline-dot {
                left: 10px;
                right: auto;
            }
            
            .timeline-item:nth-child(even) .timeline-dot {
                left: 10px;
            }
        }
        
        /*.playfair{*/
        /*    font-family: Times New Roman;*/
        /*}*/
        
        /* Gallery Custom Styles */
        .filter-btn {
            margin: 5px;
            cursor: pointer;
            border: 2px solid var(--primary-color);
            background: transparent;
            color: var(--primary-color);
            padding: 8px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary-color);
            color: white;
        }
        .gallery-item {
            margin-bottom: 30px;
        }
        .gallery-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            cursor: pointer;
        }
        .gallery-img-wrapper img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .gallery-img-wrapper:hover img {
            transform: scale(1.1);
        }
        .gallery-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(26, 82, 118, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        .gallery-img-wrapper:hover .gallery-overlay {
            opacity: 1;
        }
        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        .highlight-date {
            font-size: 1.65em;
            font-weight: 700;
        }