/* Optimized Travel Website - Lightweight Design */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #2d2d2d;
  --accent-color: #d4af37;
  --accent-hover: #b8972d;
  --text-color: #333;
  --text-light: #666;
  --text-lighter: #999;
  --light-bg: #f8f9fa;
  --dark-bg: #111111;
  --white: #ffffff;
  --card-bg: #ffffff;
  --border-color: #eaeaea;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  --header-height: 70px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  transition: var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.main-header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid var(--border-color);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-container {
  flex-shrink: 0;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -0.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 1.8rem;
}

.nav-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-right: 8px;
  vertical-align: middle;
}

.nav-menu a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  position: relative;
  padding: 0.5rem 0;
  transition: var(--transition);
}

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

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

.header-ads {
  display: flex;
  align-items: center;
  margin: 0 1.5rem;
}

.smartlink-btn {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
  text-decoration: none !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}

.smartlink-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.language-switcher button {
  background: none;
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-sm);
  font-weight: 500;
  min-width: 36px;
}

.language-switcher button:hover {
  opacity: 1;
  border-color: var(--primary-color);
  background-color: var(--light-bg);
}

.language-switcher button.active {
  opacity: 1;
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  box-sizing: border-box;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  transform-origin: center;
}

/* Content Layout */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  margin-top: 2.5rem;
}

.main-area {
  width: 100%;
  min-width: 0;
}

.sidebar {
  width: 100%;
  position: relative;
  min-width: 0;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.85) 0%, rgba(45, 45, 45, 0.7) 100%),
              url('https://picsum.photos/1600/600') center/cover no-repeat;
  color: var(--white);
  text-align: center;
  padding: 4.5rem 2rem;
  margin-bottom: 3rem;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.8px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Buttons */
.btn-primary {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

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

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  loading: lazy;
}

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

.card-content {
  padding: 1.8rem;
}

.card-content h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.3rem;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-content p {
  color: var(--text-light);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7eb 100%);
  color: var(--text-color);
  padding: 3.5rem 0;
  margin: 3.5rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-item h3 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--font-family);
}

.stat-item p {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-light);
  font-weight: 500;
}

/* Destinations Grid */
.destinations-section {
  margin: 5rem 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.destination-card {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: var(--white);
  border: 1px solid var(--border-color);
}

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

.destination-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
  loading: lazy;
}

.destination-card:hover img {
  transform: scale(1.05);
}

.destination-info {
  padding: 1.8rem;
}

.destination-info h3 {
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-size: 1.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.destination-info p {
  margin-bottom: 1.3rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
  margin: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  position: relative;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.testimonial-card::before {
  content: """;
  position: absolute;
  top: 20px;
  left: 25px;
  font-size: 4rem;
  color: var(--accent-color);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.15;
}

.testimonial-content p {
  font-style: italic;
  margin-bottom: 1.8rem;
  position: relative;
  z-index: 1;
  color: var(--text-color);
  line-height: 1.7;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.testimonial-author img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
  loading: lazy;
}

.testimonial-author h4 {
  margin: 0;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial-author p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Tips Section */
.tips-section {
  margin: 5rem 0;
}

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

.tip-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2.2rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.tip-card h3 {
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-weight: 600;
  font-size: 1.25rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tip-card p {
  margin-bottom: 1.6rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Newsletter */
.newsletter-section {
  background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)),
              url('https://picsum.photos/1200/600?random=7') center/cover no-repeat;
  background-blend-mode: overlay;
  color: var(--text-color);
  padding: 4rem 0;
  text-align: center;
  margin: 5rem 0;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.newsletter-content {
  max-width: 650px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1.3rem;
  color: var(--primary-color);
  font-weight: 700;
}

.newsletter-content p {
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  color: var(--text-light);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  max-width: 400px;
  padding: 0.9rem 1.3rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 0.95rem;
  transition: var(--transition);
  min-width: 0;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.rss-subscribe {
  text-align: center;
  margin-top: 1.5rem;
}

.rss-subscribe a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.7rem 1.3rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rss-subscribe a:hover {
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Ad Containers */
.ad-container {
  background: var(--light-bg);
  border-radius: var(--border-radius);
  padding: 1.3rem;
  margin: 2rem 0;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.ad-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ad-content {
  display: inline-block;
  min-height: 50px;
  width: 100%;
  overflow: hidden;
}

.ad-content.bottom-ad-content {
  display: flex;
  justify-content: center;
}

.featured-ad {
  margin: 3rem 0;
}

/* Sidebar */
.sidebar-ad {
  margin-bottom: 2rem;
}

.widget {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.8rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.widget h3 {
  color: var(--primary-color);
  margin-bottom: 1.3rem;
  font-size: 1.25rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.widget li a {
  color: var(--text-light);
  transition: var(--transition);
  font-weight: 400;
  display: block;
  padding: 0.45rem 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.widget li a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

/* Footer */
.main-footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
  margin-top: 5rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--white);
  margin-bottom: 1.3rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.3rem;
  line-height: 1.6;
}

.footer-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-weight: 400;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer-section ul li a:hover {
  color: var(--accent-color);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  text-decoration: none;
  font-weight: bold;
}

.social-links a:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.3rem;
}

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

.footer-links a:hover {
  color: var(--accent-color);
}

/* Bottom Ad */
.bottom-ad {
  margin-top: 2.5rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-layout {
    grid-template-columns: 1fr 280px;
    gap: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.15rem;
  }
}

@media (max-width: 1024px) {
  .content-layout {
    grid-template-columns: 1fr 260px;
    gap: 1.6rem;
  }
}

@media (max-width: 992px) {
  .content-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    order: -1;
    margin-top: 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.8rem;
  }

  .stat-item h3 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .content-layout {
    gap: 1.8rem;
  }

  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo-container {
    order: 1;
    width: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    margin: 1rem 0;
    display: flex;
    justify-content: center;
  }

  .header-ads {
    order: 2;
    margin: 0.5rem 0;
    width: 100%;
    justify-content: center;
  }

  .header-actions {
    order: 4;
    width: 100%;
    justify-content: center;
  }

  .nav-menu {
    flex-wrap: wrap;
    gap: 1.3rem;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1.05rem;
  }

  .section-header h2 {
    font-size: 1.9rem;
  }

  .section-header p {
    font-size: 0.95rem;
  }

  .mobile-menu-btn {
    display: flex;
    order: 5;
    margin-top: 1rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 300px;
  }

  .nav-menu a {
    padding: 1rem 2rem;
    display: block;
    border-bottom: 1px solid var(--border-color);
  }

  .newsletter-form {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form input {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer-content {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.8rem;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 3.5rem 1.5rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.98rem;
  }

  .section-header h2 {
    font-size: 1.7rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .cards-grid,
  .destinations-grid,
  .testimonials-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-ads {
    margin: 1rem auto;
    width: auto;
  }

  .smartlink-btn {
    padding: 0.55rem 0.9rem;
    font-size: 0.78rem;
  }

  .btn-primary {
    padding: 0.8rem 1.6rem;
    font-size: 0.95rem;
  }

  .btn-secondary {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .cards-grid,
  .destinations-grid,
  .testimonials-grid,
  .tips-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .smartlink-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .stat-item h3 {
    font-size: 2rem;
  }
}

/* RTL Support for Arabic */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .nav-menu {
  gap: 1.8rem;
}

[dir="rtl"] .header-content {
  flex-direction: row-reverse;
}

[dir="rtl"] .logo-container {
  order: 2;
}

[dir="rtl"] .main-nav {
  order: 1;
}

[dir="rtl"] .header-ads {
  order: 3;
  margin: 0 2rem 0 0;
}

[dir="rtl"] .header-actions {
  order: 4;
  flex-direction: row-reverse;
}

[dir="rtl"] .language-switcher {
  margin-right: auto;
  margin-left: 1rem;
}

[dir="rtl"] .mobile-menu-btn {
  order: 5;
}

[dir="rtl"] .content-layout {
  flex-direction: row-reverse;
}

[dir="rtl"] .testimonial-author {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .testimonial-author h4 {
  text-align: right;
}

[dir="rtl"] .testimonial-author p {
  text-align: right;
}

[dir="rtl"] .widget li a:hover {
  padding-left: 0;
  padding-right: 0.5rem;
}

[dir="rtl"] .footer-content {
  text-align: right;
}

[dir="rtl"] .footer-bottom {
  flex-direction: row-reverse;
}