/* LOGIN THEME TOGGLE */
.theme-toggle {
  background: none;
  border: none;
  color: var(--gold-400);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.theme-toggle .sun-icon {
  display: block;
}
.theme-toggle .moon-icon {
  display: none;
}
body.light-mode .theme-toggle .sun-icon {
  display: none;
}
body.light-mode .theme-toggle .moon-icon {
  display: block;
}
body.light-mode {
  background: var(--bg-primary) !important;
  color: var(--text-dark) !important;
}
body.light-mode .login-card {
  background: linear-gradient(145deg, var(--gold-100) 0%, var(--white) 100%) !important;
  color: var(--navy-900) !important;
  border-color: #e0cc9f !important;
}
body.light-mode .form-label {
  color: var(--navy-900) !important;
}
body.light-mode .form-input {
  background: rgba(0,0,0,0.04);
  color: var(--navy-900);
  border-color: #e0cc9f;
}
body.light-mode .form-input::placeholder {
  color: #8a8a8a;
}
@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&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&family=Noto+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --navy-900: #040b18;
  --navy-800: #0a1628;
  --navy-700: #0f2038;
  --navy-600: #162d4d;
  --navy-500: #1e3a5f;
  --gold-400: #c9a96e;
  --gold-300: #d4ba85;
  --gold-200: #e0cc9f;
  --gold-100: #f0e6cf;
  --cream: #faf6f0;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-300: #c4c4c4;
  --gray-400: #8a8a8a;
  --gray-500: #6b6b6b;
  --text-dark: #1a1a2e;
  --text-light: #e8e4df;
  --font-heading: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', 'Noto Sans Arabic', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --transition-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-luxury: 0 25px 60px rgba(0, 0, 0, 0.3);
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-gold: 0 5px 30px rgba(201, 169, 110, 0.2);

  /* Theme Variables */
  --bg-primary: var(--cream);
  --bg-secondary: var(--white);
  --text-main: var(--text-dark);
  --text-muted: var(--gray-500);
  --card-shadow: var(--shadow-card);
  --border-color: rgba(201, 169, 110, 0.2);
  --hero-overlay: rgba(255, 250, 240, 0.85);
  --nav-scrolled: rgba(255, 255, 255, 0.95);
}

body.dark-mode {
  --bg-primary: var(--navy-900);
  --bg-secondary: var(--navy-800);
  --text-main: var(--text-light);
  --text-muted: var(--gray-300);
  --card-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  --border-color: rgba(201, 169, 110, 0.3);
  --hero-overlay: rgba(4, 11, 24, 0.85);
  --nav-scrolled: rgba(4, 11, 24, 0.95);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 60px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(4, 11, 24, 0.95);
  backdrop-filter: blur(20px);
  padding: 14px 60px 14px 30px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-icon {
  width: 48px;
  height: 48px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--gold-300);
  opacity: 0.8;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.4s var(--transition-smooth);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gold-400);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  width: 100%;
}

/* DROPDOWN MENU */
.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(4, 11, 24, 0.98);
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 4px;
  list-style: none;
  min-width: 160px;
  padding: 12px 0;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s var(--transition-smooth);
  z-index: 1001;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 0.75rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  position: relative;
   white-space: nowrap;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
  color: var(--gold-400);
}

.dropdown-menu a:hover::before {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: 30px;
}

.lang-toggle {
  background: none;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-400);
  padding: 6px 16px;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.lang-toggle:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold-400);
  color: var(--gold-400);
  padding: 10px 28px;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.4s ease;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

/* THEME TOGGLE */
.theme-toggle {
  background: none;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--gold-400);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
  margin-right: 15px;
}

.theme-toggle:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.sun-icon {
  display: none;
}

body.dark-mode .sun-icon {
  display: block;
}

body.dark-mode .moon-icon {
  display: none;
}

.hamburger span {
  width: 28px;
  height: 1.5px;
  background: var(--gold-400);
  transition: all 0.3s ease;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--navy-900) 0%, var(--navy-800) 40%, var(--navy-700) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201, 169, 110, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(30deg, var(--gold-400) 1px, transparent 1px),
    linear-gradient(150deg, var(--gold-400) 1px, transparent 1px);
  background-size: 60px 104px;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-400);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 8s infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 1.5s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.hero-label::before,
.hero-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold-400);
  opacity: 0.5;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 1.8s forwards;
}

.hero-title .accent {
  color: var(--gold-400);
  font-style: italic;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 300;
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 2.1s forwards;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 2.4s forwards;
}

.btn-primary {
  background: var(--gold-400);
  color: var(--navy-900);
  padding: 16px 48px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 48px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.4s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeInUp 1s var(--transition-smooth) 2.8s forwards;
  text-decoration: none;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold-400), transparent);
  animation: scrollPulse 2s infinite;
}

/* SECTIONS COMMON */
.section {
  padding: 120px 60px;
  position: relative;
}

.section-dark {
  background: var(--bg-secondary);
  color: var(--text-main);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.section-light {
  background: var(--bg-primary);
  color: var(--text-main);
  transition: background-color 0.4s ease, color 0.4s ease;
}

.section.light-mode {
  background: #faf6f0 !important;
  color: #1a1a2e !important;
}

.section.light-mode .section-title,
.section.light-mode .section-label,
.section.light-mode .section-header,
.section.light-mode h2,
.section.light-mode h3,
.section.light-mode h4,
.section.light-mode p {
  color: #1a1a2e !important;
}

.section.light-mode .h1-card,
.section.light-mode .counter-box,
.section.light-mode .testimonial-card,
.section.light-mode .card-light {
  background: #fff !important;
  color: #1a1a2e !important;
  border-color: #e0cc9f !important;
}

.section.light-mode .testimonial-card p,
.section.light-mode .testimonial-card h4 {
  color: #1a1a2e !important;
}

.section.light-mode .icon-circle svg {
  stroke: #c9a96e !important;
}

.section.light-mode .animated-line {
  background: linear-gradient(90deg, #c9a96e, #d4ba85);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold-400);
  opacity: 0.4;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-dark .section-title,
.section-light .section-title {
  color: var(--text-main);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.section-dark .section-subtitle {
  color: var(--gray-300);
}

.section-light .section-subtitle {
  color: var(--text-muted);
}

.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold-400);
  margin: 20px auto 0;
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}

.about-image-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy-700), var(--navy-800));
  position: relative;
  overflow: hidden;
}

.about-image-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(201, 169, 110, 0.15) 0%, transparent 60%);
}

.about-image-inner .decorative-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.about-image-border {
  position: absolute;
  top: 20px;
  right: -20px;
  bottom: -20px;
  left: 20px;
  border: 1px solid var(--gold-400);
  opacity: 0.3;
  z-index: -1;
}

.about-text .section-label {
  justify-content: flex-start;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-200);
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}

.stat-item p {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(15, 32, 56, 0.6);
  border: 1px solid rgba(201, 169, 110, 0.1);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--transition-smooth);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  color: var(--gold-400);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.8;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: auto;
  padding-top: 24px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.service-card:hover .learn-more {
  gap: 14px;
}

/* EXPERTISE */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-item {
  text-align: center;
  padding: 40px 20px;
  transition: transform 0.4s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.expertise-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
}

.expertise-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* TESTIMONIALS */
.testimonial-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  min-height: 280px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--gold-400);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 24px;
  opacity: 0.5;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-weight: 300;
  font-style: italic;
  color: var(--gray-300);
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 700px;
}

.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--gold-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold-400);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold-400);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 0;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--gray-200);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold-400);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn-primary {
  align-self: flex-start;
}

/* FOOTER */
.footer {
  background: var(--navy-900);
  padding: 80px 60px 30px;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.footer-brand .logo-text {
  margin-bottom: 0px;
  display: block;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 24px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.8rem;
}

.social-links a:hover {
  background: var(--gold-400);
  color: var(--navy-900);
}

/* MOBILE NAV */
body.nav-open {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: rgba(4, 11, 24, 0.99);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold-400);
  font-size: 1.2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(201, 169, 110, 0.1);
}

.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 30px;
  width: 100%;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--gold-400);
}

.mobile-login-btn {
  display: block;
  margin-top: 10px;
  padding: 14px 0;
  text-align: center;
  border: 1px solid var(--gold-400) !important;
  color: var(--gold-400) !important;
  font-size: 1rem !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-body) !important;
  transition: all 0.3s ease;
}

.mobile-login-btn:hover {
  background: var(--gold-400) !important;
  color: var(--navy-900) !important;
}

/* MOBILE DROPDOWN */
.mobile-nav-item-dropdown {
  position: relative;
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin-top: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-item-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown-menu a {
  font-size: 1.4rem;
  color: var(--gold-400);
  padding: 8px 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  color: var(--white);
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--transition-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .section {
    padding: 80px 40px;
  }

  .navbar {
    padding: 16px 30px;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-links a {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .nav-cta {
    padding: 8px 18px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    white-space: nowrap;
  }

  .nav-actions {
    margin-left: 16px;
    gap: 14px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }

  .navbar {
    padding: 12px 16px;
    align-items: center;
    background: rgba(4, 11, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    justify-content: space-between !important;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .nav-logo {
    display: flex !important;
    flex-shrink: 0;
    min-width: 0;
  }

  .nav-links {
    display: none !important;
  }

  .nav-actions .nav-cta {
    display: none !important;
  }

  .nav-actions {
    order: 2;
    gap: 10px;
    margin-inline-start: auto !important;
    margin-inline-end: 0;
    flex-shrink: 1;
    min-width: 0;
    display: flex;
    align-items: center;
  }

  .dropdown-menu {
    display: none;
  }

  .navbar.scrolled {
    padding: 12px 16px;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    align-items: flex-end;
    z-index: 1001;
    margin-inline-start: 5px;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    padding: 0;
  }

  .hamburger {
    order: 3;
    margin-inline-start: 0;
    margin-inline-end: 0;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #c9a96e;
    display: block;
  }

  .nav-logo {
    min-width: 0;
  }

  .logo-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-actions button,
  .nav-actions .nav-cta {
    min-width: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .lang-toggle {
    padding: 6px 10px;
  }

  .logo-text {
    font-size: 1.15rem;
    letter-spacing: 3px;
  }

  .logo-text span {
    font-size: 0.5rem;
    letter-spacing: 3px;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .expertise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .stat-item h3 {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 12px 12px;
    justify-content: space-between !important;
  }

  .nav-logo {
    gap: 10px;
    min-width: 0;
  }

  .logo-text {
    flex-shrink: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-actions {
    gap: 8px;
  }

  .hamburger {
    width: 32px;
    height: 32px;
  }
}

/* IMAGE SHOWCASE STYLING */
.img-showcase {
  background: linear-gradient(135deg, #0f2038 0%, #1e3a5f 50%, #162d4d 100%);
  position: relative;
  overflow: hidden;
}

.img-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 186, 133, 0.1) 0%, transparent 50%);
}

.img-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(201, 169, 110, 0.03) 50%, transparent 100%);
}

.showcase-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  background: #0a1628;
  border: 1px solid rgba(201, 169, 110, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.showcase-card:hover {
  transform: translateY(-10px);
  border-color: #c9a96e;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.showcase-visual {
  height: 100%;
  width: 100%;
  position: relative;
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.showcase-card:hover .showcase-visual img {
  transform: scale(1.1);
  opacity: 0.8;
}

.showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 11, 24, 0.95) 0%, rgba(4, 11, 24, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.showcase-card h3 {
  color: #c9a96e;
  font-size: 1.6rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.showcase-card p {
  color: #c4c4c4;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
  transform: translateY(0);
  max-width: 80%;
}

@media (max-width: 768px) {
  .showcase-card {
    height: 350px;
  }

  .showcase-overlay {
    padding: 30px;
  }

  .showcase-card h3 {
    font-size: 1.3rem;
  }

  .showcase-card p {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

/* GLOBAL MAP STYLING */
.map-container {
  position: relative;
  width: 100%;
  min-height: 400px;
  max-height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: #040b18;
}

.world-map {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.map-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, -50%);
  z-index: 10;
}

.marker-dot {
  width: 10px;
  height: 10px;
  background: #c9a96e;
  border-radius: 50%;
  box-shadow: 0 0 15px #c9a96e;
  animation: pulse 2s infinite;
}

.marker-label {
  margin-top: 8px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  white-space: nowrap;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.map-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(4, 11, 24, 0.98) 0%, rgba(4, 11, 24, 0.8) 50%, transparent 100%);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  gap: 50px;
  z-index: 20;
}

.map-stats-overlay span {
  color: #c9a96e;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--font-heading);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.7);
    transform: scale(0.95);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(201, 169, 110, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0);
    transform: scale(0.95);
  }
}

@media (max-width: 768px) {
  .map-container {
    min-height: 300px;
  }

  .map-stats-overlay {
    gap: 20px;
    padding: 25px 15px;
    flex-wrap: wrap;
  }

  .map-stats-overlay span {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }

  .marker-label {
    font-size: 0.6rem;
  }
}