/*
* Mongolia eVisa Website - Main Stylesheet
* Theme colors inspired by Mongolia's flag: red (#c4272f), blue (#0066b3), gold/yellow (#f9cf02)
*/

/* ===== GENERAL STYLES ===== */
:root {
    --primary: #c4272f;     /* Red from Mongolia flag */
    --secondary: #0066b3;   /* Blue from Mongolia flag */
    --accent: #f9cf02;      /* Gold/Yellow from Mongolia flag */
    --dark: #2c3e50;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #6c757d;
    --border: #dee2e6;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}



h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.section {
    padding: 60px 0;
}

.section-sm {
    padding: 40px 0;
}

.section-lg {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--light) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-accent {
    color: var(--accent) !important;
}

.btn {
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #a91f26;
    border-color: #a91f26;
}

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover, .btn-secondary:focus {
    background-color: #00559a;
    border-color: #00559a;
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.btn-accent:hover, .btn-accent:focus {
    background-color: #e0b800;
    border-color: #e0b800;
    color: var(--dark);
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
}

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--dark);
    color: #fff;
    font-size: 0.875rem;
}

.top-link {
    color: #fff;
    text-decoration: none;
}

.top-link:hover {
    color: var(--accent);
}

/* ===== HEADER & NAVIGATION ===== */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 1rem 1rem !important;
    position: relative;
}

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

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.dropdown-menu {
    border: none;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 400;
}

.dropdown-item:hover, .dropdown-item:focus {
    background-color: rgba(196, 39, 47, 0.1);
    color: var(--primary);
}

.apply-btn {
    background-color: var(--primary);
    color: #fff !important;
    border-radius: 4px;
    margin-left: 0.5rem;
    padding: 0.5rem 1.5rem !important;
}

.apply-btn:hover {
    background-color: #a91f26;
    color: #fff !important;
}

.apply-btn:after {
    display: none;
}

/* ===== SEARCH STYLES ===== */
.search-toggle {
    cursor: pointer;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.show {
    display: flex;
    opacity: 1;
}

.search-overlay-content {
    width: 80%;
    max-width: 800px;
    position: relative;
}

.search-overlay-form {
    width: 100%;
}

.search-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.header-search {
    margin-left: 1rem;
}

.header-search-form {
    width: 200px;
}

.search-container {
    margin-bottom: 3rem;
}

.search-form {
    margin-bottom: 2rem;
}

.search-results {
    margin-top: 2rem;
}

.search-stats {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.search-filters {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.search-result-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-result-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-result-item h3 {
    margin-bottom: 0.5rem;
}

.search-result-item h3 a {
    color: var(--secondary);
}

.search-result-item h3 a:hover {
    color: var(--primary);
}

.result-url {
    color: #28a745;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.result-description {
    margin-bottom: 1rem;
}

.result-meta {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

.result-category {
    background-color: rgba(196, 39, 47, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-right: 1rem;
}

.result-date {
    color: var(--text-light);
}

.popular-search-item {
    display: block;
    background-color: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.popular-search-item:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.category-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.category-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.category-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.category-links li {
    margin-bottom: 0.5rem;
}

.category-links li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.category-links li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.no-results-message {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* ===== TRAVEL PACKAGES STYLES ===== */
.package-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.package-img {
    height: 220px;
    object-fit: cover;
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.package-content {
    padding: 1.5rem;
}

.package-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.package-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.package-meta-item {
    margin-right: 1rem;
    display: flex;
    align-items: center;
}

.package-meta-item i {
    margin-right: 0.25rem;
    color: var(--primary);
}

.package-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
}

.package-price small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.package-rating {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.package-rating-stars {
    color: var(--accent);
    margin-right: 0.5rem;
}

.package-rating-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

.package-detail-header {
    position: relative;
    margin-bottom: 2rem;
}

.package-detail-img {
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.package-detail-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 2rem;
    color: #fff;
    border-radius: 0 0 8px 8px;
}

.package-detail-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.package-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.package-detail-meta-item {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.package-detail-meta-item i {
    margin-right: 0.5rem;
    color: var(--accent);
}

.package-detail-price {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent);
}

.package-detail-price small {
    font-size: 1rem;
    font-weight: 400;
}

.package-detail-rating {
    display: flex;
    align-items: center;
}

.package-detail-rating-stars {
    color: var(--accent);
    margin-right: 0.5rem;
}

.package-detail-rating-count {
    color: rgba(255, 255, 255, 0.8);
}

.package-detail-content {
    margin-bottom: 2rem;
}

.package-detail-section {
    margin-bottom: 2rem;
}

.package-detail-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.package-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.package-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-features li:before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
}

.package-itinerary {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
}

.package-itinerary:before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: var(--border);
}

.package-itinerary-item {
    padding-left: 50px;
    padding-bottom: 2rem;
    position: relative;
}

.package-itinerary-item:last-child {
    padding-bottom: 0;
}

.package-itinerary-day {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.package-itinerary-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.package-booking-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.package-booking-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-booking-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-booking-price small {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.package-booking-btn {
    width: 100%;
    margin-top: 1rem;
}

.package-gallery {
    margin-bottom: 2rem;
}

.package-gallery-img {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* ===== NEWS BLOG STYLES ===== */
.blog-list {
    margin-bottom: 2rem;
}

.blog-post {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.blog-post-img {
    height: 300px;
    object-fit: cover;
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-post-meta-item {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.blog-post-meta-item i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.blog-post-excerpt {
    margin-bottom: 1.5rem;
}

.blog-post-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.blog-post-tag {
    background-color: rgba(196, 39, 47, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.blog-post-tag:hover {
    background-color: var(--primary);
    color: #fff;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-section {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.blog-search-form {
    margin-bottom: 1rem;
}

.blog-categories {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.blog-categories li {
    margin-bottom: 0.5rem;
}

.blog-categories li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.blog-categories li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.blog-categories li a span {
    background-color: rgba(196, 39, 47, 0.1);
    color: var(--primary);
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

.blog-recent-posts {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.blog-recent-post {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.blog-recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-recent-post-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.blog-recent-post-content {
    flex: 1;
}

.blog-recent-post-title {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.blog-recent-post-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
}

.blog-tag {
    background-color: rgba(196, 39, 47, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background-color: var(--primary);
    color: #fff;
}

.blog-pagination {
    margin-top: 2rem;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-img {
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.blog-detail-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-detail-meta-item {
    margin-right: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.blog-detail-meta-item i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.blog-detail-content {
    margin-bottom: 2rem;
}

.blog-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.blog-detail-content h2, .blog-detail-content h3, .blog-detail-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-detail-content blockquote {
    background-color: #f8f9fa;
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
}

.blog-detail-content blockquote p:last-child {
    margin-bottom: 0;
}

.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.blog-detail-tag {
    background-color: rgba(196, 39, 47, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.blog-detail-tag:hover {
    background-color: var(--primary);
    color: #fff;
}

.blog-author {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    margin-bottom: 2rem;
}

.blog-author-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1.5rem;
}

.blog-author-content {
    flex: 1;
}

.blog-author-name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-author-bio {
    margin-bottom: 1rem;
}

.blog-author-social {
    display: flex;
}

.blog-author-social-link {
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.blog-author-social-link:hover {
    background-color: var(--secondary);
    color: #fff;
}

.blog-comments {
    margin-bottom: 2rem;
}

.blog-comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-comment {
    display: flex;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.blog-comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.blog-comment-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.blog-comment-content {
    flex: 1;
}

.blog-comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.blog-comment-name {
    font-weight: 600;
}

.blog-comment-date {
    font-size: 0.75rem;
    color: var(--text-light);
}

.blog-comment-text {
    margin-bottom: 0.5rem;
}

.blog-comment-reply {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-comment-reply:hover {
    color: var(--secondary);
}

.blog-comment-form {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.blog-comment-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* ===== FEEDBACK FORM STYLES ===== */
.feedback-form {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.feedback-form-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.feedback-form-subtitle {
    text-align: center;
    margin-bottom: 2rem;
}

.feedback-form-group {
    margin-bottom: 1.5rem;
}

.feedback-form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feedback-form-control {
    border-radius: 4px;
    padding: 0.75rem;
    border: 1px solid var(--border);
}

.feedback-form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(196, 39, 47, 0.25);
}

.feedback-form-check {
    margin-bottom: 1rem;
}

.feedback-form-check-label {
    font-size: 0.875rem;
}

.feedback-form-btn {
    width: 100%;
    padding: 0.75rem;
}

.feedback-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feedback-rating input {
    display: none;
}

.feedback-rating label {
    cursor: pointer;
    font-size: 2rem;
    color: #ddd;
    padding: 0 0.25rem;
}

.feedback-rating input:checked ~ label {
    color: var(--accent);
}

.feedback-rating label:hover,
.feedback-rating label:hover ~ label {
    color: var(--accent);
}

.feedback-success {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.feedback-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.feedback-error-list {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

/* ===== TESTIMONIALS STYLES ===== */
.testimonial-stats {
    margin-bottom: 3rem;
}

.stat-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
}

.testimonial-rating {
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author-info h5 {
    margin-bottom: 0.25rem;
}

.testimonial-author-info p {
    margin-bottom: 0;
    color: var(--text-light);
}

.video-testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    height: 100%;
}

.video-thumbnail {
    position: relative;
    height: 200px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(196, 39, 47, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background-color: var(--primary);
}

.video-testimonial-info {
    padding: 1.5rem;
}

.video-testimonial-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.video-testimonial-info p {
    margin-bottom: 0;
    color: var(--text-light);
}

.review-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

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

.reviewer-details h5 {
    margin-bottom: 0.25rem;
}

.reviewer-details p {
    margin-bottom: 0;
    color: var(--text-light);
}

.review-rating {
    text-align: right;
}

.rating-stars {
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.review-content p {
    margin-bottom: 0;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.rating-count {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/mongolia-hero-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 0;
    position: relative;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.hero-sm {
    padding: 60px 0;
}

/* ===== FEATURES SECTION ===== */
.feature-box {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ===== PROCESS SECTION ===== */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    border-top: 2px dashed var(--border);
    z-index: -1;
}

/* ===== VISA TYPES SECTION ===== */
.visa-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.visa-card-img {
    height: 200px;
    object-fit: cover;
}

.visa-card-body {
    padding: 1.5rem;
}

.visa-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.visa-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial-card:before {
    content: '\f10d';
    font-family: 'FontAwesome';
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 1.5rem;
    color: rgba(196, 39, 47, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.testimonial-author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author-title {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== BLOG SECTION ===== */
.blog-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.blog-card-img {
    height: 200px;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-card-meta-item {
    margin-right: 1rem;
}

.blog-card-meta-item i {
    margin-right: 0.25rem;
}

/* ===== CONTENT PAGES ===== */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/mongolia-page-header-bg.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 60px 0;
    position: relative;
}
.page-header .container{
        background: transparent;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 0;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

.content-wrapper {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-img {
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
}

.content-sidebar {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.sidebar-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.sidebar-list li {
    margin-bottom: 0.5rem;
}

.sidebar-list li a {
    display: block;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.sidebar-list li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.sidebar-list li a i {
    margin-right: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #1a1a1a;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-heading {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-text {
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: #fff;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 0.25rem;
}

.footer-links li a i {
    margin-right: 0.5rem;
    font-size: 0.75rem;
}

.footer-contact {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
}

.footer-contact li i {
    margin-right: 0.75rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 1.5rem;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-bottom-links li a:hover {
    color: #fff;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #a91f26;
    color: #fff;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .process-step:not(:last-child):after {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #fff;
        padding: 1rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
    }
    
    .nav-link:after {
        display: none;
    }
    
    .apply-btn {
        margin-left: 0;
        margin-top: 0.5rem;
        display: inline-block;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .footer-heading {
        margin-top: 1.5rem;
    }
    
    .search-overlay-content {
        width: 90%;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 40px 0;
    }
    
    .section-lg {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .feature-box, .testimonial-card, .content-wrapper, .content-sidebar {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 1rem;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 1.5rem;
    }
    
    .package-detail-overlay {
        padding: 1rem;
    }
    
    .package-detail-title {
        font-size: 1.5rem;
    }
    
    .package-detail-meta-item {
        margin-right: 1rem;
    }
    
    .blog-author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .blog-author-img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .blog-author-social {
        justify-content: center;
    }
    
    .review-header {
        flex-direction: column;
    }
    
    .review-rating {
        margin-top: 1rem;
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .top-bar {
        display: none;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .feature-box, .testimonial-card, .content-wrapper, .content-sidebar {
        padding: 1.25rem;
    }
    
    .page-header {
        padding: 40px 0;
    }
    
    .search-overlay-content {
        width: 95%;
    }
    
    .search-close {
        top: -30px;
        right: 0;
    }
    
    .package-detail-img {
        height: 250px;
    }
    
    .package-detail-overlay {
        position: relative;
        background: #fff;
        color: var(--text);
        border-radius: 0;
        padding: 1.5rem;
    }
    
    .package-detail-title {
        color: var(--dark);
    }
    
    .package-detail-meta-item {
        color: var(--text);
    }
    
    .package-detail-meta-item i {
        color: var(--primary);
    }
    
    .package-detail-price {
        color: var(--primary);
    }
    
    .package-detail-rating-stars {
        color: var(--accent);
    }
    
    .package-detail-rating-count {
        color: var(--text-light);
    }
    
    .blog-comment {
        flex-direction: column;
    }
    
    .blog-comment-img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .blog-comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-comment-date {
        margin-top: 0.25rem;
    }
}

