/* ===================================
   PAGES SPECIFIC STYLES
   Amenities, Gallery, Places, Contact
   =================================== */

/* ========== Amenities Section ========== */
.amenities-section {
  padding: 100px 0;
  background: var(--white);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.amenity-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 45px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.amenity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.amenity-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: rgba(44, 95, 45, 0.1);
}

.amenity-card:hover::before {
  transform: scaleX(1);
}

.amenity-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(151, 188, 98, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: all var(--transition-smooth);
  position: relative;
}

.amenity-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  animation: rotate 3s linear infinite;
  transition: opacity 0.3s ease;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.amenity-card:hover .amenity-icon::before {
  opacity: 0.2;
}

.amenity-card:hover .amenity-icon {
  transform: scale(1.1) rotateY(360deg);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.amenity-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark-color);
  transition: var(--transition-normal);
}

.amenity-card:hover h3 {
  color: var(--primary-color);
}

.amenity-card p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== Gallery Section ========== */
.gallery-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.gallery-item {
  position: relative;
  height: 350px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 0.7;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.gallery-item:hover img {
  transform: scale(1.15) rotate(3deg);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: var(--white);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  animation: slideInUp 0.5s ease-out 0.2s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Masonry effect on larger screens */
@media (min-width: 768px) {
  .gallery-item:nth-child(3n + 1) {
    grid-column: span 2;
    height: 450px;
  }
  
  .gallery-item:nth-child(6n) {
    grid-row: span 2;
    height: 730px;
  }
}

/* ========== Spiritual Places Section ========== */
.places-section.spiritual-journey {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Spiritual background overlay */
.spiritual-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(184, 134, 11, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

/* Divine particles animation - very subtle incense smoke effect */
.divine-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1px 1px at 20% 30%, rgba(184, 134, 11, 0.06), transparent),
    radial-gradient(1px 1px at 60% 70%, rgba(184, 134, 11, 0.06), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(184, 134, 11, 0.06), transparent),
    radial-gradient(1px 1px at 80% 10%, rgba(184, 134, 11, 0.06), transparent),
    radial-gradient(1px 1px at 90% 60%, rgba(184, 134, 11, 0.06), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(184, 134, 11, 0.06), transparent);
  background-size: 300% 300%;
  animation: divineFloat 30s ease-in-out infinite;
  pointer-events: none;
}

@keyframes divineFloat {
  0%, 100% { 
    background-position: 0% 0%; 
    opacity: 0.1; 
  }
  50% { 
    background-position: 100% 100%; 
    opacity: 0.25; 
  }
}

/* Spiritual header */
.spiritual-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.om-symbol {
  font-size: 4rem;
  color: rgba(184, 134, 11, 0.6);
  margin-bottom: 20px;
  text-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
  filter: drop-shadow(0 0 8px rgba(184, 134, 11, 0.15));
}

.spiritual-header .section-label {
  color: rgba(184, 134, 11, 0.7);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
}

.divine-title {
  font-size: 3.5rem;
  color: rgba(44, 95, 45, 0.9);
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
  text-shadow: 0 0 20px rgba(184, 134, 11, 0.1);
}

.spiritual-header p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
}

/* Spiritual grid */
.spiritual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Divine card */
.divine-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 4px solid rgba(184, 134, 11, 0.25);
  backdrop-filter: blur(10px);
}

/* Animated traveling border - edge only */
.divine-card::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 25px;
  padding: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    transparent,
    rgba(184, 134, 11, 0.8),
    rgba(184, 134, 11, 1),
    rgba(184, 134, 11, 0.8),
    transparent,
    transparent
  );
  background-size: 200% 100%;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: borderTravel 3s linear infinite;
}

@keyframes borderTravel {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Divine aura effect - contained within card, very subtle */
.divine-aura {
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, 
    rgba(184, 134, 11, 0.05), 
    rgba(139, 69, 19, 0.05), 
    rgba(184, 134, 11, 0.05));
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
  pointer-events: none;
}

.divine-card:hover .divine-aura {
  opacity: 1;
}

.divine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(184, 134, 11, 0.2);
  border-color: rgba(184, 134, 11, 0.4);
}

.divine-card:hover::before {
  animation-duration: 1.5s;
}

/* Divine glow on image - very subtle, contained */
.divine-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(184, 134, 11, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 2;
  pointer-events: none;
}

.divine-card:hover .divine-glow {
  opacity: 1;
}

.divine-card .place-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  border-radius: 25px 25px 0 0;
}

.divine-card .place-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(0,0,0,0.05) 0%, 
    rgba(0,0,0,0.2) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.divine-card:hover .place-image::before {
  opacity: 0.5;
}

.divine-card .place-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: brightness(1.05) contrast(1.05) saturate(0.95);
}

.divine-card:hover .place-image img {
  transform: scale(1.08);
  filter: brightness(1.15) contrast(1.1) saturate(1);
}

/* Divine badge */
.divine-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(184, 134, 11, 0.15);
  backdrop-filter: blur(10px);
  color: rgba(184, 134, 11, 0.85);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 3;
  border: 1px solid rgba(184, 134, 11, 0.2);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Deity icon */
.deity-icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(184, 134, 11, 0.2), rgba(139, 69, 19, 0.2));
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(184, 134, 11, 0.25);
  animation: iconFloat 3s ease-in-out infinite;
}

/* Floating animation for all deity icons */
@keyframes iconFloat {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% { 
    transform: translateX(-50%) translateY(-8px) rotate(5deg);
  }
}

/* Unique animations for each card's icon */
.divine-card:nth-child(1) .deity-icon {
  animation: iconFloat1 3s ease-in-out infinite;
}

.divine-card:nth-child(2) .deity-icon {
  animation: iconFloat2 3.5s ease-in-out infinite;
}

.divine-card:nth-child(3) .deity-icon {
  animation: iconFloat3 4s ease-in-out infinite;
}

.divine-card:nth-child(4) .deity-icon {
  animation: iconFloat4 3.2s ease-in-out infinite;
}

.divine-card:nth-child(5) .deity-icon {
  animation: iconFloat5 3.8s ease-in-out infinite;
}

.divine-card:nth-child(6) .deity-icon {
  animation: iconFloat6 3.3s ease-in-out infinite;
}

.divine-card:nth-child(7) .deity-icon {
  animation: iconFloat7 3.6s ease-in-out infinite;
}

.divine-card:nth-child(8) .deity-icon {
  animation: iconFloat8 3.4s ease-in-out infinite;
}

/* Icon 1 - Om symbol - Gentle pulse */
@keyframes iconFloat1 {
  0%, 100% { 
    transform: translateX(-50%) scale(1) rotate(0deg);
  }
  50% { 
    transform: translateX(-50%) scale(1.1) rotate(0deg);
  }
}

/* Icon 2 - Trident - Rotate and float */
@keyframes iconFloat2 {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) rotate(-5deg);
  }
  50% { 
    transform: translateX(-50%) translateY(-10px) rotate(5deg);
  }
}

/* Icon 3 - Diya lamp - Flicker effect */
@keyframes iconFloat3 {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) scale(1);
    filter: brightness(1);
  }
  25% { 
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    filter: brightness(1.2);
  }
  50% { 
    transform: translateX(-50%) translateY(-8px) scale(1.08);
    filter: brightness(1.1);
  }
  75% { 
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    filter: brightness(1.2);
  }
}

/* Icon 4 - Flower - Bloom effect */
@keyframes iconFloat4 {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) rotate(0deg) scale(1);
  }
  50% { 
    transform: translateX(-50%) translateY(-6px) rotate(180deg) scale(1.1);
  }
}

/* Icon 5 - Water drop - Drip effect */
@keyframes iconFloat5 {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) scaleY(1);
  }
  30% { 
    transform: translateX(-50%) translateY(-10px) scaleY(1.15);
  }
  60% { 
    transform: translateX(-50%) translateY(0) scaleY(0.95);
  }
}

/* Icon 6 - Leaf - Sway effect */
@keyframes iconFloat6 {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) rotate(-10deg);
  }
  50% { 
    transform: translateX(-50%) translateY(-7px) rotate(10deg);
  }
}

/* Icon 7 - Sunrise - Rise and glow */
@keyframes iconFloat7 {
  0%, 100% { 
    transform: translateX(-50%) translateY(5px) scale(0.95);
    filter: brightness(0.9);
  }
  50% { 
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    filter: brightness(1.2);
  }
}

/* Icon 8 - Trident - Spin slowly */
@keyframes iconFloat8 {
  0%, 100% { 
    transform: translateX(-50%) translateY(0) rotate(0deg);
  }
  50% { 
    transform: translateX(-50%) translateY(-8px) rotate(360deg);
  }
}

/* Hover effect - enhance animation */
.divine-card:hover .deity-icon {
  animation-duration: 1.5s;
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
  border-color: rgba(184, 134, 11, 0.4);
}

.divine-card .place-content {
  padding: 50px 30px 30px;
  position: relative;
}

.divine-card .place-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: rgba(44, 95, 45, 0.9);
  transition: var(--transition-normal);
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.divine-card:hover .place-content h3 {
  color: rgba(184, 134, 11, 0.95);
}

.divine-card .distance {
  display: block;
  text-align: center;
  background: rgba(184, 134, 11, 0.1);
  color: rgba(184, 134, 11, 0.85);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(184, 134, 11, 0.2);
  backdrop-filter: blur(5px);
}

.divine-card .place-content p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: center;
}

.divine-card .place-meta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(184, 134, 11, 0.15);
}

.divine-card .place-meta span {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
  .spiritual-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
  }
}

@media (max-width: 768px) {
  .om-symbol {
    font-size: 3rem;
  }
  
  .divine-title {
    font-size: 2.5rem;
  }
  
  .spiritual-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .divine-card .place-image {
    height: 250px;
  }
}

/* ========== Contact Section ========== */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.contact-info-section > p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 15px;
  transition: all var(--transition-smooth);
  border-left: 4px solid transparent;
}

.contact-item:hover {
  transform: translateX(10px);
  border-left-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-item:hover .contact-icon {
  transform: rotate(360deg) scale(1.1);
}

.contact-item h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-item p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 5px;
}

/* Contact Form */
.contact-form-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 45px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all var(--transition-normal);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(44, 95, 45, 0.1);
  transform: translateY(-2px);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  width: 100%;
  margin-top: 10px;
}

/* Map Section */
.map-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.map-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 40px;
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
  position: relative;
}

.map-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
}

/* Open in Maps Button */
.open-maps-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.4);
  transition: all 0.3s ease;
  z-index: 10;
  border: 2px solid white;
}

.open-maps-btn svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.open-maps-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(44, 95, 45, 0.6);
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.open-maps-btn:active {
  transform: translateY(-2px) scale(1.02);
}

/* ========== Responsive Design ========== */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  
  .gallery-item,
  .gallery-item:nth-child(3n + 1),
  .gallery-item:nth-child(6n) {
    height: 300px;
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .places-grid,
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-icon {
    margin: 0 auto;
  }
  
  .amenity-icon {
    width: 80px;
    height: 80px;
  }
}

/* ========== Loading Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== Pulse Effect for Icons ========== */
@keyframes iconPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(44, 95, 45, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(44, 95, 45, 0);
  }
}

.amenity-icon:hover,
.contact-icon:hover {
  animation: iconPulse 1.5s infinite;
}

/* ========== Shimmer Effect ========== */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.place-card:hover,
.amenity-card:hover,
.gallery-item:hover {
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}


/* ========== Extra Amenities Section ========== */
.extra-amenities-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.extra-amenities-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44, 95, 45, 0.05) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.extra-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.extra-amenity {
  display: flex;
  gap: 20px;
  padding: 35px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border-left: 5px solid transparent;
  position: relative;
  overflow: hidden;
}

.extra-amenity::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s ease;
}

.extra-amenity:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.extra-amenity:hover::before {
  transform: scaleY(1);
}

.extra-icon {
  font-size: 3rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.extra-amenity:hover .extra-icon {
  transform: scale(1.2) rotate(360deg);
  animation: none;
}

.extra-content h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  transition: var(--transition-normal);
}

.extra-amenity:hover .extra-content h3 {
  color: var(--primary-color);
}

.extra-content p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ========== Room Features Section ========== */
.room-features-section {
  padding: 100px 0;
  background: var(--white);
}

.room-features-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.features-list {
  list-style: none;
  margin-top: 30px;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  font-size: 1.05rem;
  color: var(--text-dark);
  border-bottom: 1px solid #e9ecef;
  transition: var(--transition-normal);
}

.features-list li:hover {
  padding-left: 10px;
  color: var(--primary-color);
}

.check-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.features-list li:hover .check-icon {
  transform: rotate(360deg) scale(1.2);
}

.feature-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-img {
  position: relative;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.feature-img:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-img:hover img {
  transform: scale(1.15) rotate(3deg);
}

/* ========== Why Choose Section ========== */
.why-choose-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.why-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  border-top: 5px solid transparent;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.why-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-number {
  font-size: 4rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  transition: var(--transition-smooth);
}

.why-card:hover .why-number {
  transform: scale(1.2);
}

.why-card h3 {
  font-size: 1.4rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.why-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ========== Testimonials Section ========== */
.testimonials-section {
  padding: 100px 0;
  background: #ffffff;
  color: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(44,95,45,0.05)"/></svg>');
  opacity: 0.3;
}

.testimonials-section .section-header {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-label {
  color: var(--accent-color);
}

.testimonials-section .section-title {
  color: var(--dark-color);
}

.testimonials-section .section-header p {
  color: var(--text-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-smooth);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #1e4620, var(--primary-color));
}

.quote-icon {
  font-size: 5rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.3);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.author-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.author-info span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.rating {
  color: #ffc107;
  font-size: 1.2rem;
}

@keyframes flip-up {
  0% {
    transform: perspective(1000px) rotateX(-90deg);
    opacity: 0;
  }
  100% {
    transform: perspective(1000px) rotateX(0);
    opacity: 1;
  }
}

[data-aos="flip-up"].aos-animate {
  animation: flip-up 0.6s ease-out both;
}

/* ========== Liquid Blob Morphing Section ========== */
.travel-tips-section.liquid-blob-section {
  padding: 140px 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 50%, #fff9c4 100%);
  position: relative;
  overflow: hidden;
}

/* Animated blob canvas */
.blob-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Mesh gradient background */
.mesh-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(at 20% 30%, rgba(44, 95, 45, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 70%, rgba(184, 134, 11, 0.08) 0px, transparent 50%),
    radial-gradient(at 50% 50%, rgba(151, 188, 98, 0.08) 0px, transparent 50%);
  animation: meshShift 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes meshShift {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

/* Liquid header */
.liquid-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

/* Orbiting icon */
.orbit-icon {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  animation: centerFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(44, 95, 45, 0.3));
}

@keyframes centerFloat {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -60%) rotate(180deg);
  }
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 2px solid rgba(184, 134, 11, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring:nth-child(2) {
  width: 80px;
  height: 80px;
  animation: orbitSpin 4s linear infinite;
}

.orbit-ring:nth-child(3) {
  width: 100px;
  height: 100px;
  animation: orbitSpin 6s linear infinite reverse;
}

.orbit-ring:nth-child(4) {
  width: 120px;
  height: 120px;
  animation: orbitSpin 8s linear infinite;
}

@keyframes orbitSpin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    border-color: rgba(184, 134, 11, 0.3);
  }
  50% {
    border-color: rgba(44, 95, 45, 0.3);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    border-color: rgba(184, 134, 11, 0.3);
  }
}

.liquid-header .section-label {
  color: rgba(44, 95, 45, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 600;
}

/* Glitch text effect */
.glitch-text {
  font-size: 3.5rem;
  color: rgba(44, 95, 45, 0.9);
  font-family: 'Playfair Display', serif;
  margin: 20px 0;
  position: relative;
  animation: glitchSkew 5s ease-in-out infinite;
}

@keyframes glitchSkew {
  0%, 100% {
    transform: skew(0deg);
  }
  20% {
    transform: skew(0.5deg);
  }
  40% {
    transform: skew(-0.5deg);
  }
  60% {
    transform: skew(0.3deg);
  }
  80% {
    transform: skew(-0.3deg);
  }
}

.liquid-header p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
}

/* Liquid grid - 3 cards in single row on desktop */
.liquid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}

/* Blob card with glassmorphism */
.blob-card {
  position: relative;
  min-height: 450px;
  perspective: 1000px;
  transition: transform 0.3s ease-out;
}

/* Morphing blob shape */
.blob-shape {
  position: absolute;
  inset: -20px;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(184, 134, 11, 0.1));
  animation: blobMorph 8s ease-in-out infinite;
  z-index: 0;
  filter: blur(20px);
}

.blob-1 {
  animation-delay: 0s;
}

.blob-2 {
  animation-delay: 2.6s;
}

.blob-3 {
  animation-delay: 5.2s;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    transform: rotate(90deg) scale(1.05);
  }
  50% {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: rotate(180deg) scale(0.95);
  }
  75% {
    border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%;
    transform: rotate(270deg) scale(1.05);
  }
}

/* Glassmorphism layer */
.glass-layer {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  border-radius: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  z-index: 1;
  transition: all 0.5s ease;
}

.blob-card:hover .glass-layer {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px) saturate(200%);
  box-shadow: 
    0 30px 80px rgba(44, 95, 45, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

/* Card content */
.card-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 50px 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* 3D Icon container - Using emoji style */
.icon-3d-container {
  width: 140px;
  height: 140px;
  margin: 0 auto 30px;
  perspective: 1200px;
}

.icon-3d {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  animation: icon3DFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

@keyframes icon3DFloat {
  0%, 100% {
    transform: translateY(0) rotateY(-10deg) rotateX(10deg);
  }
  50% {
    transform: translateY(-15px) rotateY(10deg) rotateX(-10deg);
  }
}

/* Hide the complex 3D elements, show emoji */
.car-body,
.car-window,
.car-wheel,
.bag-body,
.bag-handle,
.bag-pocket,
.bag-zipper,
.map-paper,
.map-fold,
.map-marker {
  display: none;
}

/* Show emoji icons */
.car-icon::before {
  content: '🚗';
  display: block;
}

.bag-icon::before {
  content: '🎒';
  display: block;
}

.map-icon::before {
  content: '🗺️';
  display: block;
}

/* ========== REALISTIC 3D CAR ========== */
.car-icon {
  transform: scale(1);
}

.car-body {
  width: 120px;
  height: 50px;
  background: linear-gradient(180deg, 
    rgba(44, 95, 45, 1) 0%, 
    rgba(44, 95, 45, 0.9) 50%, 
    rgba(34, 75, 35, 1) 100%);
  border-radius: 15px 15px 8px 8px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(25px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 -5px 10px rgba(0, 0, 0, 0.3),
    inset 0 5px 10px rgba(255, 255, 255, 0.1);
}

.car-body::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 20px;
  width: 80px;
  height: 35px;
  background: linear-gradient(180deg, 
    rgba(44, 95, 45, 0.95) 0%, 
    rgba(44, 95, 45, 0.85) 100%);
  border-radius: 12px 12px 0 0;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.2);
}

.car-body::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 10px;
  right: 10px;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  border-radius: 2px;
}

.car-window {
  width: 70px;
  height: 28px;
  background: linear-gradient(135deg, 
    rgba(135, 206, 235, 0.6) 0%, 
    rgba(100, 180, 220, 0.4) 100%);
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -100%) translateZ(30px);
  box-shadow: 
    inset 0 2px 8px rgba(255, 255, 255, 0.4),
    0 2px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(44, 95, 45, 0.8);
}

.car-window::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 100%;
  background: rgba(44, 95, 45, 0.6);
  transform: translate(-50%, -50%);
}

.car-wheel {
  width: 28px;
  height: 28px;
  background: radial-gradient(circle, 
    rgba(60, 60, 60, 1) 0%, 
    rgba(40, 40, 40, 1) 40%, 
    rgba(20, 20, 20, 1) 100%);
  border-radius: 50%;
  position: absolute;
  top: 75%;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.5),
    inset 0 0 10px rgba(0, 0, 0, 0.8),
    inset 0 0 5px rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(80, 80, 80, 1);
  animation: wheelSpin 1.5s linear infinite;
}

.car-wheel::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: radial-gradient(circle, 
    rgba(150, 150, 150, 1), 
    rgba(100, 100, 100, 1));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.wheel-left {
  left: 12%;
  transform: translateZ(20px);
}

.wheel-right {
  right: 12%;
  transform: translateZ(20px);
}

@keyframes wheelSpin {
  0% {
    transform: translateZ(20px) rotate(0deg);
  }
  100% {
    transform: translateZ(20px) rotate(360deg);
  }
}

/* ========== REALISTIC 3D BAG ========== */
.bag-icon {
  transform: scale(1.1);
}

.bag-body {
  width: 90px;
  height: 100px;
  background: linear-gradient(135deg, 
    rgba(184, 134, 11, 1) 0%, 
    rgba(184, 134, 11, 0.85) 50%, 
    rgba(139, 69, 19, 1) 100%);
  border-radius: 12px 12px 20px 20px;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -45%) translateZ(25px);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.4),
    inset 0 -10px 20px rgba(0, 0, 0, 0.3),
    inset 0 10px 20px rgba(255, 255, 255, 0.1);
}

.bag-body::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 2px solid rgba(139, 69, 19, 0.5);
  border-radius: 8px 8px 15px 15px;
}

.bag-handle {
  width: 55px;
  height: 35px;
  border: 6px solid rgba(139, 69, 19, 1);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -100%) translateZ(30px);
  box-shadow: 
    0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.2);
  animation: handleSwing 3s ease-in-out infinite;
}

@keyframes handleSwing {
  0%, 100% {
    transform: translate(-50%, -100%) translateZ(30px) rotateX(0deg);
  }
  50% {
    transform: translate(-50%, -100%) translateZ(30px) rotateX(-10deg);
  }
}

.bag-pocket {
  width: 60px;
  height: 45px;
  background: linear-gradient(135deg, 
    rgba(139, 69, 19, 0.4), 
    rgba(139, 69, 19, 0.2));
  border-radius: 8px;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(28px);
  box-shadow: 
    inset 0 3px 10px rgba(0, 0, 0, 0.4),
    0 2px 5px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(139, 69, 19, 0.6);
}

.bag-zipper {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, 
    rgba(200, 200, 200, 0.8), 
    rgba(255, 255, 255, 0.9), 
    rgba(200, 200, 200, 0.8));
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, 0) translateZ(27px);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.bag-zipper::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -3px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, 
    rgba(220, 220, 220, 1), 
    rgba(180, 180, 180, 1));
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

/* ========== REALISTIC 3D MAP ========== */
.map-icon {
  transform: scale(1.05);
}

.map-paper {
  width: 110px;
  height: 90px;
  background: linear-gradient(135deg, 
    rgba(255, 250, 240, 1) 0%, 
    rgba(245, 240, 230, 1) 100%);
  border-radius: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(25px) rotateX(5deg);
  box-shadow: 
    0 15px 40px rgba(0, 0, 0, 0.3),
    inset 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 2px solid rgba(184, 134, 11, 0.4);
}

.map-paper::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  background: 
    linear-gradient(90deg, rgba(184, 134, 11, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(184, 134, 11, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
}

.map-fold {
  width: 3px;
  height: 90px;
  background: linear-gradient(180deg, 
    rgba(184, 134, 11, 0.4), 
    rgba(184, 134, 11, 0.2), 
    rgba(184, 134, 11, 0.4));
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateZ(26px);
  box-shadow: 
    2px 0 5px rgba(0, 0, 0, 0.2),
    -2px 0 5px rgba(0, 0, 0, 0.2);
}

.fold-1 {
  left: 33%;
}

.fold-2 {
  left: 66%;
}

.map-marker {
  width: 20px;
  height: 28px;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 1) 0%, 
    rgba(255, 107, 53, 0.8) 100%);
  border-radius: 50% 50% 50% 0;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(35px) rotate(-45deg);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.4),
    inset -2px -2px 5px rgba(0, 0, 0, 0.3),
    inset 2px 2px 5px rgba(255, 255, 255, 0.3);
  animation: markerBounce 2s ease-in-out infinite;
}

.map-marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, 
    rgba(255, 255, 255, 0.9), 
    rgba(255, 255, 255, 0.3));
  border-radius: 50%;
  transform: translate(-30%, -70%);
}

@keyframes markerBounce {
  0%, 100% {
    transform: translate(-50%, -50%) translateZ(35px) rotate(-45deg);
  }
  50% {
    transform: translate(-50%, -65%) translateZ(40px) rotate(-45deg);
  }
}

/* Title */
.blob-title {
  font-size: 2rem;
  color: rgba(44, 95, 45, 0.9);
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  transition: all 0.5s ease;
}

.blob-card:hover .blob-title {
  transform: translateY(-5px);
  color: rgba(184, 134, 11, 0.9);
}

/* Reveal content - Auto reveal on scroll */
.reveal-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 0;
}

.reveal-content.visible {
  max-height: 400px;
  opacity: 1;
  margin-top: 20px;
}

.reveal-content p {
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
  font-size: 1rem;
}

/* Magnetic trail effect */
.magnetic-trail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent,
    rgba(44, 95, 45, 0.5),
    rgba(184, 134, 11, 0.5),
    transparent
  );
  background-size: 200% 100%;
  animation: trailFlow 3s linear infinite;
  border-radius: 0 0 40px 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.blob-card:hover .magnetic-trail {
  opacity: 1;
}

@keyframes trailFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Responsive - Mobile only */
@media (max-width: 968px) {
  .liquid-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .blob-card {
    min-height: 400px;
  }
  
  .glitch-text {
    font-size: 2.5rem;
  }
  
  .card-content-wrapper {
    padding: 40px 30px;
  }
  
  .icon-3d {
    font-size: 4rem;
  }
}
.travel-tips-section.morphing-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
  perspective: 2000px;
}

/* Particle system background */
.particle-system {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(2px 2px at 10% 20%, rgba(44, 95, 45, 0.15), transparent),
    radial-gradient(2px 2px at 90% 80%, rgba(184, 134, 11, 0.15), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(44, 95, 45, 0.15), transparent),
    radial-gradient(2px 2px at 30% 70%, rgba(184, 134, 11, 0.15), transparent),
    radial-gradient(1px 1px at 70% 30%, rgba(44, 95, 45, 0.15), transparent);
  background-size: 100% 100%;
  animation: particleFloat 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes particleFloat {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: translate(50px, -50px);
    opacity: 0.6;
  }
}

/* Morphing header */
.morph-header {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

.rotating-compass {
  font-size: 4rem;
  display: inline-block;
  animation: compassRotate 8s linear infinite;
  filter: drop-shadow(0 10px 20px rgba(184, 134, 11, 0.3));
}

@keyframes compassRotate {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.morph-header .section-label {
  color: rgba(44, 95, 45, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
}

.morph-header .section-title {
  font-size: 3.5rem;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.9), rgba(184, 134, 11, 0.9));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
  animation: titlePulse 3s ease-in-out infinite;
}

@keyframes titlePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

.morph-header p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.2rem;
}

/* Morphing container */
.morphing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* 3D Cube Card */
.morph-card {
  height: 400px;
  position: relative;
  perspective: 1500px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.morph-card:hover .card-inner {
  transform: rotateY(180deg);
}

/* Card faces */
.card-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-face.front {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 4px solid rgba(44, 95, 45, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-face.back {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(184, 134, 11, 0.95) 100%);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

/* Front face content */
.face-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.morph-icon {
  font-size: 6rem;
  margin-bottom: 20px;
  animation: iconPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(44, 95, 45, 0.3));
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
}

.card-face.front h3 {
  font-size: 2rem;
  color: rgba(44, 95, 45, 0.9);
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
}

.expand-hint {
  color: rgba(184, 134, 11, 0.8);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  animation: hintBlink 2s ease-in-out infinite;
}

@keyframes hintBlink {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

/* Back face content */
.card-face.back h4 {
  font-size: 1.8rem;
  color: white;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.card-face.back p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.9;
  font-size: 1.05rem;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Animated border effect */
.card-face.front::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 30px;
  padding: 4px;
  background: linear-gradient(
    45deg,
    rgba(44, 95, 45, 0.5),
    rgba(184, 134, 11, 0.5),
    rgba(44, 95, 45, 0.5)
  );
  background-size: 300% 300%;
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  animation: borderShift 4s ease-in-out infinite;
}

@keyframes borderShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Glow effect on hover */
.morph-card::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(44, 95, 45, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  border-radius: 50%;
}

.morph-card:hover::after {
  opacity: 1;
  animation: glowExpand 1.5s ease-out infinite;
}

@keyframes glowExpand {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Staggered entrance animations */
.morph-card:nth-child(1) {
  animation: morphIn 1s ease-out;
}

.morph-card:nth-child(2) {
  animation: morphIn 1s ease-out 0.2s backwards;
}

.morph-card:nth-child(3) {
  animation: morphIn 1s ease-out 0.4s backwards;
}

@keyframes morphIn {
  from {
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

/* Responsive */
@media (max-width: 968px) {
  .morphing-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .morph-card {
    height: 350px;
  }
  
  .morph-header .section-title {
    font-size: 2.5rem;
  }
  
  .morph-icon {
    font-size: 5rem;
  }
  
  .card-face.back {
    padding: 30px;
  }
  
  .card-face.back h4 {
    font-size: 1.5rem;
  }
  
  .card-face.back p {
    font-size: 0.95rem;
  }
}
.travel-tips-section.waterfall-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

/* Animated waves */
.wave-container {
  position: absolute;
  width: 100%;
  z-index: 0;
}

.wave-container.bottom {
  bottom: 0;
}

.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}

/* Waterfall header */
.waterfall-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 1;
}

.water-drop {
  font-size: 3rem;
  animation: dropFall 2s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 5px 10px rgba(184, 134, 11, 0.3));
}

@keyframes dropFall {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(15px) scale(1.1);
  }
}

.waterfall-header .section-label {
  color: rgba(184, 134, 11, 0.8);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
}

.waterfall-header .section-title {
  font-size: 3rem;
  color: rgba(44, 95, 45, 0.9);
  margin: 20px 0;
  font-family: 'Playfair Display', serif;
}

.waterfall-header p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
}

/* Waterfall grid - cascading layout */
.waterfall-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

/* Waterfall card */
.waterfall-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 30px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid rgba(184, 134, 11, 0.2);
}

/* Cascading positions */
.cascade-1 {
  margin-left: 0;
  animation: cascade1 1s ease-out;
}

.cascade-2 {
  margin-left: 80px;
  animation: cascade2 1s ease-out 0.3s backwards;
}

.cascade-3 {
  margin-left: 160px;
  animation: cascade3 1s ease-out 0.6s backwards;
}

@keyframes cascade1 {
  from {
    opacity: 0;
    transform: translateY(-100px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes cascade2 {
  from {
    opacity: 0;
    transform: translateY(-100px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes cascade3 {
  from {
    opacity: 0;
    transform: translateY(-100px) rotate(-5deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}

/* Water ripple effect */
.water-ripple {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.1) 0%, transparent 70%);
  opacity: 0;
  animation: rippleExpand 3s ease-out infinite;
}

@keyframes rippleExpand {
  0% {
    transform: scale(0);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Card wave effect */
.card-wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg, rgba(184, 134, 11, 0.08) 0%, transparent 100%);
  clip-path: ellipse(100% 100% at 50% 0%);
  animation: waveFlow 4s ease-in-out infinite;
}

@keyframes waveFlow {
  0%, 100% {
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(10px) scaleX(1.05);
  }
}

/* Floating icon */
.tip-icon-float {
  padding: 60px 40px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.waterfall-card .tip-icon {
  font-size: 4.5rem;
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(184, 134, 11, 0.3));
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-3deg);
  }
  75% {
    transform: translateY(-15px) rotate(3deg);
  }
}

/* Content flow */
.tip-content-flow {
  padding: 20px 50px 50px;
  position: relative;
  z-index: 2;
}

.tip-content-flow h3 {
  font-size: 1.8rem;
  color: rgba(44, 95, 45, 0.9);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.content-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.6), transparent);
  margin: 0 auto 20px;
  animation: dividerFlow 2s ease-in-out infinite;
}

@keyframes dividerFlow {
  0%, 100% {
    width: 80px;
    opacity: 0.6;
  }
  50% {
    width: 120px;
    opacity: 1;
  }
}

.tip-content-flow p {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.9;
  font-size: 1rem;
  text-align: center;
}

/* Waterfall effect at bottom */
.waterfall-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    transparent 0%,
    rgba(184, 134, 11, 0.3) 25%,
    rgba(184, 134, 11, 0.6) 50%,
    rgba(184, 134, 11, 0.3) 75%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: waterfallFlow 3s linear infinite;
}

@keyframes waterfallFlow {
  0% {
    background-position: 0% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Hover effects */
.waterfall-card:hover {
  transform: translateY(-20px) scale(1.02);
  box-shadow: 0 30px 80px rgba(184, 134, 11, 0.2);
  border-color: rgba(184, 134, 11, 0.4);
}

.waterfall-card:hover .water-ripple {
  animation-duration: 1.5s;
}

.waterfall-card:hover .tip-icon {
  animation-duration: 1.5s;
  transform: scale(1.1);
}

.waterfall-card:hover .waterfall-effect {
  animation-duration: 1.5s;
  height: 8px;
}

/* Responsive */
@media (max-width: 968px) {
  .cascade-1, .cascade-2, .cascade-3 {
    margin-left: 0 !important;
  }
  
  .waterfall-grid {
    gap: 40px;
  }
  
  .tip-content-flow {
    padding: 20px 30px 40px;
  }
  
  .waterfall-header .section-title {
    font-size: 2rem;
  }
}

/* ========== Place Card Enhancements ========== */
.place-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-color), #ff8556);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow-md);
  animation: badgePulse 2s ease-in-out infinite;
}

.place-meta {
  display: flex;
  gap: 20px;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
  font-size: 0.9rem;
  color: var(--text-light);
}

.place-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ========== Gallery Filter ========== */
.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 30px;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-smooth);
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.gallery-item[data-category] {
  transition: all 0.5s ease;
}

.gallery-item.hidden {
  display: none;
}

/* ========== Video Section ========== */
.video-section {
  padding: 100px 0;
  background: var(--white);
}

.video-placeholder {
  height: 500px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(151, 188, 98, 0.1));
}

.video-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.play-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 25px;
  cursor: pointer;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-lg);
}

.play-icon:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

.video-content p {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.video-content span {
  color: var(--text-light);
  font-size: 1rem;
}

/* ========== FAQ Section - Innovative Animations ========== */
.faq-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
}

/* Animated background question mark */
.faq-section::before {
  content: '?';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40rem;
  font-weight: bold;
  color: rgba(44, 95, 45, 0.02);
  animation: questionPulse 4s ease-in-out infinite;
  pointer-events: none;
  font-family: 'Playfair Display', serif;
}

@keyframes questionPulse {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1) rotate(0deg); 
    opacity: 0.02; 
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg); 
    opacity: 0.04; 
  }
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
  transform-origin: center;
  opacity: 0;
  animation: faqSlideIn 0.6s ease-out forwards;
}

/* Staggered entrance animation */
.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes faqSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Animated gradient top bar */
.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-color), 
    var(--secondary-color), 
    var(--accent-color),
    var(--secondary-color),
    var(--primary-color)
  );
  background-size: 200% 100%;
  animation: gradientShift 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@keyframes gradientShift {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(44, 95, 45, 0.15);
  border-color: rgba(44, 95, 45, 0.2);
}

/* Active state with glow effect */
.faq-item.active {
  background: linear-gradient(135deg, #ffffff 0%, #f0fff0 100%);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(44, 95, 45, 0.2), 
              0 0 30px rgba(44, 95, 45, 0.1);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* Ripple effect on click */
.faq-question::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44, 95, 45, 0.3) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
}

.faq-question:active::after {
  width: 500px;
  height: 500px;
  opacity: 1;
  transition: width 0s, height 0s, opacity 0s;
}

/* Animated underline on hover */
.faq-question::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 30px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-question::before {
  width: calc(100% - 60px);
}

.faq-item.active .faq-question::before {
  width: calc(100% - 60px);
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
}

.faq-question:hover {
  background: rgba(44, 95, 45, 0.05);
  padding-left: 35px;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin: 0;
  flex: 1;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  padding-left: 50px;
}

/* Numbered badge with pulsing animation */
.faq-question h3::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(44, 95, 45, 0.3);
  animation: badgePulse 2s ease-in-out infinite;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes badgePulse {
  0%, 100% { 
    box-shadow: 0 3px 10px rgba(44, 95, 45, 0.3); 
    transform: translateY(-50%) scale(1);
  }
  50% { 
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.5); 
    transform: translateY(-50%) scale(1.1);
  }
}

.faq-item.active .faq-question h3::before {
  animation: badgeRotate 0.6s ease forwards, badgePulse 2s ease-in-out infinite;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

@keyframes badgeRotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  100% { transform: translateY(-50%) rotate(360deg); }
}

.faq-item:hover .faq-question h3 {
  color: var(--primary-color);
  transform: translateX(5px);
}

.faq-item.active .faq-question h3 {
  color: var(--primary-color);
  font-weight: 600;
}

/* Innovative icon animations */
.faq-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 300;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
  z-index: 1;
}

/* Pulsing ring effect */
.faq-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  animation: rippleEffect 1.5s ease-out infinite;
}

@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(44, 95, 45, 0.5);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) scale(1.1);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.faq-item.active .faq-icon::before {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  animation-duration: 1s;
}


/* Pulsing ring effect */
.faq-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  animation: rippleEffect 1.5s ease-out infinite;
}

@keyframes rippleEffect {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 25px rgba(44, 95, 45, 0.5);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) scale(1.1);
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

.faq-item.active .faq-icon::before {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  animation-duration: 1s;
}

/* Answer reveal with slide and fade */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              padding 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
  opacity: 0;
  transform-origin: top;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 30px 80px;
  opacity: 1;
  animation: answerSlideDown 0.5s ease forwards;
}

@keyframes answerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.9;
  font-size: 0.98rem;
  margin: 0;
  position: relative;
  padding-left: 20px;
}

/* Animated dot before answer */
.faq-answer p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
    box-shadow: 0 0 10px rgba(44, 95, 45, 0.5);
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .faq-question h3 {
    font-size: 1rem;
    padding-left: 45px;
  }
  
  .faq-question h3::before {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  
  .faq-icon {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 65px;
  }
}

/* ========== Responsive Enhancements ========== */
@media (max-width: 968px) {
  .room-features-content {
    grid-template-columns: 1fr;
  }

  .feature-image-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid,
  .testimonials-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .extra-amenities-grid {
    grid-template-columns: 1fr;
  }

  .extra-amenity {
    flex-direction: column;
    text-align: center;
  }

  .video-placeholder {
    height: 350px;
  }
}

@media (max-width: 640px) {
  .why-number {
    font-size: 3rem;
  }

  .testimonial-author {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .filter-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }
}

/* ========== Scroll Reveal Animations ========== */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* ========================================
   INNOVATIVE AMENITIES ANIMATIONS
   Unique & Creative Effects
======================================== */

/* ========== Animated Header Section ========== */
.amenities-header-creative {
  text-align: center;
  margin-bottom: 100px;
  position: relative;
  padding: 60px 0;
}

/* Glowing Background Effect */
.header-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44, 95, 45, 0.15), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glowPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

/* Pulsing Label */
.amenities-label-pulse {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  position: relative;
  padding: 10px 30px;
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
  }
  50% {
    transform: scale(1.05);
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
  }
}

.amenities-label-pulse::before,
.amenities-label-pulse::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color));
  animation: lineExpand 2s ease-in-out infinite;
}

.amenities-label-pulse::before {
  right: 100%;
  margin-right: 15px;
}

.amenities-label-pulse::after {
  left: 100%;
  margin-left: 15px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

@keyframes lineExpand {
  0%, 100% {
    width: 40px;
    opacity: 0.5;
  }
  50% {
    width: 60px;
    opacity: 1;
  }
}

/* Morphing Title */
.amenities-title-morph {
  font-size: 3.5rem;
  margin: 25px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMorph 5s ease infinite;
  position: relative;
}

@keyframes gradientMorph {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Floating Subtitle */
.amenities-subtitle-float {
  font-size: 1.2rem;
  color: var(--text-light);
  animation: floatSubtitle 3s ease-in-out infinite;
}

@keyframes floatSubtitle {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* ========== Circular Orbit Layout ========== */
.amenities-orbit-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center Hub */
.orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(44, 95, 45, 0.4),
              inset 0 0 40px rgba(255, 255, 255, 0.1);
  z-index: 10;
  animation: hubRotate 20s linear infinite;
}

@keyframes hubRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hub-icon-rotate {
  color: white;
  animation: iconSpin 10s linear infinite reverse;
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hub-title {
  color: white;
  font-size: 1.3rem;
  text-align: center;
  margin-top: 10px;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Orbit Rings */
.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px dashed rgba(44, 95, 45, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.ring-1 {
  width: 400px;
  height: 400px;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
  width: 600px;
  height: 600px;
  animation: ringPulse 4s ease-in-out infinite 1s;
}

.ring-3 {
  width: 800px;
  height: 800px;
  animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Orbiting Amenity Cards */
.amenity-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  animation: orbit 20s linear infinite;
}

.amenity-orbit-1 { animation-delay: 0s; }
.amenity-orbit-2 { animation-delay: -2.5s; }
.amenity-orbit-3 { animation-delay: -5s; }
.amenity-orbit-4 { animation-delay: -7.5s; }
.amenity-orbit-5 { animation-delay: -10s; }
.amenity-orbit-6 { animation-delay: -12.5s; }
.amenity-orbit-7 { animation-delay: -15s; }
.amenity-orbit-8 { animation-delay: -17.5s; }

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Amenity Card with Flip Effect */
.amenity-card-orbit {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  perspective: 1000px;
  cursor: pointer;
}

.card-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
  animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotateY(0deg);
  }
  50% {
    transform: translateY(-15px) rotateY(0deg);
  }
}

.amenity-card-orbit:hover .card-flip-inner {
  transform: rotateY(180deg);
  animation: none;
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-front {
  background: linear-gradient(135deg, white, #f8f9fa);
  border: 3px solid rgba(44, 95, 45, 0.2);
}

.card-back {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  transform: rotateY(180deg);
}

/* Orbit Icon with Magnetic Effect */
.orbit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.amenity-card-orbit:hover .orbit-icon {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 30px rgba(44, 95, 45, 0.6);
}

.card-front h4 {
  font-size: 0.95rem;
  color: var(--dark-color);
  text-align: center;
  font-weight: 600;
  margin: 0;
}

.card-back p {
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
  font-weight: 500;
}


/* ========== Premium Contact Form Styling ========== */
.contact-form-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form-premium .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-contact {
  position: relative;
}

.form-group-contact.full-width {
  grid-column: 1 / -1;
}

.form-group-contact label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.form-group-contact label svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-color);
  flex-shrink: 0;
}

.form-group-contact input,
.form-group-contact select,
.form-group-contact textarea {
  width: 100%;
  padding: 15px 18px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Poppins', sans-serif;
  transition: all 0.3s ease;
  background: white;
}

.form-group-contact input:focus,
.form-group-contact select:focus,
.form-group-contact textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(44, 95, 45, 0.1);
  transform: translateY(-2px);
}

.form-group-contact input:hover,
.form-group-contact select:hover,
.form-group-contact textarea:hover {
  border-color: var(--secondary-color);
}

/* Date input styling */
.form-group-contact input[type="date"] {
  position: relative;
  cursor: pointer;
}

.form-group-contact input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.form-group-contact input[type="date"]:hover::-webkit-calendar-picker-indicator {
  opacity: 1;
}

/* Select dropdown styling */
.form-group-contact select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232c5f2d' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* Submit button */
.btn-primary-contact {
  width: 100%;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.btn-primary-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary-contact:hover::before {
  left: 100%;
}

.btn-primary-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(44, 95, 45, 0.3);
}

.btn-primary-contact:active {
  transform: translateY(-1px);
}

.btn-primary-contact svg {
  width: 20px;
  height: 20px;
  stroke: white;
  animation: sendIcon 2s ease-in-out infinite;
}

@keyframes sendIcon {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-premium .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-group-contact label {
    font-size: 0.85rem;
  }
  
  .form-group-contact input,
  .form-group-contact select,
  .form-group-contact textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
}


/* ========== Innovative How to Reach Section ========== */
.how-to-reach-innovative {
  grid-column: 1 / -1;
  margin-top: 30px;
}

.reach-title {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.reach-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* How to Reach Section - Full Width Edge to Edge */
.how-to-reach-full-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fdf9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.how-to-reach-full-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(44, 95, 45, 0.2), transparent);
}

.how-to-reach-full-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.how-to-reach-full-section .section-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(151, 188, 98, 0.1));
  color: var(--primary-color);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.how-to-reach-full-section .section-title {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.how-to-reach-full-section .section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.transport-cards-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

@media (max-width: 992px) {
  .transport-cards-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .how-to-reach-full-section {
    padding: 60px 0;
  }
  
  .how-to-reach-full-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .transport-cards-horizontal {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .how-to-reach-full-section {
    padding: 50px 0;
  }
  
  .how-to-reach-full-section .section-title {
    font-size: 1.8rem;
  }
}

.transport-card {
  background: white;
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  position: relative;
  overflow: visible;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.transport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.transport-card:hover::before {
  transform: scaleX(1);
}

.transport-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(44, 95, 45, 0.2);
}

.transport-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.transport-icon-wrapper svg {
  width: 35px;
  height: 35px;
  stroke: white;
  stroke-width: 2;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.transport-card:hover .transport-icon-wrapper {
  transform: scale(1.1) rotate(360deg);
}

/* Road Card - Green with rotating car */
.road-card .transport-icon-wrapper {
  background: linear-gradient(135deg, #2c5f2d, #97bc62);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(44, 95, 45, 0.4);
}

.road-card .transport-icon-wrapper svg {
  animation: carRotate 3s ease-in-out infinite;
}

@keyframes carRotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.1);
  }
}

/* Train Card - Blue with sliding train */
.train-card .transport-icon-wrapper {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.train-card .transport-icon-wrapper svg {
  animation: trainSlide 2s ease-in-out infinite;
}

@keyframes trainSlide {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* Bus Card - Orange with bouncing bus */
.bus-card .transport-icon-wrapper {
  background: linear-gradient(135deg, #ea580c, #fb923c);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.4);
}

.bus-card .transport-icon-wrapper svg {
  animation: busBounce 1.5s ease-in-out infinite;
}

@keyframes busBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Air Card - Purple with flying plane */
.air-card .transport-icon-wrapper {
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.4);
}

.air-card .transport-icon-wrapper svg {
  animation: planeFly 2.5s ease-in-out infinite;
}

@keyframes planeFly {
  0%, 100% {
    transform: translateX(-5px) translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateX(5px) translateY(-10px) rotate(10deg);
  }
}

.transport-card h5 {
  font-size: 1.1rem;
  color: var(--dark-color);
  margin: 0 0 12px;
  font-weight: 600;
}

.route-info {
  margin-top: 12px;
}

.route-path {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0 0 12px;
  line-height: 1.4;
}

.distance-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(151, 188, 98, 0.1));
  padding: 6px 16px;
  border-radius: 20px;
  border: 2px solid rgba(44, 95, 45, 0.2);
  transition: all 0.3s ease;
}

.transport-card:hover .distance-badge {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-color: var(--primary-color);
  transform: scale(1.05);
}

.distance-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.transport-card:hover .distance-number {
  color: white;
}

.distance-unit {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
  transition: color 0.3s ease;
}

.transport-card:hover .distance-unit {
  color: white;
}

/* Unique hover effects for each card */
.road-card:hover {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.05), rgba(151, 188, 98, 0.05));
}

.train-card:hover {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.05));
}

.bus-card:hover {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.05), rgba(251, 146, 60, 0.05));
}

.air-card:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(167, 139, 250, 0.05));
}

/* Responsive Design */
@media (max-width: 768px) {
  .transport-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .transport-card {
    padding: 15px 10px;
  }
  
  .transport-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  
  .transport-icon-wrapper svg {
    width: 40px;
    height: 40px;
  }
  
  .reach-title {
    font-size: 1.5rem;
  }
}


/* Why Choose Us Section */
.why-choose-contact {
  margin-top: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid #e9ecef;
}

.why-choose-contact h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.why-choose-contact h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.feature-highlight {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  background: white;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-highlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(151, 188, 98, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-highlight:hover::before {
  left: 100%;
}

.feature-highlight:hover {
  transform: translateX(10px);
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(44, 95, 45, 0.15);
}

.feature-highlight-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(44, 95, 45, 0.3);
  transition: all 0.4s ease;
  position: relative;
}

.feature-highlight:hover .feature-highlight-icon {
  transform: rotate(360deg) scale(1.1);
}

.feature-highlight-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  z-index: -1;
  filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-highlight:hover .feature-highlight-icon::after {
  opacity: 0.6;
}

.feature-highlight-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-highlight-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 8px 0;
  font-family: 'Poppins', sans-serif;
}

.feature-highlight-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* Responsive for Why Choose Us */
@media (max-width: 968px) {
  .why-choose-contact {
    padding: 25px;
  }
  
  .why-choose-contact h3 {
    font-size: 1.5rem;
  }
  
  .feature-highlight {
    padding: 15px;
  }
  
  .feature-highlight-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-highlight-icon svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 640px) {
  .why-choose-contact {
    padding: 20px;
    margin-top: 30px;
  }
  
  .why-choose-contact h3 {
    font-size: 1.3rem;
  }
  
  .feature-highlight {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }
  
  .feature-highlight:hover {
    transform: translateY(-5px);
  }
  
  .feature-highlight-content h4 {
    font-size: 1rem;
  }
  
  .feature-highlight-content p {
    font-size: 0.9rem;
  }
}
