/* ============================================
   REJJAN BOSNIA - Premium Tourism Portal
   Author: Rejjan Bosnia Dev Team
   Version: 2.0
   ============================================ */

/* ============================================
   1. CSS VARIABLES & ROOT SETTINGS
   ============================================ */
:root {
  /* Brand Colors - Bosnian Heritage Palette */
  --color-forest-deep: #1a3a2e;
  --color-forest: #2d5a3d;
  --color-forest-light: #4a7c5d;
  --color-river-blue: #2c7da0;
  --color-river-light: #a9d6e5;
  --color-gold: #c9a961;
  --color-gold-light: #e6c87f;
  --color-gold-dark: #a08840;
  --color-cream: #faf7f2;
  --color-white: #ffffff;
  --color-charcoal: #1c1c1c;
  --color-gray-dark: #4a4a4a;
  --color-gray: #8a8a8a;
  --color-gray-light: #e8e8e8;
  --color-gray-bg: #f7f5f0;

  /* Typography */
  --font-arabic: 'Cairo', 'Tajawal', sans-serif;
  --font-display: 'Playfair Display', 'Cairo', serif;
  --font-body: 'Cairo', 'Tajawal', sans-serif;

  /* Sizing & Spacing */
  --container-max: 1320px;
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --border-radius-sm: 8px;
  --border-radius: 16px;
  --border-radius-lg: 24px;
  --border-radius-xl: 32px;

  /* Shadows */
  --shadow-soft: 0 4px 20px rgba(26, 58, 46, 0.08);
  --shadow-medium: 0 10px 40px rgba(26, 58, 46, 0.12);
  --shadow-strong: 0 20px 60px rgba(26, 58, 46, 0.18);
  --shadow-gold: 0 8px 30px rgba(201, 169, 97, 0.25);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   2. GLOBAL RESET & BASE
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[dir="rtl"] {
  font-family: var(--font-arabic);
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-forest-deep);
  margin-bottom: 1rem;
}

body[dir="ltr"] h1,
body[dir="ltr"] h2,
body[dir="ltr"] h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

body[dir="rtl"] h1,
body[dir="rtl"] h2,
body[dir="rtl"] h3 {
  font-family: var(--font-arabic);
  font-weight: 800;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.35rem; }

p {
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 30px;
}

.section-label::before,
.section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: var(--color-gold);
}

body[dir="rtl"] .section-label::before { right: 0; }
body[dir="rtl"] .section-label::after { left: 0; }
body[dir="ltr"] .section-label::before { left: 0; }
body[dir="ltr"] .section-label::after { right: 0; }

.section-title {
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
  color: var(--color-gray-dark);
  font-size: 1.1rem;
}

.text-gold { color: var(--color-gold); }
.text-forest { color: var(--color-forest-deep); }

/* ============================================
   4. BUTTONS
   ============================================ */
.btn-rejjan {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-rejjan {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
  color: var(--color-forest-deep);
  box-shadow: var(--shadow-gold);
}

.btn-primary-rejjan:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.4);
  color: var(--color-forest-deep);
}

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

.btn-outline-rejjan:hover {
  background: var(--color-white);
  color: var(--color-forest-deep);
  transform: translateY(-3px);
}

.btn-forest {
  background: var(--color-forest-deep);
  color: var(--color-white);
}

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

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

/* ============================================
   5. NAVIGATION
   ============================================ */
.navbar-rejjan {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
  background: transparent;
}

.navbar-rejjan.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 12px 0;
  box-shadow: var(--shadow-soft);
}

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

.navbar-brand-rejjan {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-white);
  transition: color var(--transition);
}

.navbar-rejjan.scrolled .navbar-brand-rejjan {
  color: var(--color-forest-deep);
}

.navbar-brand-rejjan .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-forest-deep);
  font-size: 1.2rem;
}

.brand-text-ar { font-family: var(--font-arabic); font-weight: 800; }
.brand-text-en { font-family: var(--font-display); }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar-nav-rejjan {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar-nav-rejjan a {
  padding: 10px 18px;
  font-weight: 500;
  color: var(--color-white);
  border-radius: 50px;
  transition: all var(--transition);
  font-size: 0.95rem;
}

.navbar-rejjan.scrolled .navbar-nav-rejjan a {
  color: var(--color-charcoal);
}

.navbar-nav-rejjan a:hover,
.navbar-nav-rejjan a.active {
  background: rgba(201, 169, 97, 0.15);
  color: var(--color-gold-dark);
}

.navbar-rejjan.scrolled .navbar-nav-rejjan a:hover,
.navbar-rejjan.scrolled .navbar-nav-rejjan a.active {
  background: var(--color-forest-deep);
  color: var(--color-gold-light);
}

/* Language Switcher - specific selectors to override Bootstrap */
.navbar-rejjan .lang-switcher {
  display: inline-flex !important;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50px;
  padding: 4px;
  margin-inline-start: 16px;
  height: 40px;
  box-sizing: border-box;
}

.navbar-rejjan.scrolled .lang-switcher {
  background: var(--color-forest-deep);
}

.navbar-rejjan .lang-switcher button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 14px !important;
  height: 32px;
  min-width: 42px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  color: #ffffff !important;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  border-radius: 50px !important;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  box-shadow: none !important;
}

.navbar-rejjan .lang-switcher button:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
}

.navbar-rejjan .lang-switcher button.active {
  background: var(--color-gold) !important;
  color: var(--color-forest-deep) !important;
}

.navbar-rejjan .lang-switcher button.active:hover {
  background: var(--color-gold-light) !important;
  color: var(--color-forest-deep) !important;
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.navbar-rejjan.scrolled .mobile-toggle {
  color: var(--color-forest-deep);
}

@media (max-width: 991px) {
  .mobile-toggle { display: block; }
  .navbar-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 380px;
    background: var(--color-white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 100px 30px 30px;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  }

  body[dir="rtl"] .navbar-menu {
    right: auto;
    left: 0;
    transform: translateX(-100%);
  }

  .navbar-menu.active { transform: translateX(0); }

  .navbar-nav-rejjan {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .navbar-nav-rejjan a {
    width: 100%;
    color: var(--color-charcoal) !important;
    padding: 14px 20px;
    font-size: 1.05rem;
  }

  .navbar-rejjan .lang-switcher {
    margin: 20px 0 0 !important;
    background: var(--color-forest-deep) !important;
    align-self: center;
  }

  .navbar-rejjan .lang-switcher button {
    color: #ffffff !important;
  }

  .navbar-rejjan .lang-switcher button.active {
    background: var(--color-gold) !important;
    color: var(--color-forest-deep) !important;
  }
}

/* ============================================
   6. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--color-white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(26, 58, 46, 0.85) 0%,
    rgba(26, 58, 46, 0.6) 50%,
    rgba(44, 125, 160, 0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 140px 24px 80px;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease;
}

.hero-tag i { color: var(--color-gold-light); }

.hero h1 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
  max-width: 850px;
  animation: fadeInUp 1s ease 0.2s backwards;
}

.hero h1 .accent {
  color: var(--color-gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  max-width: 650px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  margin-top: 4rem;
  max-width: 700px;
  animation: fadeInUp 1s ease 0.8s backwards;
}

.hero-stat {
  text-align: center;
  padding: 0 10px;
}

body[dir="rtl"] .hero-stat {
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

body[dir="ltr"] .hero-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat:first-child { border: none !important; }

.hero-stat strong {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-gold-light);
  font-family: var(--font-display);
}

body[dir="rtl"] .hero-stat strong { font-family: var(--font-arabic); }

.hero-stat span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--color-white);
  font-size: 0.875rem;
  text-align: center;
  animation: bounce 2s ease infinite;
}

.hero-scroll i {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

/* Sub-page hero (smaller) */
.hero-sub {
  min-height: 60vh;
  margin-bottom: 0;
}

.hero-sub .hero-content { padding: 160px 24px 80px; }

/* ============================================
   7. SECTIONS - GENERAL
   ============================================ */
section {
  padding: var(--section-padding) 0;
  position: relative;
}

.container-rejjan {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  section { padding: var(--section-padding-mobile) 0; }
}

/* ============================================
   8. WHY VISIT BOSNIA
   ============================================ */
.why-visit {
  background: var(--color-white);
}

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

.feature-card {
  background: var(--color-cream);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  transition: all var(--transition-slow);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: var(--color-gold-light);
  background: var(--color-white);
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--color-forest-deep), var(--color-forest));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 2rem;
  transition: all var(--transition);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  color: var(--color-forest-deep);
  transform: rotate(-8deg) scale(1.05);
}

.feature-card h4 {
  margin-bottom: 12px;
  color: var(--color-forest-deep);
}

.feature-card p {
  font-size: 0.95rem;
  margin: 0;
}

/* ============================================
   9. CITIES / DESTINATIONS
   ============================================ */
.cities-section {
  background: var(--color-gray-bg);
  position: relative;
}

.cities-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, var(--color-white) 0%, transparent 100%);
  pointer-events: none;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

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

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

.city-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 40%,
    rgba(26, 58, 46, 0.7) 75%,
    rgba(26, 58, 46, 0.95) 100%
  );
  z-index: 2;
}

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

.city-tag {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-forest-deep);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.city-card h3 {
  color: var(--color-white);
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.city-card p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.city-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.city-features span {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.city-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gold-light);
  font-weight: 600;
  margin-top: 16px;
  transition: gap var(--transition);
}

.city-card:hover .city-link { gap: 14px; }

/* ============================================
   10. ABOUT PREVIEW (Home page)
   ============================================ */
.about-preview {
  background: var(--color-white);
}

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

@media (max-width: 991px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

.about-image-wrap {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

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

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  inset-inline-end: -20px;
  width: 70%;
  height: 70%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  border-radius: var(--border-radius-lg);
  z-index: -1;
}

.about-content h2 { margin-bottom: 1.5rem; }
.about-content .section-label { padding: 0; }
.about-content .section-label::before,
.about-content .section-label::after { display: none; }

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-list {
  margin-bottom: 2rem;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
  color: var(--color-charcoal);
  font-weight: 500;
}

.about-list li i {
  color: var(--color-gold);
  margin-top: 4px;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ============================================
   11. BLOG SECTION
   ============================================ */
.blog-section {
  background: var(--color-gray-bg);
}

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

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

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

.blog-image-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 16px;
  inset-inline-start: 16px;
  background: var(--color-forest-deep);
  color: var(--color-gold-light);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--color-gray);
  margin-bottom: 12px;
}

.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-meta i { color: var(--color-gold); }

.blog-card h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--color-forest-deep);
  transition: color var(--transition);
}

.blog-card:hover h4 { color: var(--color-gold-dark); }

.blog-card p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-forest);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  transition: gap var(--transition);
}

.blog-card:hover .blog-link {
  color: var(--color-gold-dark);
  gap: 14px;
}

body[dir="rtl"] .blog-link i { transform: rotate(180deg); }

/* ============================================
   12. FAQ SECTION
   ============================================ */
.faq-section { background: var(--color-white); }

.faq-wrapper {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-cream);
  border-radius: var(--border-radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.faq-item.active {
  background: var(--color-white);
  border-color: var(--color-gold-light);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-forest-deep);
  text-align: start;
  transition: color var(--transition);
}

.faq-question:hover { color: var(--color-gold-dark); }

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-forest-deep);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--color-gold);
  color: var(--color-forest-deep);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding: 0 30px 24px;
  color: var(--color-gray-dark);
  line-height: 1.7;
}

/* ============================================
   13. CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  background: linear-gradient(135deg, var(--color-forest-deep) 0%, var(--color-forest) 100%);
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}

.cta-section::before,
.cta-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0.08;
  filter: blur(80px);
}

.cta-section::before { width: 400px; height: 400px; top: -100px; inset-inline-start: -100px; }
.cta-section::after { width: 500px; height: 500px; bottom: -150px; inset-inline-end: -150px; }

.cta-section .container-rejjan { position: relative; z-index: 2; }

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 576px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand h3 {
  color: var(--color-white);
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: all var(--transition);
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--color-gold);
  color: var(--color-forest-deep);
  transform: translateY(-3px);
}

.footer h5 {
  color: var(--color-white);
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 700;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--color-gold-light);
  transform: translateX(4px);
}

body[dir="rtl"] .footer-links a:hover { transform: translateX(-4px); }

.footer-contact li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  align-items: flex-start;
}

.footer-contact i {
  color: var(--color-gold);
  margin-top: 4px;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 0.875rem;
}

/* ============================================
   15. WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

body[dir="rtl"] .whatsapp-float { left: 30px; }
body[dir="ltr"] .whatsapp-float { right: 30px; }

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  color: var(--color-white);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    font-size: 1.5rem;
    bottom: 20px;
  }
  body[dir="rtl"] .whatsapp-float { left: 20px; }
  body[dir="ltr"] .whatsapp-float { right: 20px; }
}

/* ============================================
   16. CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-card {
  background: linear-gradient(135deg, var(--color-forest-deep), var(--color-forest));
  color: var(--color-white);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  position: relative;
  overflow: hidden;
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  inset-inline-end: -100px;
  width: 250px;
  height: 250px;
  background: var(--color-gold);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(40px);
}

.contact-info-card h3 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
}

.contact-info-list { position: relative; z-index: 2; }

.contact-info-list li {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--color-white);
}

.contact-info-list li .icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(201, 169, 97, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-list li small {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-info-list li strong {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-white);
}

.contact-form-card {
  background: var(--color-white);
  padding: 50px 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
}

.form-group-rejjan { margin-bottom: 20px; }

.form-group-rejjan label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-forest-deep);
  font-size: 0.9rem;
}

.form-control-rejjan {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--color-gray-light);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--color-cream);
  transition: all var(--transition);
}

.form-control-rejjan:focus {
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
  box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

textarea.form-control-rejjan {
  min-height: 130px;
  resize: vertical;
}

.contact-map {
  margin-top: 60px;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 450px;
}

.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ============================================
   17. ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   18. RTL SPECIFIC OVERRIDES
   ============================================ */
body[dir="rtl"] .hero-actions,
body[dir="rtl"] .cta-actions,
body[dir="rtl"] .footer-social { direction: rtl; }

body[dir="rtl"] .blog-meta,
body[dir="rtl"] .city-features { direction: rtl; }

body[dir="rtl"] i.fa-arrow-right::before { content: "\f060"; }
body[dir="rtl"] .blog-link i,
body[dir="rtl"] .city-link i { transform: scaleX(-1); }

/* ============================================
   19. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-section { margin-top: 60px; }
.divider-gold {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 0 auto 24px;
  border-radius: 2px;
}

/* Hide elements based on language */
[data-lang]:not(.show) { display: none; }

/* ============================================
   20. RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 768px) {
  .hero-content { padding: 120px 24px 60px; }
  .hero-stats { margin-top: 2.5rem; gap: 20px; }
  .hero-stat strong { font-size: 1.75rem; }
  .city-card { height: 420px; }
  .feature-card { padding: 32px 24px; }
  .contact-info-card,
  .contact-form-card { padding: 35px 25px; }
  .section-subtitle { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
  .hero-actions .btn-rejjan { width: 100%; justify-content: center; }
  .cta-actions .btn-rejjan { width: 100%; justify-content: center; }
}
