/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #e8f4fc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.logo .fun {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a5c;
}

.logo .sun-icon {
    color: #ff8c00;
    font-size: 24px;
}

.logo .punta-cana {
    font-size: 14px;
    font-weight: 600;
    color: #1a3a5c;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav a:hover,
.nav a.active {
    color: #ff6b00;
}

.nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ff6b00;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.cart-icon .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #ff6b00;
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-primary {
    background-color: #ff6b00;
    color: #fff;
}

.btn-primary:hover {
    background-color: #e55a00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a3a5c;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #0f2640;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #1a3a5c;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('sampledata/06e13558-a8a6-4077-87e6-a4e324b9aeaa 2.JPG');
    background-size: cover;
    background-position: center;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    margin-top: 70px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 18px;
    color: #fff;
    max-width: 500px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Page Hero (for inner pages) */
.page-hero {
    background: linear-gradient(rgba(26,58,92,0.9), rgba(26,58,92,0.9)),
                url('sampledata/06e13558-a8a6-4077-87e6-a4e324b9aeaa 2.JPG');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    margin-top: 70px;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* Categories Section */
.categories {
    background-color: #fff;
    padding: 40px 0;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    position: relative;
}

.category-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.category-item {
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    color: #333;
}

.category-item:hover {
    transform: translateY(-5px);
}

.category-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 10px;
    border: 3px solid #ff6b00;
}

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

.category-item span {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Why Choose Section */
.why-choose {
    background-color: #fff;
    padding: 60px 0;
}

.why-choose h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 40px;
}

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

.feature-card {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.feature-icon.orange {
    background-color: #fff3e6;
    color: #ff6b00;
}

.feature-icon.teal {
    background-color: #e6f7f5;
    color: #00b5a0;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
}

/* Excursions Section */
.excursions {
    background-color: #e8f4fc;
    padding: 60px 0;
}

.excursions h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 40px;
}

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

.excursions-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

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

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

.excursion-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.excursion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.excursion-card:hover .excursion-image img {
    transform: scale(1.1);
}

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

.badge.popular {
    background-color: #ff6b00;
}

.badge.bestseller {
    background-color: #00b5a0;
}

.badge.new {
    background-color: #1a3a5c;
}

.excursion-content {
    padding: 20px;
}

.excursion-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.price-rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.price {
    font-size: 14px;
    color: #666;
}

.price strong {
    font-size: 18px;
    color: #1a3a5c;
}

.rating {
    color: #ffc107;
    font-size: 12px;
}

.rating span {
    color: #666;
    margin-left: 5px;
}

.excursion-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.excursion-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #888;
}

.excursion-meta i {
    color: #ff6b00;
    margin-right: 5px;
}

.excursion-content .btn {
    width: 100%;
    text-align: center;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    background-color: #fff;
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 40px;
}

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

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: #1a3a5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.testimonial-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a3a5c;
}

.testimonial-info span {
    font-size: 13px;
    color: #888;
}

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

.testimonial-card p {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Instagram Section */
.instagram-section {
    background-color: #e8f4fc;
    padding: 60px 0;
}

.instagram-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: #1a3a5c;
    margin-bottom: 30px;
}

.instagram-section h2 i {
    color: #e1306c;
    margin-right: 10px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.newsletter p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-family: inherit;
}

.newsletter-form .btn {
    background-color: #1a3a5c;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2640 100%);
    padding: 60px 0 20px;
    color: #fff;
}

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

.footer-logo .fun,
.footer-logo .punta-cana {
    color: #fff;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin: 15px 0;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}

.footer-links h4,
.footer-social-section h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

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

.payment-methods {
    margin-top: 20px;
}

.payment-icons {
    font-size: 30px;
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

/* Filter Section */
.filter-section {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 20px;
    border: 2px solid #eee;
    border-radius: 25px;
    background-color: #fff;
    cursor: pointer;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: #ff6b00;
    color: #ff6b00;
}

.filter-tab.active {
    background-color: #ff6b00;
    border-color: #ff6b00;
    color: #fff;
}

/* Excursions Page */
.excursions-page {
    padding: 40px 0 60px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a3a5c 0%, #0f2640 100%);
    padding: 60px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* About Page Styles */
.about-section {
    background-color: #fff;
    padding: 60px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-size: 32px;
    color: #1a3a5c;
    margin-bottom: 20px;
}

.about-text p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    background-color: #e8f4fc;
    padding: 60px 0;
}

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

.mission-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}

.mission-card h3 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.mission-card p {
    color: #666;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 100%);
    padding: 60px 0;
}

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

.stat-item {
    color: #fff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    background-color: #fff;
    padding: 60px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 32px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

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

.team-card {
    text-align: center;
    padding: 30px;
}

.team-image {
    width: 120px;
    height: 120px;
    background-color: #1a3a5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: #fff;
}

.team-card h3 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 5px;
}

.team-card span {
    color: #ff6b00;
    font-size: 14px;
    font-weight: 500;
}

.team-card p {
    color: #666;
    font-size: 14px;
    margin-top: 15px;
}

/* Contact Page Styles */
.contact-section {
    background-color: #fff;
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.contact-form-wrapper > p {
    color: #666;
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b00;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.contact-info-card h2 {
    font-size: 24px;
    color: #1a3a5c;
    margin-bottom: 10px;
}

.contact-info-card > p {
    color: #666;
    margin-bottom: 25px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    gap: 15px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 16px;
    color: #1a3a5c;
    margin-bottom: 5px;
}

.method-info p {
    font-size: 14px;
    color: #666;
}

.method-link {
    font-size: 14px;
    color: #ff6b00;
    font-weight: 500;
}

.business-hours {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.business-hours h4 {
    font-size: 16px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.business-hours h4 i {
    margin-right: 8px;
    color: #ff6b00;
}

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

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.business-hours li span {
    font-weight: 500;
    color: #333;
}

.hours-note {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

.social-connect h4 {
    font-size: 16px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    background-color: #e8f4fc;
    padding: 60px 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 32px;
    color: #1a3a5c;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h4 {
    font-size: 15px;
    color: #1a3a5c;
    font-weight: 500;
}

.faq-question i {
    color: #ff6b00;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #fff;
    padding: 15px 0;
    margin-top: 70px;
    border-bottom: 1px solid #eee;
}

.breadcrumb a {
    color: #666;
    font-size: 14px;
}

.breadcrumb span {
    color: #1a3a5c;
    font-size: 14px;
    font-weight: 500;
}

/* Tour Detail Page */
.tour-detail {
    padding: 40px 0 60px;
}

.tour-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.tour-gallery {
    margin-bottom: 30px;
}

.main-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.thumbnail-row {
    display: flex;
    gap: 10px;
}

.thumbnail-row img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.thumbnail-row img:hover,
.thumbnail-row img.active {
    opacity: 1;
}

.tour-info-main h1 {
    font-size: 32px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.tour-meta-top {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.rating-large {
    color: #ffc107;
}

.rating-large span {
    color: #666;
    margin-left: 8px;
}

.tour-location {
    color: #666;
    font-size: 14px;
}

.tour-location i {
    color: #ff6b00;
    margin-right: 5px;
}

.tour-highlights {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

.highlight i {
    color: #ff6b00;
    font-size: 18px;
}

.tour-description,
.tour-includes,
.tour-itinerary,
.tour-requirements {
    margin-bottom: 30px;
}

.tour-info-main h2 {
    font-size: 20px;
    color: #1a3a5c;
    margin-bottom: 15px;
}

.tour-description p {
    color: #666;
    line-height: 1.8;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.include-item i {
    color: #ff6b00;
    font-size: 18px;
    width: 24px;
}

.include-item span {
    font-size: 14px;
    color: #333;
}

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

.itinerary-item {
    display: flex;
    gap: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #ff6b00;
}

.itinerary-time {
    font-weight: 600;
    color: #ff6b00;
    min-width: 80px;
}

.itinerary-content {
    color: #666;
}

.tour-requirements ul {
    list-style: none;
}

.tour-requirements li {
    padding: 10px 0;
    color: #666;
    font-size: 14px;
}

.tour-requirements li i {
    color: #00b5a0;
    margin-right: 10px;
}

/* Booking Card */
.booking-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.price-display {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a5c;
    display: block;
}

.price-person {
    font-size: 14px;
    color: #888;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.booking-form .form-group label i {
    color: #ff6b00;
}

.booking-form input,
.booking-form select {
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
}

.guest-selector {
    display: flex;
    align-items: center;
    border: 2px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.guest-btn {
    width: 45px;
    height: 45px;
    border: none;
    background-color: #f8f9fa;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.guest-btn:hover {
    background-color: #eee;
}

.guest-selector input {
    flex: 1;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.price-summary {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    color: #666;
}

.price-row.total {
    border-top: 1px solid #ddd;
    padding-top: 12px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 16px;
    color: #1a3a5c;
}

.booking-form .btn {
    margin-bottom: 10px;
}

.booking-benefits {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #666;
}

.benefit i {
    color: #00b5a0;
}

.help-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
    text-align: center;
}

.help-card h4 {
    font-size: 16px;
    color: #1a3a5c;
    margin-bottom: 8px;
}

.help-card p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.help-card .btn-outline {
    border-color: #1a3a5c;
    color: #1a3a5c;
}

.help-card .btn-outline:hover {
    background-color: #1a3a5c;
    color: #fff;
}

/* Related Tours */
.related-tours {
    background-color: #fff;
    padding: 60px 0;
}

.related-tours h2 {
    text-align: center;
    font-size: 28px;
    color: #1a3a5c;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tour-detail-grid {
        grid-template-columns: 1fr 340px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .excursions-grid,
    .excursions-grid-full {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

    .tour-detail-grid {
        grid-template-columns: 1fr;
    }

    .booking-card {
        position: static;
    }

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

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav.active {
        display: block;
    }

    .nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .page-hero-content h1 {
        font-size: 32px;
    }

    .category-grid {
        gap: 20px;
    }

    .category-image {
        width: 60px;
        height: 60px;
    }

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

    .excursions-grid,
    .excursions-grid-full {
        grid-template-columns: 1fr;
    }

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

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

    .social-icons {
        justify-content: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .tour-highlights {
        flex-wrap: wrap;
    }

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

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

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

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .why-choose h2,
    .excursions h2,
    .testimonials h2 {
        font-size: 24px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 36px;
    }

    .main-image img {
        height: 250px;
    }
}
