* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #D2691E;
    --secondary: #CD5C5C;
    --beige: #F5E6D3;
    --warm-earth: #C9A88B;
    --cream: #FFF8F0;
    --dark: #4A3728;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

body.rtl {
    direction: rtl;
}

/* Force LTR for specific sections */
.force-ltr {
  direction: ltr !important;
}
header.force-ltr, header.force-ltr * {
  text-align: left !important;
  direction: ltr !important;
}

/* Header */
header {
    background: var(--cream);
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
}

.logo-image:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(210, 105, 30, 0.25);
    cursor: pointer;
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
}

.logo-link {
    text-decoration: none !important;
    color: var(--primary);
}

.logo-link.logo-text {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none !important;
}

.logo-link.logo-text:hover {
    text-decoration: none !important;
}

.lang-flags {
    display: flex;
    gap: 12px;
}

.flag-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.flag-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.flag-btn.active {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(210, 105, 30, 0.18);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 45vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 25px;
    margin: 15px 5% 10px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    background-image: url('https://images.unsplash.com/photo-1543783207-ec64e4d95325?w=1920&q=90');
    background-size: cover;
    background-position: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    color: white;
    margin: 0;
}

/* Services Section */
.services {
    padding: 15px 5% 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.service-card {
    background: var(--beige);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
    height: 100%;
}

.service-card-link:hover .service-card:not(.coming-soon) {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.service-card.coming-soon:hover .coming-soon-overlay {
    background: rgba(255, 255, 255, 0.85);
    opacity: 1;
}

.coming-soon-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.4);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card.coming-soon:hover .coming-soon-badge {
    transform: scale(1);
}

.service-card.coming-soon .service-image {
    filter: grayscale(20%);
}

.service-card.comcoming-soon:hover .service-image {
    filter: grayscale(50%) brightness(0.9);
}

.img-airbnb {
    /* عکس اتاق که آپلود کردید */
    background-image: url('https://a0.muscache.com/im/pictures/hosting/Hosting-1482630554463418551/original/3b03beff-e532-4755-8368-02d025436b63.jpeg?w=800&q=90');
}

.img-food {
    /* غذای ایرانی - کباب کوبیده */
    background-image: url('https://images.unsplash.com/photo-1603360946369-dc9bb6258143?w=800&q=90');
}

.img-car {
    /* فیات 500 قرمز */
    background-image: url('../images/Toyota-CHR.jpg');
}

.img-tour {
    /* چوروس با شکلات */
    background-image: url('https://dynamic-media-cdn.tripadvisor.com/media/photo-o/12/b4/ea/95/chocolate-con-churros.jpg?w=800&q=90');
}

.service-content {
    padding: 20px;
    text-align: center;
    position: relative;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
}

/* About Section */
.about {
    padding: 20px 5% 25px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.about p {
    font-size: 1.1rem;
    color: var(--dark);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--cream);
    padding: 25px 5%;
    border-top: 2px solid var(--beige);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-text {
    color: var(--dark);
    font-size: 1rem;
}

.footer-text .heart {
    color: var(--secondary);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.6rem;
    }

    .hero-banner {
        height: 350px;
        margin: 15px 3%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .flag-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}