/* --- GLOWING GOLD & BLACK DESIGN SYSTEM --- */
:root {
  /* Ultra Dark Palette */
  --color-bg-base: #050505;
  --color-bg-surface: #0a0a0a;
  --color-bg-elevated: #151515;
  
  --color-text-main: #ffffff;
  --color-text-muted: #b3b3b3;
  
  /* GLOWING GOLD PALETTE (Class names retained from previous version for compatibility) */
  --color-neon-pink: #d4af37;   /* Rich Gold */
  --color-neon-purple: #ffdf00; /* Bright Neon Gold */
  --color-neon-light: #fffacd;  /* Light Gold */
  
  /* Gradients */
  --gradient-neon: linear-gradient(135deg, #d4af37, #ffdf00);
  --gradient-neon-text: linear-gradient(to right, #ffdf00, #d4af37, #b8860b);
  --gradient-dark: linear-gradient(135deg, #0a0a0a, #050505);

  /* Glowing Gold Effects */
  --neon-glow: 0 0 10px rgba(212, 175, 55, 0.5), 0 0 20px rgba(212, 175, 55, 0.3);
  --neon-glow-strong: 0 0 15px #d4af37, 0 0 30px #ffdf00, 0 0 45px #b8860b;
  --neon-text-glow: 0 0 8px rgba(255, 223, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.5);
  
  /* Glassmorphism */
  --glass-bg: rgba(5, 5, 5, 0.85);
  --glass-border: 1px solid rgba(212, 175, 55, 0.3);
  --glass-border-strong: 1px solid rgba(212, 175, 55, 0.8);

  /* Typography */
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1.5rem;
  --spacing-md: 3rem;
  --spacing-lg: 5rem;
  --spacing-xl: 8rem;

  /* Radius & Shadows */
  --radius-sm: 6px;
  --radius-md: 16px;
  --shadow-dark: 0 25px 50px rgba(0, 0, 0, 0.9);
}

/* RTL Typography */
html[dir="rtl"] {
  --font-heading: 'Assistant', sans-serif;
  --font-body: 'Assistant', sans-serif;
}

/* --- RESET & FOUNDATION --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

a { text-decoration: none; color: inherit; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

/* Utilities */
.container { max-width: 1400px; margin: 0 auto; padding: 0 var(--spacing-sm); }
.section { padding: var(--spacing-xl) 0; }
.text-center { text-align: center; }

/* The Glowing Gold Text Class (Used to be Neon) */
.neon-text {
  background: var(--gradient-neon-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: var(--neon-text-glow);
  font-weight: 800;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.1em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg) auto;
}

/* --- INNOVATIVE BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
  cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Glowing Gold Button */
.btn-neon {
  background: var(--color-bg-base);
  color: var(--color-neon-pink);
  border: 2px solid var(--color-neon-pink);
  box-shadow: var(--neon-glow);
}

.btn-neon::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-25deg);
  animation: shine 4s infinite;
  z-index: -1;
}

@keyframes shine {
  0% { left: -100%; }
  20% { left: 200%; }
  100% { left: 200%; }
}

.btn-neon:hover {
  background: var(--gradient-neon);
  color: #000;
  box-shadow: var(--neon-glow-strong);
  border-color: transparent;
  transform: translateY(-5px) scale(1.02);
}

.btn-outline-neon {
  background: transparent;
  color: var(--color-neon-pink);
  border: 2px solid var(--color-neon-pink);
}

.btn-outline-neon:hover {
  background: var(--gradient-neon);
  color: #000;
  border-color: transparent;
  box-shadow: var(--neon-glow-strong);
}

/* --- HEADER & NAVIGATION --- */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--glass-border);
  z-index: 1000;
  transition: all 0.4s ease;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem var(--spacing-sm);
}

.logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.logo span {
  color: var(--color-neon-pink);
  text-shadow: var(--neon-text-glow);
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0; height: 2px;
  bottom: -6px; left: 0;
  background: var(--gradient-neon);
  box-shadow: var(--neon-glow);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lang-switch {
  display: flex; gap: 1rem;
}

.lang-switch a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.lang-switch a.active, .lang-switch a:hover {
  color: var(--color-neon-pink);
  text-shadow: var(--neon-text-glow);
}

/* --- HERO SECTION --- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.5;
  filter: sepia(30%) hue-rotate(5deg) saturate(120%) contrast(1.1);
  animation: heroZoom 30s linear infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(5,5,5,0.4) 0%, var(--color-bg-base) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 var(--spacing-sm);
  padding-top: 100px; /* Prevents overlap with fixed header */
}

.hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  margin-bottom: var(--spacing-sm);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #fff;
  margin-bottom: var(--spacing-md);
  font-weight: 300;
}

/* --- OVERVIEW / FEATURES --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  margin-top: -80px;
  position: relative;
  z-index: 10;
}

.feature-box {
  background: var(--glass-bg);
  border: var(--glass-border);
  padding: 3rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-dark);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(15px);
}

.feature-box:hover {
  transform: translateY(-15px);
  border-color: var(--color-neon-pink);
  box-shadow: var(--neon-glow);
  background: var(--color-bg-surface);
}

.feature-icon {
  font-size: 3rem;
  color: var(--color-neon-pink);
  margin-bottom: 1rem;
  text-shadow: var(--neon-text-glow);
  transition: transform 0.4s ease;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-text-main);
}

.feature-box p {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* --- BRAND / STORY HIGHLIGHT --- */
.story-split {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.story-text { flex: 1; }

.story-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.story-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.story-image {
  flex: 1;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
}

.story-image img {
  border-radius: var(--radius-md);
  box-shadow: var(--neon-glow);
  position: relative;
  z-index: 2;
  filter: contrast(1.1);
  transition: all 0.6s ease;
}

.story-image:hover img {
  transform: scale(1.03);
}

.story-image::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 100%; height: 100%;
  border: 3px solid var(--color-neon-pink);
  border-radius: var(--radius-md);
  box-shadow: var(--neon-glow);
  z-index: 1;
  transition: all 0.6s ease;
}

.story-image:hover::before {
  top: -10px; right: -10px;
}

html[dir="rtl"] .story-image::before {
  right: auto; left: -20px;
}
html[dir="rtl"] .story-image:hover::before {
  left: -10px;
}

/* --- GALLERY / PORTFOLIO TEASER --- */
.gallery-teaser {
  background: var(--gradient-dark);
  border-top: var(--glass-border);
  border-bottom: var(--glass-border);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  border-color: var(--color-neon-pink);
  box-shadow: var(--neon-glow);
}

.gallery-item img {
  width: 100%; height: 450px;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: contrast(1.1);
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: var(--spacing-md);
  background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--color-text-main);
  text-shadow: var(--neon-text-glow);
  margin-bottom: 0.2rem;
}

.gallery-overlay p {
  color: var(--color-neon-pink);
  font-weight: 600;
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-bg-base);
  padding: var(--spacing-xl) 0 var(--spacing-sm) 0;
  border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-brand h2 {
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  text-shadow: var(--neon-text-glow);
}

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

.footer-col h4 {
  color: var(--color-neon-pink);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-shadow: var(--neon-text-glow);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.8rem; }
.footer-col ul a {
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.footer-col ul a:hover {
  color: #fff;
  text-shadow: var(--neon-text-glow);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: var(--glass-border);
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* --- ANIMATIONS --- */
.fade-in-up {
  opacity: 0; transform: translateY(50px) scale(0.95);
  filter: blur(10px);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.165, 0.84, 0.44, 1), filter 1s ease;
}
.fade-in-up.is-visible { 
  opacity: 1; transform: translateY(0) scale(1); filter: blur(0);
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed;
  bottom: 40px; right: 40px;
  width: 65px; height: 65px;
  background: var(--gradient-neon);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--neon-glow-strong);
  z-index: 9999;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
html[dir="rtl"] .whatsapp-float { right: auto; left: 40px; }
.whatsapp-float:hover { 
  transform: scale(1.15) translateY(-5px); 
  box-shadow: 0 15px 40px rgba(255, 223, 0, 0.6); 
}
.whatsapp-float svg { width: 35px; height: 35px; fill: #000; }

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 { font-size: 4rem; }
  .features-grid { grid-template-columns: 1fr; margin-top: var(--spacing-md); }
  .story-split { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-content h1 { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; }
  html[dir="rtl"] .whatsapp-float { left: 20px; right: auto; }
}

/* --- NEW UI COMPONENTS (Dropdown, Trust Bar, Services Grid, Testimonials, FAQ) --- */
.bg-darker { background-color: var(--color-bg-surface); }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 1.5rem; }
.trust-badges span { display: inline-block; margin: 0 10px; font-family: var(--font-heading); color: var(--color-neon-pink); font-size: 0.9rem; text-transform: uppercase; }

/* Dropdown Menu */
.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: var(--glass-bg); min-width: 200px; box-shadow: var(--shadow-dark); border: var(--glass-border); z-index: 1001; border-radius: var(--radius-sm); top: 100%; left: 0; backdrop-filter: blur(10px); padding: 0.5rem 0; }
.dropdown-content a { color: var(--color-text-main); padding: 12px 16px; text-decoration: none; display: block; filter: none; border-bottom: 1px solid rgba(255,255,255,0.05); }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background-color: rgba(212, 175, 55, 0.1); color: var(--color-neon-pink); }
.dropdown:hover .dropdown-content { display: block; }

/* Trust Bar */
.trusted-bar { padding: 1.5rem 0; border-bottom: 1px solid rgba(212,175,55,0.2); background: var(--gradient-dark); }
.trusted-bar p { font-family: var(--font-heading); letter-spacing: 0.2em; color: var(--color-text-muted); font-size: 0.9rem; }

/* Services Grid */
.services-cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { background: var(--glass-bg); border: var(--glass-border); border-radius: var(--radius-md); padding: 2.5rem 2rem; text-align: left; transition: all 0.4s ease; cursor: pointer; display: block; color: inherit; }
.service-card:hover { transform: translateY(-10px); border-color: var(--color-neon-pink); box-shadow: var(--neon-glow); }
.sc-content h3 { font-size: 1.6rem; margin-bottom: 1rem; color: var(--color-neon-light); }
.sc-content p { color: var(--color-text-muted); margin-bottom: 1.5rem; }
.sc-content .learn-more { color: var(--color-neon-pink); font-weight: 700; font-family: var(--font-heading); letter-spacing: 0.1em; text-transform: uppercase; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-box { background: linear-gradient(135deg, rgba(20,20,20,0.8), rgba(5,5,5,0.9)); border: 1px solid rgba(255,255,255,0.05); padding: 2.5rem 2rem; border-radius: var(--radius-md); transition: transform 0.3s ease; }
.testimonial-box:hover { transform: scale(1.02); border-color: rgba(212,175,55,0.3); }
.testimonial-box .stars { color: #ffdf00; margin-bottom: 1rem; font-size: 1.2rem; }
.testimonial-box p { font-style: italic; color: #e0e0e0; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-box h4 { color: var(--color-neon-pink); font-size: 1rem; text-align: right; }

/* FAQ Accordion */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 1rem; border: var(--glass-border); border-radius: var(--radius-sm); overflow: hidden; background: var(--glass-bg); }
.faq-question { width: 100%; text-align: left; padding: 1.5rem; font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; color: white; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: all 0.3s; }
.faq-question:hover { color: var(--color-neon-pink); background: rgba(255,255,255,0.02); }
.faq-question span { font-size: 1.5rem; font-weight: 300; transition: transform 0.3s; }
.faq-question.active span { transform: rotate(45deg); color: var(--color-neon-pink); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; background: rgba(0,0,0,0.2); }
.faq-answer p { padding: 0 1.5rem 1.5rem 1.5rem; color: var(--color-text-muted); }

@media (max-width: 768px) {
  .hero-buttons { flex-direction: column; }
  .trust-badges span { display: block; margin: 0.5rem 0; }
  .story-split { flex-direction: column; }
}

/* --- WHATSAPP BLINKING CONVERSION WIDGET --- */
@keyframes whatsapp-pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 70px; height: 70px;
  background: #25d366; /* Official WhatsApp Color */
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
  z-index: 9999;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
  transition: transform 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.05) translateY(-5px); }
.whatsapp-float svg { width: 40px; height: 40px; fill: white; }
html[dir="rtl"] .whatsapp-float { right: auto; left: 30px; }

/* --- SERVICE CARD IMAGES --- */
.service-card {
  padding: 0;
  overflow: hidden;
}
.sc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid var(--color-neon-pink);
  transition: transform 0.6s ease;
}
.service-card:hover .sc-img {
  transform: scale(1.05);
}
.sc-content {
  padding: 2rem;
}

/* --- MOBILE NAVIGATION HAMBURGER --- */
.mobile-toggle {
  display: none;
  font-size: 2.2rem;
  color: var(--color-neon-pink);
  cursor: pointer;
  margin-left: 1rem;
}
html[dir="rtl"] .mobile-toggle { margin-left: 0; margin-right: 1rem; }

@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; width: 100%;
    background: rgba(5,5,5,0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-neon-pink);
    text-align: center;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
}


/* --- LUXURY HERO SLIDER --- */
.hero-slider {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.slide {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
}
.slide.active {
    opacity: 0.6;
}
.hero-content {
    z-index: 3;
    position: relative;
    pointer-events: none;
}
.hero-content * {
    pointer-events: auto;
}

/* --- TESTIMONIALS UPGRADE --- */
.testimonials-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-bg-base);
}
.testimonial-card {
    background: var(--color-bg-elevated);
    border: var(--glass-border);
    padding: 3rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all 0.4s ease;
}
.testimonial-card:hover {
    border-color: var(--color-neon-pink);
    transform: translateY(-5px);
}
.quote-icon {
    font-size: 3rem;
    color: var(--color-neon-pink);
    opacity: 0.2;
    position: absolute;
    top: 20px; left: 20px;
}
.stars {
    color: #ffdf00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
