:root {
  --font-primary: 'Rufina', serif;
  --primary-color: #5D8736; /* Deep green – strong, good for primary buttons or accents */
  --secondary-color: #809D3C; /* Mellow green – complements primary */
  --tertiary-color: #A9C46C; /* Soft green – for backgrounds or hover states */
  --accent-color: #F4FFC3; /* Very light green – highlights or light backgrounds */
  --light-bg: rgba(128, 157, 60, 0.12); /* Updated to match secondary color */
  --text-color: #333;
  --white: #fff;
}

body {
  font-family: 'Playfair Display', serif;
  color: var(--text-color);
}

/* Updated Hero Section */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  width: 100%;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
  color: var(--white);
}

.hero-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.hero-content-box {
  width: 50%;
  position: relative;
  z-index: 2;
  padding-right: 2rem;
}

.hero-badge {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.3s;
}

.hero-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 4rem;
  font-family: var(--font-primary);
  line-height: 1.1;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.5s;
}

.hero-tagline {
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.7s;
}

.hero-text {
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
  max-width: 90%;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards 0.9s;
}

.tour-features {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards 1.1s;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.feature-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--tertiary-color);
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text span {
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-text small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  transform: translateY(-20px);
  opacity: 0;
  animation: fadeInUp 0.6s forwards 1.3s;
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  background-color: transparent;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

.hero-image-box {
  width: 50%;
  position: relative;
  z-index: 1;
  transform: translateX(50px);
  opacity: 0;
  animation: fadeInRight 0.8s forwards 0.7s;
}

.hero-feature-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image-box:hover .hero-feature-image {
  transform: perspective(1000px) rotateY(0deg);
}

.image-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 2;
}

.destination-marker {
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Mobile responsiveness */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
  }
  
  .hero-content-box, 
  .hero-image-box {
    width: 100%;
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .tour-features {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-tagline {
    font-size: 1rem;
  }
}

.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  width: 100%;
  background-color: rgba(169, 196, 108, 0.32); /* Using tertiary-color with opacity */
  padding-top: 100px; 
  min-height: 111vh; 
  display: flex;
  align-items: flex-start; 
  justify-content: center; 
}
.hero-image-container {
  border-radius: 50% 50% 50% 0;
  overflow: hidden;
  max-width: 100%;
  height: 600px;
  width: 80%;
  margin: 0 auto;
  margin-top: 50px; 
}
.ccontainer {
  width: 100%;
}

.front {
  height: 100px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  padding: 2rem;
  margin-top: 50px;
}

.hero-title {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 90px;
  font-family: var(--font-primary);
}

.hero-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-style: inherit;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

.btn-danger {
  background-color: #ff3366;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
}

@media (max-width: 768px) {
  .hero-section {
      padding-top: 150px;
      min-height: auto;
  }

  .hero-image-container {
      height: 400px;
      width: 90%;
      margin-top: 30px;
  }

  .hero-content {
      margin-top: 30px;
      padding: 1rem;
  }

  .hero-title {
      font-size: 60px;
  }
}

@media (max-width: 576px) {
  .hero-section {
      padding-top: 120px;
  }

  .hero-image-container {
      height: 300px;
      margin-top: 20px;
  }

  .hero-content {
      margin-top: 20px;
  }

  .hero-title {
      font-size: 48px;
  }
}

.tour-day {
  background-color: rgba(169, 196, 108, 0.32); /* Using tertiary-color with opacity */
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.day-number {
  background-color: var(--secondary-color);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
}

.location-title {
  font-weight: 600;
  margin-bottom: 1rem;
}

.activity-list {
  list-style-type: none;
  padding-left: 0;
}

.activity-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.activity-list li:before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.location-images {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  height: 400px;
}

.location-images img {
  border-radius: 8px;
  width: calc(50% - 0.25rem);
  height: 400px;
  object-fit: cover;
}

.map-section {
  background-color: #333;
  color: white;
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 3rem;
}

.journey-highlight {
  background-color: white;
  color: #333;
  border-radius: 10px;
  padding: 1.5rem;
}

.accommodation-section {
  margin-bottom: 3rem;
}

.hotel-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 100%;
}

.hotel-image {
  height: 150px;
  width: 100%;
  object-fit: cover;
}

.hotel-info {
  padding: 1rem;
}

.tips-section {
  background-color: #fff5f5;
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 3rem;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-item {
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section-title {
  font-weight: 700;
  margin-top: 5%;
  position: relative;
  display: inline-block;
  font-size: 46px;
  font-family: var(--font-primary), Verdana, Geneva, Tahoma, sans-serif;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.icon-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.icon-feature img {
  width: 24px;
  height: 24px;
}

.view-itinerary-btn {
  background-color: #0099ff;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
}

.hbutton {
  margin-top: 30%;
  margin-left: 30%;
}

.btn {
  position: relative;
  padding: 20px 65px;
  margin: 0 15px;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  text-align: center;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background-color: var(--primary-color);
}

.btn-secondary {
  background-color: #e74c3c;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
  z-index: -1;
}

.btn:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
      transform: scale(0, 0);
      opacity: 0.5;
  }
  20% {
      transform: scale(25, 25);
      opacity: 0.5;
  }
  100% {
      opacity: 0;
      transform: scale(40, 40);
  }
}

.btn span {
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.btn span:after {
  content: '→';
  position: absolute;
  opacity: 0;
  right: -20px;
  transition: 0.3s;
}

.btn:hover span {
  padding-right: 25px;
}

.btn:hover span:after {
  opacity: 1;
  right: 0;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.gap-3 {
  gap: 1rem;
}

@media (min-width: 576px) {
  .flex-sm-row {
      flex-direction: row;
  }
}

.tv-container {
  width: 100%;
  padding-bottom: 20px;
  perspective: 1000px;
}

.tv-frame {
  background: #343a40;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 2px rgba(255,255,255,0.1) inset;
  transform: rotateX(2deg);
}

.tv-screen {
  background: #000;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.1);
}

.tv-header, .tv-footer {
  background: rgba(0,0,0,0.7);
  color: #f8f9fa;
  padding: 8px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 100;
}

.tv-header {
  top: 0;
}

.tv-footer {
  bottom: 0;
}

.tv-logo {
  color: #9c8a5a;
}

.tv-recording {
  color: #ff0000;
}

.tv-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.tv-button {
  width: 15px;
  height: 15px;
  background: #877655;
  border-radius: 50%;
  border: 1px solid #9c8a5a;
}

.tv-content {
  height: 500px;
  width: 100%;
  filter: saturate(1.3) contrast(1.1);
}

.journey-container {
  background: rgba(156, 138, 90, 0.32);
  color: #333;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-header {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.journey-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 1px;
}

.journey-days {
  background: var(--secondary-color);
  padding: 6px 12px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.days-count {
  font-size: 1.5rem;
  font-weight: bold;
}

.days-text {
  font-size: 0.7rem;
  font-weight: 600;
}

.journey-list {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
}

.journey-item {
  display: flex;
  margin-bottom: 25px;
  position: relative;
}

.journey-number {
  position: relative;
  margin-right: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.number-badge {
  background: var(--secondary-color);
  color: #f8f9fa;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 15px rgba(169, 196, 108, 0.5); /* Using tertiary-color with opacity */
  position: relative;
  z-index: 2;
}

.number-line {
  position: absolute;
  top: 30px;
  width: 2px;
  height: calc(100% + 10px);
  background: rgba(255,255,255,0.2);
  z-index: 1;
}

.journey-item:last-child .number-line {
  display: none;
}

.journey-details {
  flex-grow: 1;
  padding-bottom: 15px;
}

.journey-location {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.journey-day {
  font-size: 0.8rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.journey-coordinates {
  font-size: 0.75rem;
  color: #333;
}

.leaflet-control-attribution {
  font-size: 8px;
  background: rgba(0,0,0,0.6) !important;
  color: rgba(255,255,255,0.5) !important;
}

.leaflet-control-attribution a {
  color: rgba(255,255,255,0.7) !important;
}

.leaflet-control-zoom {
  margin-top: 40px !important;
  border: none !important;
  box-shadow: 0 0 10px rgba(0,0,0,0.3) !important;
}

.leaflet-control-zoom a {
  background: rgba(0,0,0,0.7) !important;
  color: #f8f9fa !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
}

.leaflet-popup-content-wrapper {
  background: rgba(0,0,0,0.8);
  color: #f8f9fa;
  border-radius: 8px;
}

.leaflet-popup-tip {
  background: rgba(0,0,0,0.8);
}

@keyframes pulse {
  0% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.5); }
  100% { opacity: 0.6; transform: scale(1); }
}
.pulse-marker {
  animation: pulse 2s infinite;
}

@keyframes tvOn {
  0% { filter: brightness(0.5) contrast(2) grayscale(0.5); }
  3% { filter: brightness(2) contrast(3) grayscale(0.2); }
  5% { filter: brightness(0.7) contrast(1.5) grayscale(0.1); }
  100% { filter: brightness(1) contrast(1.1) saturate(1.3); }
}
.tv-on {
  animation: tvOn 2.5s ease-out forwards;
}
.journey-container {
  max-height: 100%;
  display: flex;
  flex-direction: column;
}

.journey-list {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px; 
}

.journey-list::-webkit-scrollbar {
  width: 6px;
}

.journey-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.journey-list::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.journey-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.tour-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tour-detail-item {
    display: inline-flex;
    align-items: center;
}

.tour-detail-item i {
    font-size: 1.5rem;
    margin-right: 8px;
}

/* Itinerary Timeline Section */
.itinerary-section {
  background-color: #f8f9fa;
  position: relative;
  padding: 80px 0;
}

.itinerary-section .section-title {
  color: var(--primary-color);
  font-size: 3rem;
  position: relative;
  margin-bottom: 3rem;
}

.itinerary-section .section-title:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.timeline-progress-bar {
  max-width: 80%;
  margin: 0 auto 60px;
  position: relative;
}

.timeline-progress-bar .progress {
  height: 2px;
  background-color: rgba(169, 196, 108, 0.2); /* Using tertiary-color with opacity */
}

.timeline-progress-bar .progress-bar {
  background-color: var(--tertiary-color);
  transition: width 0.5s ease;
}

.day-markers {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: -10px;
}

.day-marker {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 2px solid var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--tertiary-color);
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.day-marker.active {
  background-color: var(--tertiary-color);
  color: white;
  transform: scale(1.2);
}

.day-marker:hover {
  transform: scale(1.2);
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: rgba(169, 196, 108, 0.2); /* Using tertiary-color with opacity */
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.timeline-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.timeline-point {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--tertiary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(169, 196, 108, 0.2); /* Using tertiary-color with opacity */
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-point {
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 0 6px rgba(169, 196, 108, 0.3); /* Using tertiary-color with opacity */
}

.timeline-content {
  position: relative;
  width: 45%;
  transition: all 0.3s ease;
}

.timeline-left .timeline-content {
  margin-left: 5%;
}

.timeline-right .timeline-content {
  margin-left: 50%;
}

.itinerary-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.timeline-item:hover .itinerary-card {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.location-label {
  background-color: var(--primary-color);
  color: white;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-label i {
  font-size: 1.4rem;
}

.location-label h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.activity-list-container {
  padding: 10px 0;
}

.activity-list-container h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--primary-color);
  border-bottom: 2px solid rgba(169, 196, 108, 0.2); /* Using tertiary-color with opacity */
  padding-bottom: 8px;
}

.activity-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.activity-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 0;
}

.activity-list li i {
  color: var(--tertiary-color);
  margin-right: 10px;
  flex-shrink: 0;
}

.activity-list li span {
  flex-grow: 1;
}

.image-gallery {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.main-image {
  height: 70%;
  overflow: hidden;
}

.thumbnail-image {
  height: 30%;
  overflow: hidden;
}

.image-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-gallery:hover img {
  transform: scale(1.05);
}

/* Laptop Map Container Styles */
.laptop-container {
  width: 100%;
  padding-bottom: 20px;
  perspective: 2000px;
}

.laptop-lid {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(10deg) rotateY(0deg);
  transition: all 0.5s ease;
  width: 100%;
}

.laptop-container:hover .laptop-lid {
  transform: rotateX(0deg) rotateY(0deg);
}

.laptop-screen {
  background: #050505;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 5px 30px rgba(0,0,0,0.4);
  border: 2px solid #333;
  position: relative;
  z-index: 2;
}

.laptop-brand {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.1);
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  z-index: 3;
}

.laptop-camera {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: #444;
  border-radius: 50%;
  margin-top: 2px;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.05);
}

.laptop-display {
  background: #000;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.5);
}

.display-header {
  background: linear-gradient(to bottom, #333, #222);
  padding: 6px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #444;
}

.app-controls {
  display: flex;
  gap: 5px;
}

.control {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.control.red {
  background: #ff5f56;
}

.control.yellow {
  background: #ffbd2e;
}

.control.green {
  background: #27c93f;
}

.app-title {
  color: #ddd;
  font-size: 0.75rem;
  font-weight: 500;
}

.app-menu {
  color: #ddd;
  font-size: 0.75rem;
}

.display-content {
  height: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
  background: linear-gradient(to bottom, #222, #111);
}

.display-footer {
  background: linear-gradient(to bottom, #222, #111);
  padding: 8px 10px;
  display: flex;
  border-top: 1px solid #333;
}

.nav-button {
  color: #888;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 4px;
  margin-right: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-button:hover {
  background: rgba(255,255,255,0.1);
}

.nav-button.active {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.status-indicator {
  margin-left: auto;
  color: #888;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.laptop-base {
  background: linear-gradient(to bottom, #444, #222);
  height: 15px;
  margin-top: -2px;
  border-radius: 0 0 10px 10px;
  position: relative;
  transform: rotateX(-90deg) translateZ(-15px) translateY(15px);
  transform-origin: top center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 1;
}

.laptop-keyboard {
  width: 95%;
  height: 100px;
  margin: 0 auto;
  background: #111;
  border-radius: 8px;
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  z-index: 0;
}

.keyboard-top {
  height: 20px;
  background: #222;
  border-bottom: 1px solid #333;
}

.fn-keys {
  display: flex;
  justify-content: space-around;
  height: 100%;
  padding: 0 20px;
}

.fn-keys::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 4px;
  background: #333;
  border-radius: 2px;
}

.keyboard-main {
  height: 80px;
  position: relative;
}

.touchpad {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 40px;
  background: #222;
  border-radius: 4px;
  border: 1px solid #333;
}

/* Replace Journey Highlights with Journey Panel */
.journey-panel {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.journey-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.journey-header {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
}

.journey-logo {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 15px;
}

.journey-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  flex-grow: 1;
}

.journey-badge {
  background: var(--tertiary-color);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.journey-map {
  flex-grow: 1;
  padding: 30px 20px;
  position: relative;
  overflow-y: auto;
  max-height: 440px;
}

.journey-line {
  position: absolute;
  left: 36px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: var(--tertiary-color);
  opacity: 0.3;
}

.journey-stop {
  display: flex;
  margin-bottom: 25px;
  position: relative;
  padding-right: 15px;
  transition: all 0.2s ease;
  align-items: center;
}

.journey-stop:hover {
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  transform: translateX(5px);
}

.stop-marker {
  margin-right: 20px;
  position: relative;
  z-index: 2;
}

.stop-number {
  width: 30px;
  height: 30px;
  background: var(--tertiary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 0 0 4px white, 0 0 0 6px rgba(169, 196, 108, 0.3); /* Using tertiary-color with opacity */
}

.stop-info {
  flex-grow: 1;
  padding: 8px 0;
}

.stop-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 3px;
}

.stop-coordinates {
  color: #777;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
}

.stop-preview {
  display: flex;
  align-items: center;
  margin-left: 10px;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.journey-stop:hover .stop-preview {
  opacity: 1;
}

.preview-icon {
  margin-right: 5px;
}

.journey-footer {
  padding: 10px 20px;
  background: rgba(0,0,0,0.03);
  border-top: 1px solid rgba(0,0,0,0.05);
  font-size: 0.8rem;
  color: #777;
  display: flex;
  justify-content: space-around;
}

.journey-footer span {
  display: flex;
  align-items: center;
}

.journey-footer i {
  margin-right: 5px;
  color: var(--tertiary-color);
}

/* Additional responsive adjustments */
@media (max-width: 992px) {
  .display-content {
    height: 350px;
  }
  
  .laptop-keyboard {
    display: none;
  }
  
  .journey-map {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .display-content {
    height: 300px;
  }
  
  .journey-header {
    padding: 15px;
  }
  
  .journey-header h3 {
    font-size: 1.3rem;
  }
  
  .stop-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .display-content {
    height: 250px;
  }
  
  .display-header {
    padding: 4px 8px;
  }
  
  .app-title {
    font-size: 0.7rem;
  }
  
  .journey-map {
    padding: 20px 15px;
  }
  
  .journey-line {
    left: 25px;
  }
  
  .stop-marker {
    margin-right: 15px;
  }
  
  .stop-number {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}