* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container-nav {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    /* background-color: #fff; */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    /* backdrop-filter: blur(6px); */
    position: sticky;
    top: 0;
    z-index: 1000;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-links li {
    margin-left: 80px;
}

.nav-links a {
    text-decoration: none;
    color: #A84300;
    font-weight: 700;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #7A2E00;
}

.nav-links a.active {
    color: #7A2E00;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #A84300;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.slide-content {
    max-width: 600px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 8px;
    margin-left: 10%;
    position: relative;
    z-index: 2;
}

.slide.active {
    opacity: 1;
}

.slide-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ffffff;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff882d;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #ff6f00;
}

.features {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    color: #3f3f3f;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon {
    font-size: 48px;
    color: #ff882d;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-item p {
    color: #000000;
}

.featured-trips {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trip-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.trip-card:hover {
    transform: translateY(-10px);
}

.trip-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background-color: #f0f0f0;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trip-content {
    padding: 25px;
}

.trip-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.trip-content p {
    color: #3b3b3b;
    margin-bottom: 20px;
}

.newsletter {
    padding: 80px 0;
    background-color: #ff882d;
    color: #000000;
    text-align: center;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 16px;
}

.newsletter-form button {
    padding: 0 25px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #1a252f;
}

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 70px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #ecf0f1;
}

.footer-about p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-links h3,
.footer-social h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #003061;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #003061;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
    font-size: 14px;
}

@media (max-width: 1020px) {
    .section-title {
        text-align: left;
    }

    .mobile-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        /* backdrop-filter: blur(6px); */
        /* -webkit-backdrop-filter: blur(6px); */
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        width: 100%;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-links a.active {
        background-color: #f8f9fa;
        color: #ff6f04;
    }

    .slide-content h1 {
        font-size: 36px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-radius: 4px;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        border-radius: 4px;
        padding: 15px;
    }
}

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

.trips-content {
    display: flex;
    gap: 30px;
}

.filters-sidebar {
    flex: 0 0 280px;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #2c3e50;
    display: flex;
    align-items: center;
}

.filter-group h3 i {
    margin-right: 10px;
    color: #3498db;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-btn {
    padding: 10px 15px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    text-align: left;
    display: flex;
    align-items: center;
}

.filter-btn:hover {
    background-color: #e9ecef;
    border-color: #003061;
}

.filter-btn.active {
    background-color: #ff882d;
    color: white;
    border-color: #ff882d;
}

.filter-btn i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-inputs {
    display: flex;
    gap: 10px;
}

.price-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.duration-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.search-btn {
    background-color: #ff882d;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
}

.search-btn:hover {
    background-color: #ff6f00;
}

.reset-btn {
    background-color: #f8f9fa;
    color: #333333;
    border: 1px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
}

.reset-btn:hover {
    background-color: #e9ecef;
    color: #333333;
}

.trips-main {
    flex: 1;
}

.results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.results-count {
    font-weight: 600;
    color: #2c3e50;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    font-size: 14px;
}

.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.trip-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.trip-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}



.trip-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.trip-dificulty {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.trip-count {
    position: absolute;
    bottom: 0px;
    right: 0px;
    background-color: #ff882d;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.trip-location {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #3b3b3b;
    font-size: 14px;
}

.trip-location i {
    margin-right: 5px;
    margin-left: 5px;
}

.trip-description {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.trip-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.trip-detail {
    text-align: center;
    flex: 1;
}

.trip-detail i {
    font-size: 16px;
    color: #3498db;
    margin-bottom: 5px;
}

.trip-detail span {
    display: block;
    font-size: 12px;
    color: #292929;
}

.trip-benefits {
    margin-bottom: 15px;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    margin-bottom: 6px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: flex-start;
}

.benefit-list li i {
    color: #2ecc71;
    margin-right: 8px;
    margin-top: 2px;
    flex-shrink: 0;
}

.trip-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.price span {
    font-size: 13px;
    color: #2c2c2c;
    font-weight: normal;
    display: block;
}

.share-btn {
    background-color: #ff882d;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    font-size: 14px;
}

.share-btn:hover {
    background-color: #ff6f00;
}

@media (max-width: 1020px) {
    .trips-content {
        flex-direction: column;
    }

    .filters-sidebar {
        position: static;
        width: 100%;
    }

    .duration-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1020px) {
    .results-info {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .trips-grid {
        grid-template-columns: 1fr;
    }

    .price-inputs {
        flex-direction: column;
    }
}

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

.company-info {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.company-text {
    flex: 1;
}

.company-text h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.company-text p {
    margin-bottom: 20px;
    color: #353535;
    font-size: 16px;
}

.company-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff882d;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #333333;
}

.company-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.company-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-section {
    margin-bottom: 80px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-photo {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.member-info {
    padding: 25px 20px;
}

.member-name {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.member-role {
    color: #ff882d;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

.member-bio {
    color: #353535;
    font-size: 14px;
    margin-bottom: 15px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.member-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #353535;
    text-decoration: none;
    transition: all 0.3s;
}

.member-social a:hover {
    background-color: #003061;
    color: white;
}

.values-section {
    margin-bottom: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 48px;
    color: #ff882d;
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.value-description {
    color: #333333;
    font-size: 15px;
}

.benefits-section {
    background-color: white;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff9545;
    font-size: 20px;
}

.benefit-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.benefit-content p {
    color: #333333;
    font-size: 14px;
}

@media (max-width: 1020px) {
    .company-info {
        flex-direction: column;
    }

    .company-image {
        order: -1;
    }

    .company-stats {
        justify-content: center;
    }
}

@media (max-width: 1020px) {
    .company-stats {
        flex-wrap: wrap;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff882d;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff882d;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.contact-text p {
    color: #333333;
    font-size: 15px;
}

.contact-text a {
    color: #004794;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: #003061;
    text-decoration: underline;
}

.working-hours {
    margin-top: 30px;
}

.working-hours h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f2f6;
}

.hours-list li:last-child {
    border-bottom: none;
}

.day {
    color: #2c3e50;
    font-weight: 500;
}

.time {
    color: #7f8c8d;
}

.closed {
    color: #e74c3c;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff882d;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff882d;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    background-color: #ff882d;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    width: 100%;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: #ff6f00;
}

.map-section {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.map-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.map-container {
    height: 500px;
    position: relative;
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #74b9ff 0%, #004794 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.map-placeholder h3 {
    font-size: 28px;
    margin-bottom: 10px;
    z-index: 2;
    position: relative;
    font-weight: 600;
}

.map-placeholder p {
    font-size: 16px;
    opacity: 0.9;
    z-index: 2;
    position: relative;
    max-width: 500px;
    line-height: 1.6;
}

.map-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    z-index: 0;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 174, 52, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    z-index: 3;
    transition: opacity 0.5s ease;
}

.map-overlay:hover {
    opacity: 0;
    cursor: pointer;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #004794;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s, background-color 0.3s;
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link.facebook {
    background-color: #004794;
}

.social-link.instagram {
    background-color: #e4405f;
}

.social-link.x {
    background-color: #080808;
}

.social-link.whatsapp {
    background-color: #00b52d;
}

@media (max-width: 1020px) {
    .contact-content {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 1020px) {

    .contact-info,
    .contact-form {
        padding: 25px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

@media (max-width: 1020px) {
    .map-container {
        height: 400px;
    }

    .map-placeholder h3 {
        font-size: 24px;
    }

    .map-placeholder i {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 350px;
    }

    .map-placeholder h3 {
        font-size: 20px;
    }

    .map-placeholder p {
        font-size: 14px;
    }
}

.blog-content {
    display: flex;
    gap: 40px;
}

.blog-main {
    flex: 2;
}

.blog-sidebar {
    flex: 1;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.badge-tips {
    background-color: #2ecc71;
}

.badge-news {
    background-color: #004794;
}

.badge-offer {
    background-color: #e74c3c;
}

.badge-destination {
    background-color: #9b59b6;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 13px;
    color: #7f8c8d;
}

.blog-date,
.blog-author {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-title {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #003061;
}

.blog-excerpt {
    color: #7f8c8d;
    margin-bottom: 20px;
    font-size: 14px;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: #ff882d;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s;
}

.read-more:hover {
    transform: translateX(5px);
}

.read-more i {
    margin-left: 5px;
    font-size: 12px;
}

.special-offers {
    margin-bottom: 40px;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.offer-card {
    background: linear-gradient(135deg, #004794 0%, #2c3e50 100%);
    border-radius: 10px;
    padding: 25px;
    color: white;
    position: relative;
    overflow: hidden;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #e74c3c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.offer-title {
    font-size: 20px;
    margin-bottom: 10px;
}

.offer-description {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.offer-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.offer-price {
    font-size: 24px;
    font-weight: 700;
}

.offer-old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 16px;
}

.offer-save {
    font-size: 14px;
    background-color: #2ecc71;
    padding: 3px 8px;
    border-radius: 4px;
}

.offer-btn {
    background-color: white;
    color: #ff882d;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s;
}

.offer-btn:hover {
    background-color: #f8f9fa;
}

.sidebar-widget {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff882d;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f2f6;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s;
}

.categories-list a:hover {
    color: #003061;
}

.category-count {
    background-color: #f1f2f6;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
}

.popular-posts {
    list-style: none;
}

.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f1f2f6;
}

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

.popular-post-image {
    width: 80px;
    height: 60px;
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.popular-post-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.popular-post-content h4 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.popular-post-content h4 a:hover {
    color: #003061;
}

.popular-post-meta {
    font-size: 12px;
    color: #7f8c8d;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: white;
    color: #ff882d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
    background-color: #ff6f00;
    color: white;
    transform: translateY(-2px);
}

.page-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    color: #7f8c8d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.page-number.active,
.page-number:hover {
    background-color: #ff6f00;
    color: white;
}

@media (max-width: 1020px) {
    .blog-content {
        flex-direction: column;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .offers-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1020px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .offer-details {
        flex-direction: column;
        gap: 10px;
    }

    .blog-navigation {
        flex-direction: column;
        gap: 20px;
    }
}

.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.overall-rating {
    text-align: center;
    margin-bottom: 50px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.rating-score {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.rating-stars {
    margin-bottom: 15px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 24px;
    margin: 0 2px;
}

.rating-count {
    color: #7f8c8d;
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 60px;
    color: #004794;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-right: 15px;
    border: 3px solid #ff882d;
}

.client-info h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 5px;
}

.client-trip {
    font-size: 14px;
    color: #ff882d;
    font-weight: 600;
}

.testimonial-rating {
    margin-bottom: 15px;
}

.testimonial-rating i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-date {
    font-size: 14px;
    color: #7f8c8d;
    text-align: right;
}

.testimonials-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.current-page {
    background: #ff882d;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.stats-section {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.testimonials-slider {
    position: relative;
    margin-bottom: 50px;
}

.slider-container1 {
    overflow: hidden;
    border-radius: 10px;
}

.slider-track1 {
    display: flex;
    transition: transform 0.5s ease;
}

.slider-slide1 {
    min-width: 100%;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.slide-content1 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.slide-content1 .testimonial-text {
    font-size: 18px;
    margin-bottom: 30px;
}

.slider-nav1 {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.slider-dot1 {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dot1.active {
    background-color: #003061;
}

.slider-arrows1 {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-arrow1 {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    font-size: 20px;
    color: #3498db;
}

.slider-arrow1:hover {
    background-color: #003061;
    color: white;
}

.add-testimonial {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.add-testimonial h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.testimonial-form {
    max-width: 600px;
    margin: 0 auto;
}

.rating-input {
    display: flex;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-star {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
}

.rating-star:hover,
.rating-star.active {
    color: #ffc107;
}

.message {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.optional {
    color: #333333;
    font-size: 0.9em;
}

@media (max-width: 1020px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1020px) {
    .slider-arrows {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }

    .client-avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

#whatsapp-link {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

#whatsapp-link:hover,
#whatsapp-link:focus {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

@media (max-width: 420px) {
    #whatsapp-link {
        width: 48px;
        height: 48px;
    }
}

.trip-image-link {
    display: block;
    text-decoration: none;
}

.trip-title-link {
    text-decoration: none;
    color: inherit;
}

.trip-title-link:hover h3 {
    color: #003061;
}

.book-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ff882d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.book-btn:hover {
    background: #ff6f00;
    color: white;
}

.no-trips-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.no-trips-message i {
    font-size: 4rem;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.no-trips-message h3 {
    color: #7f8c8d;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.no-trips-message p {
    color: #95a5a6;
    font-size: 1.1rem;
}

.trip-badge {
    background-color: #ff882d;
    color: #FFF;
}

.trip-badge a {
    color: #FFF;
}

#copy-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #2C632F;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: none;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    font-family: sans-serif;
}