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

      html,
      body {
        height: 100%;
        width: 100%;
      }

      /* HERO SECTION */
      .hero {
        overflow: hidden;
      }

      .hero img {
        width: 100%;
        height: auto;
        display: block;
      }

      @media (max-width: 600px) {
        .hero img {
          height: auto;
		  padding-top: 20px;
        }
        
        .img {
          width: 180px;
        }
      }

		/* package index card */
				.row.g-4.py-2 a.btn {
  display: inline-block;
  padding-left: 2rem;
  padding-right: 2rem; /* horizontal padding for wider button */
  margin-left: auto;
  margin-right: auto; /* center the button horizontally */
  max-width: 300px; /* optional: limit max width */
  width: 100%; /* make button responsive up to max width */
  text-align: center;
}
		
		.featured-dest{
			font-family: 'Playfair Display', serif;
			font-size: 40px;
		}
		
		.card-title {
            font-family: 'Playfair Display', serif;
			font-weight: 700;
			font-size: 1.4rem;
        }
	  
	  /* Package Card in package Details page */
	  
	   /* Package Card Styles */
			#textmuted{
				white-space: pre-wrap; /* Preserve spaces and line breaks */
				word-wrap: break-word; /* Handle long words */
			}
        .package-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
            background: white;
            margin-bottom: 30px;
            height: 100%;
            position: relative;
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .package-img-container {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        
        .package-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .package-card:hover .package-img {
            transform: scale(1.05);
        }
        
        .card-content {
            padding: 25px;
        }
        
        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--accent);
            color: white;
            padding: 6px 12px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.8rem;
            box-shadow: 0 4px 10px rgba(255,107,53,0.3);
            z-index: 2;
        }
        
        .package-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }
        
        .package-details {
            margin-bottom: 20px;
        }
		
		#packagedetails {
			white-space: pre-wrap;
			word-wrap: break-word;
			font-family: 'Playfair Display', serif;
			font-size: 20px;
			}
        
        .detail-item {
            display: flex;
            margin-bottom: 10px;
            align-items: flex-start;
        }
        
        .detail-icon {
            color: var(--primary);
            min-width: 24px;
            margin-right: 12px;
            font-size: 1rem;
            margin-top: 3px;
        }
        
        .detail-text {
            flex: 1;
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        .feature-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin: 15px 0;
        }
        
        .feature-badge {
            background-color: var(--light-gray);
            color: var(--dark);
            border-radius: 20px;
            padding: 5px 12px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        .price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--accent);
            margin: 15px 0;
        }
        
        .price span {
            font-size: 0.9rem;
            color: var(--gray);
            font-weight: 400;
        }
        
        .btn-view {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-size: 0.85rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
        }
        
        .btn-view:hover {
            background: var(--secondary);
            transform: translateY(-2px);
        }
        
        .btn-view i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .btn-view:hover i {
            transform: translateX(3px);
        }
        

        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .package-img-container {
                height: 200px;
            }
            
            .card-content {
                padding: 20px;
            }
        }
        
        .package-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .results-count {
            background: white;
            padding: 10px 20px;
            border-radius: 30px;
            display: inline-block;
            margin-bottom: 20px;
            box-shadow: var(--shadow);
        }
		
		/* Card Animations */
        .feature-card {
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1);
            color: #007bff !important;
        }


        .feature-card:hover .card-title {
            color: #007bff;
        }

        /* Section styling */
        .features-section {
            padding: 80px 0;
            background-color: #f8f9fa;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #6c757d;
            margin-bottom: 3rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .feature-icon {
                font-size: 2.5rem;
            }
        }
		
		/* extra package in package details page */
		
		.luxury-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .luxury-heading {
            font-family: 'Playfair Display', serif;
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
            text-align: center;
            color: var(--luxury-dark);
        }
        
        .luxury-heading:after {
            content: '';
            display: block;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--luxury-primary), var(--luxury-secondary));
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .luxury-subheading {
            text-align: center;
            margin-bottom: 50px;
            color: #6c757d;
            font-size: 1.1rem;
        }
        
        .luxury-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            background: white;
            width: 100%;
        }
        
        .luxury-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .luxury-card-header {
            background: var(--secondary-color);
            color: black;
            padding: 25px 30px;
            border-bottom: 0;
            position: relative;
        }
        
        .luxury-card-title {
            margin: 0;
            font-weight: 700;
            font-size: 1.8rem;
            font-family: 'Playfair Display', serif;
        }
        
        .luxury-card-body {
            padding: 30px;
        }
        
        .luxury-features-title {
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--luxury-dark);
            font-size: 1.3rem;
            border-bottom: 2px solid var(--luxury-primary);
            padding-bottom: 10px;
        }
        
        .luxury-features-list {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .luxury-features-list li {
            padding: 12px 0;
            border-bottom: 1px dashed #e9ecef;
            display: flex;
            align-items: center;
        }
        
        .luxury-features-list li:last-child {
            border-bottom: none;
        }
        
        .luxury-features-list li i {
            color: var(--luxury-primary);
            margin-right: 15px;
            font-size: 16px;
            background: rgba(13, 110, 253, 0.1);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        
        .luxury-details {
            background-color: #f8f9fa;
            border-left: 4px solid var(--luxury-primary);
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
            font-style: italic;
            position: relative;
        }
        
        .luxury-details:before {
            content: '"';
            font-size: 3rem;
            color: var(--luxury-primary);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 15px;
            font-family: 'Playfair Display', serif;
        }
        
        .luxury-details-content {
            padding-left: 30px;
        }
        
        .luxury-price {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--luxury-primary);
            margin: 25px 0;
            text-align: center;
        }
        
        .luxury-btn-book {
            background: beige;
            color: black;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            display: block;
            width: 100%;
            margin-top: 20px;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }
        
        .luxury-btn-book:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }
        
        .luxury-btn-book:hover:before {
            left: 100%;
        }
        
        .luxury-btn-book:hover {
            background: linear-gradient(to right, var(--luxury-secondary), var(--luxury-primary));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(58, 134, 255, 0.4);
        }
        
        .luxury-ribbon {
            position: absolute;
            top: 20px;
            right: -35px;
            transform: rotate(45deg);
            background-color: var(--luxury-accent);
            color: white;
            padding: 5px 40px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .luxury-card {
                margin-bottom: 20px;
            }
            
            .luxury-card-title {
                font-size: 1.5rem;
            }
            
            .luxury-card-body {
                padding: 20px;
            }
            
            .luxury-price {
                font-size: 1.8rem;
            }
            
            .luxury-btn-book {
                padding: 12px 25px;
            }
        }
		
		/* Google review section index php */
			
			.google-review {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #f8f9fa;
            color: #343a40;
            padding: 20px;
        }
        
        .gr-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .gr-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .gr-header-title {
            font-weight: 300;
            margin-bottom: 10px;
            color: #1a73e8;
        }
        
        .gr-header-subtitle {
            color: #70757a;
            font-size: 1.1rem;
        }
        
       
		.gr-review-img {
			width: 100%;
			max-width: 350px;    /* restricts image to card size */
			height: 180px;       /* fixed height for uniformity */
			object-fit: contain; /* shows the whole image, no crop */
			background: #f8f9fa; /* matches card background, fills empty areas */
			border-radius: 8px;
			box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
			margin: 15px auto 0;
			display: block;
		}
		@media (max-width: 768px) {
			.gr-review-img {
				max-width: 95vw;
				height: 120px;
			}
		}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0) sepia(0); /* Reset any existing coloring */
  width: 2rem;
  height: 2rem;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}

        
        .gr-footer {
            text-align: center;
            margin-top: 40px;
            color: #70757a;
        }
        
        .gr-footer-link {
            color: #1a73e8;
            text-decoration: none;
        }
        
        .gr-footer-link:hover {
            text-decoration: underline;
        }
        
       