/* سیستم رزرو اقامتگاه لوکس - استایل‌های مدرن */

:root {
    /* پالت رنگی لوکس - مشکی، سفید و طلایی */
    --primary-color: #d4af37; /* طلایی اصلی */
    --primary-light: #f4e4a6; /* طلایی روشن */
    --primary-dark: #b8860b; /* طلایی تیره */
    --secondary-color: #000000; /* مشکی */
    --success-color: #28a745; /* سبز برای موفقیت */
    --danger-color: #dc3545; /* قرمز برای خطا */
    --warning-color: #ffc107; /* زرد برای هشدار */
    --info-color: #17a2b8; /* آبی برای اطلاعات */
    --light-color: #ffffff; /* سفید */
    --dark-color: #000000; /* مشکی */
    --luxury-gold: #d4af37; /* طلایی لوکس */
    --luxury-silver: #c0c0c0; /* نقره‌ای برای تکمیل */

    /* رنگ‌های تکمیلی لوکس */
    --accent-color: #f4e4a6; /* طلایی روشن */
    --muted-color: #666666; /* خاکستری ملایم */
    --border-color: #e0e0e0; /* حاشیه خاکستری روشن */
    --shadow-color: rgba(0, 0, 0, 0.1); /* سایه مشکی */
    --glass-bg: rgba(255, 255, 255, 0.9); /* شیشه سفید */
    --glass-border: rgba(212, 175, 55, 0.2); /* حاشیه طلایی شیشه */

    /* فاصله‌ها */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 5rem;

    /* Border radius */
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-2xl: 2rem;

    /* Shadows - لوکس */
    --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-luxury: 0 25px 50px -12px rgba(15, 23, 42, 0.25);

    /* Gradients - لوکس */
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    --gradient-secondary: linear-gradient(135deg, #f4e4a6 0%, #d4af37 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #f4e4a6 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #333333 100%);
}

/* تنظیمات کلی لوکس */
body {
  font-family: 'IRANSans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  color: var(--dark-color);
  background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Bootstrap RTL Overrides - اطمینان از راستچین بودن کامل */
* {
  box-sizing: border-box;
}

.text-start {
  text-align: right !important;
}

.text-end {
  text-align: left !important;
}

.float-start {
  float: right !important;
}

.float-end {
  float: left !important;
}

.border-start {
  border-right: 1px solid var(--border-color) !important;
  border-left: none !important;
}

.border-end {
  border-left: 1px solid var(--border-color) !important;
  border-right: none !important;
}

.ms-auto {
  margin-right: auto !important;
  margin-left: 0 !important;
}

.me-auto {
  margin-left: auto !important;
  margin-right: 0 !important;
}

.ms-1 { margin-right: 0.25rem !important; margin-left: 0 !important; }
.ms-2 { margin-right: 0.5rem !important; margin-left: 0 !important; }
.ms-3 { margin-right: 1rem !important; margin-left: 0 !important; }
.ms-4 { margin-right: 1.5rem !important; margin-left: 0 !important; }
.ms-5 { margin-right: 3rem !important; margin-left: 0 !important; }

.me-1 { margin-left: 0.25rem !important; margin-right: 0 !important; }
.me-2 { margin-left: 0.5rem !important; margin-right: 0 !important; }
.me-3 { margin-left: 1rem !important; margin-right: 0 !important; }
.me-4 { margin-left: 1.5rem !important; margin-right: 0 !important; }
.me-5 { margin-left: 3rem !important; margin-right: 0 !important; }

.ps-1 { padding-right: 0.25rem !important; padding-left: 0 !important; }
.ps-2 { padding-right: 0.5rem !important; padding-left: 0 !important; }
.ps-3 { padding-right: 1rem !important; padding-left: 0 !important; }
.ps-4 { padding-right: 1.5rem !important; padding-left: 0 !important; }
.ps-5 { padding-right: 3rem !important; padding-left: 0 !important; }

.pe-1 { padding-left: 0.25rem !important; padding-right: 0 !important; }
.pe-2 { padding-left: 0.5rem !important; padding-right: 0 !important; }
.pe-3 { padding-left: 1rem !important; padding-right: 0 !important; }
.pe-4 { padding-left: 1.5rem !important; padding-right: 0 !important; }
.pe-5 { padding-left: 3rem !important; padding-right: 0 !important; }

/* Dropdown RTL */
.dropdown-menu {
  right: 0;
  left: auto;
  text-align: right;
}

.dropdown-menu-end {
  right: 0 !important;
  left: auto !important;
}

/* Navbar RTL */
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 1rem;
}

.navbar-nav .dropdown-menu {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.navbar-toggler {
  margin-left: auto;
  margin-right: 0;
}

/* Form RTL */
.form-control, .form-select {
  text-align: right;
}

.form-control:focus, .form-select:focus {
  text-align: right;
}

/* Badge RTL */
.badge {
  margin-left: 0.5rem;
  margin-right: 0;
}

/* Modal RTL */
.modal-header .btn-close {
  margin: 0;
}

/* Pagination RTL */
.pagination {
  justify-content: center;
}

.page-link {
  text-align: center;
}

/* Card RTL */
.card {
  text-align: right;
}

.card-header {
  text-align: right;
}

/* Input group RTL */
.input-group .input-group-text {
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.input-group .form-control {
  border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
}

/* Accordion RTL */
.accordion-button::after {
  margin-left: auto;
  margin-right: 0;
}

/* Toast RTL */
.toast {
  text-align: right;
}

/* Offcanvas RTL */
.offcanvas-end {
  right: 0;
  left: auto;
  transform: translateX(100%);
}

.offcanvas-start {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

/* سیستم تیپوگرافی استاندارد - Mobile First */
.typography-display-1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.typography-display-2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.typography-display-3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.015em;
}

.typography-heading-1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.4;
}

.typography-heading-2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.4;
}

.typography-heading-3 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
}

.typography-heading-4 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

.typography-body-large {
  font-size: 1.125rem;
  line-height: 1.6;
  font-weight: 400;
}

.typography-body {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
}

.typography-body-small {
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 400;
}

.typography-caption {
  font-size: 0.75rem;
  line-height: 1.4;
  font-weight: 400;
  color: var(--muted-color);
}

/* اندازه قیمت‌ها */
.price-display {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.price-large {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
}

.price-medium {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
}

.price-small {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}

/* انیمیشن‌های لوکس */
.fade-in {
    animation: fadeIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-up {
    animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left {
    animation: slideInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in {
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* دکمه‌های لوکس */
.btn {
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.025em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-outline-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.btn-outline-primary:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

/* دکمه‌های شیشه‌ای مینیمال */
.btn-glass {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-color);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* کارت‌های اتاق لوکس */
.room-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover::before {
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-luxury);
}

.room-card .card-img-top {
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.room-card .card-img-top::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-card:hover .card-img-top {
    transform: scale(1.08);
}

.room-card:hover .card-img-top::after {
    opacity: 1;
}

.room-card .card-body {
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
}

.room-price {
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.room-price::after {
    content: ' تومان';
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted-color);
}

.room-rating {
    color: var(--luxury-gold);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
}

.room-rating .fa-star {
    margin: 0 1px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* فرم جست‌وجو */
.search-form {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.search-form .form-control {
    border-radius: var(--border-radius-md);
    border: 2px solid var(--border-color);
    padding: var(--spacing-md);
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

/* فیلترها */
.filter-sidebar {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-lg);
    position: sticky;
    top: var(--spacing-lg);
}

.filter-section {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.filter-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-title {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
}

/* Range slider سفارشی */
.price-range {
    margin: var(--spacing-md) 0;
}

.price-range .form-range {
    height: 6px;
    border-radius: 3px;
    background: var(--border-color);
}

.price-range .form-range::-webkit-slider-thumb {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: var(--shadow-sm);
}

.price-range .form-range::-moz-range-thumb {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: var(--shadow-sm);
}

/* امکانات */
.amenity-item {
    display: flex;
    align-items: center;
    padding: var(--spacing-sm) 0;
    font-size: 0.9rem;
}

.amenity-item i {
    color: var(--success-color);
    margin-left: var(--spacing-sm);
    width: 16px;
}

/* Hero Section لوکس */
.hero-section {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 228, 166, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.15) 0%, transparent 50%);
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-2xl);
    padding: var(--spacing-xl);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--dark-color);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Stats Section لوکس */
.stats-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.05) 0%, transparent 50%);
}

.stat-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    margin-bottom: var(--spacing-lg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Testimonials */
.testimonial-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
    height: 100%;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--spacing-md);
    border: 3px solid var(--primary-color);
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

/* Footer نیمه-مینیمال و خاص */
.footer-semi-minimal {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.footer-semi-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
}

.footer-content {
    position: relative;
    z-index: 2;
}

/* برند نیمه-مینیمال */
.footer-brand {
    margin-bottom: var(--spacing-lg);
}

.brand-logo {
    margin-bottom: var(--spacing-md);
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 300;
    color: white;
    letter-spacing: 0.05em;
    font-family: 'IRANSans', sans-serif;
}

.brand-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

/* اطلاعات تماس */
.contact-info {
    margin-top: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: white;
    transform: translateX(5px);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1rem;
    min-width: 16px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

/* هدینگ‌های فوتر */
.footer-heading {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
}

/* لینک‌های فوتر */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-link {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: var(--spacing-sm) 0;
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
    position: relative;
}

.footer-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    padding-left: var(--spacing-md);
}

.footer-link i {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-left: var(--spacing-sm);
    transition: all 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.1);
}

/* شبکه‌های اجتماعی */
.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

.social-link i {
    font-size: 1.1rem;
    z-index: 2;
    position: relative;
}

/* گرید امکانات */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    padding: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1rem;
    min-width: 16px;
}

/* خط جداکننده */
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: var(--spacing-md) 0;
    position: relative;
}

 

/* کپی‌رایت */
.footer-copyright {
    padding-top: var(--spacing-md);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 300;
    margin: 0;
}

.developer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.developer-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* Navbar مینیمال */
.navbar-luxury {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: all 0.2s ease;
    padding: 0.5rem 0;
}

.navbar-luxury:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-color) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-luxury {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.logo-luxury span {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-nav .nav-link {
    color: var(--muted-color);
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    position: relative;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.user-menu {
    display: flex !important;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 0.75rem !important;
    border-radius: var(--border-radius-md) !important;
    transition: all 0.2s ease !important;
    background: rgba(37, 99, 235, 0.05);
}

.user-menu:hover {
    background: rgba(37, 99, 235, 0.1);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.user-avatar i {
    color: var(--primary-color);
    font-size: 1rem;
}

.user-name {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.9rem;
}

.dropdown-menu {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: var(--border-radius-md);
    margin-top: 0.5rem;
    min-width: 180px;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-sm);
    margin: 2px 4px;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-form {
        padding: var(--spacing-lg);
        margin-bottom: var(--spacing-lg);
    }

    .room-card .card-img-top {
        height: 200px;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .filter-sidebar {
        position: static;
        margin-bottom: var(--spacing-lg);
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }

    .user-name {
        display: none;
    }

    .navbar-luxury {
        padding: 0.25rem 0;
    }

    /* ریسپانسیو فوتر نیمه-مینیمال */
    .footer-semi-minimal {
        padding: var(--spacing-xl) 0 var(--spacing-md);
    }

    .brand-text {
        font-size: 1.5rem;
    }

    .brand-description {
        font-size: 0.9rem;
    }

    .contact-info {
        margin-top: var(--spacing-md);
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 1rem;
        margin-bottom: var(--spacing-md);
    }

    .footer-links {
        gap: var(--spacing-xs);
    }

    .footer-link {
        font-size: 0.85rem;
        padding: var(--spacing-xs) 0;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }

    .feature-item {
        font-size: 0.85rem;
        padding: var(--spacing-xs);
    }

    .social-links {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-sm);
    }

    .social-link {
        width: 42px;
        height: 42px;
    }

    .footer-copyright .row {
        text-align: center !important;
    }

    .footer-copyright .col-md-6 {
        margin-bottom: var(--spacing-sm);
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .room-price {
        font-size: 1.25rem;
    }

    .search-form {
        padding: var(--spacing-md);
    }

    .btn {
        font-size: 0.9rem;
        padding: var(--spacing-sm) var(--spacing-md);
    }

    /* ریسپانسیو موبایل کوچک فوتر نیمه-مینیمال */
    .footer-semi-minimal {
        padding: var(--spacing-lg) 0 var(--spacing-md);
    }

    .brand-text {
        font-size: 1.3rem;
    }

    .brand-description {
        font-size: 0.85rem;
    }

    .contact-item {
        font-size: 0.8rem;
        gap: var(--spacing-xs);
    }

    .footer-heading {
        font-size: 0.95rem;
    }

    .footer-link {
        font-size: 0.8rem;
        padding: var(--spacing-xs) 0;
    }

    .footer-link i {
        font-size: 0.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }

    .feature-item {
        font-size: 0.8rem;
        padding: var(--spacing-xs);
    }

    .social-links {
        justify-content: center;
        gap: var(--spacing-xs);
    }

    .social-link {
        width: 38px;
        height: 38px;
    }

    .social-link i {
        font-size: 1rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--border-color);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Alert سفارشی */
.alert {
    border-radius: var(--border-radius-md);
    border: none;
    box-shadow: var(--shadow-sm);
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--success-color);
    border-left: 4px solid var(--success-color);
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--danger-color);
    border-left: 4px solid var(--danger-color);
}

.alert-warning {
    background-color: rgba(255, 193, 7, 0.1);
    color: var(--warning-color);
    border-left: 4px solid var(--warning-color);
}

.alert-info {
    background-color: rgba(23, 162, 184, 0.1);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

/* Pagination سفارشی */
.pagination .page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
    border-radius: var(--border-radius-sm);
    margin: 0 2px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Badge سفارشی */
.badge {
    border-radius: var(--border-radius-sm);
    font-weight: 500;
}

.badge-primary {
    background-color: var(--primary-color);
}

/* Modal سفارشی */
.modal-content {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 var(--border-radius-lg) var(--border-radius-lg);
}

/* Scroll Indicator */
.scroll-indicator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.scroll-indicator:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

/* Min height utilities */
.min-vh-90 {
    min-height: 90vh;
}

/* Footer section styling */
.footer-section {
    margin-bottom: var(--spacing-xl);
}

/* Utility Classes */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-dark) !important; }
.border-primary { border-color: var(--primary-color) !important; }

.rounded-custom { border-radius: var(--border-radius-lg) !important; }
.shadow-custom { box-shadow: var(--shadow-md) !important; }
.shadow-luxury { box-shadow: var(--shadow-luxury) !important; }

/* Persian Date Picker Override */
.persian-datepicker {
    direction: rtl;
    font-family: 'IRANSans', sans-serif;
}

/* Select2 Override */
.select2-container--default .select2-selection--single {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    height: calc(1.5em + 0.75rem + 2px);
    padding: 0.375rem 0.75rem;
}

.select2-container--default .select2-selection--single:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.25);
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--dark-color);
    line-height: 1.5;
    padding-right: 0;
    padding-left: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: auto;
}

/* Profile Page Styling - لوکس */
.profile-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.profile-card:hover::before {
    opacity: 1;
}

.profile-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

/* Avatar Section لوکس */
.avatar-section {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--spacing-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.avatar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(244, 228, 166, 0.02) 0%, transparent 50%);
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.avatar:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.avatar-section h4 {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
    text-shadow: none;
    position: relative;
    z-index: 2;
}

.avatar-section p {
    color: var(--muted-color);
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

/* Form Section لوکس */
.form-section {
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
}

/* Tab Styling لوکس */
.nav-tabs {
    border: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--spacing-lg);
}

.nav-tabs .nav-link {
    border: none;
    color: var(--muted-color);
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.nav-tabs .nav-link:hover::before {
    left: 0;
}

.nav-tabs .nav-link:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-tabs .nav-link.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.nav-tabs .nav-link.active::before {
    left: 0;
}

/* Tab Content لوکس */
.tab-content {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

/* Form Styling لوکس */
.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.15);
    background: white;
    transform: translateY(-2px);
}

.form-control.is-invalid {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.form-control.is-invalid:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: var(--spacing-xs);
}

/* Button Styling لوکس */
.btn-primary {
    background: var(--gradient-primary);
    border: 2px solid transparent;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.btn-primary:active {
    transform: translateY(-1px);
}

/* Alert Styling لوکس */
.alert {
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-sm);
    margin-top: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.alert::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
}

.alert-info {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1) 0%, rgba(23, 162, 184, 0.05) 100%);
    color: var(--info-color);
    border-left: 4px solid var(--info-color);
}

.alert-info::before {
    background: var(--info-color);
}

/* Row Spacing */
.row.g-3 {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.row.g-3 .col-md-6 {
    margin-bottom: var(--spacing-md);
}

/* Responsive Design برای پروفایل */
@media (max-width: 768px) {
    .avatar-section {
        padding: var(--spacing-xl);
    }

    .avatar {
        width: 100px;
        height: 100px;
    }

    .avatar-section h4 {
        font-size: 1.25rem;
    }

    .form-section {
        padding: var(--spacing-lg);
    }

    .tab-content {
        padding: var(--spacing-lg);
        margin-top: var(--spacing-md);
    }

    .nav-tabs .nav-link {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .btn-primary {
        width: 100%;
        padding: var(--spacing-lg);
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .avatar-section {
        padding: var(--spacing-lg);
    }

    .avatar {
        width: 80px;
        height: 80px;
    }

    .avatar-section h4 {
        font-size: 1.1rem;
    }

    .form-section {
        padding: var(--spacing-md);
    }

    .tab-content {
        padding: var(--spacing-md);
    }

    .form-control {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.9rem;
    }

    .form-label {
        font-size: 0.9rem;
    }
}

/* استایل‌های کارت اطلاعات اتاق در صفحه ثبت نظر */
.room-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.room-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.room-info-card:hover::before {
    opacity: 1;
}

.room-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

/* استایل تصویر اتاق */
.room-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.room-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

/* استایل اطلاعات اتاق */
.room-info-card .row.align-items-center {
    position: relative;
}

.room-info-card .col-md-9 {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.9) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    margin-right: var(--spacing-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--dark-color);
}

.room-info-card .col-md-9 h4 {
    color: var(--dark-color);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.room-info-card .col-md-9 i {
    color: var(--primary-color);
}

.room-info-card .col-md-9 .row div {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

/* ریسپانسیو برای کارت اطلاعات اتاق */
@media (max-width: 768px) {
    .room-info-card .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .room-info-card .col-md-3,
    .room-info-card .col-md-9 {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .room-info-card .col-md-9 {
        margin-right: 0;
        margin-top: var(--spacing-md);
        padding: var(--spacing-md);
    }

    .room-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .room-info-card {
        margin-bottom: var(--spacing-lg);
    }

    .room-image {
        height: 150px;
    }

    .room-info-card .col-md-9 {
        padding: var(--spacing-sm);
    }
}

/* Animation Classes برای پروفایل */
.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in {
    animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
