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

body {
    background-color: #f5f5f5;
    color: #333;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Logo Styles */
.logo-link {
    display: inline-block;
    text-decoration: none;
    position: absolute;
    left: 50%; /* Center horizontally */
    top: 50%;
    transform: translate(-50%, -50%); /* Center both horizontally and vertically */
    z-index: 10;
}

.header-logo {
    width: 280px;
    height: 280px;
    object-fit: contain;
    margin-bottom: 1px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #4CAF50;
    margin: 0;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.modal-footer {
    text-align: right;
}

.modal-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: #3e8e41;
}

/* Header Styles */
header {
    position: relative;
}

.header-image {
    height: 250px;
    background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?q=80&w=1600&h=900&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.overlay p {
    font-size: 1.5rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
}

.language-selector button {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.language-selector button .fi {
    font-size: 1.2em;
    border-radius: 2px;
    overflow: hidden;
}

.language-selector button.active {
    background-color: white;
    color: #333;
}

.language-selector button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.language-selector button.active:hover {
    background-color: #f0f0f0;
}

/* Navigation Styles */
nav {
    background-color: #1a1a1a;
    padding: 15px 0;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    max-width: 1200px;
    margin: 0 auto;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #4CAF50;
}

/* Main Content Styles */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Tours Section */
.tours-section {
    margin-bottom: 60px;
}

.tours-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #4CAF50;
}

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

/* Tour Card Link Styles */
.tour-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    border-radius: 10px;
    overflow: hidden;
}

.tour-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.tour-card:hover h3 {
    color: #4CAF50;
}

.tour-card:active {
    transform: translateY(-5px);
}

.tour-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: #333;
}

.tour-info p {
    color: #666;
    line-height: 1.5;
}

/* Benefits Section */
.benefits-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: #4CAF50;
}

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

.benefit-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.benefit-icon {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 20px;
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: #666;
    line-height: 1.5;
}

/* Footer Styles */
footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-contact h3, .footer-social h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
}

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

.social-icons a {
    font-size: 1.5rem;
    color: white;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4CAF50;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-image {
        height: 400px;
    }
    
    .overlay h1 {
        font-size: 2.5rem;
    }
    
    .overlay p {
        font-size: 1.2rem;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .tours-container, .benefits-container {
        grid-template-columns: 1fr;
    }
}

/* Private Tours Page Styles */
.private-tours-section {
    margin-bottom: 60px;
}

.private-tours-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.private-tours-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.booking-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.booking-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

/* Active nav link */
nav ul li a.active {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

/* Destination Page Styles */
.destination-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.destination-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.destination-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.destination-hero-content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.destination-hero-content .stars {
    color: #FFD700;
}

.destination-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.destination-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.destination-content h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.destination-content h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.destination-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.destination-content ul li {
    margin-bottom: 10px;
    color: #666;
}

.destination-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.guide-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.guide-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.guide-card p {
    color: #666;
    margin-bottom: 15px;
}

.guide-card .guide-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.comments-section {
    margin-top: 60px;
}

.comments-section h2 {
    color: #4CAF50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.comment-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-user-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.comment-user-info .comment-date {
    color: #999;
    font-size: 0.9rem;
}

.comment-rating {
    color: #FFD700;
}

.comment-content {
    color: #666;
    line-height: 1.6;
}

.add-comment-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.add-comment-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.rating-select {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-select i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
}

.rating-select i.active {
    color: #FFD700;
}

/* Points of Interest Styles */
.points-of-interest {
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    color: #1f1f1f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.poi-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.poi-number {
    background-color: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.poi-info {
    flex: 1;
}

.poi-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.poi-info p {
    color: #070707;
    margin: 0;
    font-size: 0.9rem;
}

.map-container {
    height: 400px;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tour-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
}

.tour-detail-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .destination-container {
        grid-template-columns: 1fr;
    }
    
    .destination-hero-content h1 {
        font-size: 2rem;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 10px;
    }
}
/* About page styles */
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.about-card {
    margin-bottom: 40px;
}

.about-heading {
    text-align: center;
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.about-content {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Private Tours Page Styles */
.private-tours-section {
    margin-bottom: 60px;
}

.private-tours-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.private-tours-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.booking-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
    margin-bottom: 60px;
}

.booking-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #4CAF50;
}

.booking-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #666;
    line-height: 1.6;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.booking-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    resize: vertical;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
}

/* Active nav link */
nav ul li a.active {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

/* Destination Page Styles */
.destination-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 40px;
}

.destination-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.destination-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.destination-hero-content .rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.destination-hero-content .stars {
    color: #FFD700;
}

.destination-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.destination-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.destination-content h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.destination-content h3 {
    color: #333;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.destination-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.destination-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.destination-content ul li {
    margin-bottom: 10px;
    color: #666;
}

.destination-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guide-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.guide-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
}

.guide-card h3 {
    margin-bottom: 10px;
    color: #333;
}

.guide-card p {
    color: #666;
    margin-bottom: 15px;
}

.guide-card .guide-rating {
    color: #FFD700;
    margin-bottom: 15px;
}

.comments-section {
    margin-top: 60px;
}

.comments-section h2 {
    color: #4CAF50;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.comment-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.comment-user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-user-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.comment-user-info .comment-date {
    color: #999;
    font-size: 0.9rem;
}

.comment-rating {
    color: #FFD700;
}

.comment-content {
    color: #666;
    line-height: 1.6;
}

.add-comment-form {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.add-comment-form h3 {
    margin-bottom: 20px;
    color: #333;
}

.rating-select {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.rating-select i {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
}

.rating-select i.active {
    color: #FFD700;
}

/* Points of Interest Styles */
.points-of-interest {
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    color: #1f1f1f;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.poi-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.poi-number {
    background-color: #4CAF50;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 3px;
}

.poi-info {
    flex: 1;
}

.poi-info strong {
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.poi-info p {
    color: #070707;
    margin: 0;
    font-size: 0.9rem;
}

.map-container {
    height: 400px;
    background-color: #eee;
    border-radius: 10px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tour-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.tour-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    padding: 10px 15px;
    border-radius: 5px;
}

.tour-detail-item i {
    color: #4CAF50;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .destination-container {
        grid-template-columns: 1fr;
    }
    
    .destination-hero-content h1 {
        font-size: 2rem;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 10px;
    }
}
/* Company Name Styling - Commented out to hide */
/* 
.company-name {
    position: absolute;
    right: 650px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 5.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .company-name {
        position: static;
        transform: none;
        margin-top: 20px;
        font-size: 3rem;
    }
}
    /* Estilos para la página Acerca de */
.tour-description-section {
    margin-bottom: 60px;
}

.tour-description-section h2 {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.tour-description {
    background-color: #222;
    border-radius: 10px;
    padding: 30px;
    color: #fff;
    line-height: 1.7;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.tour-description .about-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.tour-description .about-card {
    margin-bottom: 40px;
}

.tour-description .about-card:last-child {
    margin-bottom: 0;
}

.tour-description .about-heading {
    color: #4CAF50;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.tour-description .about-content {
    background-color: #333;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.tour-description .about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #ddd;
}

.tour-description .about-content p:last-child {
    margin-bottom: 0;
}
.youtube-embed {
    margin-top: 20px;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
/* Carousel Styles */
.carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.carousel-item.active {
    opacity: 1;
    display: block;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.dot.active {
    background: white;
}