/* New Styles for Enhanced Index Page */

/* Alert Bar Improvements */
.alert-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.alert-phone {
  color: var(--light-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.alert-phone:hover {
  color: var(--secondary-color);
}

/* Navigation Improvements */


/* Hero Section Improvements */


/* Trust Indicators */
.trust-section {
  padding: 40px 0;
  background-color: var(--light-bg);
  border-bottom: 1px solid var(--border-color);
}

.trust-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.trust-item i {
  color: var(--secondary-color);
  font-size: 20px;
}

/* Animated Text Section Improvements */
.animated-content {
  text-align: center;
  margin-bottom: 40px;
}

.rotating-words-container {
  display: inline-block;
  height: 60px;
  overflow: hidden;
  vertical-align: middle;
  margin: 0 10px;
}

.rotating-words {
  display: flex;
  flex-direction: column;
  animation: rotateWords 18s infinite;
}

@keyframes rotateWords {
  0%, 15% { transform: translateY(0); }
  20%, 35% { transform: translateY(-60px); }
  40%, 55% { transform: translateY(-120px); }
  60%, 75% { transform: translateY(-180px); }
  80%, 95% { transform: translateY(-240px); }
  100% { transform: translateY(-300px); }
}

.word {
  font-size: 42px;
  font-weight: 700;
  color: var(--secondary-color);
  height: 60px;
  display: flex;
  align-items: center;
}

.animated-cta {
  text-align: center;
}

/* Featured Card Badges */
.card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.featured-card .card-content p {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 10px;
  display: none;
}

.featured-card:hover .card-content p {
  display: block;
}

/* Section Improvements */
.section-subtitle {
  display: block;
  color: var(--secondary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 14px;
}

.section-description {
  max-width: 700px;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 50px;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 80px 0;
  background-color: var(--light-bg);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.why-choose-card {
  text-align: center;
  padding: 40px 30px;
  background-color: var(--light-text);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.why-choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.why-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
}

.why-choose-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

/* Seasons Section Improvements */
.season-image {
  position: relative;
  height: 100%;
}

.season-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
}

.season-badge {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 14px;
}

.season-features {
  margin: 20px 0;
}

.season-features span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.season-features i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.season-link-small {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-size: 14px;
}

/* Stats Section Improvements */
.stat-subtitle {
  display: block;
  font-size: 14px;
  opacity: 0.9;
  margin-top: 5px;
}

.stat-card .stat-icon i {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Trust Section Card Style */
.trust {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #FFD700, #00af87, #1a365d);
}

.trust h3 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #1a365d;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.trust p {
    font-size: clamp(1.125rem, 1.5vw, 1.25rem);
    color: #4a5568;
    line-height: 1.7;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.trust-link {
    text-align: center;
    margin-top: 2rem;
}

.trust-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #00af87;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #00af87;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.trust-link a:hover {
    background: #00af87;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 175, 135, 0.2);
}

.trust-link svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.trust-link a:hover svg {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .trust {
        padding: 3rem 1rem;
    }
    
    .trust-content {
        padding: 2rem 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
/* Trip Cards Improvements */
.trip-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.trip-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.trip-duration {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.trip-description {
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--gray-text);
}

.trip-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.trip-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
}

.trip-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.trips-footer {
  text-align: center;
  margin-top: 50px;
}

/* Community Banner Improvements */
.banner-icon {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.banner-stats {
  display: flex;
  gap: 30px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.banner-stat {
  text-align: center;
}

.banner-stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
}

.banner-stat-label {
  font-size: 14px;
  opacity: 0.9;
}

.banner-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Newsletter Improvements */
.newsletter-icon {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

.newsletter-subtitle {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.newsletter-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 16px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: auto;
}

.newsletter-note {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

/* Instagram Section */
.instagram-section {
  padding: 80px 0;
  background: 
        linear-gradient(rgba(25, 66, 49, 0.634), rgba(31, 77, 58, 0.547)),
        url('images/dry-season2.jpg') center/cover no-repeat;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.instagram-post {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 200px;
}

.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.instagram-post:hover img {
  transform: scale(1.1);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.instagram-post:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  font-size: 32px;
  color: rgb(255, 255, 255);
}

.instagram-footer {
  text-align: center;
  margin-top: 40px;
}

/* Footer Improvements */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-description {
  margin-top: 20px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-newsletter h4 {
  margin-bottom: 15px;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.footer-newsletter-form button {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter-form button:hover {
  background-color: #b89954;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  opacity: 0.8;
}

.contact-info i {
  width: 20px;
  color: var(--secondary-color);
}

.connect-title {
  margin-top: 30px;
  margin-bottom: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: var(--transition);
}

.social-link.facebook {
  background-color: #3b5998;
  color: white;
}

.social-link.instagram {
  background: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  color: white;
}

.social-link.youtube {
  background-color: #FF0000;
  color: white;
}

.social-link.twitter {
  background-color: #1DA1F2;
  color: white;
}

.social-link.tripadvisor {
  background-color: #34E0A1;
  color: white;
}

.social-link:hover {
  transform: translateY(-3px);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-payment {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-payment i {
  font-size: 24px;
  opacity: 0.8;
}

.footer-certifications {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.certification {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
}

.certification i {
  color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: #b89954;
  transform: translateY(-5px);
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: 1000;
}

.chat-toggle {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: var(--transition);
  position: relative;
}

.chat-toggle:hover {
  background-color: #2a3d32;
  transform: scale(1.1);
}

.chat-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FF4757;
  color: white;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background-color: var(--light-text);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.chat-window.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  background-color: var(--primary-color);
  color: var(--light-text);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-close {
  background: none;
  border: none;
  color: var(--light-text);
  font-size: 20px;
  cursor: pointer;
}

.chat-body {
  padding: 20px;
  height: 300px;
  overflow-y: auto;
}

.chat-message {
  margin-bottom: 15px;
  padding: 10px 15px;
  border-radius: 10px;
  max-width: 80%;
}

.chat-message.bot {
  background-color: var(--light-bg);
  align-self: flex-start;
}

.chat-footer {
  padding: 15px;
  border-top: 1px solid var(--border-color);
  display: flex;
  gap: 10px;
}

.chat-footer input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.chat-footer button {
  background-color: var(--primary-color);
  color: var(--light-text);
  border: none;
  padding: 0 20px;
  border-radius: 4px;
  cursor: pointer;
}
