/* ===== RTL LANGUAGE SUPPORT ===== */
.rtl {
    direction: rtl;
    text-align: right;
}

.rtl .nav-menu {
    flex-direction: row-reverse;
}

.rtl .header-top-content {
    flex-direction: row-reverse;
}

.rtl .contact-info {
    order: 2;
}

.rtl .header-actions {
    order: 1;
}

.rtl .hero-text {
    text-align: right;
}

.rtl .about-content {
    flex-direction: row-reverse;
}

.rtl .contact-content {
    flex-direction: row-reverse;
}

.rtl .footer-content {
    text-align: right;
}

.rtl .form-row {
    flex-direction: row-reverse;
}

.rtl .room-features {
    text-align: right;
}

.rtl .tour-features {
    text-align: right;
}

.rtl .service-card {
    text-align: right;
}

.rtl .feature-item {
    flex-direction: row-reverse;
    text-align: right;
}

.rtl .feature-item i {
    margin-left: 15px;
    margin-right: 0;
}

.rtl .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

.rtl .contact-item i {
    margin-left: 15px;
    margin-right: 0;
}

.rtl .social-links {
    justify-content: flex-end;
}

.rtl .newsletter-form {
    flex-direction: row-reverse;
}

.rtl .payment-methods {
    justify-content: flex-start;
}

/* Mobile RTL Adjustments */
@media (max-width: 768px) {
    .rtl .nav-menu {
        text-align: right;
    }
    
    .rtl .mobile-nav-overlay {
        left: 0;
        right: auto;
    }
    
    .rtl .hero-text {
        text-align: center;
    }
    
    .rtl .about-content,
    .rtl .contact-content {
        flex-direction: column;
    }
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ===== VARIABLES ===== */
:root {
    --primary-color: #d4af37;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f1c40f 100%);
    --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #34495e;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* ===== LOADING SCREEN ===== */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    text-align: center;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.loader-bar {
    width: 200px;
    height: 4px;
    background: #f0f0f0;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    animation: loading 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-top {
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 2rem;
}

.contact-info i {
    margin-right: 8px;
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-reservation {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    transition: var(--transition);
}

.btn-reservation:hover {
    background: #b8941f;
}

.btn-rent-car {
    background: var(--accent-color);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    transition: var(--transition);
}

.btn-rent-car:hover {
    background: #c0392b;
}

.btn-vip-transfer {
    background: #8e44ad;
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    transition: var(--transition);
}

.btn-vip-transfer:hover {
    background: #732d91;
}

.language-selector {
    position: relative;
}

.current-lang {
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    min-width: 100px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
}

.language-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown a {
    display: block;
    padding: 8px 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.lang-dropdown a:hover {
    background: var(--light-bg);
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.title-line {
    display: block;
    line-height: 1.2;
}

.main-title {
    color: var(--primary-color);
    font-size: 5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-prev {
    left: 2rem;
}

.hero-next {
    right: 2rem;
}

.hero-prev,
.hero-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary-color);
}

/* ===== QUICK RESERVATION ===== */
.quick-reservation {
    background: var(--white);
    padding: 2rem 0;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.reservation-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.reservation-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.reservation-form-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* ===== ROOMS SECTION ===== */
.rooms {
    padding: 6rem 0;
    background: var(--light-bg);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsive adjustments for rooms grid */
@media (max-width: 1400px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.room-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.room-card:hover .room-overlay {
    opacity: 1;
}

.btn-view-room {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.room-content {
    padding: 2rem;
}

.room-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.room-description {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.room-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    color: var(--text-light);
}

.room-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.room-features span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.room-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 6rem 0;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-btn:hover {
    transform: scale(1.1);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 6rem 0;
    background: var(--light-bg);
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    margin-right: 0.2rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    text-align: left;
}

.contact-info h2::after {
    left: 0;
    transform: none;
}

.contact-info p {
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 4rem 0;
    background: var(--secondary-color);
    color: var(--white);
}

.newsletter-content {
    text-align: center;
}

.newsletter-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 12px 20px;
    border-radius: var(--border-radius);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-logo h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #333;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

.payment-methods {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.payment-methods img {
    height: 30px;
    opacity: 0.8;
    transition: var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    opacity: 0.6;
}

/* ===== FLOATING ELEMENTS ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* VIP Transfer Float Button */
.vip-transfer-float {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: var(--white);
    border-radius: 25px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(142, 68, 173, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: vip-float 3s ease-in-out infinite;
    min-width: 180px;
}

.vip-transfer-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(142, 68, 173, 0.4);
}

.vip-car-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.vip-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.vip-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.vip-subtitle {
    font-size: 11px;
    opacity: 0.9;
    font-weight: 400;
}

.vip-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 25px;
    background: rgba(142, 68, 173, 0.3);
    animation: vip-pulse 2s infinite;
    pointer-events: none;
}

@keyframes vip-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes vip-pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    70% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .btn, .nav-link, .filter-btn, .gallery-btn, .social-link {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link {
        padding: 12px 16px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-controls {
        display: none !important;
    }
}

/* Improved mobile navigation */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Enhanced mobile menu */
.nav-menu {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Better mobile forms */
.form-group input,
.form-group select,
.form-group textarea {
    font-size: 16px; /* Prevents zoom on iOS */
    -webkit-appearance: none;
    border-radius: 8px;
}

/* Mobile-first container improvements */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 576px) {
    .container {
        padding: 0 20px;
    }
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .rent-car-header {
        padding: 100px 0 50px;
    }
    
    .car-filters {
        padding: 25px;
    }
    
    .car-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .main-title {
        font-size: 4rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rooms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    /* Rent-a-car responsive */
    .rent-car-header {
        padding: 90px 0 40px;
        margin-top: 70px;
    }
    
    .car-filters {
        padding: 20px;
        margin-top: -25px;
    }
    
    .cars-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
    
    .car-specs {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    /* Enhanced header mobile layout */
    .header-top {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .header-top-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-info span {
        margin-right: 0;
        font-size: 13px;
    }
    
    .header-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .btn-reservation,
    .btn-rent-car,
    .btn-vip-transfer {
        padding: 8px 12px;
        font-size: 11px;
        border-radius: 15px;
        min-height: 32px;
    }
    
    /* Enhanced mobile navigation */
    .navbar {
        padding: 12px 0;
        position: relative;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
        transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 8px;
    }
    
    .nav-link {
        display: block;
        padding: 16px 20px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        border-radius: 12px;
        transition: all 0.3s ease;
        position: relative;
        text-align: left;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--light-bg);
        color: var(--primary-color);
        transform: translateX(8px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1002;
        position: relative;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-dark);
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        transform-origin: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Mobile navigation overlay */
    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Enhanced Hero Section Mobile */
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        line-height: 1.1;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 20px;
        line-height: 1.4;
    }
    
    .hero-controls {
        display: none;
    }
    
    .hero-indicators {
        bottom: 1.5rem;
        gap: 0.8rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    /* Enhanced Forms Mobile */
    .reservation-form {
        margin: 0 10px;
        padding: 1.5rem;
    }
    
    .reservation-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .reservation-form-content {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .form-group label {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .form-group input,
    .form-group select {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
        border: 2px solid #e0e0e0;
    }
    
    /* Enhanced Grid Layouts */
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .newsletter-form button {
        padding: 14px 20px;
        font-size: 16px;
        border-radius: 10px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    /* Enhanced Float Buttons Mobile */
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .whatsapp-float {
        bottom: 1.5rem;
        left: 1.5rem;
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }
    
    .vip-transfer-float {
        bottom: 1.5rem;
        right: 75px;
        padding: 10px 16px;
        min-width: 140px;
        border-radius: 18px;
        gap: 10px;
    }
    
    .vip-car-icon {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .vip-title {
        font-size: 12px;
    }
    
    .vip-subtitle {
        font-size: 9px;
    }
    
    .add-review-btn {
        bottom: 80px;
        right: 1.5rem;
        padding: 10px 16px;
        font-size: 13px;
        border-radius: 25px;
    }
    
    /* Rent-a-car mobile styles */
    .rent-car-header {
        padding: 80px 0 30px;
        margin-top: 60px;
    }
    
    .rent-car-header h1 {
        font-size: 2.5rem;
    }
    
    .car-filters {
        padding: 15px;
        margin-top: -20px;
    }
    
    .car-filters h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .car-card {
        margin-bottom: 15px;
    }
    
    .car-image {
        height: 200px;
    }
    
    .car-content {
        padding: 20px;
    }
    
    .car-title {
        font-size: 1.2rem;
    }
    
    .car-specs {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .spec-item {
        font-size: 13px;
    }
    
    .car-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .daily-price {
        font-size: 1.5rem;
    }
    
    .btn-rent {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
    
    /* Modal responsive */
    .car-modal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .car-modal .modal-content {
        border-radius: 10px;
    }
    
    .car-modal .modal-header,
    .car-modal .modal-body {
        padding: 15px;
    }
    
    .car-modal .modal-title {
        font-size: 1.2rem;
    }
    
    /* Reservation modal responsive */
    #reservationModal .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    #reservationModal .modal-body {
        padding: 15px;
    }
    
    #reservationModal .row {
        margin: 0;
    }
    
    #reservationModal .col-md-6 {
        padding: 0 0 15px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .room-card,
    .service-card,
    .testimonial-card {
        margin: 0 10px;
    }
    
    .gallery-filter {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 12px;
    }
    
    /* Rent-a-car extra small screens */
    .header-top {
        padding: 5px 0;
        font-size: 12px;
    }
    
    .header-actions {
        gap: 0.5rem;
    }
    
    .btn-reservation,
    .btn-rent-car {
        padding: 4px 10px;
        font-size: 11px;
    }
    
    .rent-car-header {
        padding: 70px 0 20px;
        margin-top: 50px;
    }
    
    .rent-car-header h1 {
        font-size: 2rem;
    }
    
    .rent-car-header p {
        font-size: 14px;
    }
    
    .car-filters {
        padding: 10px;
        margin-top: -15px;
    }
    
    .car-filters h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .filter-section {
        margin-bottom: 15px;
    }
    
    .filter-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .form-select,
    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .car-card {
        margin-bottom: 10px;
    }
    
    .car-image {
        height: 180px;
    }
    
    .car-content {
        padding: 15px;
    }
    
    .car-title {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }
    
    .car-subtitle {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .spec-item {
        font-size: 12px;
    }
    
    .spec-item i {
        width: 14px;
        font-size: 12px;
    }
    
    .daily-price {
        font-size: 1.3rem;
    }
    
    .price-period {
        font-size: 12px;
    }
    
    .btn-rent {
        padding: 8px;
        font-size: 13px;
    }
    
    .no-cars {
        padding: 40px 15px;
    }
    
    .no-cars i {
        font-size: 3rem;
    }
    
    .no-cars h3 {
        font-size: 1.3rem;
    }
    
    .no-cars p {
        font-size: 14px;
    }
    
    /* Modal extra small */
    .car-modal .modal-dialog {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    .car-modal .modal-header {
        padding: 10px;
    }
    
    .car-modal .modal-body {
        padding: 10px;
    }
    
    .car-modal .modal-title {
        font-size: 1.1rem;
    }
    
    #reservationModal .modal-dialog {
        margin: 5px;
        max-width: calc(100% - 10px);
    }
    
    #reservationModal .modal-header,
    #reservationModal .modal-body {
        padding: 10px;
    }
    
    #reservationModal .form-label {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    #reservationModal .form-control {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    #reservationModal .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .reservation-summary {
        padding: 10px;
        margin-top: 15px;
    }
    
    .reservation-summary h6 {
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .summary-content {
        font-size: 13px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8941f;
}

/* ===== SELECTION ===== */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white);
}

/* ===== RENT-A-CAR STYLES ===== */
.rent-car-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.car-filters {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.filter-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.car-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.car-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.car-badge.unavailable {
    background: var(--accent-color);
}

.car-content {
    padding: 1.5rem;
}

.car-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.car-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.car-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.car-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.car-feature i {
    color: var(--primary-color);
    width: 16px;
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.car-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-rent {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-rent:hover {
    background: #b8941f;
    transform: translateY(-1px);
}

.btn-rent:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.btn-details {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-details:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Car Rental Form */
.rental-form {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 600px;
    margin: 2rem auto;
}

.rental-form h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.rental-summary {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.price-breakdown {
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
}

.price-breakdown h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

/* Car Detail Modal */
.car-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    overflow-y: auto;
}

.car-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: var(--white);
    border-radius: var(--border-radius);
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal-body {
    padding: 2rem;
}

.car-gallery {
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.thumbnail-images {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.car-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.spec-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-info h4 {
    margin-bottom: 0.2rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.spec-info p {
    color: var(--text-light);
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Car Styles */
@media (max-width: 768px) {
    .filter-row {
        grid-template-columns: 1fr;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }
    
    .car-features {
        grid-template-columns: 1fr;
    }
    
    .car-actions {
        flex-direction: column;
    }
    
    .rental-form {
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .car-specs {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .thumbnail-images {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .car-card {
        margin: 0 10px;
    }
    
    .car-price {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .rental-form {
        padding: 1rem;
    }
    
    .modal-header,
    .modal-body {
        padding: 1rem;
    }
}

/* Loading States */
.loading-cars {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.car-skeleton {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: pulse 1.5s ease-in-out infinite alternate;
}

.skeleton-image {
    height: 200px;
    background: #e0e0e0;
}

.skeleton-content {
    padding: 1.5rem;
}

.skeleton-line {
    height: 1rem;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.medium {
    width: 80%;
}

@keyframes pulse {
    0% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ===== ADDITIONAL MOBILE OPTIMIZATIONS ===== */

/* Ultra small screens (320px and below) */
@media (max-width: 320px) {
    .container {
        padding: 0 8px;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .reservation-form,
    .contact-form {
        margin: 0 5px;
        padding: 1rem;
    }
    
    .room-card,
    .service-card,
    .testimonial-card {
        margin: 0 5px;
    }
    
    .vip-transfer-float {
        display: none;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Enhanced mobile performance optimizations */
@media (max-width: 768px) {
    /* Reduce animations for better performance */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
    
    /* Optimize images for mobile */
    img {
        image-rendering: optimizeSpeed;
        image-rendering: -webkit-optimize-contrast;
    }
    
    /* Reduce box shadows for performance */
    .room-card,
    .service-card,
    .testimonial-card,
    .reservation-form,
    .contact-form {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Optimize hover effects for touch devices */
    .room-card:hover,
    .service-card:hover,
    .testimonial-card:hover {
        transform: none;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    /* Disable complex animations on mobile */
    .hero-slide,
    .gallery-item img,
    .room-image img {
        transition: opacity 0.3s ease;
    }
    
    .hero-slide img,
    .gallery-item:hover img,
    .room-card:hover .room-image img {
        transform: none;
    }
    
    /* Better text readability */
    .hero-content,
    .section-subtitle,
    .room-features,
    .service-card p,
    .testimonial-content p {
        text-shadow: none;
    }
    
    /* Focus indicators for accessibility */
    button:focus,
    input:focus,
    select:focus,
    textarea:focus,
    a:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Larger tap targets */
    .social-link,
    .gallery-btn,
    .btn-view-room {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Prevent zoom on input focus */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="date"],
    select,
    textarea {
        font-size: 16px;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
    
    /* Better select styling */
    select {
        background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23666' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        background-size: 12px;
        padding-right: 40px;
    }
}

/* Mobile-first utility classes */
.mobile-hidden {
    display: none;
}

.mobile-visible {
    display: block;
}

@media (min-width: 769px) {
    .mobile-hidden {
        display: block;
    }
    
    .mobile-visible {
        display: none;
    }
}

/* Touch-friendly improvements */
.touch-friendly {
    min-height: 44px;
    min-width: 44px;
    padding: 12px;
}

/* Mobile scroll optimizations */
@media (max-width: 768px) {
    html {
        scroll-behavior: auto;
    }
    
    .nav-menu {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Smooth scrolling for mobile */
    .hero,
    .rooms,
    .about,
    .services,
    .gallery,
    .testimonials,
    .contact {
        scroll-margin-top: 80px;
    }
}

/* Mobile print styles */
@media print {
    .header-top,
    .nav-toggle,
    .hero-controls,
    .hero-indicators,
    .back-to-top,
    .whatsapp-float,
    .vip-transfer-float,
    .add-review-btn {
        display: none !important;
    }
    
    .hero {
        height: auto;
        min-height: 300px;
    }
    
    .container {
        padding: 0;
    }
}

/* Mobile landscape optimizations */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* ==========================================================================
   ADMIN PANEL MOBILE RESPONSIVE DESIGN
   ========================================================================== */

/* Admin Dashboard Container */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    position: relative;
}

/* Admin Sidebar */
.admin-sidebar {
    width: 250px;
    background: #2c3e50;
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    transition: transform 0.3s ease;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 250px;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Admin Topbar */
.admin-topbar {
    background: white;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Content Wrapper */
.content-wrapper {
    padding: 1.5rem;
}

/* Page Header */
.page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: #6c757d;
    margin-bottom: 0;
}

/* Admin Cards */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #dee2e6;
    margin-bottom: 1.5rem;
}

.card .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.card .card-body {
    padding: 1.5rem;
}

/* Admin Forms */
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border: 1px solid #ced4da;
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus,
.form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Admin Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.15s ease-in-out;
    min-height: 44px;
}

.btn-primary {
    background: #0d6efd;
    border-color: #0d6efd;
    color: white;
}

.btn-primary:hover {
    background: #0b5ed7;
    border-color: #0a58ca;
}

/* Mobile Responsive Admin Panel */
@media (max-width: 991.98px) {
    /* Hide sidebar by default on mobile */
    .admin-sidebar {
        transform: translateX(-100%);
    }
    
    /* Show sidebar when active */
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    /* Adjust main content */
    .main-content {
        margin-left: 0;
        width: 100%;
    }
    
    /* Mobile sidebar overlay */
    .sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Mobile menu toggle */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.25rem;
        color: #495057;
        padding: 0.5rem;
        margin-right: 1rem;
    }
    
    /* Adjust topbar for mobile */
    .admin-topbar {
        padding: 0.75rem 1rem;
        display: flex;
        align-items: center;
    }
    
    /* Content wrapper mobile */
    .content-wrapper {
        padding: 1rem;
    }
    
    /* Page header mobile */
    .page-header {
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    /* Cards mobile */
    .card {
        margin-bottom: 1rem;
        border-radius: 6px;
    }
    
    .card .card-header {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .card .card-body {
        padding: 1rem;
    }
}

@media (max-width: 767.98px) {
    /* Extra small devices adjustments */
    .content-wrapper {
        padding: 0.75rem;
    }
    
    .page-header {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .page-title {
        font-size: 1.25rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    /* Form adjustments */
    .form-control,
    .form-select {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 0.75rem 0.5rem;
    }
    
    /* Button adjustments */
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .btn-group .btn {
        width: auto;
        margin-bottom: 0;
    }
    
    /* Card adjustments */
    .card .card-header {
        padding: 0.5rem 0.75rem;
    }
    
    .card .card-body {
        padding: 0.75rem;
    }
    
    /* Grid adjustments */
    .row > [class*="col-"] {
        margin-bottom: 1rem;
    }
    
    /* Table responsive */
    .table-responsive {
        border: none;
        margin-bottom: 0;
    }
    
    .table {
        font-size: 0.875rem;
    }
    
    .table th,
    .table td {
        padding: 0.5rem 0.25rem;
        vertical-align: middle;
    }
    
    /* Page actions mobile */
    .page-actions {
        text-align: center;
        margin-top: 1rem;
    }
    
    .page-actions .btn {
        width: auto;
        margin: 0.25rem;
    }
}

@media (max-width: 575.98px) {
    /* Extra small devices */
    .admin-topbar {
        padding: 0.5rem 0.75rem;
    }
    
    .content-wrapper {
        padding: 0.5rem;
    }
    
    .page-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }
    
    .page-title {
        font-size: 1.1rem;
    }
    
    .card {
        margin-bottom: 0.75rem;
    }
    
    .card .card-header {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .card .card-body {
        padding: 0.5rem;
    }
    
    /* Form controls extra small */
    .form-control,
    .form-select {
        padding: 0.625rem 0.5rem;
        font-size: 16px;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    /* Buttons extra small */
    .btn {
        padding: 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* Admin Sidebar Mobile Navigation */
@media (max-width: 991.98px) {
    .sidebar .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .sidebar .nav-link:hover {
        background: rgba(255,255,255,0.1);
    }
    
    .sidebar .nav-link.active {
        background: rgba(255,255,255,0.2);
        border-left: 3px solid #fff;
    }
    
    /* Sidebar header */
    .sidebar .sidebar-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        text-align: center;
    }
    
    .sidebar .sidebar-header h4 {
        color: white;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 600;
    }
}

/* Admin Form Specific Mobile Optimizations */
@media (max-width: 767.98px) {
    /* Checkbox and radio improvements */
    .form-check {
        margin-bottom: 0.75rem;
        padding-left: 2rem;
    }
    
    .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
        margin-left: -2rem;
        margin-top: 0.125rem;
    }
    
    .form-check-label {
        font-size: 0.95rem;
        line-height: 1.4;
        padding-left: 0.5rem;
    }
    
    /* File input improvements */
    .form-control[type="file"] {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Textarea improvements */
    textarea.form-control {
        min-height: 120px;
        resize: vertical;
    }
    
    /* Select improvements */
    .form-select {
        background-size: 16px 12px;
        padding-right: 2.5rem;
    }
    
    /* Input group improvements */
    .input-group {
        flex-wrap: nowrap;
    }
    
    .input-group .form-control {
        min-width: 0;
    }
    
    .input-group-text {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }
}

/* Admin Table Mobile Optimizations */
@media (max-width: 767.98px) {
    .table-responsive {
        border: none;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        min-width: 600px;
        font-size: 0.875rem;
    }
    
    .table th {
        background: #f8f9fa;
        font-weight: 600;
        white-space: nowrap;
        padding: 0.75rem 0.5rem;
    }
    
    .table td {
        padding: 0.75rem 0.5rem;
        vertical-align: middle;
    }
    
    /* Action buttons in tables */
    .table .btn-group {
        display: flex;
        gap: 0.25rem;
    }
    
    .table .btn-sm {
        padding: 0.375rem 0.5rem;
        font-size: 0.8rem;
        min-width: 36px;
        min-height: 36px;
    }
}

/* Admin Modal Mobile Optimizations */
@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-header {
        padding: 0.75rem 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 0.75rem 1rem;
        gap: 0.5rem;
    }
    
    .modal-footer .btn {
        flex: 1;
        margin: 0;
    }
}

/* Admin Alert Mobile Optimizations */
@media (max-width: 767.98px) {
    .alert {
        padding: 0.75rem;
        font-size: 0.9rem;
        margin-bottom: 1rem;
        border-radius: 6px;
    }
    
    .alert-dismissible .btn-close {
        padding: 0.75rem;
        right: 0;
        top: 0;
    }
}

/* Admin Pagination Mobile */
@media (max-width: 767.98px) {
    .pagination {
        justify-content: center;
        margin-bottom: 0;
    }
    
    .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hide some pagination items on very small screens */
    @media (max-width: 575.98px) {
        .pagination .page-item:not(.active):not(.disabled):nth-child(n+3):nth-last-child(n+3) {
            display: none;
        }
    }
}

/* Admin specific mobile menu toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #495057;
    padding: 0.5rem;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .mobile-menu-toggle {
        display: inline-block;
    }
}

/* High DPI mobile screens */
@media (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    .hero-bg,
    .room-image img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
    }
}

.webistmio-link {
    color: green;
    text-decoration: none;
    font-weight: 500;
}

.webistmio-link:hover {
    text-decoration: underline;
}

/* ===== TOURS SECTION ===== */
.tours {
    padding: 6rem 0;
    background: var(--white);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tour-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.tour-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tour-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.tour-card:hover .tour-image img {
    transform: scale(1.1);
}

.tour-content {
    padding: 2rem;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tour-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.tour-price .period {
    color: var(--text-light);
}

.tour-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.tour-features span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.tour-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.tours-view-all {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive Tours Grid */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tours-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tour-content {
        padding: 1.5rem;
    }
}
