/* Global Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e67e22;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #333;
    --text-light: #777;
    --white: #ffffff;
    --black: #000000;
    --gray: #f5f5f5;
    --dark-gray: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: white;
    position: relative;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    color: #333;
}

.testimonial-content {
    margin-bottom: 20px;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 1.5rem;
    color: #ddd;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
}

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

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

.no-testimonials {
    text-align: center;
    padding: 40px 0;
    color: white;
}
/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    position: relative;
    color: white;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    color: #333;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
}

.author-avatar .fa-user {
    /* Adjust icon size if needed */
    font-size: 1.8rem;
}

/* For female users (optional) */
.author-avatar .fa-female {
    color: #ff69b4;
}

/* For male users (optional) */
.author-avatar .fa-male {
    color: #3498db;
}

/* Rest of your existing testimonial CSS... */

.no-testimonials i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.no-testimonials p {
    font-size: 1.1rem;
}

/* Swiper Pagination */
.testimonials-section .swiper-pagination-bullet {
    background: white;
    opacity: 0.6;
}

.testimonials-section .swiper-pagination-bullet-active {
    opacity: 1;
    background: #f1c40f;
}
/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.review-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

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

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 15px;
}

.reviewer-info h3 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.tour-name {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.review-rating .fa-star {
    color: #ddd;
    font-size: 1.1rem;
}

.review-rating .fa-star.filled {
    color: #f1c40f;
}

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

.review-date {
    color: #999;
    font-size: 0.85rem;
    text-align: right;
}

.no-reviews {
    text-align: center;
    grid-column: 1 / -1;
    padding: 40px 0;
}

.no-reviews .fa-comment-dots {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 15px;
}

/* Write Review Section */
.write-review-section {
    padding: 80px 0;
}

.review-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

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

.review-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.review-form textarea {
    min-height: 150px;
    resize: vertical;
}

.rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 10px;
}

.rating-input input {
    display: none;
}

.rating-input label {
    cursor: pointer;
    color: #ddd;
    font-size: 1.5rem;
    padding: 0 3px;
}

.rating-input input:checked ~ label,
.rating-input input:hover ~ label {
    color: #f1c40f;
}

.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #f1c40f;
}

.alert {
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    text-align: center;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
}

/* Responsive */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-form .form-row {
        flex-direction: column;
        gap: 0;
    }
}
/* TourHQ Banner Styles */
#thq_banner {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 8px;
    padding: 20px;
    margin: 30px auto;
    max-width: 1200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#thq_banner::before {
    content: "";
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

#thq_banner::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #thq_banner {
        margin: 20px 15px;
        padding: 15px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

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

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-white {
    background-color: var(--white);
    color: var(--accent-color);
}

.btn-white:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 20px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.contact-info a:hover {
    color: var(--accent-color);
}

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

.social-links a {
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.main-nav a:hover:after,
.main-nav a.active:after {
    width: 100%;
}

.main-nav a.active {
    color: var(--accent-color);
}

.nav-cta {
    background-color: var(--accent-color);
    color: var(--white) !important;
    padding: 8px 15px !important;
    border-radius: 4px;
}

.nav-cta:hover {
    background-color: #d35400;
}

.nav-cta:after {
    display: none !important;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    margin-top: -80px;
}

.hero-slider .swiper {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 0 20px;
    max-width: 800px;
}

.slide-badge {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.slide-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.slide-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    color: var(--white);
}

.slide-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Swiper Navigation */
.swiper-button-next, 
.swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.6);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
}

/* Search Section */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

.search-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.search-box h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.search-form .form-group {
    flex: 1;
    position: relative;
}

.search-form label {
    position: absolute;
    top: -10px;
    left: 15px;
    background-color: var(--white);
    padding: 0 5px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.search-form input,
.search-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.search-form input:focus,
.search-form select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.search-form button {
    width: 100%;
    height: 100%;
}

/* Destinations Section */
.destinations-section {
    padding: 100px 0;
    background-color: var(--gray);
}

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

.destination-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.destination-image {
    height: 200px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.destination-content {
    padding: 20px;
}

.destination-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.destination-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.destination-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.destination-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Excursions Section */
.excursions-section {
    padding: 100px 0;
}

.tabs-container {
    margin-top: 40px;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid var(--dark-gray);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    position: relative;
    transition: var(--transition);
}

.tab-button:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.tab-button.active {
    color: var(--dark-color);
}

.tab-button.active:after {
    width: 100%;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

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

.tour-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

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

.tour-card.featured {
    border: 2px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

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

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: var(--transition);
}

.tour-card:hover .image-overlay {
    opacity: 1;
}

.tour-info {
    padding: 20px;
}

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

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-meta i {
    margin-right: 5px;
    color: var(--accent-color);
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--dark-gray);
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.book-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--dark-color);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.book-btn:hover {
    background-color: var(--accent-color);
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background-color: var(--gray);
}

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

.feature-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(230, 126, 34, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

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

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: url('../images/testimonial-bg.jpg') no-repeat center center/cover;
    position: relative;
}

.testimonials-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.testimonials-section .section-header h2,
.testimonials-section .section-header p {
    color: var(--white);
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    height: 100%;
}

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Call to Action */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Contact Section */
/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--gray);
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    margin-top: 40px;
    align-items: start; /* Align grid items at the top */
}

.contact-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start; /* Align items to the top */
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(230, 126, 34, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
    margin-top: 3px; /* Optical alignment adjustment */
}

.info-text {
    flex: 1;
    min-width: 0; /* Prevent text overflow */
}

.info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.info-text p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Make all info items the same height */
.contact-info {
    display: grid;
    grid-template-rows: repeat(auto-fit, minmax(80px, auto));
    gap: 30px;
}

/* Form styling remains the same but with alignment fixes */
.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: 100%; /* Make form match contact info height */
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-item {
        margin-bottom: 20px;
    }
}

/* Footer */
.main-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 20px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.payment-methods img {
    height: 30px;
    width: auto;
    border-radius: 4px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

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

.newsletter-form button {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

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

.app-download {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.app-download img {
    height: 40px;
    width: auto;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .search-form .form-row {
        flex-wrap: wrap;
    }
    
    .search-form .form-group {
        flex: 1 1 200px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        z-index: 1000;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav a {
        margin: 0 0 20px;
        font-size: 1.1rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .search-section {
        margin-top: 0;
    }
    
    .search-box {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .contact-info {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-slider {
        min-height: 600px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .tabs-header {
        overflow-x: auto;
        padding-bottom: 10px;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .tab-button {
        white-space: nowrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .search-form .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-form .form-group {
        flex: 1 1 100%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}
/* Search Results Page */
.search-results {
    padding: 60px 0;
}

.search-filters {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

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

.no-results {
    text-align: center;
    grid-column: 1 / -1;
    padding: 60px 0;
}

.no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results h3 {
    color: #555;
    margin-bottom: 10px;
}

/* Tour Card */
.tour-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
    position: relative;
}

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

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff7b00;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.tour-image {
    height: 200px;
    overflow: hidden;
}

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

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-info {
    padding: 20px;
}

.tour-info h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
}

.tour-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.tour-meta i {
    color: #ff7b00;
    margin-right: 5px;
}

.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price {
    font-weight: 600;
    color: #ff7b00;
    font-size: 1.2rem;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-right: 5px;
}

.book-btn {
    background: #ff7b00;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.book-btn:hover {
    background: #e67300;
}
/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-section {
    padding: 60px 0;
    background-color: var(--gray);
}

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

.info-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.info-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 126, 34, 0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
}

.info-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 5px;
}

.info-card a {
    color: var(--text-light);
    transition: var(--transition);
}

.info-card a:hover {
    color: var(--accent-color);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--dark-gray);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.2);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    margin-top: 20px;
}

.contact-map {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section {
    padding: 80px 0;
    background-color: var(--gray);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: #f9f9f9;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.accordion-header i {
    transition: var(--transition);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.accordion-item.active .accordion-header {
    background: #f9f9f9;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-map {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .contact-hero {
        height: 300px;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
}
.booking-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 20px;
}