/* ==========================================================================
   الدهماني لأنظمة الحماية - Luxury Tech Black & Gold Theme
   ========================================================================== */

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

:root {
  --bg-primary: #000000;
  --bg-secondary: #0a0a0a;
  --bg-card: rgba(20, 20, 20, 0.85);
  --gold-light: #ffd700;
  --gold-mid: #f4d03f;
  --gold-dark: #c9a227;
  --gold-deep: #8b6914;
  --gold-gradient: linear-gradient(135deg, #8b6914 0%, #f4d03f 50%, #c9a227 100%);
  --gold-gradient-text: linear-gradient(135deg, #ffffff 0%, #ffd700 40%, #f4d03f 70%, #c9a227 100%);
  --gold-gradient-btn: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #aa7c11 100%);
  --gold-glow: rgba(244, 208, 63, 0.35);
  --gold-glow-strong: rgba(244, 208, 63, 0.65);
  --text-primary: #ffffff;
  --text-secondary: #c4a962;
  --text-gold: #e8d5a3;
  --border-gold: 1px solid rgba(244, 208, 63, 0.4);
  --border-gold-light: 1px solid rgba(244, 208, 63, 0.2);
  --border-gold-strong: 1px solid rgba(244, 208, 63, 0.8);
  --font-arabic: 'Cairo', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

/* Reset & Base Settings */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  direction: rtl;
  scroll-padding-top: 110px;
}

body {
  font-family: var(--font-arabic);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-primary);
}

.gold-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.gold-text-solid {
  color: var(--gold-mid);
}

.gold-3d-text {
  background: var(--gold-gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(244, 208, 63, 0.3);
  letter-spacing: -0.5px;
}

p {
  color: var(--text-secondary);
  font-weight: 400;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Common Styling */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  background: rgba(244, 208, 63, 0.08);
  border: var(--border-gold-light);
  color: var(--gold-mid);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-description {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-arabic);
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold-gradient-btn);
  color: #000000;
  font-weight: 800;
  box-shadow: 0 4px 20px var(--gold-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px var(--gold-glow-strong);
  color: #000000;
}

.btn-secondary {
  background: rgba(10, 10, 10, 0.8);
  color: var(--gold-mid);
  border: var(--border-gold);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(244, 208, 63, 0.15);
  color: var(--gold-light);
  border-color: var(--gold-mid);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px rgba(244, 208, 63, 0.25);
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Glassmorphism Card Style */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: var(--border-gold-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  opacity: 0.4;
  transition: var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-mid);
  box-shadow: 0 12px 35px var(--gold-glow);
}

.glass-card:hover::before {
  opacity: 1;
  height: 3px;
}

/* Icon Emblem Wrapper */
.icon-emblem {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold-mid);
  background: radial-gradient(circle, rgba(244, 208, 63, 0.15) 0%, rgba(10, 10, 10, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px var(--gold-glow);
  margin-bottom: 24px;
  transition: var(--transition);
}

.glass-card:hover .icon-emblem {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--gold-light);
  box-shadow: 0 0 25px var(--gold-glow-strong);
}

.icon-emblem svg {
  width: 32px;
  height: 32px;
  fill: var(--gold-mid);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0 0;
  transition: var(--transition);
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(244, 208, 63, 0.12);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  padding: 8px 0 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(244, 208, 63, 0.25);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold-mid);
  box-shadow: 0 0 12px var(--gold-glow);
  object-fit: cover;
  transition: var(--transition);
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.06) rotate(3deg);
  box-shadow: 0 0 20px var(--gold-glow-strong);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.25;
  max-width: 200px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--gold-mid);
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--gold-mid);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hide mobile CTA inside drawer on desktop */
.mobile-only-btn {
  display: none;
}

/* Compact navbar button */
.nav-cta .btn-primary {
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.2;
  min-height: unset;
  width: auto;
  border-radius: var(--radius-full);
}

.mobile-toggle {
  display: none;
  background: transparent;
  border: var(--border-gold);
  color: var(--gold-mid);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* HERO SECTION - Luxury Tech Theme */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 118px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  overflow: hidden;
}

/* Hero Background Graphics */
.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Golden Dot Matrix World Map Pattern */
.hero-dots-map {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(244, 208, 63, 0.22) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  opacity: 0.45;
  mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
}

/* Converging Golden Perspective Road Grid Lines */
.hero-perspective-grid {
  position: absolute;
  bottom: 0;
  left: -50%;
  right: -50%;
  height: 60%;
  background: 
    linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.95) 100%),
    repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(244, 208, 63, 0.12) 41px, transparent 42px),
    repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(244, 208, 63, 0.08) 41px, transparent 42px);
  transform: perspective(400px) rotateX(65deg);
  transform-origin: bottom center;
  opacity: 0.7;
}

/* City Skyline Silhouette SVG background overlay */
.hero-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%230a0a0a' fill-opacity='0.9' d='M0,224L40,213.3C80,203,160,181,240,186.7C320,192,400,224,480,213.3C560,203,640,149,720,149.3C800,150,880,203,960,208C1040,213,1120,171,1200,165.3C1280,160,1360,192,1400,208L1440,224L1440,320L1400,320C1360,320,1280,320,1200,320C1120,320,1040,320,960,320C880,320,800,320,720,320C640,320,560,320,480,320C400,320,320,320,240,320C160,320,80,320,40,320L0,320Z'%3E%3C/path%3E%3Cpath fill='none' stroke='rgba(244,208,63,0.3)' stroke-width='2' d='M0,224L40,213.3C80,203,160,181,240,186.7C320,192,400,224,480,213.3C560,203,640,149,720,149.3C800,150,880,203,960,208C1040,213,1120,171,1200,165.3C1280,160,1360,192,1400,208L1440,224'%3E%3C/path%3E%3C/svg%3E");
  background-size: cover;
  background-position: bottom center;
  opacity: 0.85;
}

/* Floating Gold Particles Canvas */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: rgba(244, 208, 63, 0.1);
  border: var(--border-gold);
  color: var(--gold-mid);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 0 15px var(--gold-glow);
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-mid);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.6rem;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Emblem Showcase Feature Card */
.hero-emblem-card {
  background: rgba(15, 15, 15, 0.88);
  border: var(--border-gold-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9), 0 0 30px var(--gold-glow);
  text-align: center;
  position: relative;
}

.hero-emblem-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  border: 3px solid var(--gold-mid);
  margin: 0 auto 24px;
  box-shadow: 0 0 30px var(--gold-glow-strong);
  object-fit: cover;
  animation: pulseGoldGlow 4s infinite alternate;
}

@keyframes pulseGoldGlow {
  0% { box-shadow: 0 0 20px var(--gold-glow); }
  100% { box-shadow: 0 0 40px var(--gold-glow-strong), 0 0 10px #ffffff; }
}

.hero-emblem-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 20px;
}

.feature-pill {
  background: rgba(244, 208, 63, 0.08);
  border: var(--border-gold-light);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.feature-pill svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-mid);
}

/* SECTION 3: WHY ALDAHMANI (لماذا الدهماني؟) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SECTION 4: SERVICES (خدماتنا) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.98rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-mid);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.service-link:hover {
  color: var(--gold-light);
  gap: 12px;
}

.service-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transform: scaleX(-1);
}

/* SECTION 5: PRODUCTS (منتجاتنا) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.product-img-wrapper {
  width: 100%;
  height: 220px;
  position: relative;
  overflow: hidden;
  background: #050505;
  border-bottom: var(--border-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gold-gradient-btn);
  color: #000000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.product-icon-visual {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 208, 63, 0.2) 0%, rgba(10, 10, 10, 0.9) 100%);
  border: 1px solid var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(244, 208, 63, 0.2);
  transition: var(--transition);
}

.product-card:hover .product-icon-visual {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--gold-glow-strong);
}

.product-icon-visual svg {
  width: 55px;
  height: 55px;
  fill: var(--gold-mid);
}

.product-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: var(--border-gold-light);
}

.product-status {
  font-size: 0.85rem;
  color: var(--gold-mid);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-status::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-mid);
  box-shadow: 0 0 8px var(--gold-mid);
}

/* SECTION 6: ABOUT US & STATS (من نحن) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 28px;
  line-height: 1.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 30px 20px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}

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

/* SECTION 7: CONTACT US (تواصل معنا) */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-card {
  padding: 40px;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-gold);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 10, 0.9);
  border: var(--border-gold-light);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: var(--font-arabic);
  font-size: 1rem;
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--gold-mid);
  box-shadow: 0 0 15px var(--gold-glow);
  background: rgba(20, 20, 20, 0.95);
}

select.form-control option {
  background: #0a0a0a;
  color: #ffffff;
}

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

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-item h4 {
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 4px;
}

.info-item p {
  font-size: 0.95rem;
}

.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  border: var(--border-gold-light);
  overflow: hidden;
  background: #050505;
}

.map-iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(30%) contrast(1.1);
}

.map-link {
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-mid);
  background: rgba(15, 15, 15, 0.95);
  border-top: var(--border-gold-light);
  transition: var(--transition);
}

.map-link:hover {
  color: var(--gold-light);
  background: rgba(244, 208, 63, 0.08);
}

.map-pin-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--gold-glow-strong);
}

.map-pin-icon svg {
  width: 24px;
  height: 24px;
  fill: #000000;
}

/* SECTION 8: FOOTER */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid rgba(244, 208, 63, 0.3);
  padding-top: 80px;
  padding-bottom: 40px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-about p {
  margin-top: 18px;
  max-width: 340px;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

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

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--gold-mid);
  padding-right: 6px;
}

.social-links {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: var(--border-gold-light);
  background: rgba(20, 20, 20, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn:hover {
  border-color: var(--gold-mid);
  background: rgba(244, 208, 63, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--gold-glow);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-mid);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: var(--border-gold-light);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  border: 2px solid var(--gold-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 15px var(--gold-glow);
  transition: var(--transition);
  animation: pulseWhatsapp 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6), 0 0 25px var(--gold-glow-strong);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

@keyframes pulseWhatsapp {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Modal Popup (Quote & Details) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: #0a0a0a;
  border: var(--border-gold-strong);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 550px;
  padding: 40px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.95), 0 0 40px var(--gold-glow);
  transform: scale(0.9);
  transition: var(--transition);
}

.modal-overlay.active .modal-card {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  background: transparent;
  border: var(--border-gold-light);
  color: var(--gold-mid);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(244, 208, 63, 0.2);
  color: var(--gold-light);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
