/* =================================================================
   excursion-shared.css  —  AUTO-GENERATED, DO NOT EDIT DIRECTLY
   Combines: excursion-detail.css, menu.css, language-selector.css, modal-unified.css, booking-enhancements.css, booking-fixes.css, direct-fix.css, professional-reviews.css
   Regenerate with: node build-excursion-css.js
   Generated: 2026-02-24T21:52:30.919Z
   ================================================================= */


/* ─────────────────────────────────────────
   SOURCE: styles/excursion-detail.css
   ───────────────────────────────────────── */

/* 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.9rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid #16a34a;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.14);
    cursor: pointer;
    transition: all 0.22s ease;
}

.btn-pay-later:hover {
    border-color: #15803d;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
    transform: translateY(-1px);
}

.btn-pay-later:focus-visible {
    outline: 3px solid rgba(22, 163, 74, 0.25);
    outline-offset: 2px;
}

.btn-pay-later i {
    color: #15803d;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.payment-note {
    margin: 0.85rem 0 0;
    padding: 0.65rem 0.8rem;
    border-radius: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    font-size: 0.85rem;
    color: #1e3a8a;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.payment-note i {
    color: #2563eb;
    margin-top: 2px;
}

/* 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.9rem 1rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1.5px solid #16a34a;
    border-radius: var(--border-radius);
  display: flex;
  align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #0f172a;
  font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.01em;
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.14);
    cursor: pointer;
    transition: all 0.22s ease;
}

.btn-cash-payment:hover {
    border-color: #15803d;
    box-shadow: 0 10px 20px rgba(22, 163, 74, 0.2);
    transform: translateY(-1px);
}

.btn-cash-payment:focus-visible {
    outline: 3px solid rgba(22, 163, 74, 0.25);
    outline-offset: 2px;
}

.btn-cash-payment i {
    color: #15803d;
    font-size: 1rem;
    width: 24px;
    height: 24px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* 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;
    }
}


/* === SMALL DEVICE BREAKPOINTS (added for 360-768px coverage) ============= */

/* ── Tablet & large phone (max 768px) ── */
@media (max-width: 768px) {
    .hero {
        /* min-height lets content drive height — no text overflow under sticky header */
        min-height: 320px;
        height: auto;
    }

    .hero-content {
        /* height: auto so flexbox doesn't clip overflowing content */
        height: auto;
        padding-top: 5rem;   /* clearance for sticky header (~60-70px) */
        padding-bottom: 1.5rem;
    }

    .hero h1 {
        font-size: 2.1rem;
        line-height: 1.2;
    }

    .content-wrapper {
        padding: 0 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat {
        font-size: 0.95rem;
    }

    .meal-cards {
        grid-template-columns: 1fr;
    }

    .hero-stats .stat span {
        font-size: 0.9rem;
    }
}

/* ── Small phones (max 480px) ── */
@media (max-width: 480px) {
    .hero {
        min-height: 280px;
        height: auto;
    }

    .hero-content {
        padding-top: 4.5rem;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .category-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }

    .hero-stats {
        gap: 0.75rem;
    }

    .stat {
        font-size: 0.875rem;
    }
}

/* ── Very small phones (max 375px — iPhone SE etc.) ── */
@media (max-width: 375px) {
    .hero {
        min-height: 260px;
        height: auto;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .content-wrapper {
        padding: 0 0.75rem;
    }

    .category-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* ── Ultra-small phones (max 360px — budget Android) ── */
@media (max-width: 360px) {
    .hero {
        min-height: 240px;
        height: auto;
    }

    .hero h1 {
        font-size: 1.35rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat {
        font-size: 0.85rem;
    }
}

/* === MOBILE LAYOUT FIX — Two-column → single column + sticky booking bar === */

/* ── Collapse two-column layout on mobile (≤ 768px) ── */
@media (max-width: 768px) {
    .content-sidebar-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Main content first, sidebar below */
    .main-content {
        order: 1;
    }

    .sidebar-content {
        order: 2;
    }

    /* Reduce section padding on mobile */
    .content-section {
        padding: 1.25rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    /* Highlights grid: 1 column */
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    /* Itinerary timeline: reduce indentation */
    .timeline-item {
        padding-left: 1rem;
    }

    /* Included/excluded grid: 1 column */
    .included-grid {
        grid-template-columns: 1fr;
    }

    /* Booking widget full width */
    .booking-widget,
    .why-book-with-us,
    .related-excursions {
        padding: 1.25rem;
    }

    /* Give body bottom padding so content clears the sticky bar */
    body {
        padding-bottom: 72px;
    }

    /* Show sticky booking bar as fixed bottom CTA on mobile */
    .sticky-booking-bar {
        display: flex !important;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #e5e7eb;
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
        padding: 0.85rem 1rem;
        z-index: 200;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .sticky-price {
        display: flex;
        align-items: baseline;
        gap: 0.35rem;
        flex-shrink: 0;
    }

    .sticky-price .from {
        font-size: 0.8rem;
        color: #6b7280;
    }

    .sticky-price .price {
        font-size: 1.4rem;
        font-weight: 700;
        color: #f59e0b;
    }

    .sticky-price .per {
        font-size: 0.8rem;
        color: #6b7280;
    }

    .sticky-booking-bar .btn-primary {
        flex: 1;
        max-width: 180px;
        text-align: center;
        padding: 0.7rem 1rem;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.95rem;
        background: #f59e0b;
        color: #fff;
        border: none;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ── Extra-small phones (≤ 480px): tighten sticky bar ── */
@media (max-width: 480px) {
    .content-section {
        padding: 1rem;
    }

    .content-section h2 {
        font-size: 1.25rem;
    }

    .sticky-booking-bar {
        padding: 0.75rem;
    }

    .sticky-price .price {
        font-size: 1.25rem;
    }

    .sticky-booking-bar .btn-primary {
        font-size: 0.875rem;
        padding: 0.65rem 0.875rem;
    }
}

/* ================================================================
   MOBILE BOOKING BOTTOM SHEET
   Slide-up overlay pattern (Airbnb / Viator style) for ≤ 768px.
   JS in /scripts/mobile-booking-sheet.js controls open/close.
   ================================================================ */
@media (max-width: 768px) {

    /* ── Backdrop ── */
    .booking-mobile-backdrop {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.52);
        z-index: 499;
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        animation: backdropFadeIn 0.25s ease;
    }
    .booking-mobile-backdrop.active {
        display: block;
    }
    @keyframes backdropFadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    /* ── Widget: hidden off-screen at bottom ── */
    .booking-widget {
        position: fixed !important;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 500;
        background: #fff;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.22);
        transform: translateY(100%);
        transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
        max-height: 92dvh;
        max-height: 92vh; /* fallback */
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 !important;
        /* Reset any inline top/margin that might interfere */
        margin: 0 !important;
        top: auto !important;
    }

    /* ── Open state ── */
    .booking-widget.mobile-open {
        transform: translateY(0);
    }

    /* ── Drag handle pill ── */
    .booking-sheet-handle {
        width: 36px;
        height: 4px;
        background: #d1d5db;
        border-radius: 2px;
        margin: 10px auto 0;
        flex-shrink: 0;
    }

    /* ── Sticky header inside sheet ── */
    .booking-sheet-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.875rem 1.25rem 0.75rem;
        border-bottom: 1px solid #f3f4f6;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 10;
    }

    .booking-sheet-title {
        font-size: 1rem;
        font-weight: 600;
        color: #1f2937;
    }

    .booking-sheet-close {
        width: 30px;
        height: 30px;
        border: none;
        background: #f3f4f6;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        color: #374151;
        padding: 0;
        line-height: 1;
        flex-shrink: 0;
        transition: background 0.15s;
    }
    .booking-sheet-close:hover {
        background: #e5e7eb;
    }

    /* ── Padding for sheet content area ── */
    .booking-widget .booking-progress,
    .booking-widget .booking-step {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    .booking-widget .booking-progress {
        padding-top: 1rem;
    }
    .booking-widget .booking-step:last-child {
        padding-bottom: 2rem;
    }

    /* ── Body scroll lock when sheet is open ── */
    body.booking-sheet-open {
        overflow: hidden;
    }
}


/* ─────────────────────────────────────────
   SOURCE: styles/menu.css
   ───────────────────────────────────────── */

/* Menu Variables */
:root {
    --primary-color: #FEB800;
    --secondary-color: #1a1f24;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition: all 0.3s ease;
    --menu-width: 280px;
    --header-height: 75px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    --nav-item-hover: rgba(254, 184, 0, 0.1);
    --gradient-overlay: linear-gradient(120deg, #FEB800, #FFA000);
    --button-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    --button-shadow-hover: 0 5px 15px rgba(0, 0, 0, 0.2);
    --hover-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* Header Container */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary-color);
    z-index: 1000;
    height: var(--header-height);
    box-shadow: var(--box-shadow);
    transition: transform 0.4s ease, background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Header scroll effect */
.site-header.scrolled {
    transform: translateY(-100%);
}

.site-header.visible {
    transform: translateY(0);
    background-color: rgba(26, 31, 36, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 var(--spacing-xl, 3rem);
}

.header-left {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl, 3rem);
}

.header-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md, 1.5rem);
    margin-left: auto;
}

.logo-container {
    text-align: left;
    height: 50px;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: logoEntrance 1s ease-out;
    transition: transform 0.3s ease;
    max-width: 130px; /* Ensure logo has a fixed maximum width */
    display: block; /* Ensure logo displays properly */
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-container:hover .logo {
    transform: translateY(-2px);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Navigation Menu */
.primary-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1; /* Take up available space in the middle */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    justify-content: center; /* Center the navigation items */
}

.nav-links li {
    opacity: 0;
    animation: fadeInNav 0.5s ease forwards;
    position: relative;
}

@keyframes fadeInNav {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-links li:nth-child(1) { animation-delay: 0.1s; }
.nav-links li:nth-child(2) { animation-delay: 0.2s; }
.nav-links li:nth-child(3) { animation-delay: 0.3s; }
.nav-links li:nth-child(4) { animation-delay: 0.4s; }
.nav-links li:nth-child(5) { animation-delay: 0.5s; }
.nav-links li:nth-child(6) { animation-delay: 0.6s; }

/* Enhanced Navigation Link Styling */
.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.7rem 1.2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    white-space: nowrap;
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background-color: transparent;
    z-index: 1;
}

/* Background effect on hover */
.nav-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover:before {
    transform: translateY(0);
    opacity: 0.1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    box-shadow: 0 1px 3px rgba(254, 184, 0, 0.3);
}

.nav-link i {
    font-size: 1.15rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-link:hover i,
.nav-link.active i {
    transform: translateY(-3px) scale(1.1);
    color: var(--primary-color);
    filter: drop-shadow(0 3px 3px rgba(0, 0, 0, 0.2));
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--button-shadow);
}

.nav-link.active {
    background-color: var(--nav-item-hover);
}

/* Book Now Button in Header */
.header-book-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(0.65rem, 1.1vw, 0.8rem) clamp(1.15rem, 2.2vw, 1.5rem);
    background: linear-gradient(135deg, rgba(255, 200, 64, 0.68) 0%, rgba(249, 147, 30, 0.62) 100%);
    color: #0f172a;
    font-weight: 700;
    font-size: 0.98rem;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    animation: none; /* Remove pulsing animation */
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background-clip: padding-box;
}

.header-book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #F97316, #EAB308);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-book-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.45);
}

/* Nav "Book Now" link in legacy header */
.nav-btn-book {
    background: linear-gradient(135deg, rgba(255, 200, 64, 0.68) 0%, rgba(249, 147, 30, 0.62) 100%);
    color: #0f172a !important;
    border-radius: 18px;
    padding: 0.6rem 1.2rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background-clip: padding-box;
}

.nav-btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.45);
}

.header-book-btn:hover::before {
    opacity: 1;
}

.header-book-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.header-book-btn:hover i {
    transform: translateY(-2px) scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    transition: all 0.3s ease;
}

.mobile-menu-btn.active .menu-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active .menu-bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Content Adjustment */
main {
    margin-top: var(--header-height);
}

/* Enhanced Language Switcher Styling */
.language-switcher {
    position: relative;
    perspective: 1000px;
    margin-left: auto; /* Push to the far right */
}

.current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--hover-transition);
    box-shadow: var(--button-shadow);
    backdrop-filter: blur(5px);
    font-weight: 600;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: var(--button-shadow-hover);
    border-color: var(--primary-color);
}

.current-lang i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.current-lang i:first-child {
    color: var(--primary-color);
}

.language-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--secondary-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    padding: 0.5rem;
    width: 200px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    transform-origin: top center;
    transform: rotateX(-15deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.language-switcher:hover .language-dropdown {
    max-height: 350px;
    opacity: 1;
    padding: 0.8rem;
    transform: rotateX(0);
    top: 110%;
}

.language-switcher:hover .current-lang i:last-child {
    transform: rotate(180deg);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem;
    color: var(--text-light);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-bottom: 0.3rem;
    border: 1px solid transparent;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    color: var(--primary-color);
    border-color: rgba(254, 184, 0, 0.3);
}

.lang-option img {
    width: 22px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.lang-option:hover img {
    transform: scale(1.15);
}

/* Mobile Styles */
@media (max-width: 992px) {
    .language-switcher {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .primary-nav {
        display: none;
    }

    .header-book-btn {
        display: none;
    }

    /* Mobile nav styles - only apply to non-site-header mobile navs */
    /* The site-header.html has its own inline styles that use left-based animation */
    /* This selector excludes #mobileNav to prevent conflicts */
    .mobile-nav:not(#mobileNav) {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary-color);
        z-index: 1000;
        transition: right 0.3s ease;
        display: none;
        overflow-y: auto;
    }

    .mobile-nav:not(#mobileNav).open {
        right: 0;
        display: block;
    }

    .mobile-nav-container {
        padding: calc(var(--header-height) + 20px) 2rem 2rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

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

    .mobile-nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
        margin-bottom: 1rem;
    }

    .mobile-nav.open .mobile-nav-links li {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .mobile-nav-links a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.2rem;
        font-weight: 500;
        padding: 1rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a.active {
        background: rgba(255, 255, 255, 0.1);
        padding-left: 1.5rem;
    }

    .mobile-nav-links a i {
        width: 24px;
        text-align: center;
    }

    .mobile-nav-footer {
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .btn-mobile-book {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: var(--primary-color);
        color: var(--text-dark);
        text-decoration: none;
        padding: 1rem;
        border-radius: 8px;
        font-weight: 600;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
    }

    .btn-mobile-book:hover {
        background: #ffc107;
        transform: translateY(-2px);
    }

    .mobile-language-switcher {
        padding: 1rem 0;
    }

    .mobile-lang-title {
        color: var(--text-light);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        font-weight: 500;
        opacity: 0.8;
    }

    .mobile-lang-options {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 0.5rem;
    }

    .mobile-lang-option {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem;
        color: var(--text-light);
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .mobile-lang-option:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .mobile-lang-option img {
        width: 20px;
        height: 15px;
        object-fit: cover;
        border-radius: 2px;
    }
}

/* Remove mobile language dropdown styles since they're not needed */
/*
.mobile-language-dropdown,
.mobile-current-lang,
.mobile-lang-options,
.mobile-lang-option {
    display: none !important;
}
*/

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 992px) {
    :root {
        --header-height: 70px;
        --menu-width: 320px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    :root {
        --header-height: 65px;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        height: 38px;
    }
    
    .mobile-nav {
        max-width: 100%;
    }
    
    .mobile-lang-option {
        width: calc(33.33% - 0.5rem);
    }
}

/* Small mobile adjustments */
@media (max-width: 374px) {
    .mobile-lang-option {
        width: calc(50% - 0.5rem);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    
    .logo-container:hover .logo,
    .nav-link:hover i {
        transform: none;
    }
}

/* Print Styles */
@media print {
    .site-header {
        position: relative;
        background: none;
        box-shadow: none;
        height: auto;
    }

    .nav-link {
        color: var(--text-dark);
    }

    .mobile-menu-btn, 
    .header-book-btn {
        display: none;
    }
}

/* Floating Book Now button for small screens */
.floating-book-btn {
    display: none; /* Hidden by default, will be shown on mobile */
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f59e0b; /* Match the header button */
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 99;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
    border: none;
    transition: var(--hover-transition);
}

.floating-book-btn i {
    font-size: 1.1rem;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 576px) {
    .floating-book-btn {
        bottom: 1rem;
        right: 1rem;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
}

/* Header Center Fix - Centers the navigation menu while keeping layout balanced */
/* This ensures all pages using menu.css get centered navigation */

/* Keep the flex layout but center the navigation */
html body .site-header .nav-container {
    justify-content: space-between !important;
    gap: 2rem !important;
}

/* Logo stays on the left */
html body .site-header .header-left {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

/* Center the navigation menu */
html body .site-header .primary-nav {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Right section stays on the right */
html body .site-header .header-right {
    flex: 0 0 auto !important;
    display: flex !important;
    align-items: center !important;
}

/* Ensure navigation links are properly centered */
html body .site-header .nav-links {
    justify-content: center !important;
    align-items: center !important;
}

/* For mobile responsive - ensure center alignment is maintained */
@media (max-width: 992px) {
    html body .site-header .nav-container {
        justify-content: space-between !important;
    }
    
    html body .site-header .primary-nav {
        display: none !important; /* Hidden on mobile, shown via mobile menu */
    }
}

/* Extra specificity to override any conflicting styles */
body .site-header .nav-container {
    justify-content: space-between !important;
}

body .site-header .primary-nav {
    justify-content: center !important;
}


/* ─────────────────────────────────────────
   SOURCE: styles/language-selector.css
   ───────────────────────────────────────── */

/**
 * Language Selector Styles
 */

.language-switcher {
    position: relative;
    perspective: 1000px;
    margin-left: auto; /* Push to the far right */
    z-index: 100;
}

/* Current language button styles */
.current-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: space-between;
}

.current-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.current-lang:focus {
    outline: 2px solid #f7b731;
    outline-offset: 2px;
}

.current-lang i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.current-lang[aria-expanded="true"] i {
    transform: rotate(180deg);
}

/* Language dropdown styles */
.language-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Language option styles */
.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    text-decoration: none;
    border: none;
    background: transparent;
    width: 100%;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: #2a2a2a;
    color: #f7b731;
    transform: translateX(4px);
}

.lang-option:focus {
    background: #2a2a2a;
    color: #f7b731;
    outline: none;
}

.lang-option.active {
    background: #f7b731;
    color: #1a1a1a;
    font-weight: 600;
}

.lang-option.active:hover {
    background: #f39c12;
    transform: translateX(0);
}

.lang-option .flag {
    font-size: 1.2rem;
    width: 20px;
    display: flex;
    justify-content: center;
}

.lang-option .name {
    flex: 1;
    text-align: left;
}

/* Enhanced animation for dropdown appearance */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-15px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.language-dropdown.show {
    animation: slideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .language-switcher {
        position: relative;
    }
    
    .current-lang {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .language-dropdown {
        right: 0;
        left: auto;
        min-width: 160px;
    }
    
    .lang-option {
        padding: 0.65rem 0.85rem;
        font-size: 0.85rem;
    }
}

/* Dark theme specific enhancements */
.language-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 20px;
    width: 10px;
    height: 10px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
    z-index: -1;
}

/* Loading state */
.lang-option.loading {
    pointer-events: none;
    opacity: 0.6;
}

.lang-option.loading::after {
    content: '';
    width: 12px;
    height: 12px;
    border: 2px solid #f7b731;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Accessibility improvements */
.language-switcher:focus-within .language-dropdown {
    outline: 2px solid #f7b731;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .language-dropdown {
        background: #000000;
        border-color: #ffffff;
    }
    
    .lang-option {
        color: #ffffff;
        border-color: #ffffff;
    }
    
    .lang-option:hover {
        background: #ffffff;
        color: #000000;
    }
}

/* Legacy support for old class names */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-toggle i {
    font-size: 1rem;
}

.lang-options {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.language-switcher:hover .lang-options,
.lang-toggle[aria-expanded="true"] + .lang-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-options li {
    padding: 0;
    margin: 0;
}

.lang-options a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.lang-options a:hover,
.lang-options a.active {
    background-color: rgba(0, 0, 0, 0.05);
    color: #f59e0b;
}

/* Mobile Language Menu */
.mobile-lang-menu {
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.mobile-lang-menu .menu-title {
    display: block;
    color: #fff;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding: 0 1.5rem;
}

.mobile-lang-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
}

.mobile-lang-options a {
    display: block;
    padding: 0.5rem;
    text-align: center;
    border-radius: 4px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.mobile-lang-options a:hover,
.mobile-lang-options a.active {
    background: rgba(255, 255, 255, 0.2);
    color: #f59e0b;
}

@media (max-width: 992px) {
    .language-switcher {
        display: none; /* Hide on mobile, shown in mobile menu instead */
    }
} 

/* ─────────────────────────────────────────
   SOURCE: styles/modal-unified.css
   ───────────────────────────────────────── */

/* ============================================ */
/* UNIFIED MODAL SYSTEM - Used Across All Pages */
/* Includes Review Modal, Question Modal, etc.  */
/* Last Updated: 2025                          */
/* ============================================ */

/* Professional Modal Overlay */
.modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 999999 !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
    overflow-y: auto;
}

.modal.modal-open,
.modal[style*="display: flex"],
.modal.active {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Professional Modal Content */
.modal-content {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 0 !important;
    max-width: 650px !important;
    width: 100% !important;
    max-height: calc(100vh - 2rem) !important;
    overflow: hidden !important;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 1px rgba(0, 0, 0, 0.05) !important;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    margin: auto;
}

.modal.modal-open .modal-content,
.modal.active .modal-content {
    transform: scale(1) translateY(0) !important;
    opacity: 1 !important;
}

/* Professional Modal Header */
.modal-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 2rem 2rem 1.5rem 2rem !important;
    border-bottom: 2px solid #e5e7eb !important;
    background: #ffffff !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.modal-header h3 {
    margin: 0 !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #1a202c !important;
    letter-spacing: -0.025em;
    flex: 1;
    padding-right: 1rem;
}

/* Professional Modal Body - Enables Scrolling */
.modal-body {
    overflow-y: auto !important;
    flex: 1 !important;
    max-height: calc(90vh - 100px) !important;
    padding: 2rem !important;
}

/* Professional Form Container */
.review-form,
.question-form {
    padding: 2rem !important;
    overflow-y: auto !important;
    flex: 1 !important;
    max-height: calc(100vh - 10rem) !important;
}

/* Smooth scrollbar */
.review-form::-webkit-scrollbar,
.question-form::-webkit-scrollbar,
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.review-form::-webkit-scrollbar-track,
.question-form::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 10px;
}

.review-form::-webkit-scrollbar-thumb,
.question-form::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.review-form::-webkit-scrollbar-thumb:hover,
.question-form::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Professional Close Button */
.close-modal {
    width: 44px !important;
    height: 44px !important;
    background: #ef4444 !important;
    border: 2px solid #dc2626 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 1.5rem !important;
    line-height: 1 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    font-weight: 900 !important;
    flex-shrink: 0 !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3) !important;
    z-index: 1000000 !important;
}

.close-modal::after {
    content: '×';
    display: block;
    font-size: inherit;
    line-height: 1;
}

.close-modal:hover,
.close-modal:focus {
    background: #dc2626 !important;
    border-color: #b91c1c !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4) !important;
}

.close-modal:active {
    transform: scale(0.95) !important;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4) !important;
}

/* Professional Form Groups */
.form-group {
    margin-bottom: 1.5rem !important;
    position: relative;
}

.form-group label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    color: #374151 !important;
    letter-spacing: 0.01em;
}

/* Professional Inputs */
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
    width: 100% !important;
    padding: 0.75rem !important;
    border: 2px solid #d1d5db !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
    color: #1f2937 !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: #f7b731 !important;
    box-shadow: 0 0 0 3px rgba(247, 183, 49, 0.1) !important;
    background: #ffffff !important;
}

.form-group textarea {
    resize: vertical !important;
    min-height: 120px !important;
    line-height: 1.6 !important;
}

/* Professional Star Rating */
.star-rating {
    display: flex !important;
    flex-direction: row-reverse !important;
    justify-content: flex-end !important;
    gap: 0.5rem !important;
    padding: 1rem !important;
    background: #f9fafb !important;
    border-radius: 12px !important;
    border: 1px solid #e5e7eb !important;
    margin-bottom: 1.5rem !important;
}

.star-rating input {
    display: none !important;
}

.star-rating label {
    font-size: 2rem !important;
    color: #d1d5db !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    line-height: 1 !important;
}

.star-rating label::before {
    content: '★' !important;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #fbbf24 !important;
    transform: scale(1.1);
}

.star-rating input:checked ~ label {
    color: #f7b731 !important;
    transform: scale(1.05);
}

/* Character Counter */
.char-count,
.char-counter {
    display: block !important;
    margin-top: 0.25rem !important;
    font-size: 0.85rem !important;
    color: #6b7280 !important;
    text-align: right !important;
    font-weight: 500;
}

/* Professional Checkbox */
.form-group.checkbox,
.form-group.checkbox-group {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.form-group.checkbox input[type="checkbox"],
.form-group.checkbox-group input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    accent-color: #f7b731;
    margin: 0;
    transform: scale(1.2);
}

.form-group.checkbox label,
.form-group.checkbox-group label {
    margin: 0 !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    color: #64748b !important;
    cursor: pointer !important;
}

/* Professional Submit Button */
.primary-btn,
.btn-primary {
    width: 100% !important;
    padding: 1rem 2rem !important;
    background: linear-gradient(135deg, #f7b731 0%, #f39c12 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(247, 183, 49, 0.3) !important;
    letter-spacing: 0.025em;
}

.primary-btn:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(247, 183, 49, 0.4) !important;
}

.primary-btn:active,
.btn-primary:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(247, 183, 49, 0.3) !important;
}

/* Form Actions */
.form-actions {
    display: flex !important;
    gap: 1rem !important;
    margin-top: 2rem !important;
}

.btn-secondary {
    flex: 1;
    padding: 1rem 2rem !important;
    background: #f5f5f5 !important;
    color: #333 !important;
    border: 2px solid #e5e7eb !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
}

.btn-secondary:hover {
    background: #e5e7eb !important;
    border-color: #d1d5db !important;
}

/* Photo Preview */
.photo-preview,
.photo-upload-preview {
    display: flex !important;
    gap: 1rem !important;
    flex-wrap: wrap !important;
    margin-top: 1rem !important;
}

.photo-preview img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    border: 2px solid #e5e7eb !important;
    transition: all 0.3s ease !important;
}

.photo-preview img:hover {
    border-color: #f7b731 !important;
    transform: scale(1.05) !important;
}

/* Lock body scroll when modal is open */
body.modal-open {
    overflow: hidden !important;
}

/* ============================================ */
/* RESPONSIVE DESIGN - ALL BREAKPOINTS         */
/* ============================================ */

/* Large Desktop */
@media (max-width: 1440px) {
    .modal-content {
        max-width: 600px !important;
    }

    .review-form,
    .question-form {
        padding: 2.8rem !important;
    }

    .modal-header {
        padding: 2.8rem 2.8rem 1.5rem 2.8rem !important;
    }

    .modal-body {
        padding: 2.8rem !important;
    }
}

/* Standard Desktop */
@media (max-width: 1200px) {
    .modal-content {
        max-width: 550px !important;
    }

    .review-form,
    .question-form {
        padding: 2.5rem !important;
    }

    .modal-header {
        padding: 2.5rem 2.5rem 1.5rem 2.5rem !important;
    }

    .modal-body {
        padding: 2.5rem !important;
    }

    .modal-header h3 {
        font-size: 2.1rem !important;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .modal-content {
        max-width: 85% !important;
    }

    .review-form,
    .question-form {
        padding: 2.2rem !important;
    }

    .modal-header {
        padding: 2.2rem 2.2rem 1.5rem 2.2rem !important;
    }

    .modal-body {
        padding: 2.2rem !important;
    }

    .modal-header h3 {
        font-size: 2rem !important;
    }

    .close-modal {
        width: 48px !important;
        height: 48px !important;
        font-size: 1.7rem !important;
    }
}

/* Tablet Portrait */
@media (max-width: 834px) {
    .modal {
        padding: 1rem !important;
        align-items: flex-start !important;
        padding-top: 2rem !important;
    }

    .modal-content {
        max-width: 95% !important;
        border-radius: 20px !important;
        max-height: calc(100vh - 2rem) !important;
    }

    .review-form,
    .question-form {
        padding: 2rem !important;
    }

    .modal-header {
        padding: 2rem 2rem 1.2rem 2rem !important;
    }

    .modal-body {
        padding: 2rem !important;
    }

    .modal-header h3 {
        font-size: 1.9rem !important;
        padding-right: 0.8rem;
    }

    .close-modal {
        width: 45px !important;
        height: 45px !important;
        font-size: 1.6rem !important;
    }
}

/* Mobile Landscape */
@media (max-width: 768px) {
    .modal {
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(4px) !important;
        padding: 0.5rem !important;
        align-items: flex-start !important;
        padding-top: 1rem !important;
    }

    .modal-content {
        background: #ffffff !important;
        max-width: 100% !important;
        border-radius: 16px !important;
        max-height: calc(100vh - 1rem) !important;
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.15),
            0 3px 10px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid #e5e7eb !important;
    }

    .review-form,
    .question-form {
        padding: 1.5rem !important;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem !important;
        align-items: center !important;
        gap: 1rem;
        flex-wrap: nowrap;
    }

    .modal-body {
        padding: 1.5rem !important;
    }

    .modal-header h3 {
        font-size: 1.5rem !important;
        color: #1a202c !important;
        flex: 1;
        min-width: 0;
        padding-right: 0.5rem;
    }

    .close-modal {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.4rem !important;
    }

    .form-group {
        margin-bottom: 1.2rem !important;
    }

    .form-group label {
        font-size: 0.95rem !important;
        margin-bottom: 0.4rem !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem !important;
        font-size: 1rem !important;
        border-radius: 10px !important;
    }

    .star-rating {
        gap: 0.3rem !important;
        padding: 0.8rem !important;
    }

    .star-rating label {
        font-size: 1.8rem !important;
    }
}

/* Large Mobile */
@media (max-width: 640px) {
    .modal {
        padding: 0.3rem !important;
        padding-top: 1rem !important;
    }

    .modal-content {
        border-radius: 16px !important;
        max-height: calc(100vh - 0.6rem) !important;
    }

    .review-form,
    .question-form {
        padding: 1.5rem !important;
    }

    .modal-body {
        padding: 1.5rem !important;
    }

    .modal-header h3 {
        font-size: 1.6rem !important;
    }

    .star-rating label {
        font-size: 2rem !important;
    }
}

/* Standard Mobile */
@media (max-width: 480px) {
    .modal {
        padding: 0.25rem !important;
        padding-top: 0.5rem !important;
        background: rgba(0, 0, 0, 0.4) !important;
    }

    .modal-content {
        border-radius: 14px !important;
        max-height: calc(100vh - 0.5rem) !important;
    }

    .review-form,
    .question-form {
        padding: 1.2rem !important;
    }

    .modal-header {
        padding: 1.2rem 1.2rem 0.8rem 1.2rem !important;
    }

    .modal-body {
        padding: 1.2rem !important;
    }

    .modal-header h3 {
        font-size: 1.3rem !important;
    }

    .close-modal {
        width: 36px !important;
        height: 36px !important;
        font-size: 1.2rem !important;
    }

    .star-rating {
        gap: 0.2rem !important;
        padding: 0.7rem !important;
    }

    .star-rating label {
        font-size: 1.6rem !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem !important;
        font-size: 0.95rem !important;
    }

    .primary-btn,
    .btn-primary {
        padding: 0.9rem 1.5rem !important;
        font-size: 0.95rem !important;
    }

    .photo-preview img {
        width: 75px !important;
        height: 75px !important;
    }
}

/* Small Mobile */
@media (max-width: 375px) {
    .modal-content {
        padding: 0 !important;
    }

    .review-form,
    .question-form {
        padding: 1rem !important;
    }

    .modal-header {
        padding: 1rem 1rem 0.8rem 1rem !important;
    }

    .modal-body {
        padding: 1rem !important;
    }

    .modal-header h3 {
        font-size: 1.4rem !important;
    }

    .star-rating label {
        font-size: 1.6rem !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.8rem !important;
        font-size: 0.95rem !important;
    }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
    .modal {
        padding: 0.1rem !important;
        padding-top: 0.2rem !important;
    }

    .modal-content {
        border-radius: 12px !important;
        max-height: calc(100vh - 0.2rem) !important;
    }

    .review-form,
    .question-form {
        padding: 0.8rem !important;
    }

    .modal-header {
        padding: 0.8rem 0.8rem 0.6rem 0.8rem !important;
    }

    .modal-body {
        padding: 0.8rem !important;
    }

    .modal-header h3 {
        font-size: 1.3rem !important;
        line-height: 1.1;
    }

    .close-modal {
        width: 34px !important;
        height: 34px !important;
        font-size: 1.1rem !important;
        padding: 0.4rem !important;
    }

    .star-rating {
        gap: 0.1rem !important;
        padding: 0.5rem !important;
    }

    .star-rating label {
        font-size: 1.5rem !important;
    }

    .form-group {
        margin-bottom: 1.2rem !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem !important;
        font-size: 0.9rem !important;
        border-radius: 10px !important;
    }

    .photo-preview img {
        width: 65px !important;
        height: 65px !important;
    }
}

/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 600px) {
    .modal {
        align-items: flex-start !important;
        padding-top: 0.5rem !important;
    }

    .modal-content {
        max-height: calc(100vh - 1rem) !important;
    }

    .review-form,
    .question-form {
        padding: 1.5rem !important;
    }

    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem !important;
    }

    .modal-body {
        padding: 1.5rem !important;
    }

    .modal-header h3 {
        font-size: 1.6rem !important;
    }

    .star-rating {
        padding: 0.8rem !important;
    }

    .form-group {
        margin-bottom: 1.2rem !important;
    }
}

/* Ultra-wide Screen */
@media (min-width: 1920px) {
    .modal-content {
        max-width: 800px !important;
    }

    .review-form,
    .question-form {
        padding: 4rem !important;
    }

    .modal-header {
        padding: 4rem 4rem 1.5rem 4rem !important;
    }

    .modal-body {
        padding: 4rem !important;
    }

    .modal-header h3 {
        font-size: 2.5rem !important;
    }

    .close-modal {
        width: 55px !important;
        height: 55px !important;
        font-size: 2rem !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .close-modal {
        min-width: 44px !important;
        min-height: 44px !important;
        padding: 0.8rem !important;
    }

    .close-modal:hover {
        transform: none !important;
        background: #ef4444 !important;
    }

    .close-modal:active {
        transform: scale(0.95) !important;
        background: #dc2626 !important;
    }

    .star-rating label {
        padding: 0.3rem !important;
        margin: 0.1rem !important;
        min-width: 44px !important;
        min-height: 44px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .primary-btn,
    .btn-primary {
        min-height: 48px !important;
        padding: 1rem 2rem !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px !important;
        font-size: 16px !important; /* Prevent zoom on iOS */
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .modal-content {
        border: 3px solid #000000 !important;
        background: #ffffff !important;
    }

    .close-modal {
        background: #000000 !important;
        color: #ffffff !important;
        border: 2px solid #000000 !important;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        border: 2px solid #000000 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .modal,
    .modal-content,
    .close-modal {
        animation: none !important;
        transition: opacity 0.2s ease !important;
    }

    .close-modal:hover {
        transform: none !important;
    }

    .star-rating label:hover {
        transform: none !important;
    }
}

/* iOS Safari Support */
@supports (-webkit-touch-callout: none) {
    .modal {
        position: fixed !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .modal-content {
        -webkit-overflow-scrolling: touch !important;
    }

    .review-form,
    .question-form,
    .modal-body {
        -webkit-overflow-scrolling: touch !important;
    }
}


/* ─────────────────────────────────────────
   SOURCE: styles/booking-enhancements.css
   ───────────────────────────────────────── */

.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  
  .step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
  }
  
  .progress-step.active .step-number {
    background-color: #f7b731;
    color: white;
  }
  
  .progress-step.completed .step-number {
    background-color: #4caf50;
    color: white;
  }
  
  .step-label {
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
  }
  
  .progress-step.active .step-label {
    color: #333;
    font-weight: 500;
  }
  
  .progress-connector {
    flex-grow: 1;
    height: 3px;
    background-color: #f0f0f0;
    position: relative;
    margin: 0 10px;
    top: -18px;
    z-index: 0;
  }
  
  .progress-step.active + .progress-connector {
    background-color: #f6891f;
  }
  
  .selection-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #4caf50;
    font-size: 24px;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
  }
  
  .transportation-card.selected .selection-indicator {
    opacity: 1;
    transform: scale(1);
  }
  
  .transportation-card {
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .transportation-card:hover,
  .transportation-card.hovering {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .transportation-card.selected {
    border-color: #f6891f;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .size-presets {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
  }
  
  .preset-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: none;
    color: #333;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .preset-btn:hover {
    background-color: #e0e0e0;
  }
  
  .selected-day {
    color: #f6891f;
    font-weight: normal;
    font-size: 14px;
  }
  
  .highlight-section {
    animation: highlight-pulse 2s ease-in-out;
  }
  
  @keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(246, 137, 31, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0); }
  }
  
  /* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .booking-progress {
    /* overflow-x removed — sheet scrolls; inner overflow causes touch conflict */
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .progress-step {
    min-width: 0;
    flex: 1 1 60px;
  }

  .form-group {
    min-width: 0;
    width: 100%;
    margin-right: 0;
  }
}
  .highlight-section {
    animation: highlight-pulse 2s ease-in-out;
  }
  
  @keyframes highlight-pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(246, 137, 31, 0.2); }
    100% { box-shadow: 0 0 0 0 rgba(246, 137, 31, 0); }
  }
  /* For completed steps */
.progress-step.completed .step-number {
    background-color: #4caf50; /* Green */
    color: white;
  }
  
  /* Add a checkmark icon to completed steps */
  .progress-step.completed .step-number::after {
    content: '✓';
    font-weight: bold;
  }
  
  /* Style the connector between a completed step and the next step */
  .progress-step.completed + .progress-connector {
    background-color: #4caf50; /* Green */
  }
  .booking-step[data-step="3"] {
    /* Make sure the step is visible when shown */
    display: block;
    opacity: 1;
  }
  
  .details-form {
    /* Make sure the form is visible */
    display: block;
    opacity: 1;
  }
  
  .form-row {
    /* Ensure proper display of form rows */
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
  }
  
  .form-group {
    /* Style form groups */
    flex: 1;
    min-width: 250px;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }

  /* 
   Add this CSS to your page to support the loading overlay
   and other visual fixes for the booking system 
*/

/* Loading overlay for booking system */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
  font-size: 18px;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3;
  border-top: 5px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Styling for booking widget in loading state */
.booking-widget.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Error styling for form fields */
.form-group input.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 1px #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

/* Payment error message */
.payment-error {
  color: #e74c3c;
  padding: 10px;
  background-color: #fceae9;
  border-radius: 4px;
  margin: 10px 0;
  text-align: center;
}

/* Make PayPal button container maintain height to prevent layout shifts */
#paypal-button-container {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure activity cards handle selected state properly */
.activity-card.has-participants {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.05);
}

/* Fix accommodation cards selected state */
.accommodation-card.selected {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.05);
}

/* Fix meal cards selected state */
.meal-card.has-participants {
  border-color: #3498db;
  background-color: rgba(52, 152, 219, 0.05);
}
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: white;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Share/Save Button Styles */
.share-btn.saved, .save-btn.saved {
  background-color: #4CAF50;
  border-color: #4CAF50;
}

.share-btn.saved:hover, .save-btn.saved:hover {
  background-color: #45a049;
}

.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: rgba(0,0,0,0.85);
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  margin-top: 10px;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

/* ─────────────────────────────────────────
   SOURCE: styles/booking-fixes.css
   ───────────────────────────────────────── */

/**
 * Fix for accommodation display issues
 * Apply this CSS fix to your booking-fixes.css file
 */

/* Fix accommodation cards visibility */
.accommodation-card {
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    background-color: #fff;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .accommodation-card:hover {
    border-color: #c4c4c4;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  }
  
  .accommodation-card.selected {
    border-color: #4a6eb5;
    box-shadow: 0 4px 12px rgba(74, 110, 181, 0.15);
  }
  
  /* Ensure accommodation cards are always visible */
  .accommodation-options .accommodation-card {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Fix accommodation image sizing */
  .accommodation-image {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
  }
  
  .accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Fix accommodation details text alignment */
  .accommodation-details {
    flex: 1;
  }
  
  .accommodation-details h6 {
    margin: 0 0 5px 0;
    font-size: 16px;
    font-weight: 600;
  }
  
  .accommodation-details p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #555;
  }
  
  .accommodation-price {
    font-weight: 600;
    color: #4a6eb5;
  }
  
  /* Fix radio button alignment */
  .accommodation-select {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-left: 15px;
  }
  
  .radio-wrapper {
    position: relative;
    display: block;
    margin-bottom: 8px;
  }
  
  /* Fix nights control visibility */
  .nights-control {
    display: flex;
    align-items: center;
    margin-top: 8px;
  }
  
  .nights-control label {
    margin-right: 8px;
    font-size: 14px;
  }
  
  .nights-control .quantity-input.small {
    height: 30px;
    min-width: 100px;
  }
 

/* ─────────────────────────────────────────
   SOURCE: styles/direct-fix.css
   ───────────────────────────────────────── */

/* Direct Fix Styles for Excursion Pages */
/* This file contains any direct fixes needed for excursion booking pages */

/* Ensure booking buttons are clickable */
.btn-select,
.transportation-card button,
.accommodation-card button {
  cursor: pointer;
  pointer-events: auto;
}

/* Fix for any z-index issues */
.booking-section {
  position: relative;
  z-index: 1;
}







/* ─────────────────────────────────────────
   SOURCE: styles/professional-reviews.css
   ───────────────────────────────────────── */

/* ============================================ */
/* PROFESSIONAL REVIEW SYSTEM                  */
/* TripAdvisor & Booking.com Inspired Design   */
/* ============================================ */

/* Override old review CSS to prevent conflicts */
.star-rating label::before,
.star-rating label::after,
.reviews-section .star-rating label::before,
.reviews-section .star-rating label::after,
#reviewForm .star-rating label::before,
#reviewForm .star-rating label::after,
#questionForm .star-rating label::before,
#questionForm .star-rating label::after {
    content: none !important;
    display: none !important;
}

/* Fix body overflow when modal is open - prevent body scroll */
body.modal-open,
body.ta-modal-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

:root {
    --review-primary: #00aa6c;
    --review-primary-dark: #008c59;
    --review-primary-light: #e6f7f0;
    --review-excellent: #00aa6c;
    --review-very-good: #5cb85c;
    --review-average: #f0ad4e;
    --review-poor: #d9534f;
    --review-text-primary: #1a1a1a;
    --review-text-secondary: #4a5568;
    --review-text-muted: #718096;
    --review-border: #e2e8f0;
    --review-bg-white: #ffffff;
    --review-bg-light: #f8fafc;
    --review-bg-highlight: #f1f5f9;
    --review-shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --review-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --review-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --review-rating-star: #fbbf24;
    --review-verified-badge: #0891b2;
    --review-radius-sm: 4px;
    --review-radius-md: 8px;
    --review-radius-lg: 12px;
    --review-radius-xl: 16px;
}

/* ============================================ */
/* SECTION LAYOUT                              */
/* ============================================ */

.reviews-section {
    background: var(--review-bg-white);
    padding: 3rem 0;
    position: relative;
}

.reviews-section::before {
    display: none;
}

/* Tabs - TripAdvisor Style */
.reviews-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 2px solid var(--review-border);
    padding: 0 1.5rem;
    background: transparent;
}

.tab {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--review-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: -0.01em;
    box-shadow: none;
    min-width: auto;
    margin-bottom: -2px;
    position: relative;
}

.tab::before,
.tab::after {
    display: none;
}

.tab:hover {
    color: var(--review-text-primary);
    background: var(--review-bg-light);
}

.tab.active {
    background: none;
    color: var(--review-primary);
    border-bottom-color: var(--review-primary);
    -webkit-text-fill-color: var(--review-primary);
}

/* ============================================ */
/* CONTAINERS                                  */
/* ============================================ */

.reviews-container,
.qa-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ============================================ */
/* HEADER SECTION                              */
/* ============================================ */

.reviews-header,
.qa-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0;
    background: none;
    border: none;
}

.reviews-header::before,
.qa-header::before {
    display: none;
}

.reviews-header h2,
.qa-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.02em;
    color: var(--review-text-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--review-text-primary);
}

/* Primary Buttons - Booking.com Style */
.write-review,
.ask-question-btn,
.reviews-section .primary-btn {
    background: var(--review-primary);
    color: #fff;
    border: 2px solid var(--review-primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--review-radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--review-shadow-sm);
    text-transform: none;
    letter-spacing: normal;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: visible;
}

.write-review::before,
.ask-question-btn::before,
.reviews-section .primary-btn::before {
    display: none;
}

.write-review:hover,
.ask-question-btn:hover,
.reviews-section .primary-btn:hover {
    background: var(--review-primary-dark);
    border-color: var(--review-primary-dark);
    box-shadow: var(--review-shadow-md);
    transform: translateY(-1px);
}

.write-review:active,
.ask-question-btn:active,
.reviews-section .primary-btn:active {
    transform: translateY(0);
    box-shadow: var(--review-shadow-sm);
}

/* ============================================ */
/* RATING OVERVIEW - TripAdvisor Inspired      */
/* ============================================ */

.reviews-overview {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: var(--review-bg-light);
    border-radius: var(--review-radius-xl);
    border: 1px solid var(--review-border);
    box-shadow: var(--review-shadow-sm);
}

.reviews-overview::before {
    display: none;
}

/* Rating Summary - TripAdvisor Bubble Style */
.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-radius: var(--review-radius-lg);
    background: var(--review-bg-white);
    border: 2px solid var(--review-border);
    box-shadow: var(--review-shadow-sm);
    position: relative;
}

.rating-summary::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg, var(--review-primary-light) 0%, transparent 100%);
    border-radius: var(--review-radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.rating-score {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--review-primary);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: var(--review-primary);
    text-shadow: none;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.rating-score::after {
    content: '/5';
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--review-text-muted);
    -webkit-text-fill-color: var(--review-text-muted);
    margin-left: 0.25rem;
}

.rating-stars {
    font-size: 1.25rem;
    color: var(--review-rating-star);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.25rem;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.2));
}

.review-count {
    font-size: 0.9375rem;
    color: var(--review-text-secondary);
    font-weight: 500;
}

/* Rating Breakdown - Booking.com Style */
.rating-breakdown {
    flex: 1;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.rating-bar:hover {
    transform: translateX(4px);
}

.rating-bar:hover .progress {
    box-shadow: 0 0 0 2px var(--review-primary-light);
}

.rating-bar span:first-child {
    min-width: 70px;
    font-weight: 600;
    color: var(--review-text-primary);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-bar span:first-child::before {
    content: '★';
    color: var(--review-rating-star);
    font-size: 0.875rem;
}

.progress-bar {
    flex: 1;
    height: 10px;
    background: #e5e7eb;
    border-radius: var(--review-radius-md);
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--review-primary) 0%, var(--review-excellent) 100%);
    border-radius: var(--review-radius-md);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 170, 108, 0.3);
    position: relative;
}

.progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rating-bar span:last-child {
    min-width: 40px;
    text-align: right;
    font-weight: 700;
    color: var(--review-text-primary);
    font-size: 0.9375rem;
}

/* ============================================ */
/* CONTROLS & FILTERS                          */
/* ============================================ */

.reviews-controls,
.qa-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    background: var(--review-bg-white);
    border-radius: var(--review-radius-lg);
    border: 1px solid var(--review-border);
    box-shadow: var(--review-shadow-sm);
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.875rem;
    color: var(--review-text-muted);
    pointer-events: none;
}

.search-input,
.qa-search {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border: 1px solid var(--review-border);
    border-radius: var(--review-radius-md);
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: var(--review-bg-white);
    color: var(--review-text-primary);
}

.search-input:focus,
.qa-search:focus {
    border-color: var(--review-primary);
    box-shadow: 0 0 0 3px var(--review-primary-light);
    outline: none;
}

.controls-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    gap: 0.5rem;
}

.filter-btn,
.faq-category-filter {
    padding: 0.625rem 1rem;
    background: var(--review-bg-white);
    border: 1px solid var(--review-border);
    border-radius: var(--review-radius-md);
    font-weight: 500;
    color: var(--review-text-secondary);
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.filter-btn:hover,
.faq-category-filter:hover {
    border-color: var(--review-primary);
    color: var(--review-primary);
    background: var(--review-primary-light);
    box-shadow: var(--review-shadow-sm);
}

.filter-btn.active,
.faq-category-filter.active {
    background: var(--review-primary);
    color: #fff;
    border-color: var(--review-primary);
    box-shadow: var(--review-shadow-sm);
}

.sort-select {
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 1px solid var(--review-border);
    border-radius: var(--review-radius-md);
    font-weight: 500;
    color: var(--review-text-secondary);
    font-size: 0.875rem;
    background: var(--review-bg-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
    background-size: 12px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-select:hover {
    border-color: var(--review-primary);
    background-color: var(--review-bg-light);
}

.sort-select:focus {
    border-color: var(--review-primary);
    box-shadow: 0 0 0 3px var(--review-primary-light);
    outline: none;
}

/* ============================================ */
/* REVIEW CARDS - TripAdvisor Style            */
/* ============================================ */

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

.review-item,
.qa-item {
    padding: 1.75rem;
    background: var(--review-bg-white);
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid var(--review-border);
    transition: all 0.3s ease;
    margin-bottom: 0;
    position: relative;
}

.review-item:first-child {
    border-top: 1px solid var(--review-border);
    border-radius: var(--review-radius-lg) var(--review-radius-lg) 0 0;
}

.review-item:last-child {
    border-radius: 0 0 var(--review-radius-lg) var(--review-radius-lg);
}

.review-item:only-child {
    border-radius: var(--review-radius-lg);
}

.review-item::before,
.qa-item::before {
    display: none;
}

.review-item:hover,
.qa-item:hover {
    background: var(--review-bg-light);
    box-shadow: var(--review-shadow-sm);
    z-index: 1;
}

/* Review Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--review-text-primary);
    margin: 0 0 0.375rem 0;
    letter-spacing: -0.01em;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.location {
    font-size: 0.875rem;
    color: var(--review-text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.location::before {
    content: '📍';
    font-size: 0.75rem;
}

/* Verified Badge - Booking.com Style */
.verified-badge {
    font-size: 0.75rem;
    color: var(--review-verified-badge);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1) 0%, rgba(8, 145, 178, 0.05) 100%);
    border-radius: var(--review-radius-sm);
    border: 1px solid rgba(8, 145, 178, 0.2);
}

.verified-badge i {
    font-size: 0.875rem;
    filter: drop-shadow(0 1px 1px rgba(8, 145, 178, 0.3));
}

.review-date {
    font-size: 0.875rem;
    color: var(--review-text-muted);
    font-weight: 500;
}

/* Review Rating Row */
.review-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.review-item .rating-stars {
    font-size: 1rem;
    gap: 0.125rem;
    margin: 0;
}

.review-title {
    font-weight: 700;
    color: var(--review-text-primary);
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

/* Review Content */
.review-content {
    color: var(--review-text-secondary);
    line-height: 1.6;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.review-content p {
    margin: 0 0 0.75rem 0;
}

.review-content p:last-child {
    margin-bottom: 0;
}

/* Review Photos - Instagram Grid Style */
.review-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.review-photos img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: var(--review-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--review-shadow-sm);
    border: 1px solid var(--review-border);
}

.review-photos img:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: var(--review-shadow-md);
    z-index: 2;
}

/* Review Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--review-border);
    flex-wrap: wrap;
    gap: 0.75rem;
}

.review-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.review-tag {
    background: var(--review-bg-highlight);
    color: var(--review-text-secondary);
    font-size: 0.8125rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--review-radius-md);
    border: 1px solid var(--review-border);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.review-tag::before {
    content: '🏷️';
    font-size: 0.75rem;
}

/* Helpful Button - TripAdvisor Style */
.helpful-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: var(--review-radius-md);
    border: 1px solid var(--review-border);
    background: var(--review-bg-white);
    color: var(--review-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.helpful-btn:hover {
    border-color: var(--review-primary);
    color: var(--review-primary);
    background: var(--review-primary-light);
    box-shadow: var(--review-shadow-sm);
}

.helpful-btn.active {
    background: var(--review-primary);
    color: #fff;
    border-color: var(--review-primary);
}

.helpful-btn i {
    transition: transform 0.3s ease;
}

.helpful-btn:hover i {
    transform: scale(1.2);
}

/* ============================================ */
/* Q&A SECTION                                 */
/* ============================================ */

.qa-item {
    border-left: 4px solid var(--review-primary);
    border-radius: var(--review-radius-lg);
    background: var(--review-bg-white);
    border-right: 1px solid var(--review-border);
    border-top: 1px solid var(--review-border);
    border-bottom: 1px solid var(--review-border);
    margin-bottom: 1rem;
    box-shadow: var(--review-shadow-sm);
}

.qa-item:hover {
    box-shadow: var(--review-shadow-md);
}

.question-header {
    margin-bottom: 1rem;
}

.question h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--review-text-primary);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.question-meta span {
    font-size: 0.875rem;
    color: var(--review-text-muted);
}

.answer {
    background: var(--review-bg-light);
    border-left: 3px solid var(--review-primary);
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--review-text-secondary);
    border-radius: 0 var(--review-radius-md) var(--review-radius-md) 0;
    margin: 1rem 0;
    line-height: 1.6;
}

.answer::before {
    content: 'A:';
    font-weight: 700;
    color: var(--review-primary);
    margin-right: 0.5rem;
}

.question-actions {
    display: flex;
    justify-content: flex-end;
    padding-top: 0.75rem;
}

/* ============================================ */
/* MODAL - Professional TripAdvisor Style      */
/* ============================================ */

/* Modal Overlay */
.ta-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 9999 !important;
    padding: 2rem 1rem !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    display: none !important;
}

.ta-modal.ta-modal--active {
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
}

.ta-modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

.ta-modal__container {
    background: var(--review-bg-white);
    border-radius: var(--review-radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(0, 0, 0, 0.1);
    border: none;
    max-width: 650px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    transform: scale(0.9) translateY(-20px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    -webkit-overflow-scrolling: touch;
    z-index: 2;
}

.ta-modal.ta-modal--active .ta-modal__container {
    transform: scale(1) translateY(0);
}

/* Custom Scrollbar for Modal */
.ta-modal__container::-webkit-scrollbar {
    width: 8px;
}

.ta-modal__container::-webkit-scrollbar-track {
    background: var(--review-bg-light);
    border-radius: 0 var(--review-radius-xl) var(--review-radius-xl) 0;
}

.ta-modal__container::-webkit-scrollbar-thumb {
    background: var(--review-primary);
    border-radius: 4px;
}

.ta-modal__container::-webkit-scrollbar-thumb:hover {
    background: var(--review-primary-dark);
}

/* Modal Header - TripAdvisor Professional Design */
.ta-modal__header {
    padding: 2rem 2.5rem;
    border-bottom: 2px solid var(--review-border);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: var(--review-radius-xl) var(--review-radius-xl) 0 0;
    position: relative;
}

.ta-modal__header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--review-primary) 0%, var(--review-excellent) 100%);
}

.ta-modal__header-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ta-modal__logo-mark svg {
    filter: drop-shadow(0 2px 4px rgba(0, 170, 108, 0.2));
}

.ta-modal__title {
    font-size: 1.75rem !important;
    font-weight: 700 !important;
    color: var(--review-text-primary) !important;
    margin: 0 !important;
    letter-spacing: -0.02em !important;
    line-height: 1.2 !important;
}

.ta-modal__subtitle {
    font-size: 0.875rem;
    color: var(--review-text-muted);
    margin: 0.25rem 0 0 0;
    font-weight: 400;
}

.ta-modal__close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--review-text-muted);
    border-radius: 50%;
    border: 2px solid var(--review-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.ta-modal__close:hover {
    background: #fff;
    color: var(--review-poor);
    border-color: var(--review-poor);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 4px 12px rgba(217, 83, 79, 0.3);
}

/* Modal Body - Enhanced Padding and Styling */
.ta-modal__body {
    padding: 2.5rem;
    background: #ffffff;
    position: relative;
    overflow: visible;
    border-radius: 0 0 var(--review-radius-xl) var(--review-radius-xl);
}

.ta-modal__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 170, 108, 0.02) 0%, transparent 20%);
    pointer-events: none;
    z-index: 0;
}

.ta-modal__body form,
.ta-review-form {
    position: relative;
    z-index: 1;
}

/* Modal Footer */
.ta-modal__footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--review-border);
}

/* Form Styling - Professional Design */
.reviews-section .form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.reviews-section .form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--review-text-primary);
    margin-bottom: 0.625rem;
    display: block;
    letter-spacing: -0.01em;
}

.reviews-section .form-group label .required {
    color: #ef4444;
    margin-left: 0.25rem;
    font-weight: 700;
}

.reviews-section .form-group input,
.reviews-section .form-group textarea,
.reviews-section .form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--review-border);
    border-radius: var(--review-radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--review-bg-white);
    color: var(--review-text-primary);
    line-height: 1.5;
}

.reviews-section .form-group input::placeholder,
.reviews-section .form-group textarea::placeholder {
    color: var(--review-text-muted);
    opacity: 0.7;
}

.reviews-section .form-group input:hover,
.reviews-section .form-group textarea:hover,
.reviews-section .form-group select:hover {
    border-color: var(--review-primary);
}

.reviews-section .form-group input:focus,
.reviews-section .form-group textarea:focus,
.reviews-section .form-group select:focus {
    border-color: var(--review-primary);
    box-shadow: 0 0 0 4px var(--review-primary-light);
    outline: none;
    background: #fff;
}

.reviews-section .form-group textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* Input Icons */
.reviews-section .form-group input[type="email"]::before {
    content: '📧';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Star Rating in Form - Interactive TripAdvisor Style */
.reviews-section .star-rating {
    display: flex !important;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0.75rem 0;
    padding: 1rem;
    background: var(--review-bg-light);
    border-radius: var(--review-radius-lg);
    border: 2px dashed var(--review-border);
    flex-direction: row-reverse;
}

.reviews-section .star-rating input {
    display: none !important;
}

.reviews-section .star-rating label {
    font-size: 2rem !important;
    color: #d1d5db !important;
    cursor: pointer;
    transition: all 0.2s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Remove any ::before content from old CSS */
.reviews-section .star-rating label::before {
    content: none !important;
    display: none !important;
}

.reviews-section .star-rating label::after {
    content: none !important;
    display: none !important;
}

.reviews-section .star-rating label:hover,
.reviews-section .star-rating label:hover ~ label {
    color: var(--review-rating-star) !important;
    transform: scale(1.1);
}

.reviews-section .star-rating input:checked ~ label {
    color: var(--review-rating-star) !important;
}

.reviews-section .star-rating:hover {
    border-color: var(--review-primary);
    background: var(--review-bg-white);
}

/* Character Counter */
.char-counter {
    font-size: 0.8125rem;
    color: var(--review-text-muted);
    text-align: right;
    margin-top: 0.25rem;
}

/* Photo Upload Preview */
.photo-upload-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.photo-preview-item {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: var(--review-radius-md);
    overflow: hidden;
    border: 2px dashed var(--review-border);
}

.photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.remove-photo {
    position: absolute;
    top: 0.25rem;
    right: 0.25rem;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-photo:hover {
    background: #ef4444;
    transform: scale(1.1);
}

/* Form Row - Side by Side Fields */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Form Help Text */
.form-help {
    display: block;
    font-size: 0.8125rem;
    color: var(--review-text-muted);
    margin-top: 0.375rem;
    line-height: 1.4;
}

.required {
    color: #ef4444;
    font-weight: 700;
}

.optional {
    color: var(--review-text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

/* Enhanced Checkbox */
.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    font-size: 0.9375rem;
    color: var(--review-text-secondary);
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
}

.checkbox-label:hover {
    color: var(--review-text-primary);
}

/* Form Buttons */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--review-border);
}

.btn-primary,
.form-actions button[type="submit"] {
    background: var(--review-primary);
    color: #fff;
    border: none;
    padding: 0.875rem 2rem;
    border-radius: var(--review-radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--review-shadow-sm);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn-primary:hover,
.form-actions button[type="submit"]:hover {
    background: var(--review-primary-dark);
    box-shadow: var(--review-shadow-md);
    transform: translateY(-1px);
}

.btn-primary:active,
.form-actions button[type="submit"]:active {
    transform: translateY(0);
}

.btn-secondary,
.form-actions button[type="button"] {
    background: var(--review-bg-white);
    color: var(--review-text-secondary);
    border: 1px solid var(--review-border);
    padding: 0.875rem 1.5rem;
    border-radius: var(--review-radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover,
.form-actions button[type="button"]:hover {
    background: var(--review-bg-highlight);
    border-color: var(--review-text-secondary);
    color: var(--review-text-primary);
}

/* ============================================ */
/* LOADING & EMPTY STATES                      */
/* ============================================ */

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.spinner-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    animation: spin 1.5s linear infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.loading-text {
    font-size: 0.9375rem;
    color: var(--review-text-muted);
    font-weight: 500;
}

.load-more-btn {
    display: block;
    margin: 2rem auto;
    padding: 0.875rem 2rem;
    background: var(--review-bg-white);
    border: 2px solid var(--review-border);
    border-radius: var(--review-radius-md);
    color: var(--review-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--review-shadow-sm);
}

.load-more-btn:hover {
    background: var(--review-primary);
    color: #fff;
    border-color: var(--review-primary);
    box-shadow: var(--review-shadow-md);
    transform: translateY(-2px);
}

.no-reviews {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--review-bg-light);
    border-radius: var(--review-radius-lg);
    border: 2px dashed var(--review-border);
    margin: 2rem 0;
}

.no-reviews i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--review-text-muted);
    opacity: 0.5;
}

.no-reviews p {
    font-size: 1.125rem;
    color: var(--review-text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* ============================================ */
/* RESPONSIVE DESIGN                           */
/* ============================================ */

@media (max-width: 992px) {
    .reviews-overview {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .rating-summary {
        margin: 0 auto;
        max-width: 240px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 2rem 0;
    }

    .reviews-container,
    .qa-container {
        padding: 1.5rem 1rem;
    }

    .reviews-header,
    .qa-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .reviews-header h2,
    .qa-header h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .review-actions {
        display: flex;
        justify-content: center;
    }

    .reviews-tabs {
        padding: 0 1rem;
    }

    .tab {
        flex: 1;
        text-align: center;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
    }

    .reviews-overview {
        padding: 1.5rem;
    }

    .reviews-controls,
    .qa-controls {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
    }

    .search-box {
        min-width: 100%;
    }

    .controls-right {
        width: 100%;
        flex-direction: column;
    }

    .filter-group {
        width: 100%;
        justify-content: center;
    }

    .sort-select {
        width: 100%;
    }

    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .review-date {
        align-self: flex-start;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .modal-content {
        max-height: 95vh;
        margin: 0.5rem;
    }

    .modal-header {
        padding: 1.25rem 1.5rem;
    }

    .modal-header h3 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.5rem;
    }

    .review-photos {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .review-photos img {
        height: 100px;
    }

    .form-actions {
        flex-direction: column-reverse;
    }

    .form-actions button {
        width: 100%;
    }

    /* TripAdvisor Modal - Tablet */
    .ta-modal__container {
        max-height: 95vh;
        margin: 0.5rem;
    }

    .ta-modal__header {
        padding: 1.5rem 2rem;
    }

    .ta-modal__title {
        font-size: 1.5rem !important;
    }

    .ta-modal__body {
        padding: 2rem;
    }

    .ta-rating-bubbles {
        gap: 0.5rem;
        padding: 1.25rem;
    }

    .ta-rating-bubble {
        padding: 0.5rem;
    }

    .ta-rating-bubble__circle {
        width: 44px;
        height: 44px;
    }

    .ta-rating-bubble__label {
        font-size: 0.75rem;
    }

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

    .ta-modal__footer {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .ta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .reviews-container,
    .qa-container {
        padding: 1rem 0.75rem;
    }

    .reviews-header h2,
    .qa-header h2 {
        font-size: 1.25rem;
    }

    .rating-score {
        font-size: 3rem;
    }

    .review-item,
    .qa-item {
        padding: 1.25rem;
    }

    .reviewer-info h4 {
        font-size: 0.9375rem;
    }

    .review-title {
        font-size: 0.9375rem;
    }

    .review-content {
        font-size: 0.875rem;
    }

    .modal-content {
        border-radius: var(--review-radius-lg);
        max-height: 100vh;
        margin: 0;
        width: 100%;
    }

    .modal-header {
        padding: 1rem 1.25rem;
    }

    .modal-body {
        padding: 1.25rem;
    }

    .reviews-section .star-rating label {
        font-size: 1.75rem;
    }

    /* TripAdvisor Modal - Mobile */
    .ta-modal {
        padding: 0 !important;
    }

    .ta-modal__container {
        border-radius: var(--review-radius-lg);
        max-height: 100vh;
        margin: 0;
        width: 100%;
    }

    .ta-modal__header {
        padding: 1rem 1.5rem;
        border-radius: var(--review-radius-lg) var(--review-radius-lg) 0 0;
    }

    .ta-modal__header-brand {
        gap: 0.75rem;
    }

    .ta-modal__title {
        font-size: 1.25rem !important;
    }

    .ta-modal__subtitle {
        font-size: 0.8125rem;
    }

    .ta-modal__close {
        width: 36px;
        height: 36px;
    }

    .ta-modal__body {
        padding: 1.5rem;
        border-radius: 0 0 var(--review-radius-lg) var(--review-radius-lg);
    }

    .ta-form-section {
        margin-bottom: 1.5rem;
    }

    .ta-form-divider {
        margin: 1.5rem 0;
    }

    .ta-rating-bubbles {
        flex-wrap: wrap;
        padding: 1rem;
        gap: 0.5rem;
    }

    .ta-rating-bubble {
        flex: 0 0 calc(20% - 0.4rem);
        padding: 0.5rem 0.25rem;
    }

    .ta-rating-bubble__circle {
        width: 40px;
        height: 40px;
    }

    .ta-rating-bubble__fill {
        width: 20px;
        height: 20px;
    }

    .ta-rating-bubble__label {
        font-size: 0.6875rem;
    }

    .ta-photo-upload {
        padding: 2rem 1.5rem;
    }

    .ta-photo-upload__text {
        font-size: 0.875rem;
    }

    .ta-photo-upload__hint {
        font-size: 0.75rem;
    }

    .ta-modal__footer {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
}

/* ============================================ */
/* ACCESSIBILITY                               */
/* ============================================ */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus styles for accessibility */
.write-review:focus,
.ask-question-btn:focus,
.filter-btn:focus,
.helpful-btn:focus,
.tab:focus {
    outline: 2px solid var(--review-primary);
    outline-offset: 2px;
}

/* Keyboard navigation */
.tab:focus-visible,
.filter-btn:focus-visible {
    box-shadow: 0 0 0 3px var(--review-primary-light);
}

/* ============================================ */
/* TOAST NOTIFICATION SYSTEM                   */
/* ============================================ */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    pointer-events: none;
}

.toast {
    background: var(--review-bg-white);
    border-radius: var(--review-radius-lg);
    box-shadow: var(--review-shadow-lg);
    padding: 1rem 1.5rem;
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto;
    border-left: 4px solid var(--review-primary);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.hide {
    opacity: 0;
    transform: translateX(400px);
}

.toast-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.toast.success {
    border-left-color: var(--review-excellent);
}

.toast.success .toast-icon {
    background: linear-gradient(135deg, var(--review-excellent), var(--review-very-good));
    color: #fff;
}

.toast.error {
    border-left-color: var(--review-poor);
}

.toast.error .toast-icon {
    background: linear-gradient(135deg, var(--review-poor), #c53030);
    color: #fff;
}

.toast.warning {
    border-left-color: var(--review-average);
}

.toast.warning .toast-icon {
    background: linear-gradient(135deg, var(--review-average), #ed8936);
    color: #fff;
}

.toast.info {
    border-left-color: var(--review-verified-badge);
}

.toast.info .toast-icon {
    background: linear-gradient(135deg, var(--review-verified-badge), #0284c7);
    color: #fff;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.toast-title {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--review-text-primary);
    margin: 0;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--review-text-secondary);
    margin: 0;
    line-height: 1.4;
}

.toast-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--review-text-muted);
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    line-height: 1;
    transition: all 0.3s ease;
    padding: 0;
}

.toast-close:hover {
    background: var(--review-bg-highlight);
    color: var(--review-text-primary);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--review-primary), var(--review-excellent));
    border-radius: 0 0 0 var(--review-radius-lg);
    transition: width linear;
}

@media (max-width: 768px) {
    .toast-container {
        top: 10px;
        right: 10px;
        left: 10px;
        align-items: center;
    }

    .toast {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        transform: translateY(-100px);
    }

    .toast.show {
        transform: translateY(0);
    }

    .toast.hide {
        transform: translateY(-100px);
    }
}

/* ============================================ */
/* PRINT STYLES                                */
/* ============================================ */

@media print {
    .reviews-tabs,
    .reviews-controls,
    .qa-controls,
    .write-review,
    .ask-question-btn,
    .helpful-btn,
    .load-more-btn,
    .ta-modal,
    .toast-container {
        display: none !important;
    }

    .review-item,
    .qa-item {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* ============================================ */
/* TRIPADVISOR-STYLE FORM ELEMENTS             */
/* ============================================ */

.ta-form-section {
    margin-bottom: 2rem;
}

.ta-form-section__label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--review-text-primary);
    margin-bottom: 1rem;
    display: block;
    letter-spacing: -0.01em;
}

.ta-form-divider {
    border: none;
    border-top: 1px solid var(--review-border);
    margin: 2rem 0;
}

.ta-form-group {
    margin-bottom: 1.5rem;
}

.ta-form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--review-text-primary);
    margin-bottom: 0.5rem;
    display: block;
    letter-spacing: -0.01em;
}

.ta-required {
    color: #ef4444;
    margin-left: 0.25rem;
}

.ta-optional {
    color: var(--review-text-muted);
    font-weight: 400;
    font-size: 0.875rem;
}

.ta-form-input,
.ta-form-textarea,
.ta-form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--review-border);
    border-radius: var(--review-radius-md);
    font-size: 0.9375rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--review-bg-white);
    color: var(--review-text-primary);
    line-height: 1.5;
}

.ta-form-input::placeholder,
.ta-form-textarea::placeholder {
    color: var(--review-text-muted);
    opacity: 0.7;
}

.ta-form-input:hover,
.ta-form-textarea:hover,
.ta-form-select:hover {
    border-color: var(--review-primary);
    background: var(--review-bg-light);
}

.ta-form-input:focus,
.ta-form-textarea:focus,
.ta-form-select:focus {
    border-color: var(--review-primary);
    box-shadow: 0 0 0 4px var(--review-primary-light);
    outline: none;
    background: #fff;
}

.ta-form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.ta-form-hint {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--review-text-muted);
    margin-top: 0.5rem;
}

.ta-form-hint svg {
    flex-shrink: 0;
}

.ta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Character Counter */
.ta-char-count {
    font-size: 0.8125rem;
    color: var(--review-text-muted);
    text-align: right;
    margin-top: 0.375rem;
}

.ta-char-count__current {
    font-weight: 600;
    color: var(--review-text-secondary);
}

/* ============================================ */
/* RATING BUBBLES - TRIPADVISOR STYLE          */
/* ============================================ */

.ta-rating-bubbles {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.5rem;
    background: var(--review-bg-light);
    border-radius: var(--review-radius-lg);
    border: 2px solid var(--review-border);
    margin: 1rem 0;
}

.ta-rating-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: var(--review-radius-md);
    transition: all 0.3s ease;
    flex: 1;
    background: transparent;
}

.ta-rating-bubble:hover {
    background: var(--review-bg-white);
    transform: translateY(-4px);
}

.ta-rating-bubble input[type="radio"] {
    display: none;
}

.ta-rating-bubble__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--review-border);
    background: var(--review-bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.ta-rating-bubble:hover .ta-rating-bubble__circle {
    border-color: var(--review-primary);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.2);
}

.ta-rating-bubble__fill {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--review-primary);
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ta-rating-bubble--filled .ta-rating-bubble__circle {
    border-color: var(--review-primary);
    border-width: 4px;
    box-shadow: 0 4px 12px rgba(0, 170, 108, 0.3);
}

.ta-rating-bubble--filled .ta-rating-bubble__fill {
    opacity: 1;
    transform: scale(1);
}

.ta-rating-bubble__label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--review-text-secondary);
    text-align: center;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.ta-rating-bubble--filled .ta-rating-bubble__label,
.ta-rating-bubble:hover .ta-rating-bubble__label {
    color: var(--review-primary);
}

.ta-rating-feedback {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--review-primary);
    margin-top: 0.75rem;
    min-height: 1.5rem;
}

/* ============================================ */
/* PHOTO UPLOAD - DRAG & DROP                  */
/* ============================================ */

.ta-photo-upload {
    border: 2px dashed var(--review-border);
    border-radius: var(--review-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    background: var(--review-bg-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.ta-photo-upload:hover,
.ta-photo-upload--dragover {
    border-color: var(--review-primary);
    background: var(--review-primary-light);
    transform: translateY(-2px);
}

.ta-photo-upload__icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.ta-photo-upload__text {
    font-size: 0.9375rem;
    color: var(--review-text-secondary);
    margin: 0 0 0.5rem 0;
}

.ta-photo-upload__text strong {
    color: var(--review-primary);
    font-weight: 600;
}

.ta-photo-upload__hint {
    font-size: 0.8125rem;
    color: var(--review-text-muted);
    margin: 0;
}

.ta-photo-upload__input {
    display: none;
}

.ta-photo-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.ta-photo-preview-item {
    position: relative;
    width: 100%;
    height: 100px;
    border-radius: var(--review-radius-md);
    overflow: hidden;
    border: 2px solid var(--review-border);
    box-shadow: var(--review-shadow-sm);
}

.ta-photo-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ta-photo-preview-item .remove-photo {
    position: absolute;
    top: 0.375rem;
    right: 0.375rem;
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.ta-photo-preview-item .remove-photo:hover {
    background: #ef4444;
    transform: scale(1.15);
}

/* ============================================ */
/* CHECKBOX - CUSTOM STYLE                     */
/* ============================================ */

.ta-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 1rem;
}

.ta-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.75rem;
    cursor: pointer;
    accent-color: var(--review-primary);
}

.ta-checkbox__text {
    font-size: 0.9375rem;
    color: var(--review-text-secondary);
    font-weight: 500;
}

.ta-checkbox:hover .ta-checkbox__text {
    color: var(--review-text-primary);
}

/* ============================================ */
/* BUTTONS - TRIPADVISOR STYLE                 */
/* ============================================ */

.ta-btn {
    padding: 0.875rem 2rem;
    border-radius: var(--review-radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    line-height: 1;
}

.ta-btn--primary {
    background: var(--review-primary);
    color: #fff;
    box-shadow: var(--review-shadow-sm);
}

.ta-btn--primary:hover {
    background: var(--review-primary-dark);
    box-shadow: var(--review-shadow-md);
    transform: translateY(-1px);
}

.ta-btn--primary:active {
    transform: translateY(0);
}

.ta-btn--ghost {
    background: transparent;
    color: var(--review-text-secondary);
    border: 1px solid var(--review-border);
}

.ta-btn--ghost:hover {
    background: var(--review-bg-highlight);
    border-color: var(--review-text-secondary);
    color: var(--review-text-primary);
}

.ta-modal__cancel {
    background: var(--review-bg-white);
    color: var(--review-text-secondary);
    border: 1px solid var(--review-border);
}

