/* ========== Page Banner ========== */
.page-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('../images/page-banner.jpg') center/cover no-repeat;
    padding: 100px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-banner h1 {
    font-size: 48px;
    margin-bottom: 15px;
    animation: fadeInUp 0.6s ease;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    animation: fadeInUp 0.8s ease;
}

.breadcrumb a {
    color: var(--white);
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

/* ========== No Results ========== */
.no-results {
    text-align: center;
    padding: 80px 20px;
}

.no-results i {
    font-size: 80px;
    color: var(--border-color);
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.no-results p {
    color: #999;
}

/* ========== Tour Detail Header ========== */
.tour-header {
    position: relative;
    margin-bottom: 60px;
}

.tour-header-image {
    height: 400px;
    overflow: hidden;
}

.tour-header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-header-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
}

.tour-header-content h1 {
    font-size: 42px;
    color: var(--white);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.tour-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tour-meta span {
    background: rgba(255,255,255,0.95);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    box-shadow: var(--shadow);
}

.tour-meta i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ========== Tour Content Layout ========== */
.tour-content {
    padding: 80px 0;
}

.tour-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.tour-section {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.tour-section h2 {
    color: var(--dark-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.tour-section p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

/* ========== Itinerary ========== */
.itinerary-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.itinerary-item:hover {
    transform: translateX(5px);
}

.itinerary-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.itinerary-content {
    flex: 1;
}

.itinerary-content p {
    margin: 0;
    line-height: 1.6;
}

/* ========== Included/Excluded ========== */
.included-excluded {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.included, .excluded {
    padding: 25px;
    border-radius: 8px;
}

.included {
    background: #e8f5e9;
    border: 2px solid #4caf50;
}

.excluded {
    background: #ffebee;
    border: 2px solid #f44336;
}

.included h3 i {
    color: #4caf50;
}

.excluded h3 i {
    color: #f44336;
}

.included ul, .excluded ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.included ul li, .excluded ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.included ul li:last-child, .excluded ul li:last-child {
    border-bottom: none;
}

/* ========== Reviews List ========== */
.reviews-list {
    display: grid;
    gap: 20px;
}

.review-item {
    padding: 25px;
    background: var(--light-color);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.review-item h4 {
    color: var(--dark-color);
    margin: 0;
}

.review-item .rating {
    display: flex;
    gap: 3px;
}

.review-item .rating i {
    color: #ffa726;
    font-size: 14px;
}

.review-item p {
    margin-bottom: 10px;
}

.review-item small {
    color: #999;
    font-size: 13px;
}

/* ========== Booking Sidebar ========== */
.tour-sidebar {
    position: sticky;
    top: 100px;
}

.booking-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 30px;
}

.price-box {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 10px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 14px;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}

.price-box .price {
    font-size: 42px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.per-person {
    font-size: 14px;
    opacity: 0.9;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.booking-form textarea {
    resize: vertical;
}

.contact-options {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
}

.contact-options p {
    text-align: center;
    margin-bottom: 15px;
    color: #666;
}

.info-box {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.info-box h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.info-box p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 8px 0;
    color: #666;
}

.info-box ul li i {
    color: var(--success-color);
    margin-right: 8px;
}

/* ========== Similar Tours ========== */
.similar-tours {
    padding: 60px 0;
    background: var(--light-color);
}

.similar-tours h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 60px;
}

.contact-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.contact-intro p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.contact-section .contact-info {
    display: grid;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.info-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.info-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.info-card p {
    color: #666;
    margin-bottom: 15px;
}

.social-section {
    background: var(--light-color);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.social-section h3 {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    gap: 10px;
}

.social-btn {
    padding: 12px;
    border-radius: 5px;
    color: var(--white);
    font-weight: 600;
    transition: transform 0.3s;
}

.social-btn:hover {
    transform: scale(1.05);
}

.social-btn.facebook {
    background: #1877f2;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-btn.tripadvisor {
    background: #00af87;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    color: var(--dark-color);
    margin-bottom: 25px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.alert {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ========== Map Section ========== */
.map-section {
    padding: 60px;
    background: var(--light-color);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* ========== FAQ Preview ========== */
.faq-preview {
    padding: 80px 0;
}

.faq-preview h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* ========== Responsive Design ========== */
@media (max-width: 1024px) {
    .tour-layout {
        grid-template-columns: 1fr;
    }

    .tour-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-banner h1 {
        font-size: 32px;
    }

    .tour-header-image {
        height: 250px;
    }

    .tour-header-content h1 {
        font-size: 28px;
    }

    .tour-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .included-excluded {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}