@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

:root {
  --gold: #D4A843;
  --gold-light: #F0D68A;
  --gold-dark: #B8892F;
  --gold-glow: rgba(212, 168, 67, 0.25);
  --dark: #0A0A14;
  --dark-secondary: #12121F;
  --dark-card: #1A1A2E;
  --text: #E8E8F0;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-dark: #1A1A2E;
  --bg: #0A0A14;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 15px 60px rgba(212, 168, 67, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px var(--gold-glow); }
  50% { box-shadow: 0 0 50px var(--gold-glow), 0 0 80px rgba(212, 168, 67, 0.1); }
}
@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  50% { transform: translateY(-100vh) rotate(720deg); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ===== HEADER ===== */
header {
  background: rgba(10, 10, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.1);
  padding: 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(10, 10, 20, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.top-bar {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 6px 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.top-bar a {
  color: var(--dark);
  text-decoration: none;
  direction: ltr;
  display: inline-block;
  transition: var(--transition);
}
.top-bar a:hover { color: #000; }
.top-bar i { margin-left: 8px; }

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 5%;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--dark);
  box-shadow: 0 4px 15px var(--gold-glow);
  transition: var(--transition);
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text h2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-text span {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 400;
  -webkit-text-fill-color: var(--text-muted);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: var(--transition);
  border-radius: 1px;
  box-shadow: 0 0 10px var(--gold-glow);
}

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

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

.nav-phone {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  color: #fff !important;
  font-weight: 700;
  direction: ltr;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.nav-phone::after { display: none !important; }
.nav-phone:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

.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); }

/* ===== PARTICLE BG ===== */
.particle-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 6px var(--gold-glow), 0 0 20px rgba(212, 168, 67, 0.1);
}

.particle:nth-child(1) { left: 10%; animation: particleFloat 12s infinite; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; animation: particleFloat 15s infinite; animation-delay: 2s; width: 6px; height: 6px; }
.particle:nth-child(3) { left: 40%; animation: particleFloat 18s infinite; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; animation: particleFloat 14s infinite; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 70%; animation: particleFloat 16s infinite; animation-delay: 3s; width: 5px; height: 5px; }
.particle:nth-child(6) { left: 85%; animation: particleFloat 13s infinite; animation-delay: 5s; }
.particle:nth-child(7) { left: 50%; animation: particleFloat 20s infinite; animation-delay: 7s; width: 7px; height: 7px; }
.particle:nth-child(8) { left: 15%; animation: particleFloat 17s infinite; animation-delay: 6s; }
.particle:nth-child(9) { left: 65%; animation: particleFloat 19s infinite; animation-delay: 8s; width: 4px; height: 4px; }
.particle:nth-child(10) { left: 35%; animation: particleFloat 11s infinite; animation-delay: 2.5s; width: 5px; height: 5px; }

/* ===== HERO ===== */
.hero {
  min-height: 100dvh;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 40%, #0D0D20 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 168, 67, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(212, 168, 67, 0.04) 0%, transparent 40%);
  animation: heroGlow 10s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, -2%) scale(1.05); }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}

.hero-content {
  max-width: 850px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.1);
  color: var(--gold-light);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 28px;
  border: 1px solid rgba(212, 168, 67, 0.2);
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-size: clamp(32px, 5.5vw, 62px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.25;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 .gold-text::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.hero p {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.9;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50px;
  opacity: 0;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(212, 168, 67, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 168, 67, 0.1);
  background: rgba(212, 168, 67, 0.05);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
}

.btn-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat { text-align: center; }

.stat h3 {
  font-size: 36px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
}

.stat p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  -webkit-text-fill-color: var(--text-muted);
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 5%;
  position: relative;
}

.section-dark {
  background: linear-gradient(180deg, var(--dark), var(--dark-secondary));
  color: var(--text);
}

.section-light {
  background: var(--dark-secondary);
}

.section-gray {
  background: var(--dark);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 15px auto 0;
  border-radius: 2px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(18, 18, 31, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius-lg);
  padding: 45px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 168, 67, 0.03), transparent 70%);
  opacity: 0;
  transition: var(--transition);
}

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

.service-card:hover {
  transform: translateY(-12px);
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 85px;
  height: 85px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(212, 168, 67, 0.05));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--gold);
  margin: 0 auto 22px;
  transition: var(--transition);
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  transform: rotateY(180deg) scale(1.05);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== AREAS ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.area-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius);
  padding: 14px 12px;
  text-align: center;
  transition: var(--transition);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.area-item:hover {
  background: rgba(212, 168, 67, 0.08);
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  color: var(--gold-light);
}

.area-item i {
  color: var(--gold);
  margin-left: 6px;
  font-size: 11px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image-placeholder {
  background: linear-gradient(145deg, rgba(212, 168, 67, 0.08), rgba(212, 168, 67, 0.02));
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(212, 168, 67, 0.3);
  border: 1px solid rgba(212, 168, 67, 0.1);
  position: relative;
  overflow: hidden;
}

.about-image-placeholder::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(212, 168, 67, 0.03), transparent, rgba(212, 168, 67, 0.03), transparent);
  animation: rotateGlow 20s linear infinite;
}

.about-image-placeholder i {
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.about-features {
  list-style: none;
  margin-top: 25px;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.about-features li:hover {
  background: rgba(212, 168, 67, 0.05);
  border-color: rgba(212, 168, 67, 0.1);
  transform: translateX(-5px);
}

.about-features i {
  color: var(--gold);
  font-size: 18px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact-details {
  list-style: none;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  font-size: 15px;
}

.contact-details li i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.12), rgba(212, 168, 67, 0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.contact-details a {
  color: var(--text-muted);
  text-decoration: none;
  direction: ltr;
  display: inline-block;
  transition: var(--transition);
}

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

.contact-form {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(18, 18, 31, 0.9));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 168, 67, 0.08);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  direction: rtl;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

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

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border: none;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px var(--gold-glow);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px;
}

.form-success i {
  font-size: 55px;
  color: var(--gold);
  margin-bottom: 15px;
}

.form-success h4 { font-size: 22px; color: var(--text); margin-bottom: 10px; }
.form-success p { color: var(--text-muted); }
.form-success.active { display: block; }
.form-submitted .form-fields { display: none; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(18, 18, 31, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(212, 168, 67, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 5px;
  right: 25px;
  font-size: 80px;
  color: rgba(212, 168, 67, 0.06);
  line-height: 1;
  font-family: serif;
}

.testimonial-stars {
  color: var(--gold);
  margin-bottom: 15px;
  font-size: 13px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--dark);
  font-size: 18px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.testimonial-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== CTA ===== */
.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, #0D0D20 50%, var(--dark-secondary) 100%);
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 50%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.cta-section h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 15px;
  position: relative;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 30px;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: var(--text-muted);
  padding: 60px 5% 20px;
  border-top: 1px solid rgba(212, 168, 67, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-col h4 {
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-col p,
.footer-col li {
  font-size: 13px;
  line-height: 2;
}

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

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
  padding-right: 5px;
}

.footer-col ul li a i { font-size: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulseGlow 2.5s infinite;
  text-decoration: none;
  position: relative;
}

.whatsapp-float a:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 45px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .tooltip {
  position: absolute;
  left: 75px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(212, 168, 67, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .tooltip { opacity: 1; left: 80px; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-secondary) 50%, #0D0D20 100%);
  padding: 150px 20px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.15), transparent);
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 15px;
  animation: fadeInUp 0.6s ease;
}

.page-header p {
  color: var(--text-muted);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.1s both;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.6s ease;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

/* ===== CONTENT WITH SIDEBAR ===== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.content-main h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.content-main h2 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-main h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 30px 0 15px;
  color: var(--text);
}

.content-main p {
  color: var(--text-muted);
  margin-bottom: 15px;
  font-size: 15px;
  line-height: 1.9;
}

.content-main ul {
  list-style: none;
  margin: 15px 0;
}

.content-main ul li {
  padding: 10px 0;
  padding-right: 28px;
  position: relative;
  color: var(--text-muted);
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.content-main ul li:last-child { border-bottom: none; }

.content-main ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  color: var(--gold);
  font-size: 14px;
}

.sidebar-card {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.95), rgba(18, 18, 31, 0.95));
  border: 1px solid rgba(212, 168, 67, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 25px;
}

.sidebar-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.sidebar-card .phone-big {
  display: block;
  direction: ltr;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  text-align: center;
  padding: 15px 0;
  letter-spacing: 1px;
}

.sidebar-card .phone-big:hover {
  filter: brightness(1.2);
}

.sidebar-card .btn-sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  margin-bottom: 10px;
  font-family: 'Cairo', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.btn-sidebar-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff;
}

.btn-sidebar-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.btn-sidebar-phone {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}

.btn-sidebar-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

/* ===== PRICE LIST ===== */
.price-list {
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.price-list li:last-child { border-bottom: none; }

.price-list .item { color: var(--text-muted); font-weight: 500; }
.price-list .price {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

/* ===== ITEMS WE BUY ===== */
.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 15px;
}

.buy-item {
  background: linear-gradient(145deg, rgba(26, 26, 46, 0.8), rgba(18, 18, 31, 0.8));
  border: 1px solid rgba(212, 168, 67, 0.06);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  transition: var(--transition);
}

.buy-item:hover {
  border-color: rgba(212, 168, 67, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.buy-item i {
  font-size: 32px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.buy-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 20, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.1);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
  }

  .nav-links.active { display: flex; }

  .top-bar { font-size: 12px; padding: 5px 10px; }
  .top-bar span { display: none; }

  .hero-stats { flex-direction: column; gap: 20px; }

  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

  nav { padding: 12px 5%; }

  .page-header { padding: 130px 15px 50px; }

  .about-image-placeholder { min-height: 250px; font-size: 50px; }

  .contact-form { padding: 25px; }

  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
  .area-item { font-size: 12px; padding: 10px; }

  .section { padding: 60px 5%; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .logo-text h2 { font-size: 16px; }
  .logo-text span { display: none; }
  .logo-icon { width: 38px; height: 38px; font-size: 16px; }

  .top-bar { font-size: 11px; padding: 4px 8px; }
  .top-bar a i { margin-left: 4px; }

  .hero { padding: 120px 15px 60px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 14px; }
  .hero-badge { font-size: 11px; padding: 6px 16px; }
  .stat h3 { font-size: 28px; }
  .stat p { font-size: 12px; }

  .page-header { padding: 120px 12px 40px; }
  .page-header h1 { font-size: 24px; }
  .page-header p { font-size: 14px; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 30px 20px; }
  .service-card h3 { font-size: 18px; }
  .service-card p { font-size: 13px; }
  .service-icon { width: 65px; height: 65px; font-size: 28px; }

  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 14px; }
  .section { padding: 45px 15px; }

  .about-content h2 { font-size: 24px; }
  .about-content p { font-size: 14px; }
  .about-features li { font-size: 13px; padding: 8px 12px; }

  .contact-form { padding: 20px; }
  .contact-info h3 { font-size: 22px; }
  .contact-details li i { width: 40px; height: 40px; font-size: 16px; }

  .items-grid { grid-template-columns: repeat(2, 1fr); }
  .buy-item { padding: 16px 10px; }
  .buy-item i { font-size: 26px; }
  .buy-item h4 { font-size: 12px; }

  .areas-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .area-item { font-size: 11px; padding: 8px; }

  .footer-grid { grid-template-columns: 1fr; gap: 25px; }
  .footer-col h4 { font-size: 16px; }

  .whatsapp-float a { width: 50px; height: 50px; font-size: 24px; }
  .whatsapp-float { bottom: 15px; left: 15px; }

  .cta-section { padding: 50px 15px; }
  .cta-section h2 { font-size: 22px; }
  .cta-section p { font-size: 14px; }

  .breadcrumb { font-size: 11px; }
}
