
/*    CARD DESIGN             */
  .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
	  direction: var(--direction);
        }
        
        .package-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
			padding-bottom: 0px
        }
        
        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .discount-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--secondary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 700;
            font-size: 14px;
            z-index: 2;
        }
        
        .card-image {
            height: 300px;
            overflow: hidden;
            position: relative;
			cursor: pointer
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
             transition: transform 0.7s ease;
			cursor: pointer;
			filter: brightness(90%)
        }
        
        .package-card:hover .card-image img {
    transform: scale(1.3); /* Zoom effect */
}

.package-card:hover .card-image::before {
    transform: translateY(100%); /* White shadow effect */
}
        .card-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(255, 255, 255, 0.4) 0%,
                rgba(255, 255, 255, 0.2) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: translateY(-100%);
            transition: transform 0.6s ease;
            z-index: 1;
            pointer-events: none;
        }

        .card-image:hover::before {
            transform: translateY(100%);
        }

        /* Image effects on hover */
      
        .card-content {
            padding: 10px;
        }
        
        .reviews {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .package-title {
            font-family: var(--font-family);
            font-style: normal;
            font-weight: 600;
            color: rgb(13, 13, 12);
            font-size: 18px;
            line-height: 28px;
            margin-bottom: 15px;
			 position: relative;
  display: inline-block;
  transition: color 0.3s ease;
			cursor: pointer;
			margin-top: 0px
        }
        .package-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.5s ease;
}

.package-title:hover {
  color: var(--primary-color);
}

.package-title:hover::after {
  width: 100%;
}
        .package-info {
	padding-top: 10px;
	padding-right: 10px;
	padding-left: 0px;
	padding-bottom: 10px;
	border-radius: 8px;
	margin-bottom: 0px;
	transition: all 0.3s ease;
	position: relative;
	height: 130px;
        }
     

        .package-details {
	position: absolute;
	bottom: 5px;
	left: 0;
	right: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-left: 0px;
	padding-bottom: 20px;
	margin-top: 50px;
	margin-bottom: 0px;
	cursor: pointer;
}

.duration {
    color: #113d48;
    display: flex;
    align-items: center;
    position: absolute;
    left: 0px;
    bottom: 20px;
}

.book-now {
    background: var(--primary-color);
    color: #113d48;
    border: #113d48 solid 1px;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    right: 20px;
    bottom: 10px;
	font-size: 16px;
	font-family: var(--font-family-inter);
	
}
.package-background{
	background-color: #F3F8F6;
	
}
        .location {
            font-weight: 600;
            color: #113d48;
            display: flex;
            align-items: center;
        }
       
        .location i {
            margin-right: 5px;
        }
        .duration i {
            margin-right: 5px;
        }
 		.location-ar {
            font-weight: 600;
            color: #113d48;
            display: flex;
            align-items: center;
        }
        .duration-ar {
            color: #6e7070;
            display: flex;
            align-items: center;
        }
        .location-ar i {
            margin-left: 5px;
        }
        .duration-ar i {
            margin-left: 5px;
        }
        
  

      
        
        .price-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .price {
			font-family: var(--font-family-inter);
            font-size: 24px;
            font-weight: 500;
            color: #113d48;
        }
.price span{
	font-size: 18px;
            font-weight: 700;
            color: #4D4C4C;
	text-decoration: line-through
}
        .per-day {
            color: #6e7070;
            font-size: 14px;
        }
        
       
        
     
        
        .featured-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: #113d48;
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 12px;
            font-weight: 600;
        }
        
        /* Gallery icon on hover */
        .gallery-icon {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 255, 255, 0.9);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #113d48;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 2;
			cursor: pointer
        }
        
        .package-card:hover .gallery-icon {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            .packages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .packages-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .section-title h2 {
                font-size: 30px;
            }
            
            .section-title p {
                font-size: 16px;
            }
        }
        
        /* Hover effect overlay */
        .hover-overlay {
	position: absolute;
	top: -100px;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: bottom;
	background-color: rgba(0,0,0,0.36);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: 0.3s ease;
	padding: 20px;
	text-align: center;
	color: white;
			cursor: pointer
        }
        
        .package-card:hover .hover-overlay {
            opacity: 1;
			top: 0px;
        }
        
        .hover-overlay h3 {
            font-size: 24px;
            margin-bottom: 15px;color: white;
        }
        
        .hover-overlay p {
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .view-details {
            background: #ffffff;
            color: var(--primary-color);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .view-details:hover {
            background: var(--secondary-color);
            color: white;
        }
