@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   CSS VARIABLES & DESIGN SYSTEM
   ========================================== */
:root {
  /* Color Palette */
  --primary-color: #0d3a2b;       /* Deep Forest Emerald Green */
  --primary-rgb: 13, 58, 43;
  --accent-color: #c29947;        /* Luxury Champagne Gold */
  --accent-rgb: 194, 153, 71;
  --accent-hover: #aa8135;        /* Darker Gold for Hover */
  --text-main: #334155;           /* Slate 700 */
  --text-muted: #64748b;          /* Slate 500 */
  --text-light: #f8fafc;          /* Slate 50 */
  --bg-light: #fdfdfd;            /* Clean Body Background */
  --bg-section: #f4f7f5;          /* Soft Greenish Slate Background */
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-en: 'Montserrat', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --font-family: var(--font-en);  /* Default is English */

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-gold: 0 10px 20px -5px rgba(194, 153, 71, 0.3);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Borders */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Layout */
  --header-height: 80px;
}

/* RTL Override */
[dir="rtl"] {
  --font-family: var(--font-ar);
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb), 0.4);
}

/* ==========================================
   REUSABLE COMPONENTS
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-badge {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 2px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 4px;
}
.section-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
}
.section-header:hover .section-badge::after {
  width: 70px;
}
.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.3;
}
[dir="rtl"] .section-title {
  font-weight: 800;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(194, 153, 71, 0.45);
}

.btn-secondary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background-color: transparent;
}
.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-dark {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-dark:hover {
  background-color: #1a5c45;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(13, 58, 43, 0.25);
}

/* ==========================================
   NAVIGATION HEADER
   ========================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(var(--primary-rgb), 0.96);
  backdrop-filter: blur(10px);
  height: 70px;
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
  filter: brightness(1.05) contrast(1.05);
}
.header.scrolled .logo-img {
  height: 42px;
}
.logo-text {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}
.logo-text span {
  color: var(--accent-color);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
  opacity: 0.85;
}
.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--accent-color);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Actions in Header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switch {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-fast);
}
.lang-switch:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
}

.header-btn {
  padding: 8px 18px;
  font-size: 0.85rem;
}

/* Hamburger menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 20px;
  justify-content: space-between;
}
.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SLIDER
   ========================================== */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background-color: var(--primary-color);
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
  transition: transform 6s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(var(--primary-rgb), 0.7) 0%,
    rgba(var(--primary-rgb), 0.5) 50%,
    rgba(var(--primary-rgb), 0.85) 100%
  );
  z-index: 3;
}

.slide-content {
  position: relative;
  z-index: 4;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--white);
  padding-top: 80px;
}

.slide-badge {
  display: inline-block;
  background-color: rgba(var(--accent-rgb), 0.2);
  color: var(--accent-color);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  margin-bottom: 24px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform var(--transition-normal) 0.3s, opacity var(--transition-normal) 0.3s;
}

.slide-title {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 800px;
  transform: translateY(30px);
  opacity: 0;
  transition: transform var(--transition-normal) 0.5s, opacity var(--transition-normal) 0.5s;
}

.slide-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  max-width: 600px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform var(--transition-normal) 0.7s, opacity var(--transition-normal) 0.7s;
}

.slide-btn {
  opacity: 0;
  transform: translateY(30px);
  transition: transform var(--transition-normal) 0.9s, opacity var(--transition-normal) 0.9s;
}

/* Active slide states for content triggers */
.slide.active .slide-badge,
.slide.active .slide-title,
.slide.active .slide-desc,
.slide.active .slide-btn {
  transform: translateY(0);
  opacity: 1;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}
.slider-arrow:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-gold);
}
.slider-arrow-prev {
  left: 30px;
}
.slider-arrow-next {
  right: 30px;
}

/* RTL Slider adjustments */
[dir="rtl"] .slider-arrow-prev {
  left: auto;
  right: 30px;
}
[dir="rtl"] .slider-arrow-next {
  right: auto;
  left: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}
.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-normal);
}
.slider-dot.active {
  background-color: var(--accent-color);
  width: 30px;
  box-shadow: var(--shadow-gold);
}

/* Social media sticky bar */
.social-sidebar {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
[dir="rtl"] .social-sidebar {
  right: auto;
  left: 40px;
}
.social-sidebar-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.2rem;
  transition: var(--transition-fast);
}
.social-sidebar-link:hover {
  color: var(--accent-color);
  transform: scale(1.2);
}

/* ==========================================
   FLOATING ACTIONS
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
[dir="rtl"] .floating-actions {
  right: auto;
  left: 30px;
}
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}
.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}
.float-whatsapp {
  background-color: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}
.float-call {
  background-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(212, 176, 98, 0.4);
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about {
  padding: 100px 0;
  background-color: var(--white);
}

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

.about-image-wrapper {
  position: relative;
  padding: 20px;
}

.about-img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80%;
  height: 80%;
  border: 4px solid var(--accent-color);
  border-radius: var(--radius-md);
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 40px;
  right: -10px;
  z-index: 3;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-inline-start: 5px solid var(--accent-color);
}
[dir="rtl"] .about-badge {
  right: auto;
  left: -10px;
}

.about-badge-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}
.about-badge-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-top: 4px;
}

/* About Us Content Tabs */
.about-tabs-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.1);
  padding-bottom: 10px;
}

.about-tab-btn {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 10px 20px;
  position: relative;
  transition: var(--transition-fast);
}

.about-tab-btn.active {
  color: var(--primary-color);
}

.about-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -11px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  transition: var(--transition-normal);
}

.about-tab-btn.active::after {
  width: 100%;
}

.about-tabs-content {
  margin-bottom: 36px;
  min-height: 180px;
}

.about-tab-panel {
  display: none;
  animation: fadeIn var(--transition-normal) forwards;
}

.about-tab-panel.active {
  display: block;
}

.about-tab-panel p {
  color: var(--text-main);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

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

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
  padding: 100px 0;
  background-color: var(--bg-section);
}

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

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.02);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-normal);
}
[dir="rtl"] .service-card::after {
  transform-origin: right;
}

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

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-box {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-md);
  background-color: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 28px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
  background-color: var(--accent-color);
  color: var(--white);
  transform: scale(1.05);
}

.service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-color);
}
.service-link i {
  transition: transform var(--transition-fast);
}
.service-card:hover .service-link i {
  transform: translateX(5px);
}
[dir="rtl"] .service-card:hover .service-link i {
  transform: translateX(-5px);
}

/* ==========================================
   STATS SECTION (COUNTER)
   ========================================== */
.stats {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(212, 176, 98, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -20px;
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
}
[dir="rtl"] .stat-item:not(:last-child)::after {
  right: auto;
  left: -20px;
}

.stat-number {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.1;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.85;
}

/* ==========================================
   NEWS SECTION
   ========================================== */
.news {
  padding: 100px 0;
  background-color: var(--white);
}

.news-header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.news-header-container .section-header {
  margin-bottom: 0;
  text-align: start;
}
.news-header-container .section-badge::after {
  left: 0;
  transform: none;
}
[dir="rtl"] .news-header-container .section-badge::after {
  right: 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--bg-section);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.news-img-box {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

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

.news-date {
  position: absolute;
  bottom: 15px;
  inset-inline-start: 15px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 6px 12px;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.news-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.4;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary-color);
  margin-top: auto;
}
.news-link i {
  transition: transform var(--transition-fast);
  color: var(--accent-color);
}
.news-card:hover .news-link i {
  transform: translateX(5px);
}
[dir="rtl"] .news-card:hover .news-link i {
  transform: translateX(-5px);
}
.news-card:hover .news-link {
  color: var(--accent-color);
}

/* ==========================================
   CONTACT CTA BANNER
   ========================================== */
.contact-banner {
  padding: 80px 0;
  background: linear-gradient(rgba(13, 30, 61, 0.9), rgba(13, 30, 61, 0.9)), url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?auto=format&fit=crop&q=80&w=1920') center/cover fixed;
  color: var(--white);
  text-align: center;
}

.contact-banner-content {
  max-width: 800px;
  margin-inline: auto;
}

.contact-banner-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contact-banner-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-inline: auto;
}

.contact-phone-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}
.contact-phone-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  animation: pulse 2s infinite;
}
.contact-phone-number {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 1px;
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 176, 98, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 176, 98, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 176, 98, 0); }
}

.contact-buttons-wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* ==========================================
   CONTACT FORM / MODAL
   ========================================== */
.contact-section {
  padding: 100px 0;
  background-color: var(--bg-section);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.contact-info-panel {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(212, 176, 98, 0.1);
  border-radius: var(--radius-full);
}

.contact-info-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.contact-info-desc {
  opacity: 0.8;
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 1.3rem;
  color: var(--accent-color);
  margin-top: 4px;
}

.contact-detail-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-detail-text p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.contact-socials {
  display: flex;
  gap: 15px;
  z-index: 2;
}

.contact-social-link {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition-fast);
}

.contact-social-link:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

/* Contact Form Input Fields */
.contact-form-panel {
  padding: 60px;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

.form-group-full {
  grid-column: span 2;
}

.form-control-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  background-color: #fafbfc;
  color: var(--primary-color);
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent-color);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.15);
}

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

/* Modal Ambassadorship */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--primary-rgb), 0.8);
  backdrop-filter: blur(5px);
}

.modal-container {
  position: relative;
  background-color: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
  padding: 40px;
  z-index: 2001;
  animation: modalIn var(--transition-normal) forwards;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}
[dir="rtl"] .modal-close {
  right: auto;
  left: 20px;
}
.modal-close:hover {
  color: var(--accent-color);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}
[dir="rtl"] .footer-col-title::after {
  left: auto;
  right: 0;
}

.footer-about-text {
  opacity: 0.75;
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.footer-iata-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
}
.footer-iata-badge i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

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

.footer-link-item a {
  opacity: 0.75;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-link-item a::before {
  content: '→';
  color: var(--accent-color);
  transition: transform var(--transition-fast);
}
[dir="rtl"] .footer-link-item a::before {
  content: '←';
}
.footer-link-item a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-inline-start: 5px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  opacity: 0.8;
  font-size: 0.95rem;
}
.footer-contact-item i {
  color: var(--accent-color);
  margin-top: 4px;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-credits a {
  color: var(--accent-color);
  font-weight: 600;
}
.footer-credits a:hover {
  text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--primary-color);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transition: var(--transition-normal);
    z-index: 999;
    overflow-y: auto;
  }
  .nav-menu.active {
    left: 0;
  }
  [dir="rtl"] .nav-menu {
    left: auto;
    right: -100%;
  }
  [dir="rtl"] .nav-menu.active {
    right: 0;
  }
  
  .header-actions {
    display: none;
  }
  .header-actions.active {
    display: flex;
    margin-top: 20px;
  }
  
  .slider-arrow {
    display: none;
  }
  .slider-dots {
    bottom: 20px;
  }
  .social-sidebar {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item::after, [dir="rtl"] .stat-item::after {
    display: none;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-info-panel, .contact-form-panel {
    padding: 40px 30px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group-full {
    grid-column: span 1;
  }
  .contact-buttons-wrap {
    flex-direction: column;
    align-items: center;
  }
  .contact-buttons-wrap .btn {
    width: 100%;
  }
}
