/* ==========================================================================
   شركة القسطاس القويم للاستشارات الأمنية - Coming Soon Stylesheet
   Alqistas Alqawim for Security Consultations
   ========================================================================== */

/* 1. Custom Fonts */
@font-face {
  font-family: 'GE Dinar One';
  src: url('../fonts/GE-Dinar-One-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'GE Dinar One';
  src: url('../fonts/GE-Dinar-One-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gill Sans';
  src: url('../fonts/Gill-Sans.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* 2. Color Palette & Variables */
:root {
  --bg-main: #0a0b0e;
  --bg-card: rgba(22, 24, 30, 0.7);
  --bg-card-hover: rgba(30, 33, 42, 0.85);
  --border-gold: rgba(222, 168, 96, 0.28);
  --border-gold-glow: rgba(222, 168, 96, 0.55);
  --gold-primary: #dea860;
  --gold-light: #f3d4a3;
  --gold-dark: #b8823b;
  --gold-gradient: linear-gradient(135deg, #f7dfbe 0%, #dea860 50%, #b37c33 100%);
  --gold-glow: 0 0 25px rgba(222, 168, 96, 0.25);
  --text-white: #ffffff;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --font-arabic: 'GE Dinar One', 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-latin: 'Gill Sans', -apple-system, sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  direction: rtl;
}

body {
  background-color: var(--bg-main);
  color: var(--text-white);
  font-family: var(--font-arabic);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* 4. Luxury Background Effects */
.bg-ambient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: pulseGlow 10s ease-in-out infinite alternate;
}

.glow-1 {
  top: -10%;
  right: 15%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, #dea860 0%, transparent 70%);
}

.glow-2 {
  bottom: -15%;
  left: 10%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, #b8823b 0%, transparent 70%);
  animation-delay: 4s;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(222, 168, 96, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(222, 168, 96, 0.04) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

@keyframes pulseGlow {
  0% { transform: scale(0.9) translateY(0); opacity: 0.14; }
  100% { transform: scale(1.1) translateY(30px); opacity: 0.24; }
}

/* 5. Page Layout Container */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* 6. Header Top Bar */
.top-header {
  padding: 24px 0 12px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 20px;
  background: rgba(22, 24, 30, 0.5);
  border: 1px solid rgba(222, 168, 96, 0.15);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 500;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: var(--gold-primary);
  box-shadow: 0 0 0 0 rgba(222, 168, 96, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(222, 168, 96, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(222, 168, 96, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(222, 168, 96, 0); }
}

.license-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.license-tag strong {
  color: var(--gold-primary);
  font-weight: 500;
}

/* 7. Hero Section */
.hero-section {
  text-align: center;
  padding: 40px 0 20px;
}

.logo-container {
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}

.brand-logo {
  max-width: 240px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(222, 168, 96, 0.2));
  transition: var(--transition-smooth);
}

.brand-logo:hover {
  transform: translateY(-4px) scale(1.02);
  filter: drop-shadow(0 15px 40px rgba(222, 168, 96, 0.35));
}

.company-title {
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.company-subtitle {
  font-family: var(--font-latin);
  color: var(--text-muted);
  font-size: 1.05rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.slogan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(222, 168, 96, 0.08);
  border: 1px solid var(--border-gold);
  padding: 8px 24px;
  border-radius: 999px;
  font-size: 1.15rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.slogan-badge::before, .slogan-badge::after {
  content: '❖';
  font-size: 0.75rem;
  color: var(--gold-primary);
}

.hero-description {
  max-width: 680px;
  margin: 0 auto 36px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* 8. Countdown Timer */
.countdown-container {
  margin: 0 auto 48px;
  max-width: 600px;
}

.countdown-title {
  font-size: 0.95rem;
  color: var(--gold-primary);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.countdown-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 16px 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: var(--transition-smooth);
}

.countdown-card:hover {
  border-color: var(--border-gold-glow);
  transform: translateY(-3px);
  box-shadow: var(--gold-glow);
}

.countdown-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  font-family: var(--font-latin);
  margin-bottom: 6px;
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* 9. Teaser Features Grid */
.features-section {
  margin-bottom: 48px;
}

.section-label {
  text-align: center;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(50%);
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid rgba(222, 168, 96, 0.16);
  border-radius: 18px;
  padding: 24px 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  text-align: right;
  position: relative;
  overflow: hidden;
}

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

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(222, 168, 96, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--gold-primary);
  font-size: 1.4rem;
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* 10. Contact & Action Buttons */
.contact-section {
  text-align: center;
  margin-bottom: 50px;
  background: rgba(22, 24, 30, 0.6);
  border: 1px solid var(--border-gold);
  border-radius: 24px;
  padding: 36px 24px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.contact-title {
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.contact-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.buttons-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-arabic);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

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

.btn-gold {
  background: var(--gold-gradient);
  color: #0c0d10;
  border: none;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(222, 168, 96, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(222, 168, 96, 0.5);
}

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

.btn-outline:hover {
  background: rgba(222, 168, 96, 0.1);
  border-color: var(--gold-primary);
  transform: translateY(-2px);
}

.direct-contacts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(222, 168, 96, 0.12);
  padding-top: 20px;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-item a {
  color: var(--gold-light);
  text-decoration: none;
  transition: var(--transition-smooth);
  direction: ltr;
  display: inline-block;
}

.contact-item a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* 11. Notify Me Form */
.notify-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.notify-input {
  flex: 1;
  min-width: 220px;
  padding: 12px 18px;
  background: rgba(10, 11, 14, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-arabic);
  font-size: 0.92rem;
  outline: none;
  transition: var(--transition-smooth);
}

.notify-input:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(222, 168, 96, 0.3);
}

.notify-btn {
  padding: 12px 24px;
  background: var(--gold-gradient);
  color: #0c0d10;
  border: none;
  border-radius: 999px;
  font-family: var(--font-arabic);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.notify-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(222, 168, 96, 0.4);
}

.form-feedback {
  width: 100%;
  margin-top: 10px;
  font-size: 0.88rem;
  color: #10B981;
  display: none;
}

/* 12. Footer */
.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(222, 168, 96, 0.12);
  text-align: center;
  font-size: 0.86rem;
  color: var(--text-dim);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--gold-light);
}

/* 13. Responsive Media Queries */
@media (max-width: 768px) {
  .top-bar {
    border-radius: 20px;
    justify-content: center;
    text-align: center;
  }
  
  .company-title {
    font-size: 1.8rem;
  }
  
  .slogan-badge {
    font-size: 1rem;
    padding: 6px 18px;
  }
  
  .countdown-grid {
    gap: 10px;
  }
  
  .countdown-card {
    padding: 12px 6px;
  }
  
  .countdown-num {
    font-size: 1.7rem;
  }
  
  .buttons-group {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
  }
  
  .direct-contacts {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-content {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
