/*
Theme Name: Dhow Cruise Dubai Marina
Theme URI: https://cruisedhowdubai.com
Description: Custom Elementor child theme for Dhow Cruise Dubai Marina
Author: EpsolDev
Author URI: https://cruisedhowdubai.com
Template: hello-elementor
Version: 1.0.0
Text Domain: dhow-cruise
*/

/* ==========================================================================
   1. GOOGLE FONTS IMPORTS
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400;1,9..40,500&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=Noto+Serif+Arabic:wght@400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700&display=swap');

/* ==========================================================================
   2. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand-primary: #1d2580;
  --brand-secondary: #f05501;
  --brand-accent: #c8a45a;
  --brand-teal: #0d9488;
  --brand-red: #FF0708;
  --brand-dark: #0f172a;
  --brand-light: #f8fafc;
  --brand-white: #ffffff;

  /* Functional Colors */
  --whatsapp-green: #25d366;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 20px 48px rgba(15, 23, 42, 0.16);
  --shadow-card-hover: 0 16px 40px rgba(29, 37, 128, 0.15);
  --shadow-gold: 0 8px 24px rgba(200, 164, 90, 0.25);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', 'Noto Serif Arabic', 'Segoe UI', Tahoma, sans-serif;
  --font-hindi: 'Noto Sans Devanagari', 'Segoe UI', sans-serif;
  --font-chinese: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;

  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-floating: 500;
  --z-toast: 600;
}

/* ==========================================================================
   3. BASE RESET & TYPOGRAPHY
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 0.875rem + 0.25vw, 1.0625rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--brand-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-dark);
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  line-height: 1.15;
}

h2 {
  font-size: clamp(1.625rem, 1.25rem + 1.875vw, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 1rem + 1.25vw, 1.875rem);
}

h4 {
  font-size: clamp(1.125rem, 1rem + 0.625vw, 1.5rem);
}

h5 {
  font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.25rem);
}

h6 {
  font-size: clamp(0.9375rem, 0.875rem + 0.3125vw, 1.125rem);
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

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

a:hover {
  color: var(--brand-secondary);
}

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

ul, ol {
  list-style: none;
}

strong, b {
  font-weight: 600;
}

::selection {
  background-color: var(--brand-primary);
  color: var(--brand-white);
}

/* ==========================================================================
   4. LAYOUT - CONTAINER, SECTIONS, GRIDS
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--space-4xl) 0;
}

.section--light {
  background-color: var(--brand-light);
}

.section--dark {
  background-color: var(--brand-dark);
  color: var(--brand-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--brand-white);
}

.section--dark p {
  color: rgba(255, 255, 255, 0.8);
}

.section--primary {
  background-color: var(--brand-primary);
  color: var(--brand-white);
}

.section--primary h2,
.section--primary h3,
.section--primary p {
  color: var(--brand-white);
}

/* Responsive Grids */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

@media (min-width: 480px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 768px) {
  .section {
    padding: var(--space-4xl) 0;
  }

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

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

  .grid-2,
  .grid-3,
  .grid-4 {
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* Mobile section padding */
@media (max-width: 767px) {
  .section {
    padding: var(--space-2xl) 0;
  }
}

/* ==========================================================================
   5. SECTION HEADER
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header__overline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand-secondary);
  margin-bottom: var(--space-sm);
}

.section-header__heading {
  margin-bottom: var(--space-md);
}

.section-header__subtitle {
  font-size: clamp(1rem, 0.9375rem + 0.3125vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
}

.section--dark .section-header__overline {
  color: var(--brand-accent);
}

.section--dark .section-header__subtitle {
  color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   6. BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-decoration: none;
  line-height: 1.4;
}

.btn:focus-visible {
  outline: 3px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Sizes */
.btn--sm {
  padding: 0.5rem 1.125rem;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}

.btn--md {
  padding: 0.75rem 1.75rem;
  font-size: 0.9375rem;
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
  border-radius: var(--radius-lg);
}

/* Primary */
.btn--primary {
  background-color: var(--brand-primary);
  color: var(--brand-white);
  border-color: var(--brand-primary);
}

.btn--primary:hover {
  background-color: #161d66;
  border-color: #161d66;
  color: var(--brand-white);
  box-shadow: 0 6px 20px rgba(29, 37, 128, 0.35);
  transform: translateY(-1px);
}

/* Secondary */
.btn--secondary {
  background-color: var(--brand-secondary);
  color: var(--brand-white);
  border-color: var(--brand-secondary);
}

.btn--secondary:hover {
  background-color: #d94a00;
  border-color: #d94a00;
  color: var(--brand-white);
  box-shadow: 0 6px 20px rgba(240, 85, 1, 0.35);
  transform: translateY(-1px);
}

/* Gold */
.btn--gold {
  background-color: var(--brand-accent);
  color: var(--brand-dark);
  border-color: var(--brand-accent);
}

.btn--gold:hover {
  background-color: #b8944a;
  border-color: #b8944a;
  color: var(--brand-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}

/* WhatsApp */
.btn--whatsapp {
  background-color: var(--whatsapp-green);
  color: var(--brand-white);
  border-color: var(--whatsapp-green);
}

.btn--whatsapp:hover {
  background-color: #1fb855;
  border-color: #1fb855;
  color: var(--brand-white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transform: translateY(-1px);
}

/* Outline */
.btn--outline {
  background-color: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}

.btn--outline:hover {
  background-color: var(--brand-primary);
  color: var(--brand-white);
  transform: translateY(-1px);
}

.btn--outline-white {
  background-color: transparent;
  color: var(--brand-white);
  border-color: var(--brand-white);
}

.btn--outline-white:hover {
  background-color: var(--brand-white);
  color: var(--brand-primary);
  transform: translateY(-1px);
}

/* Button icon */
.btn svg,
.btn i {
  width: 1.125em;
  height: 1.125em;
  flex-shrink: 0;
}

/* ==========================================================================
   7. NAVIGATION / HEADER
   ========================================================================== */

.nav-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background-color: var(--brand-white);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-base);
}

.nav-header.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

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

.nav-header__logo img {
  height: 44px;
  width: auto;
}

.nav-header__menu {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-header__link {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition-fast);
}

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

.nav-header__link:hover,
.nav-header__link--active {
  color: var(--brand-primary);
}

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

.nav-header__cta {
  display: none;
  align-items: center;
  gap: var(--space-sm);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.nav-dropdown__toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform var(--transition-fast);
}

.nav-dropdown:hover .nav-dropdown__toggle::after,
.nav-dropdown--open .nav-dropdown__toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background-color: var(--brand-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-sm) 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-fast), visibility var(--transition-fast), transform var(--transition-fast);
  z-index: var(--z-dropdown);
}

.nav-dropdown:hover .nav-dropdown__panel,
.nav-dropdown--open .nav-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__link {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav-dropdown__link:hover {
  background-color: var(--brand-light);
  color: var(--brand-primary);
}

/* Hamburger & Mobile Menu */
.nav-header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: calc(var(--z-overlay) + 1);
}

.nav-header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--brand-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.nav-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background-color: var(--brand-white);
  z-index: var(--z-overlay);
  padding: 5rem var(--space-xl) var(--space-xl);
  overflow-y: auto;
  transition: right var(--transition-slow);
  box-shadow: var(--shadow-xl);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.5);
  z-index: calc(var(--z-overlay) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.0625rem;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu__link:hover {
  color: var(--brand-primary);
}

.mobile-menu__cta {
  margin-top: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 1024px) {
  .nav-header__menu {
    display: flex;
  }

  .nav-header__cta {
    display: flex;
  }

  .nav-header__hamburger {
    display: none;
  }
}

/* ==========================================================================
   8. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img,
.hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.4) 0%,
    rgba(15, 23, 42, 0.65) 60%,
    rgba(15, 23, 42, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 var(--container-padding);
}

.hero-content h1 {
  color: var(--brand-white);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.0625rem, 1rem + 0.3125vw, 1.25rem);
  margin-bottom: var(--space-xl);
}

.hero-content__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  padding: 0.5rem 1.25rem;
  margin-bottom: var(--space-lg);
  font-size: 0.875rem;
  color: var(--brand-white);
}

.hero-badge__stars {
  color: var(--brand-accent);
  letter-spacing: 2px;
}

/* ==========================================================================
   9. CARDS
   ========================================================================== */

/* Base card */
.card {
  background-color: var(--brand-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-primary);
}

.card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__body {
  padding: var(--space-lg);
}

.card__tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background-color: var(--brand-light);
  color: var(--brand-primary);
  margin-bottom: var(--space-sm);
}

.card__title {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.card__text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.card__footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Service Card */
.service-card {
  text-align: center;
  padding: var(--space-xl);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(29, 37, 128, 0.08);
  border-radius: var(--radius-lg);
  color: var(--brand-primary);
  font-size: 1.5rem;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.service-card:hover .service-card__icon {
  background-color: var(--brand-primary);
  color: var(--brand-white);
}

/* Pricing Card */
.pricing-card {
  text-align: center;
  position: relative;
}

.pricing-card__badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand-secondary), var(--brand-red));
  color: var(--brand-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.375rem 1.25rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.pricing-card--featured {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.pricing-card--featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.pricing-card__header {
  padding: var(--space-xl) var(--space-lg) var(--space-md);
}

.pricing-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  font-family: var(--font-body);
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.2;
}

.pricing-card__price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__price .currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-card__features {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
}

.pricing-card__features li {
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-card__features li::before {
  content: '\2713';
  color: var(--brand-teal);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__action {
  padding: var(--space-md) var(--space-lg) var(--space-xl);
}

.pricing-card__action .btn {
  width: 100%;
}

/* Experience Card */
.experience-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  border: none;
  background: none;
  box-shadow: none;
}

.experience-card:hover {
  transform: none;
  box-shadow: none;
}

.experience-card__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.experience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.experience-card:hover .experience-card__image img {
  transform: scale(1.08);
}

.experience-card__content {
  padding: var(--space-md) 0;
}

@media (min-width: 768px) {
  .experience-card {
    grid-template-columns: 1fr 1fr;
  }

  .experience-card:nth-child(even) .experience-card__image {
    order: 2;
  }

  .experience-card:nth-child(even) .experience-card__content {
    order: 1;
  }
}

/* Blog Card */
.blog-card .card__body {
  padding: var(--space-lg);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card__title a {
  color: var(--brand-dark);
}

.blog-card__title a:hover {
  color: var(--brand-primary);
}

/* Testimonial Card */
.testimonial-card {
  padding: var(--space-xl);
  text-align: left;
  border-radius: var(--radius-xl);
}

.testimonial-card__stars {
  color: var(--brand-accent);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-md);
}

.testimonial-card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand-dark);
}

.testimonial-card__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   10. DIRECT ANSWER BOX
   ========================================================================== */

.direct-answer {
  background-color: #f0fdfa;
  border-left: 4px solid var(--brand-teal);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.direct-answer p {
  color: var(--text-primary);
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.direct-answer strong {
  color: var(--brand-dark);
}

/* ==========================================================================
   11. FAQ ACCORDION
   ========================================================================== */

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion__item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-accordion__item:hover {
  border-color: var(--border-hover);
}

.faq-accordion__item.active {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.faq-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem var(--space-lg);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}

.faq-accordion__trigger:hover {
  color: var(--brand-primary);
}

.faq-accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition-base);
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--brand-primary);
  border-radius: 1px;
}

.faq-accordion__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-accordion__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
  transition: transform var(--transition-base);
}

.faq-accordion__item.active .faq-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

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

.faq-accordion__body {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ==========================================================================
   12. COMPARISON TABLE
   ========================================================================== */

.comparison-table {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--space-xl);
}

.comparison-table table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  border-spacing: 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.9375rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--brand-dark);
  background-color: var(--brand-light);
  position: sticky;
  top: 0;
}

.comparison-table td:first-child,
.comparison-table th:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table__recommended {
  background-color: rgba(29, 37, 128, 0.04);
  border-left: 2px solid var(--brand-primary);
  border-right: 2px solid var(--brand-primary);
}

.comparison-table thead .comparison-table__recommended {
  background-color: var(--brand-primary);
  color: var(--brand-white);
  border-top: 2px solid var(--brand-primary);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  position: relative;
}

.comparison-table tbody tr:last-child .comparison-table__recommended {
  border-bottom: 2px solid var(--brand-primary);
}

.comparison-table .check {
  color: var(--brand-teal);
  font-weight: 700;
}

.comparison-table .cross {
  color: var(--text-muted);
}

/* ==========================================================================
   13. PRICING TABLE
   ========================================================================== */

.pricing-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-table {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   14. GALLERY GRID
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
}

.gallery-grid__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-grid__item:hover img {
  transform: scale(1.08);
}

.gallery-grid__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15, 23, 42, 0.4));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-grid__item:hover::after {
  opacity: 1;
}

/* Masonry-like spans */
.gallery-grid__item--wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-grid__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   15. CTA BANNER
   ========================================================================== */

.cta-banner {
  background: linear-gradient(135deg, var(--brand-primary) 0%, #2a34a8 50%, var(--brand-dark) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(200, 164, 90, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--brand-white);
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  position: relative;
}

/* ==========================================================================
   16. BOOKING STRIP
   ========================================================================== */

.booking-strip {
  background-color: var(--brand-dark);
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  color: var(--brand-white);
}

.booking-strip__info {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xl);
  align-items: center;
}

.booking-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.booking-strip__item-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-strip__item-value {
  font-weight: 600;
  font-size: 1rem;
}

.booking-strip__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--brand-accent);
}

.booking-strip__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .booking-strip {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   17. BREADCRUMB
   ========================================================================== */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  padding: var(--space-md) 0;
  font-size: 0.8125rem;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.breadcrumb__link {
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
  color: var(--brand-primary);
}

.breadcrumb__separator {
  color: var(--text-muted);
  font-size: 0.625rem;
}

.breadcrumb__current {
  color: var(--text-primary);
  font-weight: 500;
}

/* ==========================================================================
   18. EXPLORE MORE / RELATED PAGES
   ========================================================================== */

.explore-more {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.explore-more__card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  background-color: var(--brand-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.explore-more__card:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.explore-more__card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.explore-more__card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore-more__card-title {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--brand-dark);
}

.explore-more__card-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

@media (min-width: 480px) {
  .explore-more {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .explore-more {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   19. STATS / COUNTER
   ========================================================================== */

.stats-counter {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
  text-align: center;
}

.stats-counter__item {
  padding: var(--space-md);
}

.stats-counter__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 700;
  color: var(--brand-primary);
  line-height: 1.2;
  margin-bottom: var(--space-xs);
}

.stats-counter__label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.section--dark .stats-counter__number {
  color: var(--brand-accent);
}

.section--dark .stats-counter__label {
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .stats-counter {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   20. TESTIMONIAL CAROUSEL
   ========================================================================== */

.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-carousel__track {
  display: flex;
  transition: transform var(--transition-slow) ease;
}

.testimonial-carousel__slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 var(--space-sm);
}

@media (min-width: 768px) {
  .testimonial-carousel__slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-carousel__slide {
    flex: 0 0 33.333%;
  }
}

.testimonial-carousel__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  border: none;
  background-color: var(--border-color);
  cursor: pointer;
  transition: background-color var(--transition-fast), width var(--transition-base);
}

.testimonial-carousel__dot.active {
  background-color: var(--brand-primary);
  width: 28px;
}

.testimonial-carousel__arrows {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

.testimonial-carousel__arrow {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--brand-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
  font-size: 1.125rem;
}

.testimonial-carousel__arrow:hover {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--brand-white);
}

/* ==========================================================================
   21. INCLUSIONS GRID
   ========================================================================== */

.inclusions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.inclusion-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background-color: var(--brand-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.inclusion-item:hover {
  border-color: var(--brand-primary);
  box-shadow: var(--shadow-md);
}

.inclusion-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(29, 37, 128, 0.08);
  border-radius: var(--radius-md);
  color: var(--brand-primary);
  font-size: 1.25rem;
}

.inclusion-item__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--brand-dark);
  margin-bottom: 0.25rem;
}

.inclusion-item__text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (min-width: 480px) {
  .inclusions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .inclusions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   22. MENU SECTION
   ========================================================================== */

.menu-section {
  padding: var(--space-3xl) 0;
}

.menu-section__category {
  margin-bottom: var(--space-2xl);
}

.menu-section__category-title {
  font-size: 1.375rem;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--brand-accent);
  display: inline-block;
}

.menu-section__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px dashed var(--border-color);
}

.menu-item__name {
  font-weight: 500;
  color: var(--text-primary);
}

.menu-item__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.menu-item__dots {
  flex: 1;
  border-bottom: 1px dotted var(--border-color);
  margin: 0 var(--space-sm);
  min-width: 40px;
}

.menu-item__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.125rem 0.5rem;
  border-radius: var(--radius-full);
  background-color: rgba(13, 148, 136, 0.1);
  color: var(--brand-teal);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (min-width: 768px) {
  .menu-section__items {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   23. FLOATING CTAs
   ========================================================================== */

.floating-ctas {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  z-index: var(--z-floating);
}

.floating-ctas__btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-white);
  font-size: 1.375rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
}

.floating-ctas__btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background-color: var(--whatsapp-green);
}

.whatsapp-btn:hover {
  background-color: #1fb855;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  color: var(--brand-white);
}

.phone-btn {
  background-color: var(--brand-primary);
}

.phone-btn:hover {
  background-color: #161d66;
  box-shadow: 0 8px 24px rgba(29, 37, 128, 0.4);
  color: var(--brand-white);
}

.back-to-top {
  background-color: var(--brand-dark);
  width: 44px;
  height: 44px;
  font-size: 1.125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), background-color var(--transition-fast);
}

.back-to-top:hover {
  background-color: var(--brand-primary);
  color: var(--brand-white);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ==========================================================================
   24. FOOTER
   ========================================================================== */

.site-footer {
  background-color: var(--brand-dark);
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--space-4xl);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-3xl);
}

.site-footer__brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin-top: var(--space-md);
}

.site-footer__brand img {
  height: 40px;
  width: auto;
}

.site-footer__heading {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--brand-white);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.site-footer__link:hover {
  color: var(--brand-white);
  padding-left: 4px;
}

.site-footer__social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.site-footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.site-footer__social-icon:hover {
  background-color: var(--brand-primary);
  color: var(--brand-white);
  transform: translateY(-2px);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  margin-bottom: 0;
}

.site-footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.site-footer__bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
}

.site-footer__bottom-links a:hover {
  color: var(--brand-white);
}

@media (min-width: 480px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ==========================================================================
   25. ANIMATIONS & KEYFRAMES
   ========================================================================== */

/* Fade up */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* Counter animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-counter__number.animate {
  animation: countUp 0.6s ease forwards;
}

/* Pulse for CTAs */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-btn {
  animation: pulse 2s ease infinite;
}

/* Shimmer for loading */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* Slide in from right (for mobile menu) */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* Float animation for badges */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-badge {
  animation: float 3s ease-in-out infinite;
}

/* ==========================================================================
   26. RTL SUPPORT
   ========================================================================== */

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

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] h5,
[dir="rtl"] h6 {
  font-family: 'Noto Serif Arabic', var(--font-heading);
}

[dir="rtl"] body,
[dir="rtl"] p,
[dir="rtl"] a,
[dir="rtl"] span,
[dir="rtl"] li {
  font-family: var(--font-arabic);
}

/* RTL text alignment */
[dir="rtl"] .breadcrumb,
[dir="rtl"] .faq-accordion__trigger,
[dir="rtl"] .testimonial-card,
[dir="rtl"] .card__body,
[dir="rtl"] .pricing-card__features,
[dir="rtl"] .inclusion-item,
[dir="rtl"] .menu-item {
  text-align: right;
}

/* RTL flex direction reversal */
[dir="rtl"] .breadcrumb,
[dir="rtl"] .nav-header__inner,
[dir="rtl"] .booking-strip__info,
[dir="rtl"] .inclusion-item,
[dir="rtl"] .testimonial-card__author,
[dir="rtl"] .explore-more__card,
[dir="rtl"] .blog-card__meta,
[dir="rtl"] .faq-accordion__trigger {
  flex-direction: row-reverse;
}

/* RTL margin/padding swaps */
[dir="rtl"] .direct-answer {
  border-left: none;
  border-right: 4px solid var(--brand-teal);
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

[dir="rtl"] .site-footer__link:hover {
  padding-left: 0;
  padding-right: 4px;
}

/* RTL floating CTAs */
[dir="rtl"] .floating-ctas {
  right: auto;
  left: 1.5rem;
}

/* RTL nav underline */
[dir="rtl"] .nav-header__link::after {
  left: auto;
  right: 0;
}

/* RTL dropdown position */
[dir="rtl"] .nav-dropdown__panel {
  left: auto;
  right: 50%;
  transform: translateX(50%) translateY(8px);
}

[dir="rtl"] .nav-dropdown:hover .nav-dropdown__panel,
[dir="rtl"] .nav-dropdown--open .nav-dropdown__panel {
  transform: translateX(50%) translateY(0);
}

/* RTL mobile menu */
[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
}

[dir="rtl"] .mobile-menu.open {
  left: 0;
}

/* RTL experience card alternation */
@media (min-width: 768px) {
  [dir="rtl"] .experience-card:nth-child(even) .experience-card__image {
    order: 1;
  }

  [dir="rtl"] .experience-card:nth-child(even) .experience-card__content {
    order: 2;
  }

  [dir="rtl"] .experience-card:nth-child(odd) .experience-card__image {
    order: 2;
  }

  [dir="rtl"] .experience-card:nth-child(odd) .experience-card__content {
    order: 1;
  }
}

/* ==========================================================================
   27. LANGUAGE-SPECIFIC FONT STACKS
   ========================================================================== */

[lang="ar"] body,
[lang="ar"] p,
[lang="ar"] a,
[lang="ar"] li,
[lang="ar"] span {
  font-family: var(--font-arabic);
}

[lang="ar"] h1,
[lang="ar"] h2,
[lang="ar"] h3,
[lang="ar"] h4,
[lang="ar"] h5,
[lang="ar"] h6 {
  font-family: 'Noto Serif Arabic', serif;
}

[lang="hi"] body,
[lang="hi"] p,
[lang="hi"] a,
[lang="hi"] li,
[lang="hi"] span,
[lang="hi"] h1,
[lang="hi"] h2,
[lang="hi"] h3,
[lang="hi"] h4,
[lang="hi"] h5,
[lang="hi"] h6 {
  font-family: var(--font-hindi);
}

[lang="zh"] body,
[lang="zh"] p,
[lang="zh"] a,
[lang="zh"] li,
[lang="zh"] span,
[lang="zh"] h1,
[lang="zh"] h2,
[lang="zh"] h3,
[lang="zh"] h4,
[lang="zh"] h5,
[lang="zh"] h6 {
  font-family: var(--font-chinese);
}

/* ==========================================================================
   28. UTILITY CLASSES
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--brand-primary); }
.text-secondary { color: var(--brand-secondary); }
.text-accent { color: var(--brand-accent); }
.text-teal { color: var(--brand-teal); }
.text-white { color: var(--brand-white); }
.text-dark { color: var(--brand-dark); }
.text-muted { color: var(--text-muted); }

.bg-primary { background-color: var(--brand-primary); }
.bg-secondary { background-color: var(--brand-secondary); }
.bg-dark { background-color: var(--brand-dark); }
.bg-light { background-color: var(--brand-light); }
.bg-white { background-color: var(--brand-white); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.mt-0 { margin-top: 0; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   29. WORDPRESS / ELEMENTOR OVERRIDES
   ========================================================================== */

/* Reset Elementor defaults where needed */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: var(--container-max);
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading);
}

.elementor-widget-text-editor {
  font-family: var(--font-body);
}

/* WordPress block alignments */
.alignfull {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.alignwide {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* WordPress admin bar offset */
.admin-bar .nav-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .nav-header {
    top: 46px;
  }
}

/* ==========================================================================
   30. PRINT STYLES
   ========================================================================== */

@media print {
  .nav-header,
  .floating-ctas,
  .mobile-menu,
  .mobile-menu__overlay,
  .back-to-top,
  .cta-banner,
  .booking-strip {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  h1, h2, h3, h4 {
    color: #000;
    page-break-after: avoid;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .section {
    padding: 1rem 0;
  }
}
