/* Excursion Detail Page Styles */
:root {
    --primary-color: #f7b731;
    --primary-hover: #e6a610;
    --secondary-color: #2c3e50;
    --accent-color: #3498db;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --light-bg: #f8f9fa;
    --border-light: #e0e0e0;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --border-radius: 10px;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
    --transition-speed: 0.3s;
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
}

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

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

a:hover {
    color: #2980b9;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header Styles */
.site-header {
    background: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.5rem 0;
}

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

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    padding: 0;
    margin: 0;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition-speed);
    position: relative;
    padding: 0.5rem 0;
}

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

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-icon {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: background-color var(--transition-speed);
    cursor: pointer;
}

.btn-icon:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-outline {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    border-radius: 4px;
    font-weight: 600;
    transition: all var(--transition-speed);
    cursor: pointer;
}

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

/* Hero Section */
.hero {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--text-light);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    padding-bottom: 3rem;
}

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.category-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    backdrop-filter: blur(4px);
}

.hero h1 {
    font-size: 3.5rem;
    margin: 0 0 1rem;
    font-weight: 700;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.stat i {
    color: var(--primary-color);
}

.hero-price {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.from {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

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

.per {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sticky Booking Bar */
.sticky-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 90;
    justify-content: space-between;
    align-items: center;
}

.sticky-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.sticky-price .from {
    color: var(--text-secondary);
}

.sticky-price .price {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.sticky-price .per {
    color: var(--text-secondary);
}

/* Excursion Nav */

.excursion-nav ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.excursion-nav ul::-webkit-scrollbar {
    display: none;
}

.excursion-nav li {
    flex-shrink: 0;
}

.excursion-nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: all var(--transition-speed);
    position: relative;
}

.excursion-nav a:hover {
    color: var(--primary-color);
}

.excursion-nav a.active {
    color: var(--primary-color);
}

.excursion-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

/* Content Layout */
.content-sidebar-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.content-section {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.content-section h2 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 0.75rem;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Highlights Section */
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.highlight-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.highlight-card h3 {
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.highlight-card p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    height: 200px;
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Itinerary Section */
.timeline {
    position: relative;
    padding-left: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background-color: var(--border-light);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -3rem;
    width: 30px;
    height: 30px;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    top: 0;
    z-index: 1;
}

.timeline-content {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.25rem;
    position: relative;
}

.timeline-time {
    position: absolute;
    top: -0.5rem;
    left: 1.25rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.timeline-content h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.2rem;
    color: var(--text-primary);
}

.timeline-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Included/Not Included Section */
.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.inclusion-column h3,
.exclusion-column h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.inclusion-column h3 i {
    color: var(--success-color);
}

.exclusion-column h3 i {
    color: var(--error-color);
}

.inclusion-list,
.exclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-list li,
.exclusion-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-light);
}

.inclusion-list li:last-child,
.exclusion-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.inclusion-list i {
    color: var(--success-color);
    margin-top: 0.25rem;
}

.exclusion-list i {
    color: var(--error-color);
    margin-top: 0.25rem;
}

/* Map Section */
.map-container {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.location-item i {
    color: var(--accent-color);
}

/* Reviews Section */
.reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.rating-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 2rem;
    border-right: 1px solid var(--border-light);
}

.rating-score {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
}

.rating-stars {
    margin: 0.75rem 0;
    color: var(--warning-color);
    font-size: 1.25rem;
}

.rating-count {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-bar span {
    flex: 0 0 50px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.progress-bar {
    flex: 1;
    height: 8px;
    background-color: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: var(--warning-color);
    border-radius: 4px;
}

.reviews-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: var(--light-bg);
    border: none;
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.filter-btn:hover {
    background: #e9ecef;
}

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

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.reviewer {
    display: flex;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reviewer-info h4 {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
}

.reviewer-meta {
    display: flex;
    gap: 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.review-rating {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.review-content h5 {
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.review-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-photos {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.review-photos img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform var(--transition-speed);
}

.review-photos img:hover {
    transform: scale(1.05);
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.load-more-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-bg);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.load-more-btn:hover {
    background: #e9ecef;
}

/* Sidebar Styles */
.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.booking-widget,
.why-book-with-us,
.related-excursions {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.booking-widget h3,
.why-book-with-us h3,
.related-excursions h3 {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 1.4rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

.booking-widget h3::after,
.why-book-with-us h3::after,
.related-excursions h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Booking Widget Styles */

.transportation-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.transportation-card {
    border: 2px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all var(--transition-speed);
}

.transportation-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.transportation-card.selected {
    border-color: var(--primary-color);
    background: rgba(247, 183, 49, 0.05);
}

.card-header {
    background: var(--light-bg);
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.card-header .price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.card-header .amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.card-header .unit {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.card-body {
    padding: 1.25rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.features-list i {
    color: var(--success-color);
}

.features-list i.fa-info-circle {
    color: var(--warning-color);
}

.btn-select {
    width: 100%;
    padding: 0.75rem;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

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

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

/* Group Size Selector */
.group-size-selector,
.activities-selector,
.price-summary {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.group-size-selector h5,
.activities-selector h5,
.price-summary h5 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.hint {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.quantity-input {
    display: flex;
    max-width: 150px;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: #f1f1f1;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-speed);
}

.quantity-btn:hover {
    background: #e0e0e0;
}

.quantity-input input {
    width: 70px;
    height: 40px;
    border: none;
    text-align: center;
    font-size: 1rem;
}

.quantity-input input::-webkit-outer-spin-button,
.quantity-input input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

/* Activities Styles */
.activity-cards {
    display: grid;
    gap: 1rem;
}

.activity-card {
    display: flex;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.activity-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

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

.activity-details {
    padding: 0.75rem;
    flex-grow: 1;
}

.activity-details h6 {
    margin: 0 0 0.25rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.activity-details p {
    margin: 0 0 0.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.activity-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.activity-select {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    border-left: 1px solid var(--border-light);
}

/* Custom Checkbox */
.checkbox-wrapper {
    position: relative;
    width: 22px;
    height: 22px;
}

.checkbox-wrapper input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.checkbox-wrapper label {
    position: absolute;
    top: 0;
    left: 0;
    width: 22px;
    height: 22px;
    background: #f1f1f1;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.checkbox-wrapper label::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 0;
    transform: scale(0);
    transition: all var(--transition-speed);
}

.checkbox-wrapper input[type="checkbox"]:checked + label {
    background: #f0f8ff;
    border-color: var(--primary-color);
}

.checkbox-wrapper input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}

/* Price Summary */
.summary-table {
    margin-bottom: 1.25rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.summary-row.total {
    border-bottom: none;
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.summary-row.total span:last-child {
    color: var(--primary-color);
}

.btn-continue {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-continue:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Form Styles */
.details-form {
    margin-bottom: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.form-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--error-color);
}

.error-message {
    color: var(--error-color);
    font-size: 0.85rem;
    display: none;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn-back {
    padding: 0.75rem 1.5rem;
    background: var(--light-bg);
    border: none;
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-back:hover {
    background: #e9ecef;
}

/* Payment Styles */
.payment-options h5 {
    margin-bottom: 1.5rem;
}

#paypal-button-container {
    margin-bottom: 1.5rem;
}

.payment-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.payment-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-light);
}

.payment-divider span {
    position: relative;
    background: white;
    padding: 0 1rem;
    color: var(--text-secondary);
}

.btn-pay-later {
    width: 100%;
    padding: 0.75rem;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-pay-later:hover {
    background: #e9ecef;
}

.btn-pay-later i {
    color: var(--success-color);
}

.payment-note {
    margin: 1rem 0 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-note i {
    color: var(--accent-color);
}

/* Confirmation Styles */
.confirmation-container {
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.confirmation-container h3 {
    font-size: 1.75rem;
    margin: 0 0 0.75rem;
    color: var(--text-primary);
}

.confirmation-container p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.booking-info {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.booking-ref {
    padding: 1rem;
    background: white;
    border-radius: var(--border-radius);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.booking-ref span:last-child {
    font-weight: 700;
    color: var(--accent-color);
}

.confirmation-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.detail-section {
    background: white;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.detail-section h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 0.5rem;
}

.confirmation-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.confirmation-row:last-child {
    margin-bottom: 0;
}

.confirmation-row.total {
    font-weight: 700;
    color: var(--text-primary);
}

.confirmation-row.total span:last-child {
    color: var(--primary-color);
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-download,
.btn-new-booking {
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-download {
    background: var(--primary-color);
    color: white;
    border: none;
}

.btn-download:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-new-booking {
    background: var(--light-bg);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-new-booking:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.confirmation-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.confirmation-note a {
    color: var(--accent-color);
    font-weight: 500;
}

/* Why Book With Us */
.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--success-color);
}

/* Related Excursions */
.related-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.related-item {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.related-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.related-item img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.related-details {
    padding: 0.75rem;
}

.related-details h4 {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.related-price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Subscribe Section */
.subscribe-section {
    background: var(--secondary-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.subscribe-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.subscribe-content p {
    margin: 0 auto 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.subscribe-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.subscribe-form input:focus {
    outline: none;
}

.subscribe-form button {
    padding: 0 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    font-weight: 500;
    cursor: pointer;
    transition: background var(--transition-speed);
}

.subscribe-form button:hover {
    background: var(--primary-hover);
}

/* Footer Styles */
.site-footer {
    background: #222;
    color: white;
    padding: 4rem 0 1.5rem;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: all var(--transition-speed);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-column h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

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

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
    color: var(--primary-color);
}

.contact-info a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

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

.payment-methods img {
    max-width: 200px;
    margin-top: 1rem;
}

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

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

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

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

.footer-bottom-links a:hover {
    color: var(--primary-color);
}

/* Share Modal Styling */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1100;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fff;
    margin: 1rem;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #888;
    transition: color 0.2s ease;
}

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

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.share-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 6px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.share-option:hover {
    transform: translateY(-3px);
}

.share-option i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.share-option.facebook {
    background-color: #3b5998;
}

.share-option.twitter {
    background-color: #1da1f2;
}

.share-option.whatsapp {
    background-color: #25d366;
}

.share-option.email {
    background-color: #dd4b39;
}

.share-link {
    display: flex;
    margin-top: 1rem;
}

.share-link input {
    flex-grow: 1;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.copy-btn {
    padding: 0.75rem 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.copy-btn:hover {
    background-color: #e0a800;
}

@media (max-width: 480px) {
    .share-options {
        grid-template-columns: 1fr;
    }
}

/* Meals Section Styles */
.meals-selector {
    margin-top: 30px;
}

.meal-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.meal-card {
    display: flex;
    align-items: stretch;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}

.meal-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.meal-image {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    overflow: hidden;
}

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

.meal-details {
    padding: 15px;
    flex: 1;
}

.meal-details h6 {
    margin: 0 0 8px;
    font-size: 16px;
}

.meal-details p {
    margin: 0 0 10px;
    font-size: 14px;
}

.meal-price {
    display: block;
    font-weight: bold;
    color: #f7b731;
}

.meal-select {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e0e0e0;
}
.meal-participants-counter {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed #eee;
    animation: fadeIn 0.3s ease;
  }
  
  .meal-participants-counter label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
  }
  
  .participant-price {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #777;
  }
  
  .meal-card {
    position: relative;
    transition: all 0.3s ease;
  }
  
  .meal-card.has-participants {
    padding-bottom: 15px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

/* Accommodation Section Styles */
.accommodation-options {
    margin-bottom: 2rem;
}

.accommodation-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #fff;
}

.accommodation-card:hover, 
.accommodation-card.selected {
    border-color: #007bff;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.1);
}

.accommodation-card.selected {
    background-color: #f8f9ff;
}

.accommodation-image {
    margin-bottom: 1rem;
    border-radius: 6px;
    overflow: hidden;
}

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

.accommodation-details {
    margin-bottom: 1rem;
}

.accommodation-details h6 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.accommodation-details p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.accommodation-price {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.accommodation-select {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-wrapper {
    position: relative;
    display: inline-block;
}

.radio-wrapper input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.radio-wrapper label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 20px;
    display: inline-block;
}

.radio-wrapper label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #007bff;
    border-radius: 50%;
    background: #fff;
}

.radio-wrapper input[type="radio"]:checked + label:after {
    content: '';
    position: absolute;
    left: 5px;
    top: 5px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #007bff;
}

.nights-control,
.participants-control {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.nights-control label,
.participants-control label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.quantity-input.small {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    width: fit-content;
}

.quantity-input.small button {
    background: none;
    border: none;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: #007bff;
}

.quantity-input.small button:hover {
    background-color: #f8f9fa;
}

.quantity-input.small input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 0.5rem;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input.small input::-webkit-outer-spin-button,
.quantity-input.small input::-webkit-inner-spin-button {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
}

.participant-price {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* Selection Indicator */
.accommodation-card .selection-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.accommodation-card.selected .selection-indicator {
    opacity: 1;
    border-color: #007bff;
    background: #007bff;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .accommodation-card {
        padding: 1rem;
    }
    
    .accommodation-image img {
        height: 150px;
    }
    
    .accommodation-select {
        flex-direction: column;
    }
    
    .nights-control,
    .participants-control {
        width: 100%;
    }
}

/* Copy of the .btn-pay-later styles for the new class name */
.btn-cash-payment {
  width: 100%;
    padding: 0.75rem;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius);
  display: flex;
  align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-primary);
  font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.btn-cash-payment:hover {
    background: #e9ecef;
}

.btn-cash-payment i {
    color: var(--success-color);
}

/* Need Help Section - Professional Styling */
.need-help {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
    color: white;
    position: relative;
    overflow: hidden;
}

.need-help::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.need-help h3 {
    font-size: 2rem;
    margin: 0 0 0.75rem 0;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.need-help p {
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.help-options {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.75rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-speed);
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.help-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.help-option:hover::before {
    left: 100%;
}

.help-option:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.help-option i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.help-option span {
    position: relative;
    z-index: 1;
}

/* Recommended Tours Section - Professional Styling */
.recommended-tours {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-md);
}

.recommended-tours h3 {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.recommended-tours h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.recommended-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.recommended-tour {
    display: block;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed);
    text-decoration: none;
    color: inherit;
    position: relative;
    border: 1px solid var(--border-light);
}

.recommended-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-speed);
    z-index: 1;
    pointer-events: none;
}

.recommended-tour:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.recommended-tour:hover::before {
    opacity: 1;
}

.recommended-tour img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.recommended-tour:hover img {
    transform: scale(1.1);
}

.recommended-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: white;
}

.recommended-info h4 {
    font-size: 1.3rem;
    margin: 0 0 0.5rem 0;
    color: var(--secondary-color);
    font-weight: 600;
    transition: color var(--transition-speed);
}

.recommended-tour:hover .recommended-info h4 {
    color: var(--primary-color);
}

.recommended-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.recommended-info p::before {
    content: '💰 ';
    margin-right: 0.25rem;
}

/* Responsive Design for Help and Recommended Sections */
@media (max-width: 768px) {
    .need-help {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .need-help h3 {
        font-size: 1.75rem;
    }
    
    .need-help p {
        font-size: 1rem;
    }
    
    .help-options {
        flex-direction: column;
        gap: 1rem;
    }
    
    .help-option {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }
    
    .recommended-tours {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .recommended-tours h3 {
        font-size: 1.75rem;
    }
    
    .recommended-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .recommended-tour img {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .need-help {
        padding: 1.5rem 1rem;
    }
    
    .need-help h3 {
        font-size: 1.5rem;
    }
    
    .recommended-tours {
        padding: 1.5rem 1rem;
    }
    
    .recommended-tours h3 {
        font-size: 1.5rem;
    }
    
    .recommended-info {
        padding: 1.25rem;
    }
    
    .recommended-info h4 {
        font-size: 1.15rem;
    }
}
