/* ===== Orient Treasures - Main Stylesheet ===== */

/* === Import Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;700&family=Noto+Sans+SC:wght@300;400;500;700&family=Noto+Sans+Hebrew:wght@300;400;500;700&family=Playfair+Display:wght@400;500;700;900&display=swap');

/* === CSS Variables === */
:root {
  --color-primary: #c41e3a;
  --color-primary-dark: #8b0000;
  --color-primary-light: #e53e3e;
  --color-gold: #d4af37;
  --color-gold-light: #f0d96b;
  --color-gold-dark: #b8941f;
  --color-jade: #2e8b57;
  --color-cream: #fdf8f0;
  --color-dark: #1a1a2e;
  --color-dark-2: #16213e;
  --color-text: #2d2d2d;
  --color-text-light: #666;
  --color-white: #ffffff;
  --color-black: #000000;
  
  --gradient-primary: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
  --gradient-gold: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  --gradient-hero: linear-gradient(135deg, rgba(196,30,58,0.8) 0%, rgba(26,26,46,0.9) 100%);
  --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.2);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.3);
  --shadow-gold: 0 4px 20px rgba(212,175,55,0.3);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  --font-heading: 'Playfair Display', 'Noto Sans SC', 'Noto Sans Hebrew', serif;
  --font-body: 'Noto Sans', 'Noto Sans SC', 'Noto Sans Hebrew', sans-serif;
  
  --header-height: 70px;
  --max-width: 1400px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* RTL support for Hebrew */
body.rtl {
  direction: rtl;
  text-align: right;
}

body.rtl .nav-links,
body.rtl .footer-content,
body.rtl .section-cards {
  flex-direction: row-reverse;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* === Header / Navigation === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header.scrolled {
  background: rgba(26, 26, 46, 0.95);
  box-shadow: var(--shadow-lg);
}

.header-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--color-dark);
  box-shadow: var(--shadow-gold);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.lang-btn {
  padding: 4px 12px;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  border-radius: 6px;
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--color-white);
}

.lang-btn.active {
  background: var(--gradient-gold);
  color: var(--color-dark);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: var(--transition);
}

/* === Hero Section === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(196,30,58,0.6) 0%, rgba(26,26,46,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--gradient-gold);
  color: var(--color-dark);
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 2px;
  height: 30px;
  background: var(--color-gold);
  margin: 8px auto 0;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

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

/* === Section Cards (Homepage) === */
.section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.section-card {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-slow);
  box-shadow: var(--shadow-lg);
}

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

.section-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.section-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.section-card:hover .section-card-bg img {
  transform: scale(1.1);
}

.section-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  z-index: 2;
}

.section-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px;
  color: var(--color-white);
}

.section-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}

.section-card-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-card-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.section-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-xl);
  color: var(--color-white);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.section-card:hover .section-card-btn {
  background: var(--gradient-gold);
  color: var(--color-dark);
  border-color: transparent;
}

/* === Food Page === */
.food-category-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.food-cat-btn {
  padding: 8px 24px;
  border: 2px solid #e0e0e0;
  background: var(--color-white);
  color: var(--color-text-light);
  border-radius: var(--radius-xl);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.food-cat-btn:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.food-cat-btn.active {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(196,30,58,0.3);
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.food-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.food-card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.food-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.food-card:hover .food-card-image img {
  transform: scale(1.08);
}

.food-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.food-card-content {
  padding: 24px;
}

.food-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.food-card-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* === Shop Page === */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--color-cream);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge-hot {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-sale {
  background: var(--color-gold);
  color: var(--color-dark);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
}

.product-card-content {
  padding: 20px;
}

.product-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.product-card-desc {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-current {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.price-original {
  font-size: 0.95rem;
  color: var(--color-text-light);
  text-decoration: line-through;
}

.product-card-actions {
  display: flex;
  gap: 8px;
}

.btn {
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.55) 50%, transparent 100%);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
  pointer-events: none;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover::after {
  left: 130%;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

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

/* Cart Panel */
.cart-panel {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 90px;
}

.cart-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-items {
  max-height: 300px;
  overflow-y: auto;
  margin-bottom: 16px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.cart-item-image {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--color-cream);
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-dark);
}

.cart-item-price {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #ddd;
  background: var(--color-cream);
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.qty-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.qty-display {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: var(--color-primary);
}

.cart-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 40px 0;
}

.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 2px solid #eee;
  margin-top: 8px;
}

.cart-total-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
}

.cart-total-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

/* Tracking Section */
.tracking-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
}

.tracking-form {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.tracking-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  font-family: var(--font-body);
}

.tracking-input:focus {
  outline: none;
  border-color: var(--color-gold);
}

.tracking-result {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  display: none;
}

.tracking-result.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.tracking-status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.tracking-status-row:last-child {
  border-bottom: none;
}

.tracking-label {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.tracking-value {
  font-weight: 600;
  color: var(--color-dark);
}

.status-badge {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-shipped { background: #d1ecf1; color: #0c5460; }
.status-delivered { background: #d4edda; color: #155724; }

/* Checkout Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.show {
  display: flex;
}

.modal {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  animation: fadeInUp 0.4s ease;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-dark);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #eee;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-light);
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--color-primary);
}

/* Success Modal */
.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: #d4edda;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #155724;
}

.success-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.success-order-number {
  text-align: center;
  background: var(--color-cream);
  padding: 16px;
  border-radius: var(--radius-md);
  margin: 16px 0;
}

.success-order-number .label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 4px;
}

.success-order-number .number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: monospace;
}

/* === Travel Page === */
.travel-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  margin-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.travel-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.travel-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.travel-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46,139,87,0.5) 0%, rgba(26,26,46,0.8) 100%);
  z-index: 2;
}

.travel-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--color-white);
  padding: 0 24px;
}

.travel-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.travel-hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 2px;
}

/* Heritage Section */
.heritage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.heritage-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.heritage-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.heritage-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.heritage-card:hover .heritage-card-image img {
  transform: scale(1.08);
}

.heritage-year {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gradient-gold);
  color: var(--color-dark);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}

.heritage-card-content {
  padding: 24px;
}

.heritage-card-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.heritage-card-location {
  color: var(--color-gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.heritage-card-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: var(--color-white);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-item-location {
  font-size: 0.8rem;
  color: var(--color-gold-light);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.show {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  text-align: center;
  color: var(--color-white);
  margin-top: 16px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  padding: 16px 20px;
  border-radius: 50%;
  transition: var(--transition);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255,255,255,0.2);
}

/* Travel Packages */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.package-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.package-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.package-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-card-image img {
  transform: scale(1.08);
}

.package-duration {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

.package-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-card-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.package-card-desc {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 16px;
  flex: 1;
  line-height: 1.5;
}

.package-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.package-price {
  display: flex;
  flex-direction: column;
}

.package-price-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
}

.package-price-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.package-price-currency {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Contact Section */
.contact-section {
  background: var(--gradient-dark);
  color: var(--color-white);
}

.contact-section .section-title {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.contact-info-text .label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.contact-info-text .value {
  color: var(--color-white);
  font-weight: 600;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form .form-label {
  color: rgba(255, 255, 255, 0.8);
}

.contact-form .form-input,
.contact-form .form-textarea {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.contact-form .form-input::placeholder,
.contact-form .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-input:focus,
.contact-form .form-textarea:focus {
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
}

/* === Admin Page === */
.admin-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: calc(var(--header-height) + 40px) 24px 60px;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.admin-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.admin-gallery-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.admin-gallery-card:hover {
  box-shadow: var(--shadow-md);
}

.admin-gallery-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.admin-gallery-card-content {
  padding: 16px;
}

.admin-gallery-card-title {
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--color-dark);
}

.admin-gallery-card-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.admin-gallery-card-actions {
  display: flex;
  gap: 8px;
}

.admin-btn-sm {
  padding: 6px 14px;
  font-size: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.admin-btn-edit {
  background: #e3f2fd;
  color: #1976d2;
}

.admin-btn-edit:hover {
  background: #1976d2;
  color: white;
}

.admin-btn-delete {
  background: #ffebee;
  color: #c62828;
}

.admin-btn-delete:hover {
  background: #c62828;
  color: white;
}

/* === Footer === */
.footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  margin-bottom: 16px;
}

.footer-about-text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-heading {
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

body.rtl .footer-links a:hover {
  padding-left: 0;
  padding-right: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom .made-with {
  margin-top: 8px;
  color: var(--color-gold);
  font-size: 0.8rem;
}

/* === Toast Notification === */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--color-dark);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 5000;
  opacity: 0;
  transition: var(--transition);
  font-weight: 500;
  border: 1px solid var(--color-gold);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast.success {
  border-color: #28a745;
}

.toast.error {
  border-color: var(--color-primary);
}

/* === Animations === */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Loading Spinner === */
.spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px;
}

.spinner-circle {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(212, 175, 55, 0.2);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* === Responsive === */
@media (max-width: 968px) {
  .section-cards {
    grid-template-columns: 1fr;
  }
  
  .shop-layout {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26, 26, 46, 0.98);
    padding: 24px;
    gap: 16px;
    transform: translateY(-200%);
    transition: var(--transition);
    backdrop-filter: blur(20px);
  }
  
  .nav-links.show {
    transform: translateY(0);
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .cart-panel {
    position: static;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .food-grid,
  .product-grid,
  .heritage-grid,
  .gallery-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  
  .tracking-form {
    flex-direction: column;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-card {
    height: 380px;
  }
}

/* === Hero Enhancements === */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.3), transparent);
  height: 1px;
}

.hero-deco-line.line-1 { top: 20%; left: -50%; right: -50%; animation: shimmer 4s ease-in-out infinite; }
.hero-deco-line.line-2 { bottom: 25%; left: -50%; right: -50%; animation: shimmer 4s ease-in-out infinite 2s; }

.hero-deco-circle {
  position: absolute;
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: 50%;
}

.hero-deco-circle.circle-1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.hero-deco-circle.circle-2 { width: 300px; height: 300px; bottom: -80px; left: -80px; animation: float 8s ease-in-out infinite 3s; }

@keyframes shimmer {
  0%, 100% { opacity: 0.3; transform: translateX(-20px); }
  50% { opacity: 0.8; transform: translateX(20px); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge-line {
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

.hero-badge-text {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: 600;
  background: transparent;
  color: var(--color-white);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

/* === Stats Section === */
.stats-section {
  padding: 80px 0;
  background: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.stats-section .section-title {
  background: linear-gradient(135deg, #d4af37 0%, #f0d96b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-section .section-subtitle {
  color: rgba(255,255,255,0.6);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 32px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(212,175,55,0.08);
  border-color: rgba(212,175,55,0.4);
  transform: translateY(-6px);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

/* === Home Preview Sections === */
.home-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.home-preview-header .section-title,
.home-preview-header .section-subtitle {
  text-align: left;
  margin-bottom: 0;
}

.view-all-btn {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  padding: 10px 24px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}

.view-all-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateX(4px);
}

.home-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home-preview-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-slow);
  position: relative;
  display: block;
}

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

.home-preview-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.home-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.home-preview-card:hover .home-preview-image img {
  transform: scale(1.1);
}

.home-preview-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}

.home-preview-info {
  padding: 20px;
}

.home-preview-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-dark);
}

.home-preview-desc {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 8px;
}

.home-preview-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
}

.home-preview-location {
  font-size: 0.85rem;
  color: var(--color-gold-dark);
  font-weight: 600;
}

/* === About Section === */
.about-section {
  background: linear-gradient(135deg, #fdf8f0 0%, #fff 100%);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about-image-frame::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: -15px;
  right: 15px;
  top: 15px;
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-image-frame img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-content {
  padding-left: 20px;
}

.about-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  color: var(--color-gold-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.about-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about-mission {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-gold);
}

.about-mission-icon {
  font-size: 1.5rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.about-mission-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.about-mission-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* === Travel Intro Section === */
.travel-intro {
  padding: 80px 0;
  background: var(--color-white);
  position: relative;
  overflow: hidden;
}

.travel-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(46,139,87,0.05) 0%, transparent 70%);
  transform: translateX(-50%);
}

.travel-intro-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.travel-intro-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.travel-intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.travel-intro-text .travel-intro-highlight {
  color: var(--color-jade);
  font-weight: 600;
}

.travel-intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.travel-intro-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.travel-intro-stat {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 24px;
}

.travel-intro-stat-item {
  text-align: center;
}

.travel-intro-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--color-jade);
  line-height: 1;
}

.travel-intro-stat-label {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-top: 4px;
}

/* === Itinerary Modal === */
.itinerary-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.itinerary-modal.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.itinerary-modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.itinerary-modal-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.itinerary-modal-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.itinerary-timeline {
  padding-left: 24px;
  border-left: 3px solid var(--color-gold);
  margin-bottom: 24px;
}

.itinerary-day {
  position: relative;
  padding-bottom: 20px;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--color-gold);
  border-radius: 50%;
  border: 2px solid var(--color-white);
  box-shadow: 0 0 0 2px var(--color-gold);
}

.itinerary-day-text {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.itinerary-includes {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 16px;
}

.itinerary-includes-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.itinerary-includes-list {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* === Responsive for new sections === */
@media (max-width: 968px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home-preview-grid {
    grid-template-columns: 1fr;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-content {
    padding-left: 0;
  }
  
  .travel-intro-grid {
    grid-template-columns: 1fr;
  }
  
  .home-preview-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-btn, .hero-btn-outline {
    width: 100%;
    justify-content: center;
  }
  
  .about-image-frame img {
    height: 300px;
  }
}

/* === Admin Login Overlay === */
.admin-login-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(26,26,46,0.96), rgba(196,30,58,0.92));
  backdrop-filter: blur(6px);
  padding: 20px;
}
.admin-login-overlay.show { display: flex; }
.admin-login-card {
  background: #fff;
  border-radius: 18px;
  padding: 40px 32px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  border: 1px solid rgba(212,175,55,0.45);
  animation: loginPop 0.35s ease;
}
@keyframes loginPop {
  from { transform: translateY(20px) scale(0.96); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.admin-login-card h2 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin: 12px 0 6px;
  font-size: 1.6rem;
}
.admin-login-icon { font-size: 2.4rem; }
.admin-login-hint { color: var(--color-text-light); font-size: 0.9rem; margin-bottom: 4px; }
.admin-login-error { color: #c41e3a; font-size: 0.85rem; margin-top: 12px; font-weight: 600; }
body.rtl .admin-login-card { direction: rtl; text-align: right; }

/* === Tracking timeline === */
.tracking-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.track-source { display: inline-block; font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; white-space: nowrap; }
.track-source.live { background: rgba(46,139,87,0.12); color: #2e8b57; border: 1px solid rgba(46,139,87,0.35); }
.track-source.estimated { background: rgba(212,175,55,0.14); color: #a9821f; border: 1px solid rgba(212,175,55,0.4); }
.track-source.recorded { background: rgba(60,120,200,0.14); color: #3a78c8; border: 1px solid rgba(60,120,200,0.4); }
.track-timeline { margin: 16px 0 8px; padding-left: 6px; }
.track-step { display: flex; align-items: center; gap: 12px; padding: 7px 0; position: relative; }
.track-step:not(:last-child)::before { content: ''; position: absolute; left: 7px; top: 22px; bottom: -7px; width: 2px; background: #e3d9c4; }
.track-dot { width: 16px; height: 16px; border-radius: 50%; background: #e9e2d2; border: 2px solid #d8cdb4; flex: 0 0 auto; z-index: 1; }
.track-step.done .track-dot { background: #2e8b57; border-color: #2e8b57; }
.track-step.current .track-dot { background: var(--color-gold); border-color: var(--color-gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.22); }
.track-step-label { color: #9a9281; font-size: 0.92rem; }
.track-step.done .track-step-label, .track-step.current .track-step-label { color: var(--color-dark); font-weight: 600; }
.tracking-note { font-size: 0.82rem; color: #a9821f; background: rgba(212,175,55,0.1); padding: 10px 12px; border-radius: 10px; margin: 12px 0; line-height: 1.5; }
body.rtl .tracking-head { flex-direction: row-reverse; }
body.rtl .track-timeline { padding-left: 0; padding-right: 6px; }

/* === Home Themed Scenery Gallery === */
.home-gallery-section { padding: 80px 0; }
.gallery-theme { margin-bottom: 44px; }
.gallery-theme-title {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary);
  margin-bottom: 18px; font-weight: 700;
}
.gallery-theme-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gradient-gold); box-shadow: 0 0 0 4px rgba(212,175,55,0.18); }
.gallery-theme-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 1fr);
  gap: 18px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory;
}
.gallery-theme-strip::-webkit-scrollbar { height: 8px; }
.gallery-theme-strip::-webkit-scrollbar-thumb { background: rgba(196,30,58,0.3); border-radius: 8px; }
.gallery-theme-item {
  position: relative; border-radius: var(--radius-md); overflow: hidden; cursor: pointer;
  aspect-ratio: 3 / 2; box-shadow: var(--shadow-md); scroll-snap-align: start;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.gallery-theme-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.gallery-theme-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-theme-item:hover img { transform: scale(1.06); }
.gallery-theme-item-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff;
  font-weight: 600; font-size: 1.02rem; letter-spacing: 0.3px;
  transform: translateY(8px); opacity: 0; transition: all 0.3s ease;
}
.gallery-theme-item:hover .gallery-theme-item-overlay { transform: translateY(0); opacity: 1; }

/* Home Gallery Lightbox */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 2000; display: none;
  background: rgba(15,12,20,0.92); align-items: center; justify-content: center; padding: 40px; flex-direction: column;
}
.gallery-lightbox.show { display: flex; animation: fadeIn 0.3s ease; }
.gallery-lightbox img { max-width: 90%; max-height: 72vh; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.gallery-lightbox-caption { text-align: center; color: #fff; margin-top: 18px; max-width: 640px; }
.gallery-lightbox-caption h3 { font-family: var(--font-heading); font-size: 1.6rem; margin-bottom: 6px; }
.gallery-lightbox-caption p { color: rgba(255,255,255,0.78); font-size: 0.95rem; line-height: 1.5; }
.gallery-lightbox-location { margin-top: 10px; color: var(--color-gold-light); font-size: 0.9rem; }
.gallery-lightbox-close {
  position: absolute; top: 24px; right: 32px; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff; border: none; font-size: 1.8rem; cursor: pointer; line-height: 1;
  transition: background 0.25s ease;
}
.gallery-lightbox-close:hover { background: rgba(196,30,58,0.8); }

/* === Admin Tabs & Tables === */
.admin-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; border-bottom: 1px solid rgba(0,0,0,0.08); padding-bottom: 4px; }
.admin-tab {
  background: transparent; border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.98rem; font-weight: 600; color: var(--color-text-light);
  padding: 12px 20px; border-radius: 10px 10px 0 0; transition: all 0.25s ease; position: relative;
}
.admin-tab:hover { color: var(--color-primary); background: rgba(196,30,58,0.05); }
.admin-tab.active { color: var(--color-primary); background: rgba(196,30,58,0.08); }
.admin-tab.active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -5px; height: 3px; background: var(--gradient-gold); border-radius: 3px; }
.admin-panel { animation: fadeIn 0.3s ease; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #f0ebe1; font-size: 0.92rem; vertical-align: middle; }
.admin-table th { background: var(--color-dark); color: #fff; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; }
.admin-table tr:hover td { background: #fdf8f0; }
.admin-table img.admin-thumb { width: 64px; height: 44px; object-fit: cover; border-radius: 6px; }
.admin-badge { display: inline-block; font-size: 0.74rem; font-weight: 700; padding: 3px 11px; border-radius: 20px; }
.badge-active { background: rgba(46,139,87,0.14); color: #2e8b57; }
.badge-inactive { background: rgba(150,150,150,0.16); color: #777; }
.badge-hot { background: rgba(196,30,58,0.14); color: var(--color-primary); }
.badge-featured { background: rgba(212,175,55,0.18); color: #a9821f; }
.badge-pending { background: rgba(60,120,200,0.14); color: #3a78c8; }
.admin-btn-sm { padding: 6px 14px; border: none; border-radius: 8px; cursor: pointer; font-size: 0.82rem; font-weight: 600; margin-right: 6px; transition: all 0.2s ease; }
.admin-btn-edit { background: var(--gradient-gold); color: var(--color-dark); }
.admin-btn-edit:hover { box-shadow: var(--shadow-gold); }
.admin-btn-delete { background: rgba(196,30,58,0.12); color: var(--color-primary); }
.admin-btn-delete:hover { background: rgba(196,30,58,0.22); }
.form-check { display: flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.92rem; color: var(--color-text); }
.form-check input { width: 18px; height: 18px; accent-color: var(--color-primary); }
.order-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 22px; }
.order-detail-grid strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-light); margin-bottom: 3px; }
.order-detail-grid div { color: var(--color-text); font-size: 0.95rem; }
.order-items { border-top: 1px solid #eee; }
.order-item-row { display: flex; justify-content: space-between; padding: 8px 2px; border-bottom: 1px solid #f3eee3; font-size: 0.92rem; }
body.rtl .admin-table th, body.rtl .admin-table td { text-align: right; }
body.rtl .admin-btn-sm { margin-right: 0; margin-left: 6px; }
body.rtl .order-detail-grid { direction: rtl; }

/* === About Slideshow === */
.about-slideshow {
  position: relative;
  height: 450px;
}
.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.about-slide.active { opacity: 1; }
.about-slideshow .about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.32);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s, color 0.3s;
  z-index: 3;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.about-arrow:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-50%) scale(1.08);
}
.about-arrow.prev { left: 14px; }
.about-arrow.next { right: 14px; }
.about-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.about-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
}
.about-dots .dot.active {
  background: var(--color-gold);
  width: 26px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .about-slideshow { height: 280px; }
  .about-arrow { width: 36px; height: 36px; font-size: 1.3rem; }
}

/* ============================================================
   ORIENT TREASURES — PREMIUM UPGRADE LAYER (高大上)
   ============================================================ */

:root {
  --ink: #14142b;
  --ink-2: #1f1f3a;
  --paper: #fbf6ec;
  --gold-champagne: #e8c874;
  --shadow-soft: 0 18px 50px rgba(20, 20, 43, 0.10);
  --radius-2xl: 28px;
}

/* Subtle silk-paper ambient glow on the whole page */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(212, 175, 55, 0.06), transparent 60%),
    radial-gradient(900px 600px at 95% 8%, rgba(196, 30, 58, 0.05), transparent 60%);
}

/* === Ornamental section divider (祥云 motif) === */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}
.section-divider .ornament {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: var(--gradient-gold);
  transform: rotate(45deg);
  border-radius: 6px;
  position: relative;
  box-shadow: var(--shadow-gold);
}
.section-divider .ornament::after {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1.5px solid rgba(20, 20, 43, 0.45);
  border-radius: 3px;
}

/* === Eyebrow label above section titles === */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
}
body.rtl .eyebrow { flex-direction: row-reverse; }
body.rtl .eyebrow::before { order: 2; }

/* === Hero glow enhancement === */
.hero-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(600px 600px at 50% 30%, rgba(212, 175, 55, 0.22), transparent 60%),
    radial-gradient(800px 800px at 50% 120%, rgba(196, 30, 58, 0.30), transparent 60%);
  mix-blend-mode: screen;
}

/* === Floating hero trust ribbon === */
.hero-trust-ribbon {
  position: relative;
  z-index: 30;
  margin: -46px auto 0;
  max-width: var(--max-width);
  padding: 0 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust-inner {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 999px;
  padding: 14px 26px;
  box-shadow: var(--shadow-lg);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.hero-trust-item .ic {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  flex: 0 0 auto;
}
.hero-trust-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(20, 20, 43, 0.12);
}
@media (max-width: 768px) {
  .hero-trust-ribbon { margin-top: -30px; }
  .hero-trust-inner { padding: 12px 16px; gap: 8px; border-radius: 22px; }
  .hero-trust-item { font-size: 0.74rem; }
  .hero-trust-sep { display: none; }
}

/* === "Why Travel With Us" trust band === */
.why-section {
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding: 100px 0 80px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px 26px 32px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s ease;
}
.why-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: rgba(212, 175, 55, 0.45); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--color-primary);
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.10), rgba(212, 175, 55, 0.16));
  box-shadow: inset 0 0 0 1px rgba(212, 175, 55, 0.25);
}
.why-title {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* === Featured Travel Packages (homepage conversion block) === */
.featured-packages {
  background: linear-gradient(180deg, var(--ink) 0%, var(--ink-2) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.featured-packages::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.16), transparent 70%);
}
.featured-packages .section-title,
.featured-packages .section-subtitle { color: #fff; }
.featured-packages .section-title {
  background: linear-gradient(135deg, #fff 0%, var(--gold-champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.featured-packages .eyebrow { color: var(--gold-champagne); }
.featured-packages .eyebrow::before { background: var(--gradient-gold); }
.fp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.fp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(212, 175, 55, 0.20);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.fp-card:hover { transform: translateY(-12px); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45); border-color: rgba(212, 175, 55, 0.6); }
.fp-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.fp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.fp-card:hover .fp-image img { transform: scale(1.1); }
.fp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gradient-gold);
  color: var(--ink);
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-gold);
}
.fp-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(20, 20, 43, 0.72);
  color: #fff;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}
.fp-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.fp-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.32;
}
.fp-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fp-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 20, 43, 0.08);
}
.fp-price { display: flex; flex-direction: column; }
.fp-price .from { font-size: 0.7rem; color: var(--color-text-light); letter-spacing: 0.5px; text-transform: uppercase; }
.fp-price .amount {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.05;
}
.fp-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--gradient-gold);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--shadow-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fp-book:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5); }
.fp-book .arrow { transition: transform 0.3s ease; }
.fp-book:hover .arrow { transform: translateX(4px); }

/* === Testimonials (social proof) === */
.testimonials {
  background: linear-gradient(180deg, var(--paper) 0%, #fff 100%);
  padding: 100px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.testi-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
  border: 1px solid rgba(212, 175, 55, 0.15);
  overflow: hidden;
}
.testi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}
.testi-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-gold);
  opacity: 0.22;
  line-height: 0.6;
  position: absolute;
  top: 26px;
  left: 24px;
}
.testi-stars {
  color: var(--color-gold);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.testi-text {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  flex: 0 0 auto;
}
.testi-name { font-weight: 700; color: var(--ink); font-size: 0.96rem; }
.testi-role { font-size: 0.8rem; color: var(--color-text-light); }

/* === Final CTA banner === */
.cta-banner {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, #14142b 0%, #3a1224 45%, #8b0000 100%);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 20% 10%, rgba(212, 175, 55, 0.20), transparent 60%),
    radial-gradient(700px 500px at 90% 90%, rgba(196, 30, 58, 0.35), transparent 60%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-inner { max-width: 780px; margin: 0 auto; }
.cta-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-champagne);
  font-weight: 700;
  margin-bottom: 18px;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff 0%, var(--gold-champagne) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 38px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 38px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.cta-btn-gold {
  background: var(--gradient-gold);
  color: var(--ink);
  box-shadow: var(--shadow-gold);
}
.cta-btn-gold:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(212, 175, 55, 0.55); }
.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.cta-btn-outline:hover { border-color: var(--gold-champagne); color: var(--gold-champagne); transform: translateY(-3px); }

/* === Premium refine: lift the section cards & preview cards === */
.section-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(20, 20, 43, 0.55) 55%, rgba(20, 20, 43, 0.92) 100%);
}
.section-card-content { padding: 36px; }

/* === Responsive for premium blocks === */
@media (max-width: 968px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .fp-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .why-section, .featured-packages, .testimonials { padding: 70px 0; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .cta-btn { width: 100%; justify-content: center; }
  .fp-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .fp-book { justify-content: center; }
}

/* Package actions (travel page) */
.package-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.package-actions .btn {
  padding: 9px 16px;
  font-size: 0.82rem;
}
.package-actions .btn-gold {
  box-shadow: var(--shadow-gold);
}
body.rtl .package-actions { flex-direction: row-reverse; }

/* ===== HERO SLIDESHOW (auto-cycling cinematic China scenery) ===== */
.hero-slides { position: absolute; inset: 0; z-index: 1; background: #1a1a2e; }
.hero-slide {
  position: absolute; inset: 0; z-index: 1;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.hero-slide.active {
  opacity: 1; transform: scale(1.16);
  transition: opacity 1.6s ease, transform 9s ease-out;
}
.hero-slide-fallback {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #c41e3a 0%, #1a1a2e 100%);
}
.hero-slide-caption {
  position: absolute; left: 50%; bottom: 118px; transform: translateX(-50%);
  z-index: 3; width: 90%; max-width: 760px; text-align: center;
  color: #fff; pointer-events: none; text-shadow: 0 2px 22px rgba(0,0,0,.7);
  opacity: 0; transition: opacity .9s ease;
}
.hero-slide-caption.show { opacity: 1; }
.hero-caption-loc {
  display: block; font-family: var(--font-serif, 'Noto Serif SC', serif);
  font-size: clamp(1.4rem, 3.2vw, 2.5rem); font-weight: 600; letter-spacing: .03em;
}
.hero-caption-sub {
  display: block; margin-top: 8px;
  font-size: clamp(.7rem, 1.4vw, .95rem); letter-spacing: .22em;
  text-transform: uppercase; opacity: .85;
}
.hero-dots {
  position: absolute; left: 50%; bottom: 30px; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px; align-items: center;
}
.hero-dot {
  width: 34px; height: 4px; border: none; padding: 0; cursor: pointer;
  border-radius: 4px; background: rgba(255,255,255,.35);
  transition: background .45s ease, width .45s ease;
}
.hero-dot.active { background: var(--color-gold, #d4af37); width: 54px; }
.hero-dot:focus-visible { outline: 2px solid var(--color-gold, #d4af37); outline-offset: 3px; }
.hero-scroll { bottom: 62px; }

@media (max-width: 600px) {
  .hero-slide-caption { bottom: 92px; }
  .hero-caption-sub { letter-spacing: .14em; }
  .hero-dot { width: 22px; }
  .hero-dot.active { width: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.active { transition: opacity .6s ease; transform: none; }
}

/* ===== Enriched travel content (China Now / Experiences / Hidden Gems) ===== */
.china-now {
  background: linear-gradient(135deg, #1a1a2e 0%, #2a0f1a 55%, #1a1a2e 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.china-now::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 18%, rgba(212,175,55,.14), transparent 55%);
}
.cn-title {
  position: relative; text-align: center; color: #fff;
  font-family: var(--font-serif, 'Noto Serif SC', serif);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem); margin-bottom: 36px;
}
.cn-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.cn-stat {
  text-align: center; padding: 22px 14px; border-radius: 14px;
  border: 1px solid rgba(212,175,55,.28);
  background: rgba(255,255,255,.04); backdrop-filter: blur(6px);
}
.cn-stat-num {
  font-family: var(--font-serif, 'Noto Serif SC', serif);
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
  color: var(--color-gold, #d4af37); line-height: 1;
}
.cn-stat-label { margin-top: 10px; font-size: .8rem; color: rgba(255,255,255,.8); letter-spacing: .03em; }

.exp-grid, .gem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.exp-card, .gem-card {
  background: var(--color-card, #fff); border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  display: flex; flex-direction: column;
}
.exp-card:hover, .gem-card:hover { transform: translateY(-8px); box-shadow: 0 18px 44px rgba(0,0,0,.16); border-color: rgba(212,175,55,.5); }
.exp-media, .gem-media { position: relative; width: 100%; height: 168px; overflow: hidden; background: linear-gradient(135deg, #c41e3a, #1a1a2e); }
.exp-media img, .gem-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.exp-card:hover .exp-media img, .gem-card:hover .gem-media img { transform: scale(1.08); }
.exp-media.no-img, .gem-media.no-img { background: linear-gradient(135deg, #c41e3a, #1a1a2e); }
.exp-body, .gem-body { padding: 18px 18px 22px; text-align: center; flex: 1; display: flex; flex-direction: column; }
.exp-icon, .gem-icon { font-size: 1.8rem; margin-bottom: 8px; }
.exp-name, .gem-name { font-size: 1.02rem; color: var(--color-dark, #1a1a2e); margin-bottom: 8px; }
.exp-desc, .gem-desc { font-size: .84rem; color: #5a5a6e; line-height: 1.6; }
.gem-card { background: linear-gradient(160deg, #fff 0%, #fff7ec 100%); border-color: rgba(212,175,55,.3); }

@media (max-width: 900px) {
  .cn-stats, .exp-grid, .gem-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cn-stats, .exp-grid, .gem-grid { grid-template-columns: 1fr; }
}
