/* Common Tour Page Styles */
:root {
    --primary: #0066cc;
    --primary-light: #0099ff;
    --secondary: #2c3e50;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --gray: #6c757d;
}

.tour-banner {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.tour-highlights {
    padding: 3rem 0;
}

.highlight-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary);
}

/* Booking Form Styles */
.booking-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    position: relative;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/pattern.png');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.booking-form {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.booking-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--secondary);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.booking-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 12px 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.phone-input {
    display: flex;
}

.phone-prefix {
    width: 60px;
    border-radius: 8px 0 0 8px;
    background: #f8f9fa;
    border: 1px solid #ced4da;
    border-right: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.phone-number {
    border-radius: 0 8px 8px 0;
    flex-grow: 1;
}

.form-select {
    border-radius: 8px;
    border: 1px solid #ced4da;
    padding: 12px 15px;
    height: auto;
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary), var(--primary-light));
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.4);
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    height: 100%;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 3px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-text {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive styles */
@media (max-width: 991px) {
    .banner-title {
        font-size: 2.5rem;
    }
    .banner-subtitle {
        font-size: 1.1rem;
    }
    .contact-info {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .tour-banner {
        height: 300px;
    }
    .banner-title {
        font-size: 2rem;
    }
    .banner-subtitle {
        font-size: 1rem;
    }
}
