/* Modern and Professional Styles */

/* Global Variables */
:root {
  --primary-color: #ff6b35;
  --secondary-color: #2c2c2c;
  --text-color: #333;
  --light-gray: #f8f9fa;
  --dark-gray: #666;
  --transition-speed: 0.3s;
}

/* Body and Typography */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* Tour Cards - Enhanced */
.tour-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
  background: #fff;
}

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

.tour-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.tour-card:hover img {
  transform: scale(1.05);
}

.tour-card .card-body {
  padding: 2.5rem;
  background: linear-gradient(135deg, #fff, #f8f9fa);
}

.tour-card .card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: var(--secondary-color);
  text-transform: capitalize;
}

.tour-card .card-text {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

/* Itinerary - Enhanced */
.itinerary {
  margin: 2rem 0;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 10px;
}

.itinerary h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.itinerary ul {
  list-style: none;
  padding: 0;
}

.itinerary li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-size: 1.05rem;
}

.itinerary li:before {
  content: "•";
  color: var(--primary-color);
  font-size: 1.2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* Pricing - Enhanced */
.pricing {
  margin: 2rem 0;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fff, #f8f9fa);
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.05);
}

.pricing h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing p {
  margin-bottom: 0.8rem;
  color: var(--dark-gray);
  font-size: 1.1rem;
}

.pricing p:first-child {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Book Now Button - Enhanced */
.tour-card .btn-primary {
  background: var(--primary-color);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 25px;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 5px 15px rgba(255,107,53,0.3);
}

.tour-card .btn-primary:hover {
  background: #ff521b;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255,107,53,0.4);
}

/* Hero Section - Enhanced */
#hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,107,53,0.1), rgba(255,107,53,0.05));
  z-index: 1;
}

#hero h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
}

#hero h2 {
  font-size: 2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

/* Navbar - Enhanced */
.navbar {
  padding: 1.5rem 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.navbar .nav-link {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  transition: all var(--transition-speed) ease;
  padding: 0.5rem 1rem;
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 100%;
}

.navbar .nav-link:hover {
  color: var(--primary-color);
}

.navbar .nav-link.active {
  color: var(--primary-color);
}

/* Footer - Enhanced */
.footer {
  background: #1a1a1a;
  color: #fff;
  padding: 5rem 0 2rem;
}

.footer-top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-info {
  padding-right: 3rem;
}

.footer-info .logo {
  margin-bottom: 2rem;
}

.footer-info .logo span {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.footer-info p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #fff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition-speed) ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
}

.footer-links ul li a i {
  color: var(--primary-color);
}

.footer-contact p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
}

.footer-contact p strong {
  color: #fff;
  font-weight: 600;
}

.copyright {
  text-align: center;
  padding: 2rem 0;
  color: rgba(255,255,255,0.6);
}

.copyright strong {
  color: #fff;
}

/* Responsive Design - Enhanced */
@media (max-width: 1200px) {
  .tour-card img {
    height: 350px;
  }
}

@media (max-width: 992px) {
  .tour-card img {
    height: 300px;
  }
  
  .tour-card .card-body {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 3rem;
  }
  
  #hero h2 {
    font-size: 1.5rem;
  }
  
  .footer-info {
    padding-right: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 576px) {
  .tour-card {
    margin-bottom: 2.5rem;
  }
  
  .tour-card img {
    height: 250px;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  #hero h2 {
    font-size: 1.2rem;
  }
}
