/* Google Fonts Import - Outfit for modern luxury feel */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Luxury Color Palette */
  /* Luxury Color Palette */
  --primary-gold: #D4AF37;
  --primary-gold-dark: #B4941F;
  --primary-gold-light: #F3E5AB;

  /* Silver/Light Gray Palette */
  --primary-silver: #E2E8F0;
  --primary-silver-dark: #CBD5E1;
  --primary-silver-light: #F8FAFC;

  --bg-dark: #0F172A;
  /* Deep Navy/Black */
  --bg-darker: #020617;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --glass-bg: rgba(15, 23, 42, 0.7);
  --glass-border: rgba(226, 232, 240, 0.2);
  --white: #ffffff;
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-light);
  line-height: 1.6;
  background-color: var(--bg-dark);
}

body.rtl {
  direction: rtl;
  text-align: right;
}

body.ltr {
  direction: ltr;
  text-align: left;
}

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

/* Glassmorphism Navigation */
.navbar {
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  position: relative;
}

/* Base Desktop Layout: [Lang] [Nav] [Logo] (Matching Image 2) */
.nav-center {
  flex: 0 0 auto;
  order: 1;
  /* Left */
  text-align: left;
}

.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center Navigation */
  order: 2;
  /* Center */
}

.nav-left {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /* Logo on Right */
  order: 3;
  /* Right */
}

.lang-toggle {
  min-width: 100px;
  text-align: center;
  border-color: var(--primary-silver);
  color: var(--primary-silver);
  border-radius: 4px;
}

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

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

.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: var(--primary-silver);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-silver);
  transition: width 0.3s ease;
}

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

.nav-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Luxury Buttons */
.btn {
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  /* Slightly sharper corners for premium feel */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  cursor: pointer;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-silver) 0%, var(--primary-silver-dark) 100%);
  color: var(--bg-dark);
  border: 1px solid var(--primary-silver);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(226, 232, 240, 0.4);
  background: linear-gradient(135deg, var(--primary-silver-light) 0%, var(--primary-silver) 100%);
}

.btn-outline {
  background: transparent;
  color: var(--primary-silver);
  border: 1px solid var(--primary-silver);
}

.btn-outline:hover {
  background-color: rgba(226, 232, 240, 0.1);
  color: var(--white);
}

.lang-toggle {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--text-muted);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.lang-toggle:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

/* Hero Section */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  background-image: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%), url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  /* Focus on faces/skyline */
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, var(--primary-gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  max-width: 600px;
}

/* Section Headings */
h2 {
  font-size: 2.5rem;
  color: var(--primary-gold);
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 4rem;
  font-weight: 300;
  font-size: 1.1rem;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--bg-darker);
}

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

.service-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--glass-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  transform: translateX(100%);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.service-card h3 {
  color: var(--text-light);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* Features Section */
.features {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

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

.feature {
  padding: 2rem;
  border-left: 2px solid var(--primary-gold);
  background: linear-gradient(90deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
}

.feature-number {
  color: var(--primary-gold);
  font-size: 1.5rem;
  font-weight: 700;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}

.feature h3 {
  color: var(--text-light);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* Comparison Section */
.comparison {
  padding: 100px 0;
  background-color: var(--bg-darker);
}

.comparison-table {
  background: var(--bg-dark);
  border-radius: 8px;
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-row.header {
  background: rgba(212, 175, 55, 0.1);
  color: var(--primary-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.col-feature {
  color: var(--text-light);
  font-weight: 500;
}

.col-standard {
  color: var(--text-muted);
  text-align: center;
}

.col-vip {
  color: var(--primary-gold);
  text-align: center;
  font-weight: 600;
}

/* CTA Section */
.cta {
  padding: 120px 0;
  background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.8)), url('images/hero-bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
  background-color: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
  color: var(--text-muted);
}

.footer-section h4 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color: var(--primary-gold);
}

/* Floating Buttons */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1001;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-btn {
  background-color: #25D366;
}

.scroll-top-btn {
  background-color: var(--primary-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  filter: grayscale(100%);
  /* Make icon gray as requested */
  opacity: 0.7;
  transition: opacity 0.3s;
}

.mobile-menu-btn:hover {
  opacity: 1;
}

.mobile-menu-btn img {
  width: 30px;
  height: 30px;
}

/* Footer Grid */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {

  /* Header Mobile Layout: [Logo] [Lang] [Menu] (Matching Image 1) */
  .nav-left {
    order: 1;
    /* Logo Left */
    justify-content: flex-start;
    flex: 0 0 auto;
  }

  .nav-center {
    order: 2;
    /* Lang Center */
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-right {
    order: 3;
    /* Menu Right */
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  /* Navigation */
  .mobile-menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
    /* Hidden by default on mobile */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-dark);
    /* Solid dark background for readability */
    flex-direction: column;
    padding: 1rem 0;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    gap: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
  }

  .nav-links.active {
    display: flex;
    /* Show when toggled */
  }

  /* Hero Alignment */
  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

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

  .hero-buttons {
    justify-content: center;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  /* Comparison Table Mobile */
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .comparison-row.header {
    display: none;
  }

  .col-standard::before {
    content: 'Standard: ';
    color: var(--text-muted);
  }

  .col-vip::before {
    content: 'VIP: ';
    color: var(--primary-gold);
  }
}

.text-silver {
  color: var(--primary-silver) !important;
}