/* ===================================
   Oman Tourism Website - Main Stylesheet
   Enhanced with Logo Color Scheme
   =================================== */

/* Root Variables - Updated to Match Logo Colors */
:root {
    --primary-color: #2c2416;       /* Deep brown from ESTD & TRAVEL COMPANY */
    --secondary-color: #b8860b;     /* Golden brown from 2025 */
    --accent-color: #d4af37;        /* Rich gold accent */
    --beige-light: #f5f5dc;         /* Cream/off-white background */
    --beige-dark: #e6e0c9;          /* Slightly darker cream */
    --dark-color: #1a1410;          /* Near black for deep contrast */
    --light-color: #f8f8f2;         /* Very light cream */
    --white: #ffffff;
    --text-dark: #2c2416;
    --text-light: #6b5d4f;
    --border-color: #d4c5a9;
    --shadow: 0 4px 6px rgba(44, 36, 22, 0.1);
    --shadow-lg: 0 10px 30px rgba(44, 36, 22, 0.15);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-color);
    overflow-x: hidden;
}

body[dir="rtl"] {
    font-family: 'Cairo', sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
    background: var(--primary-color);
    color: var(--beige-light);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--secondary-color);
}

.top-contact a {
    color: var(--accent-color);
    margin-right: 20px;
}

.top-contact i {
    margin-right: 5px;
    color: var(--beige-dark);
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.language-switcher a {
    color: var(--accent-color);
    opacity: 0.8;
    padding: 5px 10px;
    border-radius: 5px;
    transition: var(--transition);
}

.language-switcher a.active {
    opacity: 1;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--accent-color);
}

.language-switcher span {
    opacity: 0.5;
}

.social-links a {
    color: var(--beige-light);
    margin-left: 10px;
    font-size: 16px;
    opacity: 0.8;
    transition: var(--transition);
}

[dir="rtl"] .social-links a {
    margin-left: 0;
    margin-right: 10px;
}

.social-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    transform: translateY(-2px);
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    background: var(--beige-light);
    box-shadow: var(--shadow);
    padding: 15px 0;
    border-bottom: 3px solid var(--secondary-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 60px;
    filter: drop-shadow(0 3px 4px rgba(0,0,0,0.15));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 15px !important;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link i {
    margin-right: 5px;
    color: var(--secondary-color);
}

[dir="rtl"] .nav-link i {
    margin-right: 0;
    margin-left: 5px;
}

.nav-link .badge {
    font-size: 10px;
    padding: 2px 5px;
    margin-left: 3px;
    background: var(--secondary-color);
    color: var(--primary-color);
}

[dir="rtl"] .nav-link .badge {
    margin-left: 0;
    margin-right: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline-primary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-user {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 500;
}

.btn-user:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    border-top: 3px solid var(--secondary-color);
    background: var(--beige-light);
}

.dropdown-item {
    padding: 10px 20px;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.dropdown-item i {
    margin-right: 10px;
    width: 20px;
    color: var(--secondary-color);
}

[dir="rtl"] .dropdown-item i {
    margin-right: 0;
    margin-left: 10px;
}

/* ===================================
   Hero Section
   =================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--beige-light);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--accent-color);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-hero-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--secondary-color);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--beige-light);
    border-color: var(--beige-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(184, 134, 11, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--beige-light);
    border: 2px solid var(--beige-light);
}

.btn-hero-secondary:hover {
    background: var(--beige-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================
   Search Section
   =================================== */
.search-section {
    position: relative;
    margin-top: -80px;
    z-index: 10;
}

.search-box {
    background: var(--beige-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--secondary-color);
}

.search-form label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}

.input-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    z-index: 5;
}

[dir="rtl"] .input-icon {
    left: auto;
    right: 15px;
}

.search-form .form-control,
.search-form .form-select {
    padding-left: 45px;
    height: 50px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: var(--transition);
    background: var(--white);
}

[dir="rtl"] .search-form .form-control,
[dir="rtl"] .search-form .form-select {
    padding-left: 15px;
    padding-right: 45px;
}

.search-form .form-control:focus,
.search-form .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 0.2rem rgba(184, 134, 11, 0.15);
}

.btn-search {
    background: var(--secondary-color);
    color: var(--primary-color);
    height: 50px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-search:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ===================================
   Statistics Section
   =================================== */
.statistics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.stat-card {
    background: rgba(245, 245, 220, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    color: var(--beige-light);
    transition: var(--transition);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-card:hover {
    background: rgba(245, 245, 220, 0.25);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--beige-light);
}

.stat-label {
    font-size: 16px;
    opacity: 0.95;
    color: var(--beige-light);
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-description {
    font-size: 16px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   Regions Section
   =================================== */
.regions-section {
    padding: 80px 0;
    background: var(--beige-light);
}

.region-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.region-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.region-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.region-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.region-card:hover .region-image img {
    transform: scale(1.1);
}

.region-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.region-card:hover .region-overlay {
    opacity: 1;
}

.btn-region {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transform: translateY(20px);
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.region-card:hover .btn-region {
    transform: translateY(0);
}

.btn-region:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.region-content {
    padding: 25px;
}

.region-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.region-description {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   Featured Places Section
   =================================== */
.featured-section {
    padding: 80px 0;
    background: var(--light-color);
}

.place-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.place-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.place-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.place-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.place-card:hover .place-image img {
    transform: scale(1.1);
}

.place-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

[dir="rtl"] .place-badge {
    left: auto;
    right: 15px;
}

.place-badge.premium {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
}

.place-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--white);
    color: var(--primary-color);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

[dir="rtl"] .place-favorite {
    right: auto;
    left: 15px;
}

.place-favorite:hover,
.place-favorite.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.place-rating {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(44, 36, 22, 0.9);
    color: var(--beige-light);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

[dir="rtl"] .place-rating {
    right: auto;
    left: 15px;
}

.place-rating i {
    color: var(--accent-color);
    margin-right: 3px;
}

[dir="rtl"] .place-rating i {
    margin-right: 0;
    margin-left: 3px;
}

.place-content {
    padding: 20px;
}

.place-location {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 10px;
}

.place-location i {
    color: var(--secondary-color);
    margin-right: 5px;
}

[dir="rtl"] .place-location i {
    margin-right: 0;
    margin-left: 5px;
}

.place-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.place-title a {
    color: var(--primary-color);
}

.place-title a:hover {
    color: var(--secondary-color);
}

.place-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.place-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.place-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
}

.place-price i {
    margin-right: 5px;
    color: var(--secondary-color);
}

[dir="rtl"] .place-price i {
    margin-right: 0;
    margin-left: 5px;
}

.place-price .free {
    color: #28a745;
}

.btn-place-details {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.btn-place-details:hover {
    background: transparent;
    color: var(--secondary-color);
}

.btn-view-more {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
}

.btn-view-more:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ===================================
   AI Promo Section
   =================================== */
.ai-promo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--beige-light);
}

.ai-promo-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.ai-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid var(--accent-color);
    color: var(--beige-light);
}

.ai-promo-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--beige-light);
}

.ai-promo-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--beige-light);
}

.ai-features {
    list-style: none;
    margin-bottom: 30px;
}

.ai-features li {
    padding: 10px 0;
    font-size: 16px;
    color: var(--beige-light);
}

.ai-features i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 18px;
}

[dir="rtl"] .ai-features i {
    margin-right: 0;
    margin-left: 10px;
}

.ai-promo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-ai-primary,
.btn-ai-secondary {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-ai-primary {
    background: var(--beige-light);
    color: var(--primary-color);
    border: 2px solid var(--beige-light);
}

.btn-ai-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.btn-ai-secondary {
    background: transparent;
    color: var(--beige-light);
    border: 2px solid var(--beige-light);
}

.btn-ai-secondary:hover {
    background: var(--beige-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* ===================================
   Why Choose Us Section
   =================================== */
.why-choose-section {
    padding: 80px 0;
    background: var(--beige-light);
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotateY(360deg);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-text {
    color: var(--text-light);
    font-size: 14px;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--primary-color);
    color: var(--beige-light);
}

.footer-top {
    padding: 60px 0 40px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    color: var(--beige-light);
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
}

[dir="rtl"] .footer-title::after {
    left: auto;
    right: 0;
}

.footer-text {
    color: var(--beige-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--beige-light);
    border: 2px solid transparent;
}

.social-icon:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--beige-light);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-links i {
    margin-right: 8px;
    color: var(--accent-color);
}

[dir="rtl"] .footer-links i {
    margin-right: 0;
    margin-left: 8px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 12px;
    margin-top: 3px;
    font-size: 16px;
}

[dir="rtl"] .footer-contact i {
    margin-right: 0;
    margin-left: 12px;
}

.footer-contact a {
    color: var(--beige-light);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-newsletter {
    background: rgba(0, 0, 0, 0.2);
    padding: 40px 0;
}

.newsletter-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--beige-light);
}

.newsletter-title i {
    margin-right: 10px;
    color: var(--accent-color);
}

[dir="rtl"] .newsletter-title i {
    margin-right: 0;
    margin-left: 10px;
}

.newsletter-text {
    color: var(--beige-light);
    margin: 0;
}

.newsletter-form .form-control {
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 25px 0 0 25px;
    padding: 0 20px;
    background: var(--beige-light);
}

[dir="rtl"] .newsletter-form .form-control {
    border-radius: 0 25px 25px 0;
}

.btn-newsletter {
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 0 30px;
    font-weight: 600;
    transition: var(--transition);
}

[dir="rtl"] .btn-newsletter {
    border-radius: 25px 0 0 25px;
}

.btn-newsletter:hover {
    background: var(--beige-light);
    color: var(--primary-color);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
}

.copyright-text {
    margin: 0;
    color: var(--beige-light);
}

.payment-methods {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

[dir="rtl"] .payment-methods {
    justify-content: flex-start;
}

.payment-methods span {
    font-size: 14px;
    margin-right: 10px;
    color: var(--beige-light);
}

[dir="rtl"] .payment-methods span {
    margin-right: 0;
    margin-left: 10px;
}

.payment-methods img {
    height: 30px;
    background: var(--beige-light);
    padding: 5px;
    border-radius: 5px;
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

[dir="rtl"] .scroll-top {
    right: auto;
    left: 30px;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* ===================================
   Places Listing Page
   =================================== */
.filters-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.filters-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-dark);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: var(--beige-light);
    border-radius: 10px;
}

.results-count {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.results-count i {
    color: var(--secondary-color);
}

.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1 / -1;
}

.no-results i {
    font-size: 80px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.no-results h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .ai-promo-title {
        font-size: 32px;
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
    }
    
    .search-box {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .top-bar {
        text-align: center;
    }
    
    .top-contact,
    .top-right {
        justify-content: center;
        margin-bottom: 10px;
    }
    
    .payment-methods {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .places-grid {
        grid-template-columns: 1fr;
    }
}
.hotel-card { transition: transform 0.3s ease, box-shadow 0.3s ease; height: 100%; }
        .hotel-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
        .hotel-image { height: 250px; object-fit: cover; width: 100%; background-color: #f8f9fa; }
        .hotel-image.loading { background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%); background-size: 200% 100%; animation: loading 1.5s infinite; }
        @keyframes loading { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
        .rating { color: #ffc107; }
        .price { color: #28a745; font-weight: bold; font-size: 1.2em; }
        .region-badge { background: linear-gradient(45deg, #007bff, #0056b3); color: white; }
        .star-rating { color: #ffc107; }
        .card-body { display: flex; flex-direction: column; }
        .card-text { flex-grow: 1; }
        .amenities { font-size: 0.9em; color: #6c757d; }
        .filter-section { background: #f8f9fa; border-radius: 10px; padding: 20px; margin-bottom: 30px; }
        .lazy { opacity: 0; transition: opacity 0.3s; }
        .lazy.loaded { opacity: 1; }