/* Tourism Typography Enhancements */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Merriweather:ital,wght@0,300;0,400;0,700;1,300&display=swap');

/* Enhanced Hero Subtitle */
.hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  font-weight: 600;
  color: #d8d841;
  text-transform: none;
  letter-spacing: 0.05em;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle::before {
  content: '✈';
  margin-right: 0.5rem;
  font-size: 1.2em;
  color: #3b82f6;
}

.hero-subtitle::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #d8d841, #3b82f6);
  border-radius: 1px;
}

/* Enhanced Section Subtitle */
.sec-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  position: relative;
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 1rem;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(59, 130, 246, 0.1));
  border-radius: 20px;
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.sec-subtitle::before {
  content: '◈';
  margin-right: 0.5rem;
  color: #3b82f6;
  font-size: 0.9em;
}

/* Enhanced Sub Title */
.sub-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #0369a1;
  text-transform: capitalize;
  letter-spacing: 0.08em;
  position: relative;
  display: inline-block;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.sub-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 2px;
  background: linear-gradient(90deg, #d8d841, #059669);
  border-radius: 1px;
}

/* Style Variations */
.sub-title.style1 {
  font-family: 'Merriweather', serif;
  font-style: italic;
  color: #7c3aed;
  font-weight: 400;
}

.sub-title.style1::before {
  content: '※';
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background: none;
  margin-right: 0.5rem;
  color: #d8d841;
  font-size: 1.1em;
}

/* Tourism-specific Subtitle Classes */
.tourism-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.25rem;
  font-weight: 500;
  color: #d8d841;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.adventure-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 2rem;
}

.adventure-subtitle::before {
  content: '🏔';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.safari-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: #92400e;
  font-style: italic;
  position: relative;
  padding-left: 1.75rem;
}

.safari-subtitle::before {
  content: '🦁';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1em;
}

.beach-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.375rem;
  font-weight: 500;
  color: #0891b2;
  position: relative;
  padding-left: 2rem;
}

.beach-subtitle::before {
  content: '🏖';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

/* Responsive Typography */
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .sec-subtitle {
    font-size: 1rem;
    padding: 0.2rem 0.75rem;
  }
  
  .sub-title {
    font-size: 0.9rem;
  }
  
  .tourism-subtitle,
  .beach-subtitle {
    font-size: 1.125rem;
  }
  
  .adventure-subtitle,
  .safari-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .sec-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }
  
  .sub-title {
    font-size: 0.85rem;
    padding-left: 1.25rem;
  }
  
  .sub-title::before {
    width: 0.75rem;
  }
}

/* Animation Effects */
.hero-subtitle,
.sec-subtitle,
.sub-title {
  transition: all 0.3s ease-in-out;
}

.hero-subtitle:hover {
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.sec-subtitle:hover {
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.2), rgba(59, 130, 246, 0.2));
  border-color: rgba(5, 150, 105, 0.4);
}

.sub-title:hover::before {
  width: 1.5rem;
  background: linear-gradient(90deg, #3b82f6, #d8d841);
}

/* Tourism Section Specific Styles */
.destinations-section .sec-subtitle {
  color: #0369a1;
  background: linear-gradient(135deg, rgba(3, 105, 161, 0.1), rgba(245, 158, 11, 0.1));
  border-color: rgba(3, 105, 161, 0.2);
}

.packages-section .sec-subtitle {
  color: #059669;
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(220, 38, 38, 0.1));
  border-color: rgba(5, 150, 105, 0.2);
}

.testimonial-section .sec-subtitle {
  color: #7c3aed;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(245, 158, 11, 0.1));
  border-color: rgba(124, 58, 237, 0.2);
}

/* WhatsApp Button Styles */
.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  border: none !important;
  padding: 12px 24px !important;
  border-radius: 25px !important;
  font-family: 'Poppins', sans-serif !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-right: 15px !important;
}

.whatsapp-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.whatsapp-btn:hover::before {
  left: 100%;
}

.whatsapp-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4) !important;
  background: linear-gradient(135deg, #128c7e, #25d366) !important;
  color: #fff !important;
}

.whatsapp-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3) !important;
}

.whatsapp-btn .whatsapp-icon {
  font-size: 1.1em;
  margin-right: 0;
}

/* WhatsApp Icon Styles */
.whatsapp-icon::before {
  content: '📱';
  font-size: 1.2em;
}

/* Alternative WhatsApp icon using Font Awesome if available */
.fa-whatsapp {
  color: inherit;
}

/* Safari/Tourism Button with WhatsApp Style Variant */
.vs-btn.whatsapp-style {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
  color: #fff !important;
  border: 2px solid #25d366 !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.vs-btn.whatsapp-style::before {
  margin-right: 8px;
  font-size: 1.1em;
}

.vs-btn.whatsapp-style::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.vs-btn.whatsapp-style:hover::after {
  left: 100%;
}

.vs-btn.whatsapp-style:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
  border-color: #128c7e !important;
  background: linear-gradient(135deg, #128c7e, #25d366) !important;
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
  .whatsapp-btn,
  .vs-btn.whatsapp-style {
    padding: 10px 20px !important;
    font-size: 0.9rem !important;
    margin-right: 10px !important;
  }
  
  .whatsapp-btn .whatsapp-icon,
  .vs-btn.whatsapp-style::before {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .whatsapp-btn,
  .vs-btn.whatsapp-style {
    padding: 8px 16px !important;
    font-size: 0.85rem !important;
    margin-right: 8px !important;
    margin-bottom: 10px !important;
  }
  
  .whatsapp-btn,
  .vs-btn.whatsapp-style {
    display: block !important;
    text-align: center !important;
    width: 100% !important;
    margin-right: 0 !important;
  }
}

/* WhatsApp Link Styling */
.whatsapp-link {
  text-decoration: none;
  color: inherit;
}

.whatsapp-link:hover {
  text-decoration: none;
  color: inherit;
}
