/* Main Page Styles for SabaiTravel */
/* Animations */
@keyframes fadeInUp {
     from {
          opacity: 0;
          transform: translateY(30px);
     }

     to {
          opacity: 1;
          transform: translateY(0);
     }
}

/* Global improvements */
* {
     box-sizing: border-box;
}

/* Hero Section Enhanced */
.hero-section {
     background: linear-gradient(135deg, rgba(1, 55, 73, 0.9) 0%, rgba(0, 26, 36, 0.95) 100%);
     padding: 75px 0 80px;
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
     min-height: 60vh;
     display: flex;
     align-items: center;
}

/* Removed pattern overlay for better performance */
.hero-section::after {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 0;
     right: 0;
     height: 60px;
     background: linear-gradient(135deg, transparent 0%, white 100%);
     clip-path: polygon(0 100%, 100% 0, 100% 100%);
     pointer-events: none;
     z-index: 1;
}


.hero-content {
     position: relative;
     z-index: 10;
     max-width: 900px;
     margin: 0 auto;
}

.hero-title {
     font-size: 4.2rem;
     font-weight: 900;
     margin-bottom: 2rem;
     line-height: 1.1;
     background: linear-gradient(45deg, #fff, #f0f0f0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}

.hero-subtitle {
     font-size: 1.4rem;
     margin-bottom: 3rem;
     opacity: 0.95;
     line-height: 1.6;
     max-width: 700px;
     margin-left: auto;
     margin-right: auto;
}

.hero-cta {
     display: inline-flex;
     align-items: center;
     gap: 1.5rem;
     flex-wrap: wrap;
     justify-content: center;
     position: relative;
     z-index: 20;
}

.btn-hero {
     background: var(--primary-color);
     color: white;
     padding: 1rem 2rem;
     border-radius: 8px;
     font-weight: 700;
     position: relative;
     z-index: 30;
     text-decoration: none;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     border: none;
     font-size: 1.1rem;
     box-shadow: 0 4px 15px rgba(255, 107, 97, 0.3);
     overflow: hidden;
}

/* Removed animation for better performance */

.btn-hero:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 107, 97, 0.5);
     color: white;
     text-decoration: none;
}

.btn-secondary {
     background: transparent;
     color: white;
     padding: 0.9rem 2rem;
     border-radius: 8px;
     font-weight: 700;
     position: relative;
     z-index: 30;
     text-decoration: none;
     border: 2px solid rgba(255, 255, 255, 0.4);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     font-size: 1.2rem;
     backdrop-filter: blur(10px);
}

.btn-secondary:hover {
     background: rgba(255, 255, 255, 0.15);
     border-color: white;
     color: white;
     text-decoration: none;
     transform: translateY(-2px);
}

/* Improved Section Styles */
.section {
     padding: 50px 0;
     position: relative;
}

.section-header {
     text-align: center;
     margin-bottom: 1rem;
}

.section-title {
     font-size: 3.2rem;
     font-weight: 900;
     color: var(--secondary-color);
     margin-bottom: 1.5rem;
     position: relative;
     display: inline-block;
}

.section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 100px;
     height: 4px;
     background: linear-gradient(45deg, var(--primary-color), #ff5449);
     border-radius: 2px;
}

.section-title span {
     color: var(--primary-color);
}

.section-subtitle {
     font-size: 1.2rem;
     color: var(--text-secondary);
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.7;
}

/* Enhanced Countries Section */
.countries-container,
.cities-container {
     position: relative;
     padding: 0 40px;
}

.countries-slider,
.cities-slider {
     display: flex;
     overflow-x: hidden;
     scroll-behavior: smooth;
     -webkit-overflow-scrolling: touch;
     scroll-snap-type: x mandatory;
     gap: 20px;
     padding: 15px 0;
}

.country-slide {
     flex: 0 0 calc(33.333% - 14px);
     max-width: calc(33.333% - 14px);
     scroll-snap-align: start;
     opacity: 1;
     transform: translateX(0);
     transition: opacity 0.3s ease;
}

.country-card {
     position: relative;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     background: var(--card-bg);
     height: 220px;
     cursor: pointer;
     aspect-ratio: 16/9;
     gap: 10px;
}

.country-card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-hover);
     color: white;
}

.country-card-image {
     position: relative;
     height: 100%;
     overflow: hidden;
}

.country-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
}

.country-card:hover .country-card-image img {
     transform: scale(1.08);
}

.country-card-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 20px;
     color: white;
     transition: background 0.3s ease;
}

.country-card:hover .country-card-overlay {
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.country-title::before {
     content: attr(data-flag) " ";
}

.country-title {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     color: white;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
     text-transform: uppercase;
     transition: all 0.3s ease;
}

.country-card:hover .country-title {
     transform: translateY(-2px);
     text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 193, 7, 0.3);
     letter-spacing: 0.5px;
}

.country-stats {
     display: flex;
     gap: 1.5rem;
     font-size: 1rem;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.95);
     margin-bottom: 10px;
     transition: all 0.3s ease;
}

.country-stats>div {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     background: rgba(255, 255, 255, 0.1);
     padding: 4px 10px;
     border-radius: 20px;
     backdrop-filter: blur(5px);
     transition: all 0.3s ease;
}

.country-card:hover .country-stats>div {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
}

.country-stats i {
     color: #ffc107;
     font-size: 1rem;
}

.country-stats span {
     font-weight: 700;
     color: white;
}

.country-tag {
     display: inline-block;
     background-color: var(--primary-color);
     color: white;
     padding: 4px 10px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 600;
     margin-bottom: 10px;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.slider-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: white;
     border: none;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     transition: all 0.2s ease;
     z-index: 10;
     color: var(--secondary-color);
}

.slider-nav:hover {
     background: var(--primary-color);
     color: white;
}

/* Disabled state for slider navigation */
.slider-nav:disabled,
.slider-nav[disabled] {
     background: var(--border-color);
     color: var(--text-secondary);
     box-shadow: none;
     cursor: not-allowed;
     opacity: 0.6;
}

.slider-prev {
     left: 10px;
}

.slider-next {
     right: 10px;
}

/* CSS fixes for slider dots */
.slider-dots {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin-top: 15px;
     padding: 0;
}

.slider-dot {
     width: 10px;
     height: 10px;
     border-radius: 50%;
     background: var(--border-color);
     cursor: pointer;
     transition: all 0.3s ease;
     border: none;
     padding: 0;
     outline: none;
     opacity: 0.6;
}

.slider-dot.active {
     background: var(--primary-color) !important;
     opacity: 1;
     transform: scale(1.2);
}

/* Tours Section */
.tours-container {
     background: var(--light-blue);
}

/* Universal Tabs System - Used for both Tours and Articles */
.content-tabs {
     display: flex;
     justify-content: center;
     margin-bottom: 3rem;
     flex-wrap: wrap;
     gap: 1rem;
     padding: 0 1rem;
}

.content-tab {
     background: white;
     color: var(--text-secondary);
     padding: 0.7rem 1rem;
     border: 2px solid var(--border-color);
     border-radius: 50px;
     cursor: pointer;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     font-weight: 600;
     font-size: 1rem;
     min-width: 120px;
     text-align: center;
     white-space: nowrap;
}

.content-tab.active,
.content-tab:hover {
     background: var(--primary-color);
     color: white;
     border-color: var(--primary-color);
     transform: translateY(-2px);
     box-shadow: 0 4px 15px rgba(255, 107, 97, 0.3);
}

.content-tab:focus {
     outline: 2px solid var(--primary-color);
     outline-offset: 2px;
}

.tab-content {
     display: none !important;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.3s ease;
}

.tab-content.active {
     display: block !important;
     opacity: 1;
     visibility: visible;
}

/* Mobile tabs optimization */
@media (max-width: 768px) {
     .content-tabs {
          justify-content: flex-start;
          overflow-x: auto;
          overflow-y: hidden;
          scrollbar-width: none;
          -ms-overflow-style: none;
          padding: 0 1rem 0.5rem;
          margin-bottom: 2rem;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          position: relative;
     }

     .content-tabs::-webkit-scrollbar {
          display: none;
     }

     .content-tab {
          flex-shrink: 0;
          padding: 0.8rem 1.5rem;
          font-size: 0.9rem;
          min-width: 110px;
          scroll-snap-align: start;
     }

     .content-tab:first-child {
          margin-left: 0;
     }

     .content-tab:last-child {
          margin-right: 1rem;
     }

     /* Mobile scroll hint */
     .content-tabs.scrollable-tabs::after {
          content: "⟵ Swipe ⟶";
          position: absolute;
          bottom: -20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.6);
          color: white;
          padding: 4px 12px;
          border-radius: 12px;
          font-size: 0.7rem;
          pointer-events: none;
          opacity: 0.8;
          animation: none;
     }

     @keyframes fadeInOut {

          0%,
          100% {
               opacity: 0;
          }

          50% {
               opacity: 0.8;
          }
     }
}

/* Content styling now handled by universal .tab-content */

.tours-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 1rem;
     max-width: 1400px;
     margin: 0 auto;
}

.tour-card {
     background: var(--card-bg);
     border-radius: 5px;
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     height: auto;
     min-height: 420px;
     position: relative;
     display: flex;
     flex-direction: column;
}

.tour-card:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-hover);
}

.tour-card-image {
     aspect-ratio: 16/9;
     overflow: hidden;
     position: relative;
     flex-shrink: 0;
     width: 100%;
     background: var(--light-bg);
}

/* Fallback for browsers that don't support aspect-ratio */
@supports not (aspect-ratio: 16/9) {
     .tour-card-image {
          height: 200px;
     }
}

.tour-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
     opacity: 1;
}

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

.tour-badge {
     position: absolute;
     bottom: 0;
     right: 0;
     background: #cffc03;
     border-radius: 5px 0 0 0;
     color: black;
     padding: 0.3rem 0.8rem;
     font-size: 0.9rem;
     text-transform: uppercase;
     font-weight: 600;
     z-index: 2;
     letter-spacing: 2px;
}

.tour-new-badge {
     position: absolute;
     top: 0.5rem;
     left: 0;
     background: #cffc03;
     color: black;
     padding: 0 0.4rem;
     border-radius: 0 5px 5px 0;
     font-size: 0.8rem;
     font-weight: 600;
     text-transform: uppercase;
     z-index: 2;
}

.tour-card-content {
     padding: 0 0.7rem;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     min-height: 220px;
}

.tour-title {
     font-size: 1.3rem;
     text-align: center;
     font-weight: 700;
     color: var(--secondary-color);
     margin: 10px 3px 5px 3px;
     line-height: 1;
     height: auto;
     min-height: 50px;
     align-content: center;
     align-items: center;
     vertical-align: center;

}

.tour-title a {
     color: inherit;
     text-decoration: none;
     transition: color 0.2s ease;
     display: block;
     line-height: 1.4;
     word-wrap: break-word;
     hyphens: auto;
}

.tour-title a:hover {
     color: var(--primary-color);
     text-decoration: none;
}

.tour-meta {
     margin-bottom: 0.3rem;
     flex: 1;
}

.tour-meta-item {
     display: flex;
     align-items: center;
     align-content: center;
     vertical-align: center;
     gap: 0.7rem;
     font-size: 0.9rem;
     color: var(--text-secondary);
     margin-bottom: 0;
     padding: 0;
}

.tour-meta-item i {
     color: var(--primary-color);
     width: 18px;
     font-size: 1.1rem;
     flex-shrink: 0;
     text-align: center;
     font-weight: 600;
     margin: 0;
}



/* Разрешаем псевдоэлемент для иконок Fontello */
.tour-meta-item i[class^="icon-"]::before,
.tour-meta-item i[class*=" icon-"]::before {
     display: inline-block;
}

.tour-rating-badge {
     position: absolute;
     bottom: 0.5rem;
     right: 0;
     background: #115455;
     color: #ffffff;
     padding: 0.2rem 0.8rem;
     border-radius: 5px 0 0 5px;
     font-size: 0.85rem;
     font-weight: 600;
     backdrop-filter: blur(10px);
     z-index: 3;
}

.new-tour-badge {
     color: #ffffff;
     font-weight: 700;
     font-size: 0.8rem;
     text-transform: uppercase;
}

.rating-link {
     color: white;
     text-decoration: none;
     display: flex;
     align-items: center;
     gap: 0.3rem;
}

.rating-link:hover {
     color: white;
     text-decoration: none;
}

.review-count {
     font-size: 0.8rem;
     opacity: 0.9;
}



.tour-pricing {
     background: var(--light-bg);
     border-radius: 5px;
     padding: 0.5rem;
     margin-bottom: 0.8rem;
     border: 1px solid var(--border-color);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     position: relative;
     z-index: 1;
}

.tour-price-header {
     display: none;
}

.tour-price-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0;
}

.tour-price-row:last-child {
     margin-bottom: 0;
}

.price-label {
     font-size: 1rem;
     color: var(--secondary-color);
     font-weight: 700;
     text-transform: uppercase;
}

.price-amount {
     font-size: 1.1rem;
     font-weight: 700;
     color: var(--secondary-color);
     display: inline-block;
}

.price-amount.adult {
     font-size: 1.4rem;
     color: var(--secondary-color);
     font-weight: 700;
}

.price-amount.child {
     font-size: 1.4rem;
     color: var(--secondary-color);
     font-weight: 700;
}

.price-currency {
     font-size: 1rem;
     color: var(--secondary-color);
     margin-left: 0;
     text-transform: none;
}





.tour-actions {
     text-align: center;
}

.btn-tour {
     background: var(--primary-color);
     color: white;
     padding: 0.8rem 1.5rem;
     border-radius: 8px;
     text-decoration: none;
     font-size: 0.95rem;
     font-weight: 600;
     transition: all 0.2s ease;
     display: inline-block;
     width: 100%;
     text-align: center;
     border: none;
     cursor: pointer;
     position: relative;
     overflow: hidden;
}

.btn-tour::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.3s ease;
}

.btn-tour:hover::before {
     left: 100%;
}

.btn-tour:hover {
     background: #ff5449;
     color: white;
     text-decoration: none;
     transform: translateY(-1px);
     box-shadow: 0 4px 12px rgba(255, 107, 97, 0.3);
}

/* Enhanced Reviews Section */
.reviews-section {
     background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
     overflow: hidden;
     position: relative;
}

.reviews-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ff6b61" opacity="0.1"/><circle cx="80" cy="80" r="3" fill="%23013749" opacity="0.1"/><circle cx="60" cy="30" r="1.5" fill="%23ffc107" opacity="0.1"/></svg>') repeat;
     pointer-events: none;
}

.reviews-container {
     position: relative;
     padding: 0 50px;
     overflow: hidden;
}

.reviews-carousel {
     display: flex;
     gap: 1.5rem;
     padding: 1.5rem 0 1.5rem 0;
     overflow-x: auto;
     scroll-behavior: smooth;
     scrollbar-width: none;
     -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
     display: none;
}

.reviews-carousel:hover {
     animation-play-state: paused;
}

.review-card {
     background: var(--card-bg);
     border-radius: 15px;
     padding: 1rem;
     position: relative;
     border: 1px solid var(--border-color);
     width: 340px;
     height: auto;
     min-height: 200px;
     display: flex;
     flex-direction: column;
     flex-shrink: 0;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     margin-right: 0;
     margin-left: 0;
}

.review-card::before {
     content: '"';
     position: absolute;
     top: 0;
     left: 1.2rem;
     font-size: 3rem;
     color: var(--primary-color);
     font-family: Georgia, serif;
     opacity: 0.2;
     line-height: 1;
}

.review-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Scroll indicators for reviews */
.reviews-dots {
     display: flex;
     justify-content: center;
     gap: 8px;
     margin-top: 15px;
     padding: 0;
}

.reviews-dots .slider-dot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(0, 0, 0, 0.3);
     cursor: pointer;
     transition: all 0.3s ease;
     border: none;
     padding: 0;
}

.reviews-dots .slider-dot.active {
     background-color: var(--primary-color);
     transform: scale(1.2);
}

.reviews-nav-btn {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     background: var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 1.2rem;
     color: white;
     z-index: 3;
     box-shadow: 0 4px 10px rgba(255, 107, 97, 0.3);
     cursor: pointer;
     opacity: 0.8;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     border: none;
}

.reviews-nav-btn:hover {
     opacity: 1;
     transform: translateY(-50%) scale(1.1);
}

/* Disabled state for reviews nav buttons */
.reviews-nav-btn:disabled,
.reviews-nav-btn[disabled] {
     background: var(--border-color);
     color: var(--text-secondary);
     box-shadow: none;
     cursor: not-allowed;
     opacity: 0.6;
}

.reviews-prev {
     left: 5px;
}

.reviews-next {
     right: 5px;
}

.review-content {
     flex: 1;
     display: flex;
     flex-direction: column;
     position: relative;
     z-index: 1;
}

.review-text {
     line-height: 1.5;
     color: var(--text-primary);
     flex-grow: 1;
     font-size: 0.95rem;
     overflow: hidden;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     line-clamp: 3;
     -webkit-box-orient: vertical;
     font-style: italic;
     margin-bottom: 0.5rem;
     padding-top: 0.8rem;
}

.review-footer {
     display: flex;
     align-items: center;
     gap: 0.8rem;
     border-top: 1px solid rgba(0, 0, 0, 0.06);
     padding-top: 0.6rem;
     margin-top: auto;
}

.review-avatar {
     width: 36px;
     height: 36px;
     border-radius: 50%;
     overflow: hidden;
     flex-shrink: 0;
     background: var(--light-bg);
     border: 1px solid var(--border-color);
     display: flex;
     align-items: center;
     justify-content: center;
}

.review-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
}

/* Initials-based avatar */
.avatar-initials {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 100%;
     height: 100%;
     font-weight: 700;
     color: var(--secondary-color);
}

.review-user-info {
     flex: 1;
}

.review-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 0.2rem;
}

.review-user-name {
     font-weight: 600;
     color: var(--secondary-color);
     font-size: 0.95rem;
     margin: 0;
}

.review-user-name .review-date-inline {
     font-weight: 500;
     color: var(--text-secondary);
     font-size: 0.85rem;
     margin-left: 6px;
}

.review-dot {
     color: var(--text-secondary);
     margin: 0 6px;
}

.review-rating {
     color: var(--warning-color);
     font-size: 0.9rem;
     display: flex;
     align-items: center;
     gap: 0.1rem;
}

.review-date {
     display: none;
}

.review-tour {
     margin-top: 0.4rem;
     padding: 0.5rem 0.7rem;
     border: 1px solid var(--border-color);
     background: var(--light-bg);
     border-radius: 6px;
}

.review-tour-title {
     display: inline-flex;
     align-items: center;
     gap: 0.4rem;
     color: var(--primary-color);
     font-weight: 700;
     text-decoration: none;
}

.review-tour-title:hover,
.review-tour-title:focus {
     color: #e14d67;
     text-decoration: underline;
}

.review-tour-meta {
     font-size: 0.8rem;
     color: var(--text-secondary);
     margin-top: 0.2rem;
}

.reviews-swipe-hint {
     position: absolute;
     bottom: 10px;
     right: 20px;
     background-color: rgba(255, 255, 255, 0.9);
     color: var(--secondary-color);
     padding: 6px 12px;
     border-radius: 20px;
     font-size: 0.75rem;
     font-weight: 600;
     box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
     display: flex;
     align-items: center;
     gap: 6px;
     animation: pulse 2s infinite;
     opacity: 0.9;
     z-index: 10;
     backdrop-filter: blur(5px);
}

/* Enhanced Informers */
/* Informers (Why Choose Us) - redesigned as slider */
.informers-section {
     background: linear-gradient(135deg, var(--bg-color) 0%, #f0e6e6 100%);
     position: relative;
}

.informers-section::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><polygon points="100,10 40,190 160,190" fill="%23ff6b61" opacity="0.02"/><circle cx="150" cy="50" r="20" fill="%23013749" opacity="0.03"/></svg>') repeat;
     pointer-events: none;
}

.informers-container {
     position: relative;
     padding: 0 35px;
}

.informers-slider {
     display: flex;
     gap: 1.5rem;
     overflow-x: hidden;
     scroll-behavior: smooth;
}

.informer-slide {
     flex: 0 0 calc(33.333% - 1rem);
     max-width: calc(33.333% - 1rem);
}

.informer-card {
     background: var(--card-bg);
     border-radius: 16px;
     padding: 1rem 1.2rem;
     box-shadow: 0 6px 16px rgba(0, 0, 0, .08);
     transition: transform .2s ease, box-shadow .2s ease;
     height: 100%;
     position: relative;
     border: 1px solid var(--border-color);
}

.informer-card:hover {
     transform: translateY(-6px);
     box-shadow: var(--shadow-hover);
}

.informer-icon-wrap {
     width: 56px;
     height: 56px;
     border-radius: 12px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: linear-gradient(135deg, rgba(255, 107, 97, .12), rgba(255, 107, 97, .06));
     color: var(--primary-color);
     margin-bottom: 1rem;
     box-shadow: inset 0 0 0 1px rgba(255, 107, 97, .25);
}

.informer-icon-wrap i {
     font-size: 1.6rem;
}

.informer-title {
     font-size: 1.2rem;
     font-weight: 800;
     text-align: center;
     color: var(--secondary-color);
     margin-bottom: 1rem;
     /*text-transform: uppercase;*/
}

.informer-description {
     color: var(--text-secondary);
     line-height: 1.4;
     font-size: 1.05rem;
}

.informers-nav {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: #fff;
     border: none;
     box-shadow: 0 2px 10px rgba(0, 0, 0, .12);
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--secondary-color);
     z-index: 2;
     cursor: pointer;
}

.informers-prev {
     left: 5px;
}

.informers-next {
     right: 5px;
}

.informers-nav:hover {
     background: var(--primary-color);
     color: #fff;
}

/* Disabled state for informers nav buttons */
.informers-nav:disabled,
.informers-nav[disabled] {
     background: var(--border-color);
     color: var(--text-secondary);
     box-shadow: none;
     cursor: not-allowed;
     opacity: 0.6;
}

.informers-dots {
     margin-top: 16px;
}

@media (max-width: 991px) {
     .informers-container {
          padding: 0 30px;
     }

     .informer-slide {
          flex: 0 0 calc(50% - 10px);
          max-width: calc(50% - 10px);
     }
}

@media (max-width: 768px) {
     .informers-container {
          padding: 0;
     }

     .informers-nav {
          display: none;
     }

     .informers-slider {
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          padding: 0 12px;
          gap: 12px;
     }

     .informer-slide {
          flex: 0 0 85%;
          max-width: 85%;
          scroll-snap-align: center;
     }

     .informer-card {
          text-align: left;
     }
}

/* Articles Section Styles */
.articles-section {
     background: white;
     position: relative;
}

.articles-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="20" height="20" fill="%23013749" opacity="0.01" transform="rotate(45 20 20)"/><rect x="70" y="70" width="15" height="15" fill="%23ff6b61" opacity="0.02" transform="rotate(45 77.5 77.5)"/></svg>') repeat;
     pointer-events: none;
}

/* Articles tabs now use the universal .content-tabs system */

/* Articles grid - Clean 4 columns layout */
.articles-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 1rem;
     max-width: 1200px;
     margin: 0 auto;
}

/* Clean Article Card Design */
.article-card.compact {
     background: #ffffff;
     border-radius: 5px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     overflow: hidden;
     transition: all 0.2s ease;
     height: auto;
     display: flex;
     flex-direction: column;
     border: 1px solid #e8e8e8;
}

.article-card.compact:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 12px rgba(0, 0, 0, 0.12);
     border-color: #d0d0d0;
}

.article-card.compact .article-image {
     position: relative;
     height: 180px;
     overflow: hidden;
     flex-shrink: 0;
}

.article-card.compact .article-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
}

.article-card.compact:hover .article-image img {
     transform: scale(1.02);
}

/* Clean Article Badges */
.article-card.compact .article-badges {
     position: absolute;
     top: 12px;
     left: 12px;
     display: flex;
     flex-direction: column;
     gap: 4px;
     z-index: 2;
}

.article-card.compact .article-country-badge {
     background: var(--primary-color);
     color: white;
     padding: 0.1rem 0.4rem;
     border-radius: 4px;
     font-size: 0.7rem;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 0.3px;
}

.article-card.compact .article-category-badge {
     background: #3498db;
     color: white;
     padding: 0.2rem 0.5rem;
     border-radius: 4px;
     font-size: 0.65rem;
     font-weight: 500;
}

.article-card.compact .article-content {
     padding: 1rem;
     flex: 1;
     display: flex;
     flex-direction: column;
}

/* Clean Article Header */
.article-card.compact .article-header {
     margin-bottom: 0.1rem;
}

.article-card.compact .article-title {
     font-size: 1rem;
     font-weight: 600;
     color: #1a1a1a;
     margin: 0;
     line-height: 1.4;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     min-height: 2.8rem;
}

.article-card.compact .article-date {
     font-size: 0.75rem;
     color: #666;
     font-weight: 500;
}

.article-card.compact .article-excerpt {
     font-size: 0.85rem;
     color: #666;
     line-height: 1.4;
     margin: 0 0 0.5rem 0;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     flex: 1;
}

.article-card.compact .article-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 0.75rem;
     color: #888;
     margin-top: auto;
     padding-top: 0.8rem;
     border-top: 1px solid #f0f0f0;
}

.article-card.compact .article-meta i {
     margin-right: 0.3rem;
     color: #999;
}

.article-card.compact .article-location,
.article-card.compact .article-comments {
     display: flex;
     align-items: center;
     font-weight: 500;
}

.article-card.compact .article-comments {
     color: var(--primary-color);
}

/* Tab Content CTA Container */
.tab-content .cta-container {
     text-align: center;
     margin-top: 2rem;
     padding-top: 1.5rem;
     border-top: 1px solid #e5e5e5;
}

.tab-content .btn-cta {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: var(--primary-color);
     color: white;
     padding: 0.8rem 1.8rem;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     font-size: 0.9rem;
     transition: all 0.2s ease;
     box-shadow: 0 2px 8px rgba(255, 107, 97, 0.2);
}

.tab-content .btn-cta:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 12px rgba(255, 107, 97, 0.3);
     color: white;
     text-decoration: none;
     background: #e14d67;
}

.tab-content .btn-cta::after {
     content: "→";
     margin-left: 0.3rem;
     transition: transform 0.2s ease;
}

.tab-content .btn-cta:hover::after {
     transform: translateX(3px);
}

/* Enhanced CTA Buttons */
.cta-container {
     text-align: center;
     margin-top: 3rem;
}

.btn-cta {
     background: linear-gradient(45deg, var(--primary-color), #ff5449);
     color: white;
     padding: 1.3rem 3rem;
     border-radius: 50px;
     text-decoration: none;
     font-size: 1.1rem;
     font-weight: 700;
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     display: inline-block;
     box-shadow: 0 6px 20px rgba(255, 107, 97, 0.4);
     position: relative;
     overflow: hidden;
}

/* Removed animation for better performance */

.btn-cta:hover {
     color: white;
     text-decoration: none;
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(255, 107, 97, 0.5);
}

.no-tours-message {
     grid-column: 1 / -1;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 300px;
     background: rgba(255, 255, 255, 0.8);
     border-radius: 20px;
     border: 2px dashed var(--border-color);
     margin: 2rem 0;
}

.no-tours-content {
     text-align: center;
     padding: 2rem;
     max-width: 400px;
}

.no-tours-content h3,
.no-tours-content h4 {
     color: var(--secondary-color);
     margin-bottom: 1rem;
     font-weight: 700;
}

.no-tours-content p {
     color: var(--text-secondary);
     line-height: 1.6;
}

/* Accessibility */
.sr-only {
     position: absolute;
     width: 1px;
     height: 1px;
     padding: 0;
     margin: -1px;
     overflow: hidden;
     clip: rect(0, 0, 0, 0);
     white-space: nowrap;
     border: 0;
}

/* Focus styles for better accessibility */
.content-tab:focus,
.btn-hero:focus,
.btn-secondary:focus,
.btn-tour:focus,
.btn-cta:focus {
     outline: 2px solid var(--primary-color);
     outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

     .country-card-overlay,
     .tour-badge,
     .review-rating {
          border: 1px solid;
     }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

     *,
     *::before,
     *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
     }

     .hero-section {
          transform: none !important;

     }

     .reviews-carousel {
          scroll-behavior: auto;
     }
}

/* Print styles */
@media print {

     .hero-section,
     .reviews-carousel,
     .btn-hero,
     .btn-secondary,
     .btn-tour,
     .btn-cta {
          display: none;
     }

     .section {
          page-break-inside: avoid;
     }
}

/* Progressive Enhancement */
.card-skeleton {
     background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
     background-size: 200% 100%;
     animation: loading 1.5s infinite;
     border-radius: 15px;
}

/* Interactive Elements */
.pulse-on-hover:hover {
     animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
     0% {
          transform: scale(1);
     }

     50% {
          transform: scale(1.05);
     }

     100% {
          transform: scale(1);
     }
}

/* Scroll Indicators */
.scroll-indicator {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: var(--light-bg);
     z-index: 9999;
}

.scroll-progress {
     height: 100%;
     background: linear-gradient(45deg, var(--primary-color), #ff5449);
     width: 0%;
     transition: width 0.3s ease;
}

/* Badge Animations */
.tour-badge,
.tour-new-badge {
     animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
     from {
          opacity: 0;
          transform: translateY(-20px);
     }

     to {
          opacity: 1;
          transform: translateY(0);
     }
}

/* Enhanced Section Spacing */
.section+.section {
     margin-top: -1px;
     /* Overlap for seamless design */
}

/* Modern Shadows */
.modern-shadow {
     box-shadow:
          0 2.8px 2.2px rgba(0, 0, 0, 0.034),
          0 6.7px 5.3px rgba(0, 0, 0, 0.048),
          0 12.5px 10px rgba(0, 0, 0, 0.06),
          0 22.3px 17.9px rgba(0, 0, 0, 0.072),
          0 41.8px 33.4px rgba(0, 0, 0, 0.086),
          0 100px 80px rgba(0, 0, 0, 0.12);
}

/* Glass Effect */
.glass-effect {
     background: rgba(255, 255, 255, 0.25);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Enhanced Hover States */
.tour-card:hover .tour-title a,
.review-card:hover .review-user-name,
.informer-card:hover .informer-title,
.article-card:hover .article-title {
     color: var(--primary-color);
     transition: color 0.3s ease;
}

.scroll-hint {
     position: absolute;
     bottom: 5px;
     right: 15px;
     background-color: rgba(255, 255, 255, 0.8);
     color: var(--secondary-color);
     padding: 4px 8px;
     border-radius: 30px;
     font-size: 0.7rem;
     font-weight: 600;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     gap: 4px;
     animation: pulse 1.5s infinite;
     opacity: 0.9;
     z-index: 5;
}

/* Responsive Design */
@media (max-width: 1200px) {
     .container {
          max-width: 1200px;
     }
}

@media (min-width: 768px) and (max-width: 1023px) {
     .tours-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 1rem;
     }

     .tour-card {
          height: auto;
          min-height: 400px;
     }

     .tour-card-content {
          padding: 1rem;
     }

     .btn-tour {
          padding: 0.7rem 1rem;
          font-size: 0.9rem;
     }
}

@media (min-width: 1024px) {
     .tours-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 1rem;
     }

     .tour-card {
          height: auto;
          min-height: 420px;
     }
}

@media (min-width: 1600px) {
     .tours-grid {
          grid-template-columns: repeat(4, 1fr);
          gap: 2rem;
     }

     .tour-card {
          min-height: 420px;
     }
}

@media (min-width: 992px) {
     .reviews-carousel {
          gap: 2rem;
          padding: 2rem 0;
          justify-content: flex-start;
     }

     .review-card {
          width: calc(50% - 2rem);
          max-width: 520px;
          min-width: 420px;
          padding: 1.2rem;
          min-height: 200px;
     }

     .review-text {
          -webkit-line-clamp: 3;
          line-clamp: 3;
          font-size: 0.95rem;
          line-height: 1.45;
          height: auto;
          margin-bottom: 0.1rem;
     }

     .review-footer {
          padding-top: 0.6rem;
     }

     .reviews-nav-btn {
          width: 50px;
          height: 50px;
          font-size: 1.4rem;
     }

     .reviews-prev {
          left: 10px;
     }

     .reviews-next {
          right: 10px;
     }

     .reviews-dots .slider-dot {
          width: 10px;
          height: 10px;
     }

     .reviews-dots .slider-dot.active {
          width: 10px;
          height: 10px;
          transform: scale(1.2);
     }
}

/* Responsive adjustments */
@media (max-width: 991px) {
     .country-slide {
          flex: 0 0 calc(50% - 10px);
          max-width: calc(50% - 10px);
     }
}

@media (max-width: 1200px) {
     .articles-grid {
          gap: 1rem;
          padding: 0 1rem;
     }
}

@media (max-width: 768px) {
     .hero-cta {

          flex-direction: row;
          flex-wrap: wrap;
          justify-content: center;
          gap: 1.5rem;
     }

     .btn-hero,
     .btn-secondary {
          width: auto;
          text-align: center;
          padding: 0.7rem 1.2rem;
          font-size: 1.2rem;
     }

     .hero-title {
          font-size: 2.8rem;
     }

     .section-title {
          font-size: 2.2rem;
     }

     .section {
          padding: 10px 0;
     }

     .countries-grid,
     .tours-grid,
     .informers-grid,
     .articles-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
     }

     .tour-card {
          height: auto;
          max-height: none;
          margin-bottom: 0.5rem;
     }

     .tour-card-image {
          aspect-ratio: 16/9;
     }

     @supports not (aspect-ratio: 16/9) {
          .tour-card-image {
               height: 200px;
          }
     }

     .tour-card-content {
          min-height: auto;
     }

     .tour-title {
          font-size: 1.6rem;
          padding: 0;
          margin: 0;
     }

     /* Tours tabs now use the universal .content-tabs system */

     .reviews-section {
          padding: 40px 0;
          overflow: visible;
     }

     .reviews-container {
          padding: 0;
          margin: 0;
          position: relative;
          overflow: visible;
     }

     .reviews-carousel {
          display: flex;
          gap: 15px;
          padding: 20px 15px;
          overflow-x: auto;
          scroll-behavior: smooth;
          scroll-snap-type: x mandatory;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          -ms-overflow-style: none;
          width: 100%;
     }

     .reviews-carousel::-webkit-scrollbar {
          display: none;
     }

     .review-card {
          flex: 0 0 calc(100vw - 60px);
          width: calc(100vw - 60px);
          max-width: calc(100vw - 60px);
          min-width: calc(100vw - 60px);
          height: auto;
          min-height: 280px;
          padding: 20px;
          margin: 0;
          border-radius: 16px;
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
          background: white;
          scroll-snap-align: center;
          position: relative;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
          border: 1px solid rgba(0, 0, 0, 0.08);
     }

     .review-card::before {
          top: -5px;
          left: 15px;
          font-size: 2.5rem;
          opacity: 0.15;
     }

     .reviews-nav-btn {
          display: none;
     }

     .review-content {
          padding: 0;
          height: 100%;
          display: flex;
          flex-direction: column;
          justify-content: space-between;
     }

     .review-text {
          font-size: 1rem;
          line-height: 1.6;
          margin-bottom: 20px;
          padding-top: 10px;
          flex: 1;
          display: -webkit-box;
          -webkit-line-clamp: 6;
          line-clamp: 6;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          font-style: italic;
          color: var(--text-primary);
     }

     .review-footer {
          padding-top: 15px;
          border-top: 1px solid rgba(0, 0, 0, 0.1);
          margin-top: auto;
          display: flex;
          align-items: center;
          gap: 12px;
     }

     .review-avatar {
          width: 44px;
          height: 44px;
          border-radius: 50%;
          overflow: hidden;
          flex-shrink: 0;
          border: 2px solid rgba(255, 107, 97, 0.2);
     }

     .review-avatar img {
          width: 100%;
          height: 100%;
          object-fit: cover;
     }

     .review-user-info {
          flex: 1;
          min-width: 0;
     }

     .review-meta {
          display: flex;
          justify-content: space-between;
          align-items: center;
          margin-bottom: 6px;
          gap: 10px;
     }

     .review-user-name {
          font-size: 1rem;
          font-weight: 700;
          color: var(--secondary-color);
          margin: 0;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
     }

     .review-rating {
          display: flex;
          align-items: center;
          gap: 2px;
          font-size: 0.9rem;
          color: var(--warning-color);
          flex-shrink: 0;
     }

     .review-date {
          font-size: 0.85rem;
          color: var(--text-secondary);
          margin-bottom: 4px;
     }

     .review-tour-name {
          font-size: 0.85rem;
          color: var(--primary-color);
          font-weight: 600;
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
          max-width: 100%;
     }

     .reviews-dots {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 8px;
          margin: 20px auto 0;
          padding: 0;
          width: 100%;
     }

     .reviews-dots .slider-dot {
          width: 8px !important;
          height: 8px !important;
          border-radius: 50% !important;
          background-color: rgba(0, 0, 0, 0.3) !important;
          opacity: 0.7;
          margin: 0;
          border: none;
          padding: 0;
          transform: scale(1) !important;
          transition: all 0.3s ease;
     }

     .reviews-dots .slider-dot.active {
          width: 24px !important;
          height: 8px !important;
          border-radius: 4px !important;
          background-color: var(--primary-color) !important;
          opacity: 1;
     }

     .country-slide {
          flex: 0 0 100%;
          max-width: 100%;
     }

     .country-title {
          font-size: 1.5rem;
     }

     .countries-container,
     .cities-container {
          padding: 0 30px;
     }

     .section {
          padding: 40px 0 30px;
     }

     .section-title {
          font-size: 2.5rem;
          margin-bottom: 1rem;
     }

     .section-subtitle {
          font-size: 1rem;
          margin-bottom: 1.5rem;
     }

     .countries-container,
     .cities-container {
          padding: 0 35px;
          margin-top: 1rem;
     }

     .country-slide {
          flex: 0 0 100%;
          max-width: 100%;
     }

     .country-card {
          height: 220px;
     }

     .country-title {
          font-size: 1.5rem;
     }

     .slider-nav {
          width: 35px;
          height: 35px;
          top: 50%;
     }

     .slider-prev {
          left: 5px;
     }

     .slider-next {
          right: 5px;
     }

     .slider-dots {
          width: 100%;
          margin: 15px auto 0;
          padding: 0;
          display: flex;
          justify-content: center;
          gap: 8px;
     }

     .slider-dot {
          width: 8px;
          height: 8px;
          border-radius: 50%;
          margin: 0;
          opacity: 0.6;
     }

     .slider-dot.active {
          background-color: var(--primary-color) !important;
          opacity: 1;
          transform: scale(1.2);
          width: 8px !important;
          border-radius: 50% !important;
     }

     .country-tag {
          font-size: 0.7rem;
          padding: 3px 8px;
     }

     .country-stats {
          font-size: 0.9rem;
          gap: 1rem;
          margin-bottom: 8px;
     }

     .countries-container,
     .cities-container {
          padding: 0;
          margin: 0 -15px;
          overflow: visible;
          position: relative;
     }

     .countries-slider,
     .cities-slider {
          padding: 20px 0;
          gap: 12px;
          scroll-snap-type: x mandatory;
     }

     .country-slide {
          flex: 0 0 85%;
          max-width: 85%;
          margin-left: 15px;
     }

     .country-slide:last-child {
          margin-right: 15px;
     }

     .country-card {
          height: auto;
          aspect-ratio: 16/9;
          border-radius: 12px;
          overflow: hidden;
          position: relative;
     }

     .country-card-overlay {
          background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%);
          padding: 15px;
     }

     .country-title {
          font-size: 1.5rem;
          margin-bottom: 0.4rem;
          letter-spacing: 0.5px;
     }

     .country-stats {
          font-size: 0.85rem;
          gap: 12px;
          margin-bottom: 0;
          display: flex;
          align-items: center;
          flex-wrap: wrap;
     }

     .country-stats div {
          display: flex;
          align-items: center;
          gap: 4px;
          background: rgba(255, 255, 255, 0.2);
          padding: 4px 8px;
          border-radius: 30px;
          backdrop-filter: blur(2px);
     }

     .country-stats i {
          font-size: 0.9rem;
     }

     .country-tag {
          position: absolute;
          top: 15px;
          left: 15px;
          font-size: 0.7rem;
          padding: 3px 10px;
          border-radius: 30px;
          background-color: var(--primary-color);
          color: white;
          font-weight: 600;
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
          display: flex;
          align-items: center;
          gap: 4px;
     }

     .country-tag i {
          font-size: 0.8rem;
     }

     .slider-nav {
          width: 36px;
          height: 36px;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(255, 255, 255, 0.9);
          color: var(--secondary-color);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
          z-index: 10;
          display: flex;
          align-items: center;
          justify-content: center;
          border: none;
          padding: 0;
          font-size: 0.9rem;
          transition: all 0.2s ease;
     }

     .slider-nav:active {
          transform: translateY(-50%) scale(0.95);
     }

     .slider-prev {
          left: 8px;
     }

     .slider-next {
          right: 8px;
     }

     .slider-dots {
          margin-top: 12px;
          gap: 8px;
     }

     .slider-dot {
          width: 8px;
          height: 8px;
          margin: 0 2px;
          opacity: 0.6;
     }

     .slider-dot.active {
          width: 20px;
          height: 8px;
          border-radius: 4px;
          opacity: 1;
     }

     .slider-nav {
          display: none;
     }

     .country-slide {
          flex: 0 0 92%;
          max-width: 92%;
          margin-left: 4%;
          margin-right: 4%;
          scroll-snap-align: center;
     }

     .country-card {
          border-radius: 12px;
          overflow: hidden;
          border: 1px solid rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          height: auto;
          aspect-ratio: 16/9;
     }

     .country-card-overlay {
          background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 100%);
          padding: 15px;
          opacity: 1 !important;
          display: flex;
          flex-direction: column;
          justify-content: flex-end;
     }

     .country-title {
          font-size: 1.8rem;
          margin-bottom: 0.5rem;
          color: white;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
          font-weight: 700;
     }

     .country-title:before {
          content: attr(data-flag);
          margin-right: 8px;
          font-size: 1.4rem;
     }

     .slider-dots {
          margin-top: 15px;
          gap: 10px;
     }

     .slider-dot {
          width: 8px;
          height: 8px;
          background-color: rgba(0, 0, 0, 0.25);
     }

     .slider-dot.active {
          width: 24px;
          background-color: var(--primary-color);
     }

     .scroll-hint {
          padding: 6px 12px;
          bottom: 12px;
          right: 12px;
     }

     .country-label {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          background-color: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 15px;
          font-size: 1.2rem;
          font-weight: 600;
          text-align: center;
     }

     .countries-container,
     .cities-container {
          padding: 0;
          margin: 0;
          width: 100%;
          overflow: hidden;
     }

     .countries-slider,
     .cities-slider {
          padding: 20px 0;
          gap: 0;
     }

     .country-slide {
          flex: 0 0 96%;
          max-width: 96%;
          margin-left: 2%;
          margin-right: 2%;
          scroll-snap-align: center;
     }

     .country-card {
          width: 100%;
          height: auto;
          aspect-ratio: 16/9;
     }

     .country-card-image {
          width: 100%;
          height: 100%;
     }

     .country-card-image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
     }

     .slider-dots {
          width: 100%;
          margin: 15px auto 0;
          padding: 0;
     }

     .country-slide {
          transform: translateX(0) translateY(0) !important;
          transition: opacity 0.3s ease;
          animation: none !important;
     }

     .slider-dots {
          display: flex;
          justify-content: center;
          align-items: center;
          gap: 8px;
          margin: 15px auto 0;
          padding: 0;
          width: 100%;
     }

     .slider-dot {
          width: 8px !important;
          height: 8px !important;
          border-radius: 50% !important;
          background-color: rgba(0, 0, 0, 0.3) !important;
          opacity: 0.7;
          margin: 0;
          border: none;
          padding: 0;
          transform: scale(1) !important;
     }

     .slider-dot.active {
          width: 24px !important;
          height: 8px !important;
          border-radius: 4px !important;
          background-color: var(--primary-color) !important;
          opacity: 1;
     }

     .tour-card,
     .informer-card,
     .article-card {
          height: auto;
     }

     .tour-card-content,
     .article-content {
          height: auto;
          padding: 1rem;
     }

     .tour-rating-badge {
          padding: 0.3rem 0.6rem;
          font-size: 0.8rem;
          bottom: 0.8rem;
     }

     .review-count {
          font-size: 0.75rem;
     }

     .new-tour-badge {
          font-size: 0.75rem;
     }

     .tour-pricing {
          margin-bottom: 0.5rem;
          padding: 0.7rem;
     }

     .tour-meta-item {
          gap: 0.8rem;
          font-size: 1.1rem;
          margin-bottom: 0.2rem;
     }

     .btn-tour {
          padding: 0.7rem 1rem;
          font-size: 0.9rem;
     }

     .articles-grid {
          grid-template-columns: repeat(3, 1fr);
          gap: 1rem;
          padding: 0 1rem;
     }

     .article-card.compact {
          height: 340px;
     }

     .article-card.compact .article-image {
          height: 160px;
     }

     .article-card.compact .article-content {
          padding: 1rem;
     }

     .article-card.compact .article-title {
          font-size: 0.95rem;
          min-height: 2.6rem;
     }

     .article-card.compact .article-excerpt {
          font-size: 0.8rem;
     }

     /* Articles tabs now use the universal .content-tabs system with mobile optimization */

     .tab-content .btn-cta {
          padding: 0.7rem 1rem;
          font-size: 0.85rem;
     }
}

@media (max-width: 480px) {
     .articles-grid {
          grid-template-columns: 1fr;
          gap: 1rem;
     }

     .article-card.compact {
          height: auto;
     }

     .article-card.compact .article-image {
          height: 150px;
     }

     .article-card.compact .article-content {
          padding: 0.9rem;
     }

     .article-card.compact .article-title {
          font-size: 0.9rem;
          min-height: 2.4rem;
     }

     .article-card.compact .article-excerpt {
          font-size: 0.75rem;
     }

     .article-card.compact .article-meta {
          font-size: 0.7rem;
     }
}

@media (max-width: 375px) {
     .review-card {
          flex: 0 0 calc(100vw - 40px);
          width: calc(100vw - 40px);
          max-width: calc(100vw - 40px);
          min-width: calc(100vw - 40px);
          padding: 16px;
     }

     .reviews-carousel {
          padding: 20px 10px;
          gap: 10px;
     }

     .review-text {
          font-size: 0.95rem;
          -webkit-line-clamp: 5;
          line-clamp: 5;
     }

     .review-user-name {
          font-size: 0.95rem;
     }

     .country-slide {
          flex: 0 0 98%;
          max-width: 98%;
          margin-left: 1%;
          margin-right: 1%;
     }
}

/* Mobile landscape orientation */
@media (max-width: 767px) and (orientation: landscape) {
     .country-card {
          height: 180px;
     }

     .country-card-overlay {
          padding: 15px;
     }

     .country-title {
          font-size: 1.3rem;
          margin-bottom: 0.4rem;
     }
}

/* City Card Styles - using CSS property inheritance */
.city-slide {
     flex: 0 0 calc(33.333% - 14px);
     max-width: calc(33.333% - 14px);
     scroll-snap-align: start;
     opacity: 1;
     transform: translateX(0);
     transition: opacity 0.3s ease;
}

/* Duplicate country card styles for city cards */
.city-card {
     position: relative;
     border-radius: var(--radius);
     overflow: hidden;
     box-shadow: var(--shadow);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     background: var(--card-bg);
     height: 220px;
     cursor: pointer;
     aspect-ratio: 16/9;
     gap: 10px;
}

.city-card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-hover);
}

.city-card-image {
     position: relative;
     height: 100%;
     overflow: hidden;
}

.city-card-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
}

.city-card:hover .city-card-image img {
     transform: scale(1.08);
}

.city-card-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
     padding: 20px;
     transition: background 0.3s ease;
}

.city-card:hover .city-card-overlay {
     background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.city-title {
     font-size: 1.8rem;
     font-weight: 700;
     color: white;
     margin-bottom: 0.5rem;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
     transition: all 0.3s ease;
}

.city-card:hover .city-title {
     transform: translateY(-2px);
     text-shadow: 0 3px 8px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 193, 7, 0.3);
     letter-spacing: 0.5px;
}

.city-stats {
     display: flex;
     gap: 1rem;
     font-size: 1rem;
     font-weight: 600;
     color: rgba(255, 255, 255, 0.95);
     transition: all 0.3s ease;
}

.city-stats>div {
     display: flex;
     align-items: center;
     gap: 0.4rem;
     background: rgba(255, 255, 255, 0.1);
     padding: 4px 10px;
     border-radius: 20px;
     backdrop-filter: blur(5px);
     transition: all 0.3s ease;
}

.city-card:hover .city-stats>div {
     background: rgba(255, 255, 255, 0.2);
     transform: translateY(-2px);
}

.city-stats i {
     color: #ffc107;
     font-size: 1rem;
}

/* City slide responsive adjustments */
@media (max-width: 991px) {
     .city-slide {
          flex: 0 0 calc(50% - 10px);
          max-width: calc(50% - 10px);
     }
}

@media (max-width: 767px) {
     .city-slide {
          flex: 0 0 100%;
          max-width: 100%;
     }

     .city-card {
          height: auto;
          aspect-ratio: 16/9;
          border-radius: 12px;
          overflow: hidden;
          position: relative;
     }

     .city-card-overlay {
          background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0.1) 100%);
          padding: 15px;
     }

     .city-title {
          font-size: 1.5rem;
          margin-bottom: 0.4rem;
          letter-spacing: 0.5px;
     }
}

@media (max-width: 575px) {
     .city-slide {
          flex: 0 0 85%;
          max-width: 85%;
          margin-left: 15px;
     }

     .city-slide:last-child {
          margin-right: 15px;
     }
}

@media (max-width: 479px) {
     .city-slide {
          flex: 0 0 92%;
          max-width: 92%;
          margin-left: 4%;
          margin-right: 4%;
          scroll-snap-align: center;
     }
}

@media (max-width: 380px) {
     .city-slide {
          flex: 0 0 96%;
          max-width: 96%;
          margin-left: 2%;
          margin-right: 2%;
          scroll-snap-align: center;
     }

     .city-slide {
          transform: translateX(0) translateY(0) !important;
          transition: opacity 0.3s ease;
          animation: none !important;
     }
}

@media (max-width: 360px) {
     .city-slide {
          flex: 0 0 98%;
          max-width: 98%;
          margin-left: 1%;
          margin-right: 1%;
     }
}

@media (max-width: 767px) and (orientation: landscape) {
     .city-card {
          height: 180px;
     }

     .city-card-overlay {
          padding: 15px;
     }

     .city-title {
          font-size: 1.3rem;
          margin-bottom: 0.4rem;
     }
}

/* Country Hero Section */
.country-hero {
     position: relative;
     background-size: cover;
     background-position: center;
     background-attachment: fixed;
}

.country-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(135deg, rgba(1, 55, 73, 0.92) 0%, rgba(0, 26, 36, 0.97) 100%);
     z-index: 1;
}

.country-hero .hero-content {
     position: relative;
     z-index: 2;
     animation: fadeInUp 0.8s ease-out;
}

.country-hero .hero-title {
     font-size: 4.5rem;
     text-transform: none;
     letter-spacing: -0.5px;
     position: relative;
     /* Reset gradient for the main container */
     -webkit-text-fill-color: white;
     background: none;
     -webkit-background-clip: initial;
     background-clip: initial;
}

.country-hero .hero-title .hero-title-text {
     /* Apply gradient only to text span */
     background: linear-gradient(45deg, #fff, #f0f0f0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}

.country-hero .hero-subtitle {
     font-size: 1.5rem;
     max-width: 800px;
     margin-left: auto;
     margin-right: auto;
}

.country-hero .hero-title .country-emoji {
     display: inline-block;
     font-size: 1em;
     margin-left: 0.5rem;
     vertical-align: middle;
     /* Reset gradient text effect for emoji - important to override parent styles */
     -webkit-text-fill-color: initial !important;
     color: initial !important;
     background: none !important;
     -webkit-background-clip: initial !important;
     background-clip: initial !important;
     filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
     font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     line-height: 1;
}

.hero-stats {
     display: flex;
     justify-content: center;
     gap: 3rem;
     margin: 2.5rem 0;
     flex-wrap: wrap;
}

.hero-stats .stat-item {
     text-align: center;
     color: white;
}

.hero-stats .stat-number {
     display: block;
     font-size: 3rem;
     font-weight: 700;
     line-height: 1;
     margin-bottom: 0.5rem;
     background: linear-gradient(45deg, #fff, #f0f0f0);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
}

.hero-stats .stat-label {
     display: block;
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     opacity: 0.9;
}

/* Responsive adjustments for country hero */
@media (max-width: 991px) {
     .country-hero .hero-title {
          font-size: 3.5rem;
     }
}

@media (max-width: 767px) {
     .country-hero {
          background-attachment: scroll;
     }

     /* Compact hero for pages without CTA buttons */
     .hero-section.hero-compact {
          min-height: auto;
          padding: 50px 0 40px;
     }

     .hero-section.hero-compact .hero-subtitle {
          margin-bottom: 0;
     }

     .country-hero .hero-title {
          font-size: 2.8rem;
     }

     .country-hero .hero-subtitle {
          font-size: 1.25rem;
     }

     .hero-stats {
          gap: 2rem;
          margin: 2rem 0;
     }

     .hero-stats .stat-number {
          font-size: 2.5rem;
     }

     .hero-stats .stat-label {
          font-size: 1rem;
     }
}

@media (max-width: 479px) {
     .country-hero .hero-title {
          font-size: 2.2rem;
     }

     /* Compact hero for pages without CTA buttons */
     .hero-section.hero-compact {
          padding: 40px 0 30px;
     }

     .country-hero .hero-subtitle {
          font-size: 1.1rem;
     }

     .hero-stats {
          gap: 1.5rem;
     }

     .hero-stats .stat-number {
          font-size: 2rem;
     }

     .hero-stats .stat-label {
          font-size: 0.9rem;
     }
}

/* Country Info Section */
.country-info-section {
     background: #f8f9fa;
     padding: 4rem 0;
     position: relative;
}

.country-info-section .section-header {
     margin-bottom: 3rem;
}

/* Info Tabs Styling */
.info-tabs {
     background: white;
     padding: 0.5rem;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     margin-bottom: 2rem;
     display: inline-flex;
     gap: 0.5rem;
}

.info-tab {
     background: transparent;
     border: none;
     padding: 0.75rem 1.5rem;
     border-radius: 8px;
     font-weight: 500;
     color: #6c757d;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     gap: 0.5rem;
     cursor: pointer;
}

.info-tab i {
     font-size: 1.2rem;
}

.info-tab:hover {
     background: #f8f9fa;
     color: var(--primary-color);
}

.info-tab.active {
     background: var(--primary-color);
     color: white;
     box-shadow: 0 4px 12px rgba(42, 93, 176, 0.2);
}

/* Country Article Styling */
.country-info-content {
     animation: fadeIn 0.5s ease;
}

.country-article {
     background: white;
     border-radius: 16px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
     padding: 3rem;
     overflow: hidden;
}

.article-content {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #333;
}

/* Rich Text Content Styling */
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
     margin-top: 2rem;
     margin-bottom: 1rem;
     font-weight: 600;
     color: #2c3e50;
}

.article-content h2 {
     font-size: 1.8rem;
     border-bottom: 2px solid #e9ecef;
     padding-bottom: 0.5rem;
}

.article-content h3 {
     font-size: 1.5rem;
}

.article-content p {
     margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
     margin-bottom: 1.5rem;
     padding-left: 2rem;
}

.article-content li {
     margin-bottom: 0.5rem;
}

.article-content blockquote {
     border-left: 4px solid var(--primary-color);
     padding-left: 1.5rem;
     margin: 2rem 0;
     font-style: italic;
     color: #6c757d;
}

.article-content img {
     max-width: 100%;
     height: auto;
     border-radius: 8px;
     margin: 2rem 0;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-content table {
     width: 100%;
     border-collapse: collapse;
     margin: 2rem 0;
}

.article-content table th,
.article-content table td {
     padding: 0.75rem;
     border: 1px solid #e9ecef;
}

.article-content table th {
     background: #f8f9fa;
     font-weight: 600;
     text-align: left;
}

/* Responsive Design for Country Info */
@media (max-width: 768px) {
     .country-article {
          padding: 2rem 1.5rem;
     }

     .article-content {
          font-size: 1rem;
     }

     .article-content h2 {
          font-size: 1.5rem;
     }

     .article-content h3 {
          font-size: 1.3rem;
     }

     .info-tabs {
          width: 100%;
          padding: 0.25rem;
     }

     .info-tab {
          flex: 1;
          padding: 0.6rem 1rem;
          font-size: 0.9rem;
     }

     .info-tab i {
          font-size: 1rem;
     }
}

@media (max-width: 480px) {
     .country-info-section {
          padding: 3rem 0;
     }

     .country-article {
          padding: 1.5rem 1rem;
          border-radius: 12px;
     }

     .info-tab {
          padding: 0.5rem 0.75rem;
          font-size: 0.85rem;
     }

     .info-tab i {
          display: none;
     }
}

/* Animation */
@keyframes fadeIn {
     from {
          opacity: 0;
          transform: translateY(10px);
     }

     to {
          opacity: 1;
          transform: translateY(0);
     }
}