* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui;
}

body {
  background: #eaeaea;
  overflow-x: hidden;


}

/* navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #4CAF50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  gap: 10px;
  display: flex;
  align-items: end;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  font-size: 30px;
  color: white;
  cursor: pointer;
  user-select: none;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  transition: all 0.3s ease;
}

.nav-links li a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    /* below navbar */
    left: 0;
    width: 100%;
    background-color: #4CAF50;
    flex-direction: column;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
    padding-bottom: 10px;
  }

  .nav-links.show {
    max-height: 500px;
    /* adjust if more items */
    opacity: 1;
  }

  .nav-links li {
    text-align: left;
    padding: 1px 30px;
  }

  .nav-links li a {
    font-size: 15px;
  }
}

/* navbar */

/* ==================== CHATBOT REDESIGN ==================== */

.chat-container {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 25px;
  box-shadow: 0 25px 50px rgba(76, 175, 80, 0.2);
  border: 2px solid #4CAF50;
  width: 100%;
  max-width: 520px;
  max-height: 850px;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.chat-header {
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chat-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #81c784, #4CAF50, #2e7d32);
}

.chat-header h1 {
  font-size: 22px;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.chat-header p {
  font-size: 13px;
  opacity: 0.95;
  font-weight: 400;
}

.status-indicator {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.status-live {
  background: linear-gradient(135deg, #81c784 0%, #66bb6a 100%);
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 2px 8px rgba(129, 199, 132, 0.4);
  }
  50% {
    box-shadow: 0 2px 15px rgba(129, 199, 132, 0.8);
  }
}

.status-mock {
  background: linear-gradient(135deg, #ffd54f 0%, #ffc107 100%);
  color: #212529;
}

.status-checking {
  background: linear-gradient(135deg, #4dd0e1 0%, #00acc1 100%);
  color: white;
}

.chat-messages {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(to bottom, #fafafa 0%, #ffffff 100%);
}

.message {
  display: flex;
  margin-bottom: 4px;
  animation: messageSlideIn 0.4s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.user-message {
  justify-content: flex-end;
}

.bot-message {
  justify-content: flex-start;
  gap: 10px;
  align-items: flex-start;
}

.bot-avatar {
  font-size: 20px;
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
  margin-top: 4px;
}

.message-content {
  max-width: 75%;
  padding: 14px 18px;
  border-radius: 20px;
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.user-message .message-content {
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  color: white;
  border-bottom-right-radius: 6px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.bot-message .message-content {
  background: white;
  color: #2c3e50;
  border-bottom-left-radius: 6px;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.chat-input-container {
  padding: 20px;
  background: white;
  border-top: 1px solid rgba(76, 175, 80, 0.1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}

.input-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.input-wrapper:focus-within {
  border-color: #4CAF50;
  background: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.15);
}

#userInput {
  flex: 1;
  padding: 10px 16px;
  border: none;
  background: transparent;
  border-radius: 25px;
  font-size: 15px;
  outline: none;
  color: #2c3e50;
  font-family: system-ui;
}

#userInput::placeholder {
  color: #95a5a6;
}

#userInput:disabled {
  background: transparent;
  cursor: not-allowed;
  color: #95a5a6;
}

.send-button {
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.send-button:hover:not(:disabled) {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.send-button:active:not(:disabled) {
  transform: scale(0.95);
}

.send-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.send-button svg {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.send-button:hover:not(:disabled) svg {
  transform: translateX(3px);
}

.typing-indicator {
  display: flex;
  gap: 6px;
  padding: 14px 18px;
  background: white;
  border-radius: 20px;
  border-bottom-left-radius: 6px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.typing-dot {
  width: 10px;
  height: 10px;
  background: #4CAF50;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-dot:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-dot:nth-child(2) {
  animation-delay: -0.16s;
}

.hidden {
  display: none;
}

.chat-toggle-button {
  position: fixed;
  bottom: 20px;
  right: 30px;
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: bounceIn 0.6s ease-out;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.chat-toggle-button:hover {
  transform: scale(1.15) !important;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
}

.chat-toggle-button::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(76, 175, 80, 0.3);
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.chat-container {
  position: fixed;
  bottom: 90px;
  right: 30px;
  z-index: 999;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
  transform-origin: bottom right;
}

.chat-container.hidden {
  transform: scale(0);
  opacity: 0;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.chat-messages::-webkit-scrollbar {
  width: 8px;
}

.chat-messages::-webkit-scrollbar-track {
  background: #f1f3f4;
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4CAF50 0%, #2e7d32 100%);
  border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #45a049 0%, #1b5e20 100%);
}

/* Suggested Questions */
.suggested-questions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px 0;
}

.suggested-question {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border: 1px solid #4CAF50;
  padding: 10px 15px;
  border-radius: 15px;
  cursor: pointer;
  font-size: 13px;
  color: #2e7d32;
  transition: all 0.3s ease;
  text-align: left;
}

.suggested-question:hover {
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  color: white;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
  .chat-container {
    bottom: 80px;
    right: 15px;
    left: 15px;
    max-width: calc(100% - 30px);
    max-height: 500px;
  }

  .chat-messages {
    padding: 15px;
  }

  .chat-header h1 {
    font-size: 18px;
  }

  .chat-header p {
    font-size: 12px;
  }

  .message-content {
    max-width: 80%;
    font-size: 14px;
    padding: 12px 16px;
  }

  .bot-avatar {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 18px;
  }

  .send-button {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }

  .chat-toggle-button {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 15px;
    right: 15px;
  }

  .status-indicator {
    font-size: 9px;
    padding: 5px 10px;
    top: 12px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .chat-messages {
    padding: 20px 15px;
  }

  .input-wrapper {
    padding: 6px;
  }

  #userInput {
    font-size: 14px;
    padding: 8px 14px;
  }
}

/* CHAT BOT END */
.section-1 {
  border: 10px solid black;
}

.container {
  position: relative;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 500px;
  background: #f5f5f5;

}

.container .slide .item {
  width: 200px;
  height: 300px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  border-radius: 20px;
  background-position: 50% 50%;
  background-size: cover;
  display: inline-block;
  transition: 0.5s;
  cursor: pointer;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
  cursor: default;
}

.slide .item:nth-child(3) {
  left: 50%;
}

.slide .item:nth-child(4) {
  left: calc(50% + 220px);
}

.slide .item:nth-child(5) {
  left: calc(50% + 440px);
}

.slide .item:nth-child(n+6) {
  left: calc(50% + 600px);
  opacity: 0;
}

@media screen and (max-width: 680px) {
  body {
    overflow-y: visible !important;
    overflow-x: visible !important;
  }

  .container {
    top: 0;
    transform: translate(-50%, 0);
    overflow-y: hidden;
    overflow-x: hidden;
    height: 62vh;
  }

  .container .slide {
    padding-top: 100vh;
    position: relative;

  }

  .slide .item:nth-child(3) {
    left: 0;
    top: 320px;
    transform: none;

    width: 30%;
    height: 30%;
  }

  .slide .item:nth-child(4) {
    left: 0;
    top: 500px;
    transform: none;

    width: 30%;
    height: 30%;
  }

  .slide .item:nth-child(5) {
    left: 0;
    top: 660px;
    transform: none;
    width: 30%;
    height: 30%;
  }

  .slide .item:nth-child(n+6) {
    left: 0;
    top: 980px;
    transform: none;
    opacity: 0;
    width: 30%;
    height: 30%;
  }

  body {
    overflow: hidden;
  }

  .item .content {
    top: 25% !important;
    left: 60px !important;
    width: 70% !important;
  }

  .content .name {
    font-size: 12px !important;
  }

  .content .des {
    font-size: 10px !important;
  }
}

.item .content {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 500px;
  text-align: left;
  color: #eee;
  transform: translate(0, -50%);
  font-family: system-ui;
  display: none;
  background-color: rgba(0, 0, 0, 0.521);
  padding: 20px;
  border-radius: 10px;
}

.slide .item:nth-child(2) .content {
  display: block !important;
}

.content .name {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  opacity: 0;
  animation: animate 1s ease-in-out 0.1s 1 forwards;
  border-bottom: 2px solid rgb(255, 255, 255);
}

.content .des {
  margin-top: 10px;
  margin-bottom: 20px;
  opacity: 0;
  animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
  padding: 10px 40px;
  border: none;
  cursor: pointer;
  opacity: 0;
  border-radius: 5px;
  animation: animate 1s ease-in-out 0.6s 1 forwards;
  background-color: #4CAF50;
  font-weight: 500;
  color: white;
  transition: background-color 0.3s ease;
}
.content button a{
  color: white;
  text-decoration: none;
}

.content button:hover {
  background-color: rgb(3, 145, 3);
}

@keyframes animate {
  from {
    opacity: 0;
    transform: translate(0, 100px);
    filter: blur(33px);
  }

  to {
    opacity: 1;
    transform: translate(0);
    filter: blur(0);
  }
}

.section-3 {
  width: 100%;
  padding: 50px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;


}

.section-3 h1 {
  font-weight: 600;
  margin-bottom: 30px;
}

.about {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 50px;
}

.left {
  width: 40%;
  text-align: center;
}

.left p {
  font-size: 14px;
  line-height: 22px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .section-3 {
    width: 100%;
    padding: 20px 0px;
  }

  .section-3 h1 {
    font-size: 25px;
  }

  .about {
    flex-direction: column;
    align-items: center;

  }

  .left {
    width: 90%;

  }
}

.imghead {
  background-color: rgb(206, 205, 205);
  margin-top: 5%;
  padding: 30px 5px;
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.imghead h1 {
  font-weight: 600;
  margin-bottom: 20px;
}

.imgcantenar {
  display: flex;
  margin-top: 10px;
  justify-content: center;
  gap: 30px;

}

.imgcantaner2 {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  padding-bottom: 10px;
}

.img1 {
  width: 30%;
  filter: brightness(0.5);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.img1:hover {
  filter: brightness(1);
}

.img1:hover img {
  filter: brightness(1);
}

.imgdetails {
  width: 100%;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.3s ease-in-out;
}

.img1:hover .imgdetails {
  opacity: 1;
}

.imgdetails h2 {
  font-weight: 500;
  font-size: 20px;
  margin: 5px 0px;
}

.imgdetails p {
  font-size: 14px;

}

@media (max-width: 768px) {
  .imghead h1 {
    font-size: 25px;
  }

  .imgcantenar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100% !important;
  }

  .imgcantaner2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100% !important;
  }

  .img1 {
    width: 95%;
  }
}
.section-4{
    font-family: Arial, sans-serif;
   background-color: rgba(0, 0, 0, 0.048);
    margin: 0;
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.section-4.containerr {
    /* max-width: 1000px; */
    width: 100%;
}

.containerr h1 {
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;

}

.contact-wrapper {
    display: flex;
    
    justify-content: center;
    gap: 50px;
     margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
}

.form-container {
    padding: 10px;
       border: 1px solid #ddd;
       width: 40%;
       overflow: hidden;
       border-radius: 10px;
       border: 1px solid rgba(1, 190, 1, 0.349);
}



.info-container {
    width: 40%;
    padding: 10px;
    color: #333;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.info-container p {
    margin-bottom: 10px;
      font-size: 14px;
  line-height: 22px;
  opacity: 0.9;

}

.info-container a {
    color: #007bff;
    text-decoration: none;
}

.info-container a:hover {
   color: #00a2ff;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .form-container {
    width: 95%;
  }
  .info-container {
    width: 95%;
  }
}
.footer-row{
  width: 100%;
  height: 60px;
  background-color: #4CAF50;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}
.footer-row p{
   font-size: 14px;
   cursor: pointer;
}
@media (max-width: 768px) {
  .footer-row p{
    font-size: 12px;
  }
}

/* ==================== ATTRACTION DETAIL PAGE ==================== */

.attraction-detail-overlay {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background-color: #f8f9fa;
  z-index: 999;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.attraction-detail-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-color: #f8f9fa;
}

.close-detail-btn {
  position: fixed;
  top: 75px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.close-detail-btn:hover {
  transform: scale(1.1) rotate(90deg);
  background: linear-gradient(135deg, #45a049 0%, #1b5e20 100%);
}

.detail-hero-section {
  position: relative;
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  padding: 60px 40px 40px;
  color: white;
}

.detail-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.6s ease-out;
}

.detail-subtitle {
  font-size: 20px;
  max-width: 800px;
  line-height: 1.6;
  opacity: 0.95;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-content-section {
  padding: 50px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.detail-main-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: cardSlideIn 0.5s ease-out;
}

@keyframes cardSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.detail-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.detail-card h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 3px solid #4CAF50;
  padding-bottom: 15px;
}

.detail-card h2 i {
  color: #4CAF50;
  font-size: 28px;
}

.detail-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-card h3 i {
  color: #4CAF50;
  font-size: 20px;
}

.detail-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  padding: 12px 0;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.highlights-list li:last-child {
  border-bottom: none;
}

.highlights-list li:hover {
  padding-left: 10px;
  color: #4CAF50;
}

.highlights-list li i {
  color: #4CAF50;
  font-size: 14px;
  min-width: 20px;
}

.info-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.travel-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.travel-item {
  background: white;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid #4CAF50;
}

.travel-item strong {
  color: #2c3e50;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.travel-item span {
  color: #4CAF50;
  font-size: 18px;
  font-weight: 600;
}

.best-time, .altitude {
  font-size: 20px !important;
  font-weight: 600;
  color: #4CAF50 !important;
  text-align: center !important;
  padding: 15px;
  background: white;
  border-radius: 10px;
  margin-top: 10px;
}

.contact-card {
  background: linear-gradient(135deg, #4CAF50 0%, #2e7d32 100%);
  color: white;
  text-align: center;
}

.contact-card h3 {
  color: white;
  justify-content: center;
}

.contact-card h3 i {
  color: white;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 20px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 30px;
  background: white;
  color: #4CAF50;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .detail-sidebar {
    grid-row: 2;
  }

  .detail-title {
    font-size: 36px;
  }

  .detail-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .attraction-detail-overlay {
    top: 60px;
    height: calc(100% - 60px);
  }

  .detail-hero-section {
    height: 40vh;
  }

  .detail-hero-overlay {
    padding: 40px 20px 20px;
  }

  .detail-title {
    font-size: 28px;
  }

  .detail-subtitle {
    font-size: 16px;
  }

  .detail-content-section {
    padding: 30px 15px;
  }

  .detail-card {
    padding: 20px;
  }

  .detail-card h2 {
    font-size: 22px;
  }

  .detail-card h3 {
    font-size: 18px;
  }

  .detail-card p {
    font-size: 15px;
  }

  .close-detail-btn {
    width: 45px;
    height: 45px;
    top: 70px;
    right: 15px;
    font-size: 20px;
  }

  .highlights-list li {
    font-size: 15px;
  }

  .travel-item span {
    font-size: 16px;
  }

  .best-time, .altitude {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  .detail-title {
    font-size: 24px;
  }

  .detail-subtitle {
    font-size: 14px;
  }

  .detail-card h2 {
    font-size: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .detail-card {
    padding: 15px;
  }
}

/* Scroll animations */
.detail-card {
  opacity: 0;
  animation: cardSlideIn 0.6s ease-out forwards;
}

.detail-card:nth-child(1) {
  animation-delay: 0.1s;
}

.detail-card:nth-child(2) {
  animation-delay: 0.2s;
}

.detail-card:nth-child(3) {
  animation-delay: 0.3s;
}

.detail-sidebar .detail-card:nth-child(1) {
  animation-delay: 0.4s;
}

.detail-sidebar .detail-card:nth-child(2) {
  animation-delay: 0.5s;
}

.detail-sidebar .detail-card:nth-child(3) {
  animation-delay: 0.6s;
}

.detail-sidebar .detail-card:nth-child(4) {
  animation-delay: 0.7s;
}