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

:root {
  --bg-dark: #040d0a;
  --bg-card: rgba(8, 26, 21, 0.65);
  --bg-card-hover: rgba(12, 38, 30, 0.85);
  --primary: #0b3c2c;
  --primary-light: #165c46;
  --gold: #c5a059;
  --gold-glow: rgba(197, 160, 89, 0.35);
  --gold-light: #e6cb97;
  --text-light: #f5fcf8;
  --text-muted: rgba(245, 252, 248, 0.7);
  --text-dark: #121e1a;
  --line-gold: rgba(197, 160, 89, 0.25);
  --line-light: rgba(245, 252, 248, 0.1);
  --radius: 12px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Outfit', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.8;
  overflow-x: hidden;
}

body.lang-ar {
  font-family: var(--font-ar);
}

body.lang-en {
  font-family: var(--font-en);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* Background Gradients & Glows */
.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -10;
  overflow: hidden;
  background: 
    radial-gradient(circle at 10% 20%, rgba(11, 60, 44, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
    #050e0b;
}

.glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: -5;
}
.glow-orb-1 {
  background: var(--gold);
  top: -100px;
  right: -100px;
}
.glow-orb-2 {
  background: var(--primary-light);
  bottom: -100px;
  left: -100px;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* Header & Nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(4, 13, 10, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--line-light);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 0.5rem 0;
  background: rgba(4, 13, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 60px;
  width: auto;
}

.logo-text {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.2;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--text-light) 30%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a:hover {
  color: var(--gold-light);
}

.nav-links a:hover::after {
  width: 100%;
}

.lang-switch-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--line-gold);
  border-radius: 30px;
  font-weight: 600;
  color: var(--gold-light);
  font-size: 0.85rem;
  background: rgba(197, 160, 89, 0.05);
}

.lang-switch-btn:hover {
  background: var(--gold);
  color: var(--text-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(to bottom, rgba(4, 13, 10, 0.6) 0%, rgba(4, 13, 10, 0.95) 100%),
    linear-gradient(to right, rgba(4, 13, 10, 0.8) 0%, transparent 100%);
  z-index: 1;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tagline {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  width: 25px;
  height: 2px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.25;
  background: linear-gradient(135deg, #ffffff 40%, #ebd4a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 30px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #b38e49 100%);
  color: var(--text-dark);
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 89, 0.55);
}

.btn-secondary {
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  background: rgba(197, 160, 89, 0.05);
}

.btn-secondary:hover {
  background: rgba(197, 160, 89, 0.15);
  transform: translateY(-3px);
}

.hero-card {
  background: rgba(8, 26, 21, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.hero-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold-light);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-detail h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.info-detail p {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

/* Stats Section */
.stats {
  padding: 4rem 2rem;
  position: relative;
  z-index: 10;
  margin-top: -80px;
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  background: var(--bg-card-hover);
  border-color: var(--line-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
  background: var(--gold);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

.stat-sublabel {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Section Headings */
section.section-padding {
  padding: 6rem 2rem;
}

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

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-eyebrow {
  color: var(--gold);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-light);
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

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

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-p-main {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.7;
}

.about-p-sub {
  color: var(--text-muted);
}

.about-block {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  gap: 1.2rem;
  transition: var(--transition);
}

.about-block:hover {
  border-color: var(--line-gold);
  background: var(--bg-card-hover);
}

.about-block-icon {
  background: rgba(11, 60, 44, 0.4);
  color: var(--gold);
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(197, 160, 89, 0.2);
}

.about-block-text h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.about-block-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-images-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 200px 200px;
  gap: 1rem;
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.02);
  border-color: var(--gold);
}

.about-img-1 {
  grid-row: span 2;
}

/* Sectors Section */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sector-card {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.sector-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  background: var(--bg-card-hover);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.sector-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: rgba(11, 60, 44, 0.5);
  border: 1px solid var(--line-gold);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

.sector-card:hover .sector-icon {
  background: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 0 15px var(--gold-glow);
}

.sector-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.sector-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Features/Value Section */
.features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(11, 60, 44, 0.2) 50%, transparent 100%);
}

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

.feature-card {
  background: rgba(8, 26, 21, 0.55);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: transparent;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--line-gold);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}

.feature-card:hover::before {
  background: var(--gold);
}

.feature-num {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 1.2rem;
  display: inline-block;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Countries & Delegations Section */
.countries-panel {
  background: var(--bg-card);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 4rem;
}

.countries-heading {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
  margin-bottom: 2rem;
  text-align: center;
}

.flags-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.country-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  background: rgba(4, 13, 10, 0.5);
  border: 1px solid var(--line-light);
  border-radius: 30px;
  transition: var(--transition);
}

.country-item:hover {
  border-color: var(--gold);
  background: rgba(197, 160, 89, 0.08);
  transform: scale(1.05);
}

.flag-img {
  width: 28px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.country-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.delegations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.delegation-card {
  background: rgba(8, 26, 21, 0.4);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: var(--transition);
}

.delegation-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--line-gold);
  transform: translateY(-3px);
}

.delegation-icon {
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.delegation-title {
  font-weight: 700;
  font-size: 1rem;
}

/* Agenda / Seminars Section */
.agenda-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.agenda-tab-btn {
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--line-light);
  border-radius: 30px;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 1rem;
  background: rgba(8, 26, 21, 0.4);
}

.agenda-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.agenda-tab-btn.active {
  background: linear-gradient(135deg, var(--gold) 0%, #b38e49 100%);
  color: var(--text-dark);
  border-color: var(--gold);
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25);
}

.agenda-content {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}

.agenda-content.active {
  display: flex;
  animation: fadeIn 0.5s ease;
}

.agenda-item {
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.8rem 2.2rem;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: center;
  transition: var(--transition);
}

.agenda-item:hover {
  border-color: var(--line-gold);
  background: var(--bg-card-hover);
}

.agenda-time {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.time-badge {
  background: rgba(197, 160, 89, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--line-gold);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.agenda-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agenda-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.agenda-speaker {
  font-size: 0.95rem;
  color: var(--gold-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.agenda-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Hospitality & VIP Section */
.hospitality-banner {
  background: 
    linear-gradient(135deg, rgba(8, 26, 21, 0.9) 0%, rgba(4, 13, 10, 0.95) 100%),
    url('pic/7283141-1858550593.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: center;
}

.hosp-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hosp-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--gold-light);
}

.hosp-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hosp-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hosp-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1rem;
}

.hosp-list-item-icon {
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hosp-card {
  background: rgba(197, 160, 89, 0.05);
  border: 1px dashed var(--line-gold);
  border-radius: var(--radius);
  padding: 2.2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hosp-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-light);
}

/* Registration Section */
.reg-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.reg-tab-btn {
  background: rgba(8, 26, 21, 0.4);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-muted);
}

.reg-tab-btn:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.reg-tab-btn.active {
  background: var(--bg-card-hover);
  border-color: var(--gold);
  color: var(--text-light);
  box-shadow: 0 10px 25px rgba(11, 60, 44, 0.3);
}

.reg-tab-btn.active .reg-tab-icon {
  background: var(--gold);
  color: var(--text-dark);
}

.reg-tab-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(11, 60, 44, 0.6);
  border: 1px solid var(--line-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.reg-tab-title {
  font-weight: 700;
  font-size: 1.05rem;
}

.reg-pane {
  display: none;
  background: var(--bg-card);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  animation: fadeIn 0.5s ease;
}

.reg-pane.active {
  display: block;
}

.reg-pane-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.reg-info-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.reg-info-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold-light);
}

.reg-info-desc {
  color: var(--text-muted);
}

.reg-benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.reg-benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
}

.reg-benefits-list li::before {
  content: '✔';
  color: var(--gold);
  font-weight: bold;
}

/* Forms styling */
.reg-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
}

.form-control {
  background: rgba(4, 13, 10, 0.6);
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 0.8rem 1.2rem;
  color: var(--text-light);
  font-family: inherit;
  transition: var(--transition);
  width: 100%;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(4, 13, 10, 0.8);
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c5a059' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

body.lang-ar select.form-control {
  background-position: left 1rem center;
}

/* Logos Section */
.logos-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 2rem 0;
  background: rgba(8, 26, 21, 0.2);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-item {
  width: 140px;
  height: 70px;
  object-fit: contain;
  filter: grayscale(100%) brightness(150%) contrast(90%);
  opacity: 0.6;
  transition: var(--transition);
}

.logo-item:hover {
  filter: none;
  opacity: 1;
}

/* Contact & Footer Section */
.contact-section {
  padding-bottom: 0 !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}

.contact-card {
  display: flex;
  gap: 1.2rem;
}

.contact-card-icon {
  background: rgba(197, 160, 89, 0.1);
  color: var(--gold);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 1px solid var(--line-gold);
}

.contact-card-details h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--gold-light);
}

.contact-card-details p, .contact-card-details a {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.contact-card-details a:hover {
  color: var(--gold);
}

.map-container {
  height: 100%;
  min-height: 350px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-gold);
  overflow: hidden;
  background: var(--bg-card);
}

.map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(90%) hue-rotate(90deg) contrast(120%);
}

.site-footer {
  border-top: 1px solid var(--line-light);
  background: #030a08;
  padding: 4rem 2rem 2rem 2rem;
  position: relative;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto 3rem auto;
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1.2fr 1fr;
  gap: 3rem;
}

.qr-footer-box:hover {
  transform: scale(1.05);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-about-text {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.footer-col h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  position: relative;
  padding-bottom: 8px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

body.lang-ar .footer-col h3::after {
  left: auto;
  right: 0;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

body.lang-ar .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(245, 252, 248, 0.05);
  border: 1px solid var(--line-light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.social-btn:hover {
  background: var(--gold);
  color: var(--text-dark);
  border-color: var(--gold);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
  z-index: 999;
  animation: pulseWhatsApp 2s infinite;
}

body.lang-ar .whatsapp-float {
  right: auto;
  left: 30px;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseWhatsApp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(4, 13, 10, 0.98);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    align-items: center;
    transition: var(--transition);
    overflow-y: auto;
  }
  
  .main-nav.active {
    left: 0;
  }
  
  body.lang-ar .main-nav {
    left: auto;
    right: -100%;
  }
  
  body.lang-ar .main-nav.active {
    right: 0;
  }
  
  .nav-links {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .hero-tagline {
    justify-content: center;
  }
  
  .hero-desc {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-images-grid {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
  
  .hospitality-banner {
    grid-template-columns: 1fr;
    padding: 2.5rem;
    gap: 2.5rem;
  }
  
  .reg-pane-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .map-container {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .sectors-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .delegations-grid {
    grid-template-columns: 1fr;
  }
  
  .reg-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .agenda-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .agenda-time {
    align-items: flex-start;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }
  .logo-img {
    height: 45px;
  }
}

/* RTL Specific Tweaks */
body.lang-ar .hero-overlay {
  background: 
    linear-gradient(to bottom, rgba(4, 13, 10, 0.6) 0%, rgba(4, 13, 10, 0.95) 100%),
    linear-gradient(to left, rgba(4, 13, 10, 0.8) 0%, transparent 100%);
}
